From 0e4bcc304600bd0981464263476e776caa414d57 Mon Sep 17 00:00:00 2001 From: linzhichao Date: Tue, 7 Jan 2020 17:32:10 +0800 Subject: [PATCH 001/111] update bfe_module.HandleAfterLocation to bfe_module.HandleFoundProduct in mod_block --- bfe_modules/mod_block/mod_block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfe_modules/mod_block/mod_block.go b/bfe_modules/mod_block/mod_block.go index bf270934c..d85a8ab07 100644 --- a/bfe_modules/mod_block/mod_block.go +++ b/bfe_modules/mod_block/mod_block.go @@ -265,7 +265,7 @@ func (m *ModuleBlock) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHan return fmt.Errorf("%s.Init(): AddFilter(m.globalBlockHandler): %s", m.name, err.Error()) } - err = cbs.AddFilter(bfe_module.HandleAfterLocation, m.productBlockHandler) + err = cbs.AddFilter(bfe_module.HandleFoundProduct, m.productBlockHandler) if err != nil { return fmt.Errorf("%s.Init(): AddFilter(m.productBlockHandler): %s", m.name, err.Error()) } From 496d0905a1d93e26e137dc582ae37de42c765602 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Wed, 4 Mar 2020 10:10:01 +0800 Subject: [PATCH 002/111] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index faef31a43..f8d71478f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.0 +0.8.0-dev From 4fe4860bde2b319a16a8e0e09b45ae3a08d217dd Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Fri, 13 Mar 2020 13:32:24 +0800 Subject: [PATCH 003/111] Support TLS protocol with SM related ciphersuites --- bfe_tls/cipher_suites.go | 36 ++++++++++++++++++++++++++++++++++++ go.mod | 3 ++- go.sum | 7 +++++-- 3 files changed, 43 insertions(+), 3 deletions(-) diff --git a/bfe_tls/cipher_suites.go b/bfe_tls/cipher_suites.go index 9b7fc64e3..1840f024d 100644 --- a/bfe_tls/cipher_suites.go +++ b/bfe_tls/cipher_suites.go @@ -31,6 +31,8 @@ import ( ) import ( + "github.com/tjfoc/gmsm/sm3" + "github.com/tjfoc/gmsm/sm4" "golang.org/x/crypto/chacha20poly1305" ) @@ -113,6 +115,7 @@ var cipherSuites = []*cipherSuite{ {TLS_RSA_WITH_AES_256_CBC_SHA, 32, 20, 16, rsaKA, 0, cipherAES, macSHA1, nil}, {TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, 24, 20, 8, ecdheRSAKA, suiteECDHE, cipher3DES, macSHA1, nil}, {TLS_RSA_WITH_3DES_EDE_CBC_SHA, 24, 20, 8, rsaKA, 0, cipher3DES, macSHA1, nil}, + {TLS_RSA_WITH_SM4_SM3, 16, 32, 16, rsaKA, 0, cipherSM4, macSM3, nil}, } // CheckSuiteRSA checks whether cipher suite using RSA key argreement @@ -126,6 +129,8 @@ func CheckSuiteRSA(id uint16) bool { return true case TLS_RSA_WITH_3DES_EDE_CBC_SHA: return true + case TLS_RSA_WITH_SM4_SM3: + return true } return false } @@ -206,6 +211,14 @@ func cipherAES(key, iv []byte, isRead bool) interface{} { return cipher.NewCBCEncrypter(block, iv) } +func cipherSM4(key, iv []byte, isRead bool) interface{} { + block, _ := sm4.NewCipher(key) + if isRead { + return cipher.NewCBCDecrypter(block, iv) + } + return cipher.NewCBCEncrypter(block, iv) +} + // macSHA1 returns a macFunction for the given protocol version. func macSHA1(version uint16, key []byte) macFunction { if version == VersionSSL30 { @@ -219,6 +232,10 @@ func macSHA1(version uint16, key []byte) macFunction { return tls10MAC{hmac.New(sha1.New, key)} } +func macSM3(version uint16, key []byte) macFunction { + return sm3MAC{hmac.New(sm3.New, key)} +} + type macFunction interface { Size() int MAC(digestBuf, seq, header, data []byte) []byte @@ -335,6 +352,23 @@ func aeadChaCha20Poly1305(key, fixedNonce []byte) cipher.AEAD { return &xorNonceAEAD{nonce1, nonce2, aead} } +type sm3MAC struct { + h hash.Hash +} + +func (s sm3MAC) Size() int { + return s.h.Size() +} + +func (s sm3MAC) MAC(digestBuf, seq, header, data []byte) []byte { + s.h.Reset() + s.h.Write(seq) + s.h.Write(header) + s.h.Write(data) + res := s.h.Sum(digestBuf[:0]) + return res +} + // ssl30MAC implements the SSLv3 MAC function, as defined in // www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt section 5.2.3.1 type ssl30MAC struct { @@ -441,6 +475,7 @@ const ( TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 uint16 = 0xc02b TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xcca8 TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xcca9 + TLS_RSA_WITH_SM4_SM3 uint16 = 0xe019 // TLS_FALLBACK_SCSV isn't a standard cipher suite but an indicator // that the client is doing version fallback. See @@ -469,6 +504,7 @@ var cipherSuiteTextMap = map[uint16]string{ TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256: "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256: "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256", TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256: "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256", + TLS_RSA_WITH_SM4_SM3: "TLS_RSA_WITH_SM4_SM3", } func CipherSuiteText(suite uint16) string { diff --git a/go.mod b/go.mod index bcc225f46..a9a14fcc0 100644 --- a/go.mod +++ b/go.mod @@ -12,9 +12,10 @@ require ( github.com/oschwald/geoip2-golang v1.4.0 github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7 github.com/spaolacci/murmur3 v1.1.0 + github.com/tjfoc/gmsm v1.3.0 github.com/zmap/go-iptree v0.0.0-20170831022036-1948b1097e25 golang.org/x/crypto v0.0.0-20200117160349-530e935923ad - golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa + golang.org/x/net v0.0.0-20200226121028-0de0cce0169b golang.org/x/sys v0.0.0-20200121082415-34d275377bf9 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect gopkg.in/gcfg.v1 v1.2.3 diff --git a/go.sum b/go.sum index 30b0ca140..ee3550898 100644 --- a/go.sum +++ b/go.sum @@ -29,14 +29,17 @@ github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/tjfoc/gmsm v1.3.0 h1:i7c6Za/IlgBvnGxYpfD7L3TGuaS+v6oGcgq+J9/ecEA= +github.com/tjfoc/gmsm v1.3.0/go.mod h1:HaUcFuY0auTiaHB9MHFGCPx5IaLhTUd2atbCFBQXn9w= github.com/zmap/go-iptree v0.0.0-20170831022036-1948b1097e25 h1:LRoXAcKX48QV4LV23W5ZtsG/MbJOgNUNvWiXwM0iLWw= github.com/zmap/go-iptree v0.0.0-20170831022036-1948b1097e25/go.mod h1:qOasALtPByO1Jk6LhgpNv6htPMK2QJfiGorUk57nO/U= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20191219195013-becbf705a915/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200117160349-530e935923ad h1:Jh8cai0fqIK+f6nG0UgPW5wFk8wmiMhM3AyciDBdtQg= golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa h1:F+8P+gmewFQYRk6JoLQLwjBCTu3mcIURZfNkVweuRKA= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b h1:0mm1VjtFUOIlE1SbDlwjYaDxZVDP2S5ou6y0gSgXHu8= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191224085550-c709ea063b76/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= From 7c2304ca2210284013fec749ba7eab992620aa22 Mon Sep 17 00:00:00 2001 From: Derek Date: Fri, 13 Mar 2020 17:48:45 +0800 Subject: [PATCH 004/111] Tweak IsIPv4Address in bfe_util (#288) --- bfe_util/net_util/ip.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bfe_util/net_util/ip.go b/bfe_util/net_util/ip.go index 622bc013b..1a742334f 100644 --- a/bfe_util/net_util/ip.go +++ b/bfe_util/net_util/ip.go @@ -149,11 +149,7 @@ func Uint32ToIPv4Str(ipNum uint32) string { // return: // bool func IsIPv4Address(input string) bool { - ip := net.ParseIP(input).To4() - if ip == nil { - return false - } - return true + return net.ParseIP(input).To4() != nil } // IsPrivateIp Check to see if an ip is in a private subnet. From 3c01ecc762b21a8ee953e56d2b38f5f607a2fb37 Mon Sep 17 00:00:00 2001 From: Derek Date: Fri, 13 Mar 2020 17:50:17 +0800 Subject: [PATCH 005/111] Tweak bfe_util/ipdict (#286) --- bfe_util/ipdict/ip_loc_table.go | 3 +- bfe_util/ipdict/ipdict_test.go | 13 +++---- bfe_util/ipdict/txt_load/txt_info.go | 3 +- bfe_util/ipdict/txt_load/txt_load_test.go | 45 +++++++++++------------ 4 files changed, 31 insertions(+), 33 deletions(-) diff --git a/bfe_util/ipdict/ip_loc_table.go b/bfe_util/ipdict/ip_loc_table.go index 462613636..ac1d4b103 100644 --- a/bfe_util/ipdict/ip_loc_table.go +++ b/bfe_util/ipdict/ip_loc_table.go @@ -16,6 +16,7 @@ package ipdict import ( "bytes" + "errors" "fmt" "net" "sort" @@ -99,7 +100,7 @@ func (t *IpLocationTable) Add(startIP, endIP net.IP, location string) error { } if t.offset >= t.maxSize { - return fmt.Errorf("Add():caused by table is full") + return errors.New("Add():caused by table is full") } startIP16 := startIP.To16() diff --git a/bfe_util/ipdict/ipdict_test.go b/bfe_util/ipdict/ipdict_test.go index 59aa0e163..c83d4f556 100644 --- a/bfe_util/ipdict/ipdict_test.go +++ b/bfe_util/ipdict/ipdict_test.go @@ -15,7 +15,6 @@ package ipdict import ( - "bytes" "fmt" "net" "testing" @@ -30,13 +29,13 @@ func checkEqual(src, dst ipPairs) bool { return false } for i := 0; i < len(src); i++ { - if !bytes.Equal(src[i].startIP, dst[i].startIP) { + if !src[i].startIP.Equal(dst[i].startIP) { fmt.Printf("checkEqual(): start element [%d] and [%d] are not equal!\n", src[i].startIP, dst[i].startIP) return false } - if !bytes.Equal(src[i].endIP, dst[i].endIP) { + if !src[i].endIP.Equal(dst[i].endIP) { fmt.Printf("checkEqual(): end element [%d] and [%d] are not equal!\n", src[i].endIP, dst[i].endIP) return false @@ -156,11 +155,11 @@ func TestSwap_Case0(t *testing.T) { p.Swap(0, 1) - if !bytes.Equal(ip1, p[1].startIP) || !bytes.Equal(ip1, p[1].endIP) { + if !ip1.Equal(p[1].startIP) || !ip1.Equal(p[1].endIP) { t.Errorf("Swap(): %s and %s swap failed!", ipStr1, ipStr2) } - if !bytes.Equal(ip2, p[0].startIP) || !bytes.Equal(ip2, p[0].endIP) { + if !ip2.Equal(p[0].startIP) || !ip2.Equal(p[0].endIP) { t.Errorf("Swap(): %s and %s swap failed!", ipStr1, ipStr2) } @@ -177,11 +176,11 @@ func TestSwap_Case0(t *testing.T) { p2.Swap(0, 1) - if !bytes.Equal(ip1, p2[1].startIP) || !bytes.Equal(ip1, p2[1].endIP) { + if !ip1.Equal(p2[1].startIP) || !ip1.Equal(p2[1].endIP) { t.Errorf("Swap(): %s and %s swap failed!", ipStr1, ipStr2) } - if !bytes.Equal(ip2, p2[0].startIP) || !bytes.Equal(ip2, p2[0].endIP) { + if !ip2.Equal(p2[0].startIP) || !ip2.Equal(p2[0].endIP) { t.Errorf("Swap(): %s and %s swap failed!", ipStr1, ipStr2) } } diff --git a/bfe_util/ipdict/txt_load/txt_info.go b/bfe_util/ipdict/txt_load/txt_info.go index 9bb5603d8..378713130 100644 --- a/bfe_util/ipdict/txt_load/txt_info.go +++ b/bfe_util/ipdict/txt_load/txt_info.go @@ -16,7 +16,6 @@ package txt_load import ( "bufio" - "bytes" "encoding/json" "fmt" "net" @@ -132,7 +131,7 @@ func getActualFileInfo(path string) (*MetaInfo, error) { } // insert start ip and end ip into dict - if bytes.Equal(startIP, endIP) { + if startIP.Equal(endIP) { singleIPCounter += 1 } else { pairIPCounter += 1 diff --git a/bfe_util/ipdict/txt_load/txt_load_test.go b/bfe_util/ipdict/txt_load/txt_load_test.go index 2a2e704c8..072f146e6 100644 --- a/bfe_util/ipdict/txt_load/txt_load_test.go +++ b/bfe_util/ipdict/txt_load/txt_load_test.go @@ -15,7 +15,6 @@ package txt_load import ( - "bytes" "net" "testing" ) @@ -32,39 +31,39 @@ func TestCheckSplit_Case0(t *testing.T) { line = "1.1.1.1 2.2.2.2" startIP, endIP, err = checkSplit(line, " ") - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("2.2.2.2")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("2.2.2.2")) || err != nil { t.Error("TestCheckSplit():", err) } line = "1.1.1.1" startIP, endIP, err = checkSplit(line, " ") - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("1.1.1.1")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("1.1.1.1")) || err != nil { t.Error("TestCheckSplit():", err) } line = "1.1.1.1 2.2.2.2" startIP, endIP, err = checkSplit(line, " ") - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("2.2.2.2")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("2.2.2.2")) || err != nil { t.Error("TestCheckSplit():", err) } line = "1.1.1.1 \t\t 2.2.2.2" startIP, endIP, err = checkSplit(line, " ") - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("2.2.2.2")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("2.2.2.2")) || err != nil { t.Error("TestCheckSplit():", err) } line = "1::1 \t\t 1::FFFF" startIP, endIP, err = checkSplit(line, " ") - if !bytes.Equal(startIP, net.ParseIP("1::1")) || - !bytes.Equal(endIP, net.ParseIP("1::FFFF")) || + if !startIP.Equal(net.ParseIP("1::1")) || + !endIP.Equal(net.ParseIP("1::FFFF")) || err != nil { t.Error("TestCheckSplit():", err) } @@ -113,47 +112,47 @@ func TestCheckLine_Case0(t *testing.T) { line = "1.1.1.1 2.2.2.2" startIP, endIP, err = checkLine(line) - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("2.2.2.2")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("2.2.2.2")) || err != nil { t.Error("TestCheckLine():", err) } line = "1.1.1.1" startIP, endIP, err = checkLine(line) - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("1.1.1.1")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("1.1.1.1")) || err != nil { t.Error("TestCheckLine():", err) } line = "1.1.1.1 2.2.2.2" startIP, endIP, err = checkLine(line) - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("2.2.2.2")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("2.2.2.2")) || err != nil { t.Error("TestCheckLine():", err) } line = "1.1.1.1 \t\t 2.2.2.2" startIP, endIP, err = checkLine(line) - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("2.2.2.2")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("2.2.2.2")) || err != nil { t.Error("TestCheckLine():", err) } line = "1.1.1.1\t\t \t\t2.2.2.2" startIP, endIP, err = checkLine(line) - if !bytes.Equal(startIP, net.ParseIP("1.1.1.1")) || - !bytes.Equal(endIP, net.ParseIP("2.2.2.2")) || + if !startIP.Equal(net.ParseIP("1.1.1.1")) || + !endIP.Equal(net.ParseIP("2.2.2.2")) || err != nil { t.Error("TestCheckLine():", err) } line = "1::1\t\t \t\t1::FFFF" startIP, endIP, err = checkLine(line) - if !bytes.Equal(startIP, net.ParseIP("1::1")) || - !bytes.Equal(endIP, net.ParseIP("1::FFFF")) || + if !startIP.Equal(net.ParseIP("1::1")) || + !endIP.Equal(net.ParseIP("1::FFFF")) || err != nil { t.Error("TestCheckLine():", err) } From 01c7617ef4b48f3baeecdb5b0b916dacf411191e Mon Sep 17 00:00:00 2001 From: Derek Date: Fri, 13 Mar 2020 17:52:41 +0800 Subject: [PATCH 006/111] Update staticcheck.conf (#287) --- staticcheck.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staticcheck.conf b/staticcheck.conf index 40a040d0b..d6d2f3455 100644 --- a/staticcheck.conf +++ b/staticcheck.conf @@ -1,4 +1,4 @@ -checks = ["all", "-ST1000", "-ST1003", "-ST1016"] +checks = ["all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1005"] initialisms = ["ACL", "API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "QPS", "RAM", "RPC", "SLA", From 8467bce909f58196a5fa86dcf3635eb737174df3 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sun, 15 Mar 2020 10:52:21 +0800 Subject: [PATCH 007/111] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index faa34f828..634f8c33a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unrelease] +### Added +- Support TLS protocol with SM related ciphersuites + + ## [v0.7.0] - 2020-02-26 ### Added - mod_access support NCSA Common Log Format(CLF) and W3C Extended Log Format(ELF) @@ -25,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fix a bug that causes invalid ips are parsed and treated as domain names + ## [v0.6.0] - 2020-01-21 ### Added - Add mod_prison to limit the amount of requests a user can make in a given period of time. @@ -115,6 +121,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Flexible plugin framework to extend functionality. Based on the framework, developer can add new features rapidly - Detailed built-in metrics available for service status monitor +[Unrelease]: https://github.com/baidu/bfe/compare/v0.6.0...HEAD [v0.7.0]: https://github.com/baidu/bfe/compare/v0.6.0...v0.7.0 [v0.6.0]: https://github.com/baidu/bfe/compare/v0.5.0...v0.6.0 [v0.5.0]: https://github.com/baidu/bfe/compare/v0.4.0...v0.5.0 From afaefa4bea6f70831f099ba30f91bfd406442c0f Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sun, 15 Mar 2020 10:59:08 +0800 Subject: [PATCH 008/111] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4d1b7e266..80227de98 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,6 +3,7 @@ | Name | Github Account | | ---- | -------------- | +| Caiyuan Yang | jansci621 | | Chongmiao Liu | lcmmhcc | | Derek Zheng | shanhuhai5739 | | Jie Liu | freeHackOfJeff | @@ -12,6 +13,7 @@ | Lihua Chen | clh651188968 | | Limei Xiao | limeix | | Lu Guo | guolu60 | +| Lujie Zheng | ilujiez | | Miao Zhang | mileszhang2016 | | Min Dai | daimg | | Ming Lin | zhugelianglongming | From 1bc394bb05a4243ec8c8a9e35452fe72a25cec9c Mon Sep 17 00:00:00 2001 From: kaiyuzheng Date: Mon, 23 Mar 2020 10:54:01 +0800 Subject: [PATCH 009/111] Update docs about cluster conf (#291) --- .../cluster_conf/cluster_table.data.md | 43 ++++++++----------- .../configuration/cluster_conf/gslb.data.md | 29 +++++++------ 2 files changed, 33 insertions(+), 39 deletions(-) diff --git a/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md b/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md index c9d60f97a..f83c71729 100644 --- a/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md +++ b/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md @@ -1,31 +1,24 @@ -# 简介 +# 配置简介 cluster_table.data配置文件记录各后端集群包含的子集群及实例 -# 配置 - -| 配置项 | 类型 | 描述 | -| ------- | ------ | -------------------------------------------------------------- | -| Version | String | 配置版本 | -| Config | Map | 各集群信息配置。Key代表集群名称,Value代表集群信息 | - -## Cluster -Cluster记录集群信息,类型为Map> -- Key代表子集群名称 -- Value代表子集群包含的实例信息列表 - -## Backend -Backend记录后端实例信息 - -| 配置项 | 类型 | 描述 | -| ------- | ------ | ----------- | -| Addr | String | 实例监听地址 | -| Port | Int | 实例监听端口 | -| Weight | Int | 实例权重 | -| Name | String | 实例名称 | - - -# 示例 +# 配置描述 + +| 配置项 | 描述 | +| ------- | -------------------------------------------------------------- | +| Version | String
配置文件版本 | +| Config | Object
各集群信息配置 | +| Config{k} | String
集群名称 | +| Config{v} | Object
集群详细配置信息 | +| Config{v}.{k} | String
子集群名称 | +| Config{v}.{v} | Object
子集群包含的实例信息列表 | +| Config{v}.{v}[] | Object
实例详细信息 | +| Config{v}.{v}[].Addr | String
实例监听地址 | +| Config{v}.{v}[].Port | Integer
实例监听端口 | +| Config{v}.{v}[].Weight | Integer
实例权重 | +| Config{v}.{v}[].Addr | String
实例名称 | + +# 配置示例 ``` { diff --git a/docs/zh_cn/configuration/cluster_conf/gslb.data.md b/docs/zh_cn/configuration/cluster_conf/gslb.data.md index 796750a88..af62541b2 100644 --- a/docs/zh_cn/configuration/cluster_conf/gslb.data.md +++ b/docs/zh_cn/configuration/cluster_conf/gslb.data.md @@ -1,21 +1,22 @@ -# 简介 +# 配置简介 gslb.data配置文件记录各集群内的多个子集群之间分流比例(GSLB)。 -# 配置 +# 配置描述 -| 配置项 | 类型 | 描述 | -| -------- | ------ | ---------------------------------------------- | -| Clusters | Map | 各集群中子集群的分流比例;Key代表集群名称,Value代表集群内子集群之间分流比例 | -| Hostname | String | 配置文件生成来源信息 | -| Ts | String | 配置文件生成的时间戳 | - -## GSLBConf -Cluster记录集群内子集群之间分流比例,类型为Map -- Key代表子集群名称(注:保留关键字GSLB_BLACKHOLE代表黑洞子集群,分配到该子集群的流量将被丢弃,用于过载保护) -- Value代表分流权重(注:取值范围0~100;各子集群分流权重之和应等于100) - -# 示例 +| 配置项 | 描述 | +| -------- | ---------------------------------------------- | +| Hostname | String
配置文件生成来源信息 | +| Ts | String
配置文件生成的时间戳 | +| Clusters | Object
各集群中子集群的分流比例 | +| Clusters{k} | String
集群名称 | +| Clusters{v} | Object
集群内子集群之间分流比例 | +| Clusters{v}.{k} | String
子集群名称 | +| Clusters{v}.{v} | Integer
子集群承接流量的比例 | + * 注: + * 子集群名称保留关键字 GSLB_BLACKHOLE 代表黑洞子集群,分配到该子集群的流量将被丢弃,用于过载保护 + * 子集群承接流量的比例取值范围 0~100,各子集群分流权重之和应等于 100 +# 配置示例 ``` { From c66fbd21e9b82f3cf7c0d91ea15388f9e0e18cbf Mon Sep 17 00:00:00 2001 From: kaiyuzheng Date: Tue, 24 Mar 2020 10:38:25 +0800 Subject: [PATCH 010/111] Update config docs for mod_access (#294) --- .../configuration/mod_access/mod_access.md | 38 +++++++++++-------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/docs/zh_cn/configuration/mod_access/mod_access.md b/docs/zh_cn/configuration/mod_access/mod_access.md index 8951bfcc2..b1b25b71d 100644 --- a/docs/zh_cn/configuration/mod_access/mod_access.md +++ b/docs/zh_cn/configuration/mod_access/mod_access.md @@ -1,14 +1,26 @@ -# 简介 - +# 模块简介 mod_access模块以特定格式记录请求日志和会话日志。 - -# 配置 - -- 模块配置文件 - - conf/mod_access/mod_access.conf - +# 基础配置 +## 配置描述 +### 模块日志配置 +| 配置项 | 描述 | +| ---------------------| ------------------------------------------- | +| LogPrefix | String
日志文件前缀名称 | +| LogDir | String
access日志文件目录 | +| RotateWhen | String
日志切割时间,支持 M/H/D/MIDNIGHT/NEXTHOUR | +| BackupCount | Integer
最大的日志存储数量 | +### 日志模板配置 +| 配置项 | 描述 | +| --------------------- | ------------------------------------------- | +| RequestTemplate | String
请求日志模板 | +| SessionTemplate | String
会话日志模板 | + * 注: + * RequestTemplate/SessionTemplate 中 $开头的代表变量, 支持的变量列表详见"日志变量"章节说明 + * RequestTemplate 还支持以下几种内置模板,如配置 RequestTemplate = COMMON打印CLF日志 + * COMMON:Common Log Format; 等价于配置 RequestTemplate = $host - - $request_time \\"$request_line\\" $status_code $res_len + * COMBINED:Combined Log Format; 等价于配置 RequestTemplate = $host - - $request_time \\"$request_line\\" $status_code $res_len \\"${Referer}req_header\\" \\"${User-Agent}req_header\\" +## 配置示例 ``` [Log] # filename prefix for log @@ -32,14 +44,8 @@ mod_access模块以特定格式记录请求日志和会话日志。 ``` - * 注: - * RequestTemplate/SessionTemplate 中 $开头的代表变量, 支持的变量列表详见"变量"章节说明 - * RequestTemplate 还支持以下几种内置模板,如配置 RequestTemplate = COMMON打印CLF日志 - * COMMON:Common Log Format; 等价于配置 RequestTemplate = $host - - $request_time \\"$request_line\\" $status_code $res_len - * COMBINED:Combined Log Format; 等价于配置 RequestTemplate = $host - - $request_time \\"$request_line\\" $status_code $res_len \\"${Referer}req_header\\" \\"${User-Agent}req_header\\" - -# 变量 +# 日志变量 ## 请求日志变量 From c76d102ac43425e69bfe9c3d1a86cd658200ae81 Mon Sep 17 00:00:00 2001 From: YuqiXiao Date: Tue, 24 Mar 2020 11:24:22 +0800 Subject: [PATCH 011/111] mod_prison: remove useless code (#296) --- bfe_modules/mod_prison/rules.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bfe_modules/mod_prison/rules.go b/bfe_modules/mod_prison/rules.go index 4b5f7c49b..fb7bb4b6e 100644 --- a/bfe_modules/mod_prison/rules.go +++ b/bfe_modules/mod_prison/rules.go @@ -14,14 +14,9 @@ package mod_prison -import ( - "sync" -) - type prisonRules struct { ruleList []prisonRule // prison rule list for one product ruleMap map[string]*prisonRule // name => prison rule - lock sync.Mutex } func newPrisonRules(ruleConfList PrisonRuleConfList) (*prisonRules, error) { From d80daccd9640e884a0f1dd544b9b387b60cd5658 Mon Sep 17 00:00:00 2001 From: 45736735 <52365563+45736735@users.noreply.github.com> Date: Tue, 24 Mar 2020 12:49:23 +0800 Subject: [PATCH 012/111] Tweak naming convention in bfe_util/ip_dict (#295) --- bfe_util/ipdict/txt_load/txt_load.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bfe_util/ipdict/txt_load/txt_load.go b/bfe_util/ipdict/txt_load/txt_load.go index e03643645..0120970e9 100644 --- a/bfe_util/ipdict/txt_load/txt_load.go +++ b/bfe_util/ipdict/txt_load/txt_load.go @@ -30,11 +30,11 @@ import ( var ( // file version not change, needn't load the file - ERR_NO_NEED_UPDATE = errors.New("Version no change no need update") + ErrNoNeedUpdate = errors.New("Version no change no need update") // line num of file larger than maxline configured - ERR_MAX_LINE_EXCEED = errors.New("Max line exceed") + ErrMaxLineExceed = errors.New("Max line exceed") // wrong meta info - ERR_WRONG_META_INFO = errors.New("Wrong meta info") + ErrWrongMetaInfo = errors.New("Wrong meta info") ) type TxtFileLoader struct { @@ -131,7 +131,7 @@ func (f TxtFileLoader) CheckAndLoad(curVersion string) (*ipdict.IPItems, error) // check version if newVersion == curVersion && newVersion != "" { - return nil, ERR_NO_NEED_UPDATE + return nil, ErrNoNeedUpdate } // init counter for singleIP & pairIP @@ -185,7 +185,7 @@ func (f TxtFileLoader) CheckAndLoad(curVersion string) (*ipdict.IPItems, error) //sort dict ipItems.Sort() ipItems.Version = newVersion - return ipItems, ERR_MAX_LINE_EXCEED + return ipItems, ErrMaxLineExceed } // if ipcounter > max ipnum @@ -193,7 +193,7 @@ func (f TxtFileLoader) CheckAndLoad(curVersion string) (*ipdict.IPItems, error) //sort dict ipItems.Sort() ipItems.Version = newVersion - return ipItems, ERR_MAX_LINE_EXCEED + return ipItems, ErrMaxLineExceed } } From ea170aa5df703fed7ad040a5cfc8fda7857a4a06 Mon Sep 17 00:00:00 2001 From: linzhichao Date: Thu, 16 Apr 2020 11:57:17 +0800 Subject: [PATCH 013/111] standardize configuration description style of tls_conf-server_cert_conf.data.md --- .../tls_conf/server_cert_conf.data.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/docs/en_us/configuration/tls_conf/server_cert_conf.data.md b/docs/en_us/configuration/tls_conf/server_cert_conf.data.md index d7f50b8fd..442ce381d 100644 --- a/docs/en_us/configuration/tls_conf/server_cert_conf.data.md +++ b/docs/en_us/configuration/tls_conf/server_cert_conf.data.md @@ -6,9 +6,15 @@ server_cert_conf.data records the config for server certificate and private key | Config Item | Description | | ----------- | ------------------------------------------------------------ | -| Version | String
Time of generating config file | -| Default | String
Name of default cert.
- default cert must be configed | -| CertConf | Struct
Cert list
- cert name can not be "BFE_DEFAULT_CERT"
- ServerCertFile: path of server certificate
- ServerKeyFile: path of private key
- OcspResponseFile: path of OCSP Stple (oprional) | +| Version | String
Version of configure file | +| Config | Object
Server certificate configuration information | +| Config.Default | String
Name of default cert
- Default cert must be configured
- Default cert must be included in cert list {CertConf} | +| Config.CertConf | Object
Cert list | +| Config.CertConf{k} | String
Name of cert
- Cert name can not be "BFE_DEFAULT_CERT" | +| Config.CertConf{v} | Object
Cert related file path | +| Config.CertConf{v}.ServerCertFile | String
Path of server certificate | +| Config.CertConf{v}.ServerKeyFile | String
Path of private key | +| Config.CertConf{v}.OcspResponseFile | String
Path of OCSP Stple (optional) | # Example ``` @@ -18,8 +24,8 @@ server_cert_conf.data records the config for server certificate and private key "Default": "example.org", "CertConf": { "example.org": { - "ServerCertFile": "../conf/tls_conf/certs/server.crt", - "ServerKeyFile" : "../conf/tls_conf/certs/server.key" + "ServerCertFile": "tls_conf/certs/server.crt", + "ServerKeyFile" : "tls_conf/certs/server.key" } } } From 7d821b45f13a71a47c1a2f4b3c9914822da0fd33 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 16 Apr 2020 16:41:27 +0800 Subject: [PATCH 014/111] Update VERSION and CHANGELOG.md (#418) --- CHANGELOG.md | 4 ++-- VERSION | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3586b3d90..3cefe49b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unrelease] +## [v0.9.0] - 2020-04-16 ### Added - Support loading dynamic modules that may be written and complied by thirdparty vendors - Add mod_auth_jwt for JWT authentication @@ -146,7 +146,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Flexible plugin framework to extend functionality. Based on the framework, developer can add new features rapidly - Detailed built-in metrics available for service status monitor -[Unrelease]: https://github.com/baidu/bfe/compare/v0.8.0...HEAD +[v0.9.0]: https://github.com/baidu/bfe/compare/v0.8.0...v0.9.0 [v0.8.0]: https://github.com/baidu/bfe/compare/v0.7.0...v0.8.0 [v0.7.0]: https://github.com/baidu/bfe/compare/v0.6.0...v0.7.0 [v0.6.0]: https://github.com/baidu/bfe/compare/v0.5.0...v0.6.0 diff --git a/VERSION b/VERSION index c70836ca5..ac39a106c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.0-dev +0.9.0 From 79e196ef4da8b1bb77b33b411bac2112bcddb7d1 Mon Sep 17 00:00:00 2001 From: linzhichao Date: Thu, 16 Apr 2020 17:52:11 +0800 Subject: [PATCH 015/111] standardize configuration description style of tls_rule_conf.data.md --- .../tls_conf/tls_rule_conf.data.md | 30 +++++++++++-------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md index e6ed0f9b0..cc01633f5 100644 --- a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md @@ -4,18 +4,24 @@ tls_rule_conf.data records the tls protocol config # Configuration -| Config Item | Description | -| ----------------- | ----------------------------------------------------------------------- | -| Version | String
Version of config file | -| DefaultNextProtos | String Array
Default application layer protocols over TLS | -| Config | Struct
Tls rule config. Key: unique label, Value: tls rule detail | -| CertName | String
Name of server certificate (Defined in server_cert_conf.data) | -| NextProtos | String Array
TLS application layer protocol
- if empty, default http/1.1 | -| Grade | String
TLS Security grade (A+, A, B, C) | -| ClientAuth | Bool
Enable TLS Client Authentication | -| ClientCAName | String
Name of Client CA certificate | -| VipConf | String Array
List of VIP addresses | -| SniConf | String Array
List of hostnames (optional) | +| Config Item | Description | +| ----------------------- | ------------------------------------------------------------------------------ | +| Version | String
Version of configure file | +| Config | Object
TLS rule config. | +| Config.{k} | String
Unique label | +| Config.{v} | Object
TLS rule detail | +| Config.{v}.CertName | String
Name of server certificate (Note: defined in server_cert_conf.data) | +| Config.{v}.NextProtos | Object
TLS application layer protocol list
- Default is ["http/1.1"] | +| Config.{v}.NextProtos[] | String
TLS application layer protocol
- Contains h2, spdy/3.1, http/1.1 | +| Config.{v}.Grade | String
TLS Security grade, Contains A+, A, B, C | +| Config.{v}.ClientAuth | Bool
Enable TLS Client Authentication | +| Config.{v}.ClientCAName | String
Name of Client CA certificate | +| Config.{v}.VipConf | Object Array
List of VIP addresses (Note: priority is given to TLS configuration based on VIP) | +| Config.{v}.VipConf[] | String Array
VIP | +| Config.{v}.SniConf | Object Array
List of hostnames (optional)
- (Note: when TLS configuration cannot be determined according to VIP, SNI is used to determine TLS configuration) | +| Config.{v}.SniConf[] | String Array
Hostname | +| DefaultNextProtos | Object
Default(Supported) application layer protocols over TLS | +| DefaultNextProtos[] | String
TLS application layer protocol
- Contains h2, spdy/3.1, http/1.1 | # Example From ab2179cad5e738208b0040240c29f5b76eb4eeeb Mon Sep 17 00:00:00 2001 From: lxiaozhic <49981651+lxiaozhic@users.noreply.github.com> Date: Thu, 16 Apr 2020 18:31:13 +0800 Subject: [PATCH 016/111] Update zh_cn/operation/reload.md (#422) --- docs/zh_cn/operation/reload.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/zh_cn/operation/reload.md b/docs/zh_cn/operation/reload.md index c51e3a05b..0257ba6c4 100644 --- a/docs/zh_cn/operation/reload.md +++ b/docs/zh_cn/operation/reload.md @@ -16,7 +16,7 @@ monitorPort = 8421 * reload接口仅允许使用localhost访问(127.0.0.1/::1) * reload接口支持GET请求 * 示例:curl http://localhost:8421/reload/server_data_conf 将重新加载分流转发配置 -* 完整的reload接口列表可访问http://localhost:8421/reload查看 +* 完整的reload接口列表可访问http://localhost:8421/reload 查看 ## 接口说明 @@ -24,11 +24,11 @@ monitorPort = 8421 | 功能名称 | 默认配置文件 | 热加载接口 | | ----------------------- | ---------------------------- | ----------------- | -| 分流转发 | server_data_conf/host_rule.data
server_data_conf/vip_rule.data
server_data_conf/route_rule.data
server_data_conf/cluster_conf.data | /reload/server_data_conf | -| 子集群内负载均衡 | cluster_conf/cluster_table.data
cluster_conf/gslb.data | /reload/gslb_data_conf | +| 内容路由 | server_data_conf/host_rule.data
server_data_conf/vip_rule.data
server_data_conf/route_rule.data
server_data_conf/cluster_conf.data | /reload/server_data_conf | +| 负载均衡 | cluster_conf/cluster_table.data
cluster_conf/gslb.data | /reload/gslb_data_conf | | 名字解析 | server_data_conf/name_conf.data | /reload/name_conf | | TLS规则 | tls_conf/server_cert_conf.data
tls_conf/tls_rule_conf.data | /reload/tls_conf | -| TLS session ticket key | tls_conf/session_ticket_key.data | /reload/tls_session_ticket_key | +| TLS session ticket key | tls_conf/session_ticket_key.data | /reload/tls_session_ticket_key | ### 扩展模块 From 4f5c4edadd3c51b06267c91e1792cf8f29d320ac Mon Sep 17 00:00:00 2001 From: lxiaozhic <49981651+lxiaozhic@users.noreply.github.com> Date: Thu, 16 Apr 2020 18:37:14 +0800 Subject: [PATCH 017/111] Update en_us/operation/reload.md (#423) --- docs/en_us/operation/reload.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/en_us/operation/reload.md b/docs/en_us/operation/reload.md index 3f4e55007..cebda150e 100644 --- a/docs/en_us/operation/reload.md +++ b/docs/en_us/operation/reload.md @@ -22,12 +22,12 @@ monitorPort = 8421 ### basic function -| function | default config file | reload interface | -| ----------------------- | ---------------------------- | ----------------- | -| route | server_data_conf/host_rule.data
server_data_conf/vip_rule.data
server_data_conf/route_rule.data
server_data_conf/cluster_conf.data | /reload/server_data_conf | -| gslb | cluster_conf/cluster_table.data
cluster_conf/gslb.data | /reload/gslb_data_conf | -| name conf | server_data_conf/name_conf.data | /reload/name_conf | -| TLS rule | tls_conf/server_cert_conf.data
tls_conf/tls_rule_conf.data | /reload/tls_conf | +| function | default config file | reload interface | +| ---------------------- | ---------------------------- | ----------------- | +| routing | server_data_conf/host_rule.data
server_data_conf/vip_rule.data
server_data_conf/route_rule.data
server_data_conf/cluster_conf.data | /reload/server_data_conf | +| balancing | cluster_conf/cluster_table.data
cluster_conf/gslb.data | /reload/gslb_data_conf | +| name conf | server_data_conf/name_conf.data | /reload/name_conf | +| TLS rule | tls_conf/server_cert_conf.data
tls_conf/tls_rule_conf.data | /reload/tls_conf | | TLS session ticket key | tls_conf/session_ticket_key.data | /reload/tls_session_ticket_key | ### extension module From fbb3c2e7dfb86c061775d9089df009c9de5c185f Mon Sep 17 00:00:00 2001 From: kaiyuzheng Date: Fri, 17 Apr 2020 14:55:17 +0800 Subject: [PATCH 018/111] mod_compress: support brotli algorithm (#417) --- bfe_modules/mod_compress/action.go | 25 +++- bfe_modules/mod_compress/brotli_filter.go | 67 +++++++++++ .../mod_compress/brotli_filter_test.go | 113 ++++++++++++++++++ bfe_modules/mod_compress/mod_compress.go | 63 ++++++++-- go.mod | 3 +- go.sum | 4 + 6 files changed, 255 insertions(+), 20 deletions(-) create mode 100644 bfe_modules/mod_compress/brotli_filter.go create mode 100644 bfe_modules/mod_compress/brotli_filter_test.go diff --git a/bfe_modules/mod_compress/action.go b/bfe_modules/mod_compress/action.go index 70635cb8e..b67a966fc 100644 --- a/bfe_modules/mod_compress/action.go +++ b/bfe_modules/mod_compress/action.go @@ -20,8 +20,13 @@ import ( "fmt" ) +import ( + "github.com/andybalholm/brotli" +) + const ( - ActionGzip = "GZIP" + ActionGzip = "GZIP" + ActionBrotli = "BROTLI" ) type ActionFile struct { @@ -41,13 +46,21 @@ func ActionFileCheck(conf *ActionFile) error { return errors.New("no Cmd") } - if *conf.Cmd != ActionGzip { + switch *conf.Cmd { + case ActionGzip: + if *conf.Quality < gzip.HuffmanOnly || *conf.Quality > gzip.BestCompression { + return fmt.Errorf("Quality should be [%d, %d]", + gzip.HuffmanOnly, gzip.BestCompression) + } + case ActionBrotli: + if *conf.Quality < brotli.BestSpeed || *conf.Quality > brotli.BestCompression { + return fmt.Errorf("Quality should be [%d, %d]", + brotli.BestSpeed, brotli.BestCompression) + } + default: return fmt.Errorf("invalid cmd: %s", *conf.Cmd) } - if *conf.Quality < gzip.HuffmanOnly || *conf.Quality > gzip.BestCompression { - return fmt.Errorf("Quality should be [%d, %d]", - gzip.HuffmanOnly, gzip.BestCompression) - } + if *conf.FlushSize < 64 || *conf.FlushSize > 4096 { return fmt.Errorf("FlushSize should be [64, 4096]") } diff --git a/bfe_modules/mod_compress/brotli_filter.go b/bfe_modules/mod_compress/brotli_filter.go new file mode 100644 index 000000000..499cb0f5f --- /dev/null +++ b/bfe_modules/mod_compress/brotli_filter.go @@ -0,0 +1,67 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_compress + +import ( + "bytes" + "io" +) + +import ( + "github.com/andybalholm/brotli" +) + +type BrotliFilter struct { + source io.ReadCloser + writer *brotli.Writer + buffer bytes.Buffer + flushSize int64 + closed bool +} + +func NewBrotliFilter(source io.ReadCloser, level int, size int) (b *BrotliFilter, err error) { + b = new(BrotliFilter) + b.writer = brotli.NewWriterLevel(&b.buffer, level) + b.source = source + b.flushSize = int64(size) + return b, nil +} + +func (b *BrotliFilter) Read(p []byte) (n int, err error) { + c, err := io.CopyN(b.writer, b.source, b.flushSize) + if err != nil && err != io.EOF { + return 0, err + } + + if c != 0 { + if err := b.writer.Flush(); err != nil { + return 0, err + } + } else if !b.closed { + b.closed = true + if err := b.writer.Close(); err != nil { + return 0, err + } + } + + return b.buffer.Read(p) +} + +func (b *BrotliFilter) Close() error { + if err := b.source.Close(); err != nil { + return err + } + return nil +} diff --git a/bfe_modules/mod_compress/brotli_filter_test.go b/bfe_modules/mod_compress/brotli_filter_test.go new file mode 100644 index 000000000..c683dc997 --- /dev/null +++ b/bfe_modules/mod_compress/brotli_filter_test.go @@ -0,0 +1,113 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_compress + +import ( + "io" + "io/ioutil" + "testing" +) + +func benchmarkBrFilter(b *testing.B, dataSize, quality, flushSize int) { + data := prepareTestData(dataSize) + + b.SetBytes(int64(dataSize)) + b.ResetTimer() + for i := 0; i < b.N; i++ { + source := prepareSource(data) + g, err := NewBrotliFilter(source, quality, flushSize) + if err != nil { + b.Errorf("NewBrFilter error: %s", err) + return + } + io.Copy(ioutil.Discard, g) + } +} + +func BenchmarkBrFilterSize1K(b *testing.B) { + benchmarkBrFilter(b, 1024, 4, 1024) +} + +func BenchmarkBrFilterSize4K(b *testing.B) { + benchmarkBrFilter(b, 4*1024, 4, 1024) +} + +func BenchmarkBrFilterSize16K(b *testing.B) { + benchmarkBrFilter(b, 16*1024, 4, 1024) +} + +func BenchmarkBrFilterSize64K(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 4, 1024) +} + +func BenchmarkBrFilterFlush512(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 4, 512) +} + +func BenchmarkBrFilterFlush1K(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 4, 1024) +} + +func BenchmarkBrFilterFlush2K(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 4, 2*1024) +} + +func BenchmarkBrFilterLevel0(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 0, 4*1024) +} + +func BenchmarkBrFilterLevel1(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 1, 512) +} + +func BenchmarkBrFilterLevel2(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 2, 512) +} + +func BenchmarkBrFilterLevel3(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 3, 512) +} + +func BenchmarkBrFilterLevel4(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 4, 1024) +} + +func BenchmarkBrFilterLevel5(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 5, 1024) +} + +func BenchmarkBrFilterLevel6(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 6, 1024) +} + +func BenchmarkBrFilterLevel7(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 7, 1024) +} + +func BenchmarkBrFilterLevel8(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 8, 2*1024) +} + +func BenchmarkBrFilterLevel9(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 9, 2*1024) +} + +func BenchmarkBrFilterLevel10(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 10, 2*1024) +} + +func BenchmarkBrFilterLevel11(b *testing.B) { + benchmarkBrFilter(b, 64*1024, 11, 2*1024) +} diff --git a/bfe_modules/mod_compress/mod_compress.go b/bfe_modules/mod_compress/mod_compress.go index 3baf86626..5ec3f9515 100644 --- a/bfe_modules/mod_compress/mod_compress.go +++ b/bfe_modules/mod_compress/mod_compress.go @@ -33,9 +33,14 @@ import ( ) const ( - EncodeGzip = "gzip" + // support encode type of Accept-Encoding header + EncodeGzip = "gzip" + EncodeBrotli = "br" + + // support encode type of Content-Encoding header EncodeIdentity = "identity" - ModCompress = "mod_compress" + + ModCompress = "mod_compress" ) var ( @@ -43,10 +48,12 @@ var ( ) type ModuleCompressState struct { - ReqTotal *metrics.Counter - ReqSupportCompress *metrics.Counter - ReqMatchCompressRule *metrics.Counter - ResEncodeCompress *metrics.Counter + ReqTotal *metrics.Counter + ReqSupportCompress *metrics.Counter + ReqMatchCompressRule *metrics.Counter + ResEncodeCompress *metrics.Counter + ResEncodeGzipCompress *metrics.Counter + ResEncodeBrCompress *metrics.Counter } type ModuleCompress struct { @@ -84,12 +91,18 @@ func (m *ModuleCompress) loadProductRuleConf(query url.Values) error { return nil } -func checkSupportCompress(req *bfe_basic.Request) bool { - header := req.HttpRequest.Header - acceptEncoding := header.GetDirect("Accept-Encoding") +func checkSupportCompress(acceptEncoding string) bool { + return checkSupportGzipCompress(acceptEncoding) || checkSupportBrotliCompress(acceptEncoding) +} + +func checkSupportGzipCompress(acceptEncoding string) bool { return bfe_http.HasToken(acceptEncoding, EncodeGzip) } +func checkSupportBrotliCompress(acceptEncoding string) bool { + return bfe_http.HasToken(acceptEncoding, EncodeBrotli) +} + func (m *ModuleCompress) getCompressRule(req *bfe_basic.Request) (*compressRule, error) { if openDebug { log.Logger.Debug("%s check request", m.name) @@ -119,7 +132,8 @@ func (m *ModuleCompress) getCompressRule(req *bfe_basic.Request) (*compressRule, } func (m *ModuleCompress) compressHandler(req *bfe_basic.Request, res *bfe_http.Response) int { - if !checkSupportCompress(req) { + acceptEncoding := req.HttpRequest.Header.GetDirect("Accept-Encoding") + if !checkSupportCompress(acceptEncoding) { return bfe_module.BfeHandlerGoOn } m.state.ReqSupportCompress.Inc(1) @@ -134,12 +148,35 @@ func (m *ModuleCompress) compressHandler(req *bfe_basic.Request, res *bfe_http.R return bfe_module.BfeHandlerGoOn } - res.Body, err = NewGzipFilter(res.Body, rule.Action.Quality, rule.Action.FlushSize) - if err != nil { + switch rule.Action.Cmd { + case ActionGzip: + if !checkSupportGzipCompress(acceptEncoding) { + return bfe_module.BfeHandlerGoOn + } + + res.Body, err = NewGzipFilter(res.Body, rule.Action.Quality, rule.Action.FlushSize) + if err != nil { + return bfe_module.BfeHandlerGoOn + } + + res.Header.Set("Content-Encoding", EncodeGzip) + m.state.ResEncodeGzipCompress.Inc(1) + case ActionBrotli: + if !checkSupportBrotliCompress(acceptEncoding) { + return bfe_module.BfeHandlerGoOn + } + + res.Body, err = NewBrotliFilter(res.Body, rule.Action.Quality, rule.Action.FlushSize) + if err != nil { + return bfe_module.BfeHandlerGoOn + } + + res.Header.Set("Content-Encoding", EncodeBrotli) + m.state.ResEncodeBrCompress.Inc(1) + default: return bfe_module.BfeHandlerGoOn } - res.Header.Set("Content-Encoding", EncodeGzip) res.Header.Del("Content-Length") m.state.ResEncodeCompress.Inc(1) diff --git a/go.mod b/go.mod index 3509fa211..b9a473a90 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,7 @@ go 1.13 require ( github.com/abbot/go-http-auth v0.4.1-0.20181019201920-860ed7f246ff + github.com/andybalholm/brotli v1.0.0 github.com/asergeyev/nradix v0.0.0-20170505151046-3872ab85bb56 // indirect github.com/baidu/go-lib v0.0.0-20191217050907-c1bbbad6b030 github.com/gomodule/redigo v2.0.0+incompatible @@ -24,7 +25,7 @@ require ( golang.org/x/crypto v0.0.0-20200117160349-530e935923ad golang.org/x/net v0.0.0-20200226121028-0de0cce0169b golang.org/x/sys v0.0.0-20200121082415-34d275377bf9 - golang.org/x/tools v0.0.0-20200413015812-1f08ef6002a8 // indirect + golang.org/x/tools v0.0.0-20200416061724-5744cfde56ed // indirect gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect gopkg.in/gcfg.v1 v1.2.3 gopkg.in/square/go-jose.v2 v2.4.1 diff --git a/go.sum b/go.sum index 823394129..02ccad571 100644 --- a/go.sum +++ b/go.sum @@ -4,6 +4,8 @@ github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWX github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/abbot/go-http-auth v0.4.1-0.20181019201920-860ed7f246ff h1:9ZqcMQ0fB+ywKACVjGfZM4C7Uq9D5rq0iSmwIjX187k= github.com/abbot/go-http-auth v0.4.1-0.20181019201920-860ed7f246ff/go.mod h1:Cz6ARTIzApMJDzh5bRMSUou6UMSp0IEXg9km/ci7TJM= +github.com/andybalholm/brotli v1.0.0 h1:7UCwP93aiSfvWpapti8g88vVVGp2qqtGyePsSuDafo4= +github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y= github.com/asergeyev/nradix v0.0.0-20170505151046-3872ab85bb56 h1:Wi5Tgn8K+jDcBYL+dIMS1+qXYH2r7tpRAyBgqrWfQtw= github.com/asergeyev/nradix v0.0.0-20170505151046-3872ab85bb56/go.mod h1:8BhOLuqtSuT5NZtZMwfvEibi09RO3u79uqfHZzfDTR4= github.com/baidu/go-lib v0.0.0-20191217050907-c1bbbad6b030 h1:P8Bwa/d4AEH5qnHroVFI4hUqvy/1kh6UsfbDI+JJ2GI= @@ -123,6 +125,8 @@ golang.org/x/tools v0.0.0-20191216052735-49a3e744a425 h1:VvQyQJN0tSuecqgcIxMWnnf golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200413015812-1f08ef6002a8 h1:1TnYi6m8UoNpEKS1wxgR8GcHPe2YDgYoDjAedVuX+Q0= golang.org/x/tools v0.0.0-20200413015812-1f08ef6002a8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200416061724-5744cfde56ed h1:PoCteSKZ5i8y25HqKXNerIf2SJtKTwy6dMdrcG/ZJVc= +golang.org/x/tools v0.0.0-20200416061724-5744cfde56ed/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= From 061cd3a9aabac6b4b34bc9c2aeb0250cd4a3221f Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Fri, 17 Apr 2020 18:50:02 +0800 Subject: [PATCH 019/111] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ac39a106c..29b2d3ea5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.0 +0.10.0-dev From 15302ac4786d5d27a9213bcdf852519f02f12cd6 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Sat, 18 Apr 2020 19:32:01 +0800 Subject: [PATCH 020/111] Update mod_access.md (#426) --- docs/en_us/configuration/mod_access/mod_access.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/en_us/configuration/mod_access/mod_access.md b/docs/en_us/configuration/mod_access/mod_access.md index 2e605ae36..82230e0a2 100644 --- a/docs/en_us/configuration/mod_access/mod_access.md +++ b/docs/en_us/configuration/mod_access/mod_access.md @@ -7,6 +7,15 @@ The mod_access module writes request logs and session logs in the specified form ## Description conf/mod_access/mod_access.conf +| Config Item | Description | +| ----------- | --------------------------------------- | +| Log.LogPrefix | String
filename prefix for log | +| Log.LogDir | String
directory of log files | +| Log.RotateWhen | String
inteval to rotate log file | +| Log.BackupCount | Integer
max number of rotated log files | +| Template.RequestTemplate | String
template of request log | +| Template.SessionTemplate | String
template of session log | + ## Example ``` [Log] From 5e3c8ddba73f9b545d594f039c77678108675f96 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Sat, 18 Apr 2020 19:41:21 +0800 Subject: [PATCH 021/111] Update host_rule.data.md (#429) --- docs/en_us/configuration/server_data_conf/host_rule.data.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/en_us/configuration/server_data_conf/host_rule.data.md b/docs/en_us/configuration/server_data_conf/host_rule.data.md index 22415ea65..a1bb2997c 100644 --- a/docs/en_us/configuration/server_data_conf/host_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/host_rule.data.md @@ -8,8 +8,12 @@ host_rule.data records the domain names for each product. | -------------- | ------------------------------------------------------------ | | Version | String
Verson of config file | | DefaultProduct | String
Default product name. | -| HostTags | Struct
HostTag list for each product | | Hosts | Struct
Host list for each HostTag | +| Hosts{k} | Struct
HostTag | +| Hosts{v} | String
Host list for HostTag | +| HostTags | Struct
HostTag list for each product | +| HostTags{k} | Struct
Product name | +| HostTags{v} | Struct
HostTag list for product | # Example From c4accc67ad4837e10b4882a4ab2693b8c9e438f6 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Sat, 18 Apr 2020 20:56:35 +0800 Subject: [PATCH 022/111] Update vip_rule.data.md (#432) --- docs/en_us/configuration/server_data_conf/vip_rule.data.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en_us/configuration/server_data_conf/vip_rule.data.md b/docs/en_us/configuration/server_data_conf/vip_rule.data.md index 9d706a98f..8b3243023 100644 --- a/docs/en_us/configuration/server_data_conf/vip_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/vip_rule.data.md @@ -8,6 +8,8 @@ vip_rule.data records vip lists for each product. | ----------- | ------------------------------------------------------------ | | Version | String
Version of config file | | Vips | Struct
Vip list for each product | +| Vips{k} | String
Product name | +| Vips{v} | Struct
Vip list for product | # Example From 6fcdda8f62ba2bbe6453083c09f7094bf87c8ffd Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Sat, 18 Apr 2020 20:57:35 +0800 Subject: [PATCH 023/111] Update route_rule.data.md (#431) --- .../en_us/configuration/server_data_conf/route_rule.data.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/en_us/configuration/server_data_conf/route_rule.data.md b/docs/en_us/configuration/server_data_conf/route_rule.data.md index 2024e916f..c9f43bd79 100644 --- a/docs/en_us/configuration/server_data_conf/route_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/route_rule.data.md @@ -7,7 +7,11 @@ route_rule.data records route rule config for each product. | Config Item | Description | | ----------- | ------------------------------------------------------------ | | Version | String
Time of generating config file | -| ProductRule | Struct
Route rules for each product. Key is product name, Value is a ordered list of route rules. Route rule include:
- Cond: condition expression
- ClusterName: destination cluster name | +| ProductRule | Struct
Route rules for each product | +| ProductRule{k} | String
Product name | +| ProductRule{v} | Struct
A ordered list of route rules | +| ProductRule{v}[].Cond | String
Condition expression | +| ProductRule{v}[].ClusterName | String
Destination cluster name | # Example From 475cc82b43a14b9997c1583920ad15f55ebb8e75 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Sat, 18 Apr 2020 20:58:56 +0800 Subject: [PATCH 024/111] Update name_conf.data.md (#430) --- .../en_us/configuration/server_data_conf/name_conf.data.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/en_us/configuration/server_data_conf/name_conf.data.md b/docs/en_us/configuration/server_data_conf/name_conf.data.md index 3b4c46cb1..865d830c8 100644 --- a/docs/en_us/configuration/server_data_conf/name_conf.data.md +++ b/docs/en_us/configuration/server_data_conf/name_conf.data.md @@ -7,7 +7,12 @@ name_conf.data records the mapping between service name and service instances. | Config Item | Description | | ----------- | ------------------------------------------------------------ | | Version | String
Version of config file | -| Config | Struct
Mapping between name and instances. Key: service name. Value: a list of instances. Instance:
- Host: instance address
- Port: instance port
- Weight: instance weight | +| Config | Struct
Mapping between service name and instances | +| Config{k} | String
Service name | +| Config{v} | Struct
A list of instances | +| Config{v}[].Host | String
Instance address | +| Config{v}[].Port | Integer
Instance port | +| Config{v}[].Weight | Integer
Instance weight | # Example From 236c06b3a95fbafd794cbbcb1a32af751202ded3 Mon Sep 17 00:00:00 2001 From: Lujie Zheng <61052531+ilujiez@users.noreply.github.com> Date: Sun, 19 Apr 2020 17:29:03 +0800 Subject: [PATCH 025/111] Update DataPath of zh_cn docs (#433) --- docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md | 2 +- docs/zh_cn/configuration/mod_compress/mod_compress.md | 2 +- docs/zh_cn/configuration/mod_header/mod_header.md | 2 +- docs/zh_cn/configuration/mod_redirect/mod_redirect.md | 2 +- docs/zh_cn/configuration/mod_rewrite/mod_rewrite.md | 2 +- docs/zh_cn/configuration/mod_static/mod_static.md | 2 +- docs/zh_cn/configuration/mod_tag/mod_tag.md | 2 +- .../configuration/mod_trust_clientip/mod_trust_clientip.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md b/docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md index 57ce5f913..08895add3 100644 --- a/docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md +++ b/docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md @@ -15,7 +15,7 @@ mod_auth_basic支持HTTP基本认证。 ``` [basic] -DataPath = ../conf/mod_auth_basic/auth_basic_rule.data +DataPath = mod_auth_basic/auth_basic_rule.data [log] OpenDebug = false diff --git a/docs/zh_cn/configuration/mod_compress/mod_compress.md b/docs/zh_cn/configuration/mod_compress/mod_compress.md index d3ce1acc9..02d50a512 100644 --- a/docs/zh_cn/configuration/mod_compress/mod_compress.md +++ b/docs/zh_cn/configuration/mod_compress/mod_compress.md @@ -15,7 +15,7 @@ mod_compress支持响应压缩,如:GZIP压缩。 - 模块配置文件 ``` [basic] -DataPath = ../conf/mod_compress/compress_rule.data +DataPath = mod_compress/compress_rule.data [log] OpenDebug = false diff --git a/docs/zh_cn/configuration/mod_header/mod_header.md b/docs/zh_cn/configuration/mod_header/mod_header.md index cd50b155c..b533a24f6 100644 --- a/docs/zh_cn/configuration/mod_header/mod_header.md +++ b/docs/zh_cn/configuration/mod_header/mod_header.md @@ -14,7 +14,7 @@ ## 配置示例 ``` [basic] -DataPath = ../conf/mod_header/header_rule.data +DataPath = mod_header/header_rule.data ``` # 规则配置 diff --git a/docs/zh_cn/configuration/mod_redirect/mod_redirect.md b/docs/zh_cn/configuration/mod_redirect/mod_redirect.md index 59dc7726a..259fbb520 100644 --- a/docs/zh_cn/configuration/mod_redirect/mod_redirect.md +++ b/docs/zh_cn/configuration/mod_redirect/mod_redirect.md @@ -14,7 +14,7 @@ ## 配置示例 ``` [basic] -DataPath = ../conf/mod_redirect/redirect.data +DataPath = mod_redirect/redirect.data ``` # 规则配置 diff --git a/docs/zh_cn/configuration/mod_rewrite/mod_rewrite.md b/docs/zh_cn/configuration/mod_rewrite/mod_rewrite.md index f9dc50462..69f106cb7 100644 --- a/docs/zh_cn/configuration/mod_rewrite/mod_rewrite.md +++ b/docs/zh_cn/configuration/mod_rewrite/mod_rewrite.md @@ -14,7 +14,7 @@ ## 配置示例 ``` [basic] -DataPath = ../conf/mod_rewrite/rewrite.data +DataPath = mod_rewrite/rewrite.data ``` # 规则配置 diff --git a/docs/zh_cn/configuration/mod_static/mod_static.md b/docs/zh_cn/configuration/mod_static/mod_static.md index ff161e396..2b5323555 100644 --- a/docs/zh_cn/configuration/mod_static/mod_static.md +++ b/docs/zh_cn/configuration/mod_static/mod_static.md @@ -15,7 +15,7 @@ mod_static支持返回静态文件作为响应。 ## 配置示例 ``` [basic] -DataPath = .mod_static/static_rule.data +DataPath = mod_static/static_rule.data MimeTypePath = mod_static/mime_type.data ``` diff --git a/docs/zh_cn/configuration/mod_tag/mod_tag.md b/docs/zh_cn/configuration/mod_tag/mod_tag.md index 43db690b8..d807063bf 100644 --- a/docs/zh_cn/configuration/mod_tag/mod_tag.md +++ b/docs/zh_cn/configuration/mod_tag/mod_tag.md @@ -15,7 +15,7 @@ ## 配置示例 ``` [Basic] -DataPath = ../conf/mod_tag/tag_rule.data +DataPath = mod_tag/tag_rule.data [Log] OpenDebug = false diff --git a/docs/zh_cn/configuration/mod_trust_clientip/mod_trust_clientip.md b/docs/zh_cn/configuration/mod_trust_clientip/mod_trust_clientip.md index ae2c5cd00..b4a2ce1f4 100644 --- a/docs/zh_cn/configuration/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/zh_cn/configuration/mod_trust_clientip/mod_trust_clientip.md @@ -14,7 +14,7 @@ ## 配置示例 ``` [basic] -DataPath = ../conf/mod_trust_clientip/trust_client_ip.data +DataPath = mod_trust_clientip/trust_client_ip.data ``` # 字典配置 From a5808dda1d97e1672508d2dc45595e9a5c4272a5 Mon Sep 17 00:00:00 2001 From: Lujie Zheng <61052531+ilujiez@users.noreply.github.com> Date: Sun, 19 Apr 2020 17:36:02 +0800 Subject: [PATCH 026/111] Update DataPath of en_us docs (#434) --- docs/en_us/configuration/mod_auth_basic/mod_auth_basic.md | 2 +- docs/en_us/configuration/mod_compress/mod_compress.md | 2 +- docs/en_us/configuration/mod_header/mod_header.md | 2 +- docs/en_us/configuration/mod_redirect/mod_redirect.md | 2 +- docs/en_us/configuration/mod_rewrite/mod_rewrite.md | 2 +- docs/en_us/configuration/mod_static/mod_static.md | 2 +- .../configuration/mod_trust_clientip/mod_trust_clientip.md | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/en_us/configuration/mod_auth_basic/mod_auth_basic.md b/docs/en_us/configuration/mod_auth_basic/mod_auth_basic.md index 6e20bc7ed..86945c5aa 100644 --- a/docs/en_us/configuration/mod_auth_basic/mod_auth_basic.md +++ b/docs/en_us/configuration/mod_auth_basic/mod_auth_basic.md @@ -15,7 +15,7 @@ conf/mod_auth_basic/mod_auth_basic.conf ``` [basic] -DataPath = ../conf/mod_auth_basic/auth_basic_rule.data +DataPath = mod_auth_basic/auth_basic_rule.data [log] OpenDebug = false diff --git a/docs/en_us/configuration/mod_compress/mod_compress.md b/docs/en_us/configuration/mod_compress/mod_compress.md index 62e8c9ad9..4b2b9a906 100644 --- a/docs/en_us/configuration/mod_compress/mod_compress.md +++ b/docs/en_us/configuration/mod_compress/mod_compress.md @@ -14,7 +14,7 @@ conf/mod_compress/mod_compress.conf ## Example ``` [basic] -DataPath = ../conf/mod_compress/compress_rule.data +DataPath = mod_compress/compress_rule.data [log] OpenDebug = false diff --git a/docs/en_us/configuration/mod_header/mod_header.md b/docs/en_us/configuration/mod_header/mod_header.md index 2058b738b..731990815 100644 --- a/docs/en_us/configuration/mod_header/mod_header.md +++ b/docs/en_us/configuration/mod_header/mod_header.md @@ -15,7 +15,7 @@ conf/mod_header/mod_header.conf ``` [basic] -DataPath = ../conf/mod_header/header_rule.data +DataPath = mod_header/header_rule.data ``` # Rule Configuration diff --git a/docs/en_us/configuration/mod_redirect/mod_redirect.md b/docs/en_us/configuration/mod_redirect/mod_redirect.md index 6ee33bb6f..61d9fac37 100644 --- a/docs/en_us/configuration/mod_redirect/mod_redirect.md +++ b/docs/en_us/configuration/mod_redirect/mod_redirect.md @@ -15,7 +15,7 @@ conf/mod_redirect/mod_redirect.conf ``` [basic] -DataPath = ../conf/mod_redirect/redirect.data +DataPath = mod_redirect/redirect.data ``` # Rule configuration diff --git a/docs/en_us/configuration/mod_rewrite/mod_rewrite.md b/docs/en_us/configuration/mod_rewrite/mod_rewrite.md index fef4d9459..47d5d7428 100644 --- a/docs/en_us/configuration/mod_rewrite/mod_rewrite.md +++ b/docs/en_us/configuration/mod_rewrite/mod_rewrite.md @@ -15,7 +15,7 @@ conf/mod_rewrite/mod_rewrite.conf ``` [basic] -DataPath = ../conf/mod_rewrite/rewrite.data +DataPath = mod_rewrite/rewrite.data ``` # Rule configuration diff --git a/docs/en_us/configuration/mod_static/mod_static.md b/docs/en_us/configuration/mod_static/mod_static.md index 6124e5252..90957ee55 100644 --- a/docs/en_us/configuration/mod_static/mod_static.md +++ b/docs/en_us/configuration/mod_static/mod_static.md @@ -14,7 +14,7 @@ conf/mod_static/mod_static.conf ## Example ``` [basic] -DataPath = ../conf/mod_static/static_rule.data +DataPath = mod_static/static_rule.data ``` # Rule configuration diff --git a/docs/en_us/configuration/mod_trust_clientip/mod_trust_clientip.md b/docs/en_us/configuration/mod_trust_clientip/mod_trust_clientip.md index 332e64a32..4987e6bc7 100644 --- a/docs/en_us/configuration/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/en_us/configuration/mod_trust_clientip/mod_trust_clientip.md @@ -14,7 +14,7 @@ conf/mod_trust_clientip/mod_trust_clientip.conf ## Example ``` [basic] -DataPath = ../conf/mod_trust_clientip/trust_client_ip.data +DataPath = mod_trust_clientip/trust_client_ip.data ``` # Rule configuraiton From 7c240f0f7ed6073d6a19819cb361a4fcd9e8c789 Mon Sep 17 00:00:00 2001 From: Lujie Zheng <61052531+ilujiez@users.noreply.github.com> Date: Sun, 19 Apr 2020 18:17:00 +0800 Subject: [PATCH 027/111] Update configuration/mod_block docs (#435) --- docs/en_us/configuration/mod_block/mod_block.md | 4 ++-- docs/zh_cn/configuration/mod_block/mod_block.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en_us/configuration/mod_block/mod_block.md b/docs/en_us/configuration/mod_block/mod_block.md index 81906191b..80fd08ce4 100644 --- a/docs/en_us/configuration/mod_block/mod_block.md +++ b/docs/en_us/configuration/mod_block/mod_block.md @@ -16,10 +16,10 @@ conf/mod_block/mod_block.conf ``` [basic] # product rule config file path -ProductRulePath = ../conf/mod_block/block_rules.data +ProductRulePath = mod_block/block_rules.data # global ip blacklist file path -IPBlacklistPath = ../conf/mod_block/ip_blacklist.data +IPBlacklistPath = mod_block/ip_blacklist.data ``` Format of IPBlacklistPath file diff --git a/docs/zh_cn/configuration/mod_block/mod_block.md b/docs/zh_cn/configuration/mod_block/mod_block.md index 4c74e8a16..e55ff7c6f 100644 --- a/docs/zh_cn/configuration/mod_block/mod_block.md +++ b/docs/zh_cn/configuration/mod_block/mod_block.md @@ -24,10 +24,10 @@ ``` [basic] # product rule config file path -ProductRulePath = ../conf/mod_block/block_rules.data +ProductRulePath = mod_block/block_rules.data # global ip blacklist file path -IPBlacklistPath = ../conf/mod_block/ip_blacklist.data +IPBlacklistPath = mod_block/ip_blacklist.data ``` # 规则配置 From 5a2976950899e9f2360289a586697056a0f80847 Mon Sep 17 00:00:00 2001 From: kaiyuzheng Date: Mon, 20 Apr 2020 13:51:53 +0800 Subject: [PATCH 028/111] Update configuration docs for mod_compress (#436) --- docs/en_us/configuration/mod_compress/mod_compress.md | 1 + docs/zh_cn/configuration/mod_compress/mod_compress.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/en_us/configuration/mod_compress/mod_compress.md b/docs/en_us/configuration/mod_compress/mod_compress.md index 4b2b9a906..1034451c2 100644 --- a/docs/en_us/configuration/mod_compress/mod_compress.md +++ b/docs/en_us/configuration/mod_compress/mod_compress.md @@ -40,6 +40,7 @@ OpenDebug = false | Action | Descrition | | ------------------------| ------------------------------------| | GZIP | Compress response using gzip method | +| BROTLI | Compress response using brotli method | ## Example ``` diff --git a/docs/zh_cn/configuration/mod_compress/mod_compress.md b/docs/zh_cn/configuration/mod_compress/mod_compress.md index 02d50a512..055ff528a 100644 --- a/docs/zh_cn/configuration/mod_compress/mod_compress.md +++ b/docs/zh_cn/configuration/mod_compress/mod_compress.md @@ -41,6 +41,7 @@ OpenDebug = false | 动作 | 含义 | | ------------------------| -------------------------| | GZIP | gzip压缩 | +| BROTLI | brotli压缩 | ## 配置示例 ``` From 1e1c8da304a423b30fd17c4ab8eb35f900bba273 Mon Sep 17 00:00:00 2001 From: icyang <783991106@qq.com> Date: Thu, 23 Apr 2020 16:09:59 +0800 Subject: [PATCH 029/111] Support primitive req_host_tag_in (#440) --- bfe_basic/condition/build.go | 7 +++++++ bfe_basic/condition/build_test.go | 19 +++++++++++++++++++ bfe_basic/condition/parser/semant.go | 1 + bfe_basic/condition/primitive.go | 9 +++++++++ 4 files changed, 36 insertions(+) diff --git a/bfe_basic/condition/build.go b/bfe_basic/condition/build.go index 2de1c45db..e52de0207 100644 --- a/bfe_basic/condition/build.go +++ b/bfe_basic/condition/build.go @@ -154,6 +154,13 @@ func buildPrimitive(node *parser.CallExpr) (Condition, error) { fetcher: &HostFetcher{}, matcher: matcher, }, nil + case "req_host_tag_in": + return &PrimitiveCond{ + name: node.Fun.Name, + node: node, + fetcher: &HostTagFetcher{}, + matcher: NewInMatcher(node.Args[0].Value, true), + }, nil case "req_host_regmatch": reg, err := regexp.Compile(node.Args[0].Value) if err != nil { diff --git a/bfe_basic/condition/build_test.go b/bfe_basic/condition/build_test.go index ce4825215..4c59bcf0c 100644 --- a/bfe_basic/condition/build_test.go +++ b/bfe_basic/condition/build_test.go @@ -398,3 +398,22 @@ func TestBuildTlsClientCAIn(t *testing.T) { t.Errorf("ca match ses_tls_client_ca_in(\"clientCa\")") } } + +func TestBuildHostTagIn(t *testing.T) { + cond, err := Build("req_host_tag_in(\"host_tag1|host_tag2\")") + if err != nil { + t.Fatalf("should have no error") + } + req.Route.HostTag = "host_tag1" + if !cond.Match(&req) { + t.Fatalf("should match host tag %s", req.Route.HostTag) + } + req.Route.HostTag = "host_tag2" + if !cond.Match(&req) { + t.Fatalf("should match host tag %s", req.Route.HostTag) + } + req.Route.HostTag = "host_tag3" + if cond.Match(&req) { + t.Fatalf("should not match host tag %s", req.Route.HostTag) + } +} diff --git a/bfe_basic/condition/parser/semant.go b/bfe_basic/condition/parser/semant.go index c83a290f2..fc907cb65 100644 --- a/bfe_basic/condition/parser/semant.go +++ b/bfe_basic/condition/parser/semant.go @@ -30,6 +30,7 @@ var funcProtos = map[string][]Token{ "req_proto_secure": nil, "req_host_in": {STRING}, "req_host_regmatch": {STRING}, + "req_host_tag_in": {STRING}, "req_path_in": {STRING, BOOL}, "req_path_prefix_in": {STRING, BOOL}, "req_path_suffix_in": {STRING, BOOL}, diff --git a/bfe_basic/condition/primitive.go b/bfe_basic/condition/primitive.go index 41c64bcae..46c95839d 100644 --- a/bfe_basic/condition/primitive.go +++ b/bfe_basic/condition/primitive.go @@ -90,6 +90,15 @@ func (hf *HostFetcher) Fetch(req *bfe_basic.Request) (interface{}, error) { return host, nil } +type HostTagFetcher struct{} + +func (hf *HostTagFetcher) Fetch(req *bfe_basic.Request) (interface{}, error) { + if req == nil { + return nil, fmt.Errorf("fetcher: nil pointer") + } + return req.Route.HostTag, nil +} + type ProtoFetcher struct{} func (pf *ProtoFetcher) Fetch(req *bfe_basic.Request) (interface{}, error) { From 593084417695420f4e84af4807d544ed7a8a8e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8F=E8=99=AB?= Date: Thu, 23 Apr 2020 16:18:38 +0800 Subject: [PATCH 030/111] Update introduction/forward_model.md (#441) --- docs/zh_cn/introduction/forward_model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh_cn/introduction/forward_model.md b/docs/zh_cn/introduction/forward_model.md index f395790fd..f78ae5c32 100644 --- a/docs/zh_cn/introduction/forward_model.md +++ b/docs/zh_cn/introduction/forward_model.md @@ -1,6 +1,6 @@ # BFE流量接入转发流程 -![流量接入与转发](../../introdutionn/images/traffic-forward.svg) +![流量接入与转发](../../images/traffic-forward.svg) - Step1-2:DNS解析 - 请求的域名为demo.example.com From 680fa2bf863f88de7dd1921b97821c6ab913d581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=8F=E8=99=AB?= Date: Thu, 23 Apr 2020 22:16:06 +0800 Subject: [PATCH 031/111] Update en_us/introduction/forward_model.md (#442) --- docs/en_us/introduction/forward_model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en_us/introduction/forward_model.md b/docs/en_us/introduction/forward_model.md index 4bc2583d9..a37db34f0 100644 --- a/docs/en_us/introduction/forward_model.md +++ b/docs/en_us/introduction/forward_model.md @@ -1,6 +1,6 @@ # Traffic forwarding -![Traffic Forwarding](../images/traffic-forward.svg) +![Traffic Forwarding](../../images/traffic-forward.svg) - Step1-2:DNS query - request host name:demo.example.com From b52965bad67d28c8cc06d1d6f4cac7429702069e Mon Sep 17 00:00:00 2001 From: LeroChen <137664482@qq.com> Date: Fri, 24 Apr 2020 22:04:15 +0800 Subject: [PATCH 032/111] Remove function "contains" from condition/primitive.go (#445) --- bfe_basic/condition/primitive.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bfe_basic/condition/primitive.go b/bfe_basic/condition/primitive.go index 46c95839d..695cdb046 100644 --- a/bfe_basic/condition/primitive.go +++ b/bfe_basic/condition/primitive.go @@ -536,10 +536,6 @@ func suffixIn(v string, patterns []string) bool { return false } -func contains(v, pattern string) bool { - return strings.Contains(v, pattern) -} - type UAFetcher struct{} func (uaf *UAFetcher) Fetch(req *bfe_basic.Request) (interface{}, error) { From d4ea7fac54036e66544339f04dba8e4fabc03a31 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Sun, 26 Apr 2020 12:08:28 +0800 Subject: [PATCH 033/111] Update unit test for bfe_proxy (#446) --- bfe_proxy/v1_test.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/bfe_proxy/v1_test.go b/bfe_proxy/v1_test.go index 53b7c5775..9b7f0d335 100644 --- a/bfe_proxy/v1_test.go +++ b/bfe_proxy/v1_test.go @@ -41,8 +41,9 @@ import ( ) var ( - TCP4AddressesAndPorts = strings.Join([]string{IP4_ADDR, IP4_ADDR, strconv.Itoa(PORT), strconv.Itoa(PORT)}, SEPARATOR) - TCP6AddressesAndPorts = strings.Join([]string{IP6_ADDR, IP6_ADDR, strconv.Itoa(PORT), strconv.Itoa(PORT)}, SEPARATOR) + TCP4AddressesAndPorts = strings.Join([]string{IP4_ADDR, IP4_ADDR, strconv.Itoa(PORT), strconv.Itoa(PORT)}, SEPARATOR) + TCP4AddressesAndInvalidPorts = strings.Join([]string{IP4_ADDR, IP4_ADDR, strconv.Itoa(80000), strconv.Itoa(PORT)}, SEPARATOR) + TCP6AddressesAndPorts = strings.Join([]string{IP6_ADDR, IP6_ADDR, strconv.Itoa(PORT), strconv.Itoa(PORT)}, SEPARATOR) fixtureTCP4V1 = "PROXY TCP4 " + TCP4AddressesAndPorts + CRLF + "GET /" fixtureTCP6V1 = "PROXY TCP6 " + TCP6AddressesAndPorts + CRLF + "GET /" @@ -76,6 +77,10 @@ var invalidParseV1Tests = []struct { newBufioReader([]byte("PROXY TCP4 " + TCP6AddressesAndPorts + CRLF)), ErrInvalidAddress, }, + { + newBufioReader([]byte("PROXY TCP4 " + TCP4AddressesAndInvalidPorts + CRLF)), + ErrInvalidPortNumber, + }, } func TestReadV1Invalid(t *testing.T) { From 079c8284b95fd16534fc577c8c50e1327b343450 Mon Sep 17 00:00:00 2001 From: wanjiecs <58168087+wanjiecs@users.noreply.github.com> Date: Sun, 26 Apr 2020 18:31:10 +0800 Subject: [PATCH 034/111] Tweak session_ticket_key_conf.go (#443) --- .../session_ticket_key_conf/session_ticket_key_conf.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bfe_config/bfe_tls_conf/session_ticket_key_conf/session_ticket_key_conf.go b/bfe_config/bfe_tls_conf/session_ticket_key_conf/session_ticket_key_conf.go index 8919cb4ec..d0a4dc1d6 100644 --- a/bfe_config/bfe_tls_conf/session_ticket_key_conf/session_ticket_key_conf.go +++ b/bfe_config/bfe_tls_conf/session_ticket_key_conf/session_ticket_key_conf.go @@ -28,7 +28,7 @@ import ( ) const ( - RAW_SESSION_TICKET_KEY_SIZE = 48 // bytes + RawSessionTicketKeySize = 48 // bytes ) // SessionTicketKeyConf is session ticket key config. @@ -47,7 +47,7 @@ func SessionTicketKeyConfCheck(conf SessionTicketKeyConf) error { if err != nil { return fmt.Errorf("session ticket key %s(%s)", err.Error(), conf.SessionTicketKey) } - if len(key) != RAW_SESSION_TICKET_KEY_SIZE { + if len(key) != RawSessionTicketKeySize { return fmt.Errorf("session ticket key should be 96 bytes hex string (%s)", conf.SessionTicketKey) } @@ -63,7 +63,7 @@ func rawSessionTicketKeyLoad(filename string) (SessionTicketKeyConf, error) { return config, err } - if len(data) != RAW_SESSION_TICKET_KEY_SIZE { + if len(data) != RawSessionTicketKeySize { return config, fmt.Errorf("invalid session ticket key(%d)", len(data)) } From fa3e9c2047a0625dafcca10c6953ad095dad2fee Mon Sep 17 00:00:00 2001 From: icyang <783991106@qq.com> Date: Sun, 26 Apr 2020 18:42:43 +0800 Subject: [PATCH 035/111] mod_trace support tracing based on Elastic APM (#447) --- bfe_modules/mod_trace/conf_mod_trace.go | 26 +++++- .../mod_trace/trace/elastic/elastic.go | 91 +++++++++++++++++++ conf/mod_trace/mod_trace.conf | 15 ++- .../configuration/mod_trace/mod_trace.md | 37 +++++++- .../configuration/mod_trace/mod_trace.md | 33 ++++++- go.mod | 4 +- go.sum | 32 +++++++ 7 files changed, 222 insertions(+), 16 deletions(-) create mode 100644 bfe_modules/mod_trace/trace/elastic/elastic.go diff --git a/bfe_modules/mod_trace/conf_mod_trace.go b/bfe_modules/mod_trace/conf_mod_trace.go index c0eb02297..17606535f 100644 --- a/bfe_modules/mod_trace/conf_mod_trace.go +++ b/bfe_modules/mod_trace/conf_mod_trace.go @@ -25,6 +25,7 @@ import ( import ( "github.com/baidu/bfe/bfe_modules/mod_trace/trace" + "github.com/baidu/bfe/bfe_modules/mod_trace/trace/elastic" "github.com/baidu/bfe/bfe_modules/mod_trace/trace/jaeger" "github.com/baidu/bfe/bfe_modules/mod_trace/trace/zipkin" "github.com/baidu/bfe/bfe_util" @@ -34,19 +35,28 @@ const ( defaultDataPath = "mod_trace/trace_rule.data" ) +var ( + supportedTraceAgent = map[string]bool{ + zipkin.Name: true, + jaeger.Name: true, + elastic.Name: true, + } +) + type ConfModTrace struct { Basic struct { DataPath string // The path of rule data ServiceName string // The name of this service - TraceAgent string // The type of trace agent: zipkin/jaeger + TraceAgent string // The type of trace agent: zipkin, jaeger or elastic } Log struct { OpenDebug bool } - Zipkin zipkin.Config // Settings for zipkin, only useful when TraceAgent is zipkin - Jaeger jaeger.Config // Settings for jaeger, only useful when TraceAgent is jaeger + Zipkin zipkin.Config // Settings for zipkin, only useful when TraceAgent is zipkin + Jaeger jaeger.Config // Settings for jaeger, only useful when TraceAgent is jaeger + Elastic elastic.Config // Settings for elastic, only useful when TraceAgent is elastic } func ConfLoad(filePath string, confRoot string) (*ConfModTrace, error) { @@ -73,8 +83,12 @@ func (cfg *ConfModTrace) Check(confRoot string) error { } cfg.Basic.DataPath = bfe_util.ConfPathProc(cfg.Basic.DataPath, confRoot) - if cfg.Basic.TraceAgent != jaeger.Name && cfg.Basic.TraceAgent != zipkin.Name { - return fmt.Errorf("ModTrace.TraceAgent must be %s or %s", jaeger.Name, zipkin.Name) + if len(cfg.Basic.TraceAgent) == 0 { + return fmt.Errorf("ModTrace.TraceAgent not set") + } + + if _, ok := supportedTraceAgent[cfg.Basic.TraceAgent]; !ok { + return fmt.Errorf("ModTrace.TraceAgent %s is not supported", cfg.Basic.TraceAgent) } return nil @@ -86,6 +100,8 @@ func (cfg *ConfModTrace) GetTraceConfig() trace.TraceAgent { return &cfg.Jaeger case zipkin.Name: return &cfg.Zipkin + case elastic.Name: + return &cfg.Elastic default: return &cfg.Jaeger } diff --git a/bfe_modules/mod_trace/trace/elastic/elastic.go b/bfe_modules/mod_trace/trace/elastic/elastic.go new file mode 100644 index 000000000..224ab4632 --- /dev/null +++ b/bfe_modules/mod_trace/trace/elastic/elastic.go @@ -0,0 +1,91 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Copyright (c) 2016-2020 Containous SAS + +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: + +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. + +package elastic + +import ( + "io" + "net/url" +) + +import ( + "github.com/opentracing/opentracing-go" + "go.elastic.co/apm" + "go.elastic.co/apm/module/apmot" + "go.elastic.co/apm/transport" +) + +// Name sets the name of this tracer. +const Name = "elastic" + +func init() { + // The APM lib uses the init() function to create a default tracer. + // So this default tracer must be disabled. + // https://github.com/elastic/apm-agent-go/blob/8dd383d0d21776faad8841fe110f35633d199a03/tracer.go#L61-L65 + apm.DefaultTracer.Close() +} + +// Config provides configuration settings for a elastic.co tracer. +type Config struct { + ServerURL string // Set the URL of the Elastic APM server + SecretToken string // Set the token used to connect to Elastic APM Server +} + +// Setup sets up the tracer. +func (c *Config) Setup(serviceName string) (opentracing.Tracer, io.Closer, error) { + // Create default transport. + tr, err := transport.NewHTTPTransport() + if err != nil { + return nil, nil, err + } + + if c.ServerURL != "" { + serverURL, err := url.Parse(c.ServerURL) + if err != nil { + return nil, nil, err + } + tr.SetServerURL(serverURL) + } + + if c.SecretToken != "" { + tr.SetSecretToken(c.SecretToken) + } + + tracer, err := apm.NewTracerOptions(apm.TracerOptions{ + ServiceName: serviceName, + Transport: tr, + }) + if err != nil { + return nil, nil, err + } + + otTracer := apmot.New(apmot.WithTracer(tracer)) + + // Without this, child spans are getting the NOOP tracer + opentracing.SetGlobalTracer(otTracer) + + return otTracer, nil, nil +} diff --git a/conf/mod_trace/mod_trace.conf b/conf/mod_trace/mod_trace.conf index f622b4f3f..5b76712ef 100644 --- a/conf/mod_trace/mod_trace.conf +++ b/conf/mod_trace/mod_trace.conf @@ -2,7 +2,7 @@ DataPath = mod_trace/trace_rule.data ServiceName = bfe -# Which trace agent to use (zipkin, jaeger) +# Which trace agent to use (zipkin, jaeger, elastic) TraceAgent = jaeger [Log] @@ -50,7 +50,7 @@ LocalAgentHostPort = 127.0.0.1:6831 # Which propagation format to use (jaeger/b3) Propagation = jaeger -# Use Zipkin 128 bit root span IDs +# Use Jaeger 128 bit root span IDs Gen128Bit = true # TraceContextHeaderName is the http header name used to propagate tracing context. @@ -63,4 +63,13 @@ CollectorEndpoint = "" CollectorUser = "" # CollectorPassword for basic http authentication when sending spans to jaeger-collector -CollectorPassword = "" \ No newline at end of file +CollectorPassword = "" + +[Elastic] +# Elastic, only useful when TraceAgent is elastic + +# Set the URL of the Elastic APM server +ServerURL = http://127.0.0.1:8200 + +# Set the token used to connect to Elastic APM Server +SecretToken = "" diff --git a/docs/en_us/configuration/mod_trace/mod_trace.md b/docs/en_us/configuration/mod_trace/mod_trace.md index c38c42365..0751855cf 100644 --- a/docs/en_us/configuration/mod_trace/mod_trace.md +++ b/docs/en_us/configuration/mod_trace/mod_trace.md @@ -40,6 +40,14 @@ Enable trace for requests based on defined rules. | Jaeger.CollectorUser | String
basic http authentication when sending spans to jaeger-collector | | Jaeger.CollectorPassword | String
basic http authentication when sending spans to jaeger-collector | +### Configuration about Elastic + +| Config Item | Description | +| ------------------------------| --------------------------------| +| Elastic.ServerURL | String
Set the URL of the Elastic APM server | +| Elastic.SecretToken | String
Set the token used to connect to Elastic APM Server | + + ## Example ### Example for Zipkin @@ -48,7 +56,7 @@ Enable trace for requests based on defined rules. DataPath = mod_trace/trace_rule.data ServiceName = bfe -# Which trace agent to use (zipkin, jaeger) +# Which trace agent to use (zipkin, jaeger, elastic) TraceAgent = zipkin [Log] @@ -71,14 +79,13 @@ SampleRate = 1.0 ``` ### Example for Jaeger - ``` [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe -# Which trace agent to use (zipkin, jaeger) -TraceAgent = zipkin +# Which trace agent to use (zipkin, jaeger, elastic) +TraceAgent = jaeger [Log] OpenDebug = false @@ -124,6 +131,28 @@ CollectorUser = "" CollectorPassword = "" ``` +### Example for Elastic +``` +[Basic] +DataPath = mod_trace/trace_rule.data +ServiceName = bfe + +# Which trace agent to use (zipkin, jaeger, elastic) +TraceAgent = elastic + +[Log] +OpenDebug = false + +[Elastic] +# Elastic, only useful when TraceAgent is elastic + +# Set the URL of the Elastic APM server +ServerURL = http://127.0.0.1:8200 + +# Set the token used to connect to Elastic APM Server +SecretToken = "" +``` + # Rule configuration ## Description diff --git a/docs/zh_cn/configuration/mod_trace/mod_trace.md b/docs/zh_cn/configuration/mod_trace/mod_trace.md index 60a41d787..598aa71ec 100644 --- a/docs/zh_cn/configuration/mod_trace/mod_trace.md +++ b/docs/zh_cn/configuration/mod_trace/mod_trace.md @@ -40,6 +40,13 @@ | Jaeger.CollectorUser | String
设置jaeger-collector认证用户名 | | Jaeger.CollectorPassword | String
设置jaeger-collector认证密码 | +### Elastic配置项 + +| 配置项 | 描述 | +| ------------------------------| -----------------------------------------| +| Elastic.ServerURL | String
设置Elastic APM server | +| Elastic.SecretToken | String
设置Elastic APM server认证token | + ## 配置示例 ### 基于Zipkin示例 @@ -49,7 +56,7 @@ DataPath = mod_trace/trace_rule.data ServiceName = bfe -# Which trace agent to use (zipkin, jaeger) +# Which trace agent to use (zipkin, jaeger, elastic) TraceAgent = zipkin [Log] @@ -77,7 +84,7 @@ SampleRate = 1.0 DataPath = mod_trace/trace_rule.data ServiceName = bfe -# Which trace agent to use (zipkin, jaeger) +# Which trace agent to use (zipkin, jaeger, elastic) TraceAgent = jaeger [Log] @@ -124,6 +131,28 @@ CollectorUser = "" CollectorPassword = "" ``` +### 基于Elastic示例 +``` +[Basic] +DataPath = mod_trace/trace_rule.data +ServiceName = bfe + +# Which trace agent to use (zipkin, jaeger, elastic) +TraceAgent = elastic + +[Log] +OpenDebug = false + +[Elastic] +# Elastic, only useful when TraceAgent is elastic + +# Set the URL of the Elastic APM server +ServerURL = http://127.0.0.1:8200 + +# Set the token used to connect to Elastic APM Server +SecretToken = "" +``` + # 规则配置 ## 配置描述 diff --git a/go.mod b/go.mod index b9a473a90..77cb044ad 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,6 @@ require ( github.com/asergeyev/nradix v0.0.0-20170505151046-3872ab85bb56 // indirect github.com/baidu/go-lib v0.0.0-20191217050907-c1bbbad6b030 github.com/gomodule/redigo v2.0.0+incompatible - github.com/kr/pretty v0.1.0 // indirect github.com/miekg/dns v1.1.29 github.com/opentracing/opentracing-go v1.1.0 github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5 @@ -21,12 +20,13 @@ require ( github.com/uber/jaeger-client-go v2.22.1+incompatible github.com/uber/jaeger-lib v2.2.0+incompatible github.com/zmap/go-iptree v0.0.0-20170831022036-1948b1097e25 + go.elastic.co/apm v1.7.2 + go.elastic.co/apm/module/apmot v1.7.2 go.uber.org/atomic v1.6.0 // indirect golang.org/x/crypto v0.0.0-20200117160349-530e935923ad golang.org/x/net v0.0.0-20200226121028-0de0cce0169b golang.org/x/sys v0.0.0-20200121082415-34d275377bf9 golang.org/x/tools v0.0.0-20200416061724-5744cfde56ed // indirect - gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect gopkg.in/gcfg.v1 v1.2.3 gopkg.in/square/go-jose.v2 v2.4.1 gopkg.in/warnings.v0 v0.1.2 // indirect diff --git a/go.sum b/go.sum index 02ccad571..fa08d9be9 100644 --- a/go.sum +++ b/go.sum @@ -6,17 +6,23 @@ github.com/abbot/go-http-auth v0.4.1-0.20181019201920-860ed7f246ff h1:9ZqcMQ0fB+ github.com/abbot/go-http-auth v0.4.1-0.20181019201920-860ed7f246ff/go.mod h1:Cz6ARTIzApMJDzh5bRMSUou6UMSp0IEXg9km/ci7TJM= github.com/andybalholm/brotli v1.0.0 h1:7UCwP93aiSfvWpapti8g88vVVGp2qqtGyePsSuDafo4= github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y= +github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= +github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/asergeyev/nradix v0.0.0-20170505151046-3872ab85bb56 h1:Wi5Tgn8K+jDcBYL+dIMS1+qXYH2r7tpRAyBgqrWfQtw= github.com/asergeyev/nradix v0.0.0-20170505151046-3872ab85bb56/go.mod h1:8BhOLuqtSuT5NZtZMwfvEibi09RO3u79uqfHZzfDTR4= github.com/baidu/go-lib v0.0.0-20191217050907-c1bbbad6b030 h1:P8Bwa/d4AEH5qnHroVFI4hUqvy/1kh6UsfbDI+JJ2GI= github.com/baidu/go-lib v0.0.0-20191217050907-c1bbbad6b030/go.mod h1:FneHDqz3wLeDGdWfRyW4CzBbCwaqesLGIFb09N80/ww= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cucumber/godog v0.8.1/go.mod h1:vSh3r/lM+psC1BPXvdkSEuNjmXfpVqrMGYAElF6hxnA= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= +github.com/elastic/go-sysinfo v1.1.1 h1:ZVlaLDyhVkDfjwPGU55CQRCRolNpc7P0BbyhhQZQmMI= +github.com/elastic/go-sysinfo v1.1.1/go.mod h1:i1ZYdU10oLNfRzq4vq62BEwD2fH8KaWh6eh0ikPT9F0= +github.com/elastic/go-windows v1.0.0/go.mod h1:TsU0Nrp7/y3+VwE82FoZF8gC/XFg/Elz6CcloAxnPgU= github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= @@ -28,6 +34,8 @@ github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8l github.com/gomodule/redigo v2.0.0+incompatible h1:K/R+8tc58AaqLkqG2Ol3Qk+DR/TlNuhuh457pBFPtt0= github.com/gomodule/redigo v2.0.0+incompatible/go.mod h1:B4C85qUVwatsJoIUNIfCRsp7qO0iAmpGFZ4EELWSbC4= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3 h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw= @@ -35,6 +43,9 @@ github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2z github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 h1:IPJ3dvxmJ4uczJe5YQdrYB16oTJlGSC/OyZDqUk9xX4= github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869/go.mod h1:cJ6Cj7dQo+O6GJNiMx+Pa94qKj+TG8ONdKHgMNIyyag= +github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 h1:rp+c0RAYOWj8l6qbCUTSiRLG/iKnW3K3/QfPPuSsBt4= +github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901/go.mod h1:Z86h9688Y0wesXCyonoVr47MasHilkuLMqGhRZ4Hpak= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= @@ -60,6 +71,8 @@ github.com/oschwald/geoip2-golang v1.4.0/go.mod h1:8QwxJvRImBH+Zl6Aa6MaIcs5YdlZS github.com/oschwald/maxminddb-golang v1.6.0 h1:KAJSjdHQ8Kv45nFIbtoLGrGWqHFajOIm7skTyz/+Dls= github.com/oschwald/maxminddb-golang v1.6.0/go.mod h1:DUJFucBg2cvqx42YmDa/+xHvb0elJtOm3o4aFQ/nb/w= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= @@ -67,7 +80,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7 h1:xoIK0ctDddBMnc74udxJYBqlo9Ylnsp1waqjLsnef20= github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7/go.mod h1:YARuvh7BUWHNhzDq2OM5tzR2RiCcN2D7sapiKyCel/M= +github.com/prometheus/procfs v0.0.0-20190425082905-87a4384529e0/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/santhosh-tekuri/jsonschema v1.2.4/go.mod h1:TEAUOeZSmIxTTuHatJzrvARHiuO9LYd+cIxzgEHCQI4= github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= @@ -84,6 +100,14 @@ github.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/zmap/go-iptree v0.0.0-20170831022036-1948b1097e25 h1:LRoXAcKX48QV4LV23W5ZtsG/MbJOgNUNvWiXwM0iLWw= github.com/zmap/go-iptree v0.0.0-20170831022036-1948b1097e25/go.mod h1:qOasALtPByO1Jk6LhgpNv6htPMK2QJfiGorUk57nO/U= +go.elastic.co/apm v1.7.2 h1:0nwzVIPp4PDBXSYYtN19+1W5V+sj+C25UjqxDVoKcA8= +go.elastic.co/apm v1.7.2/go.mod h1:tCw6CkOJgkWnzEthFN9HUP1uL3Gjc/Ur6m7gRPLaoH0= +go.elastic.co/apm/module/apmhttp v1.7.2 h1:2mRh7SwBuEVLmJlX+hsMdcSg9xaielCLElaPn/+i34w= +go.elastic.co/apm/module/apmhttp v1.7.2/go.mod h1:sTFWiWejnhSdZv6+dMgxGec2Nxe/ZKfHfz/xtRM+cRY= +go.elastic.co/apm/module/apmot v1.7.2 h1:FXvTXGvVOwc26K3llgPdxenWoPv9VdO5CQ3aAfc5lZY= +go.elastic.co/apm/module/apmot v1.7.2/go.mod h1:VD2nUkebUPrP1hqIarimIEsoM9xyuK0lO83fCx6l/Z8= +go.elastic.co/fastjson v1.0.0 h1:ooXV/ABvf+tBul26jcVViPT3sBir0PvXgibYB1IQQzg= +go.elastic.co/fastjson v1.0.0/go.mod h1:PmeUOMMtLHQr9ZS9J9owrAVg0FkaZDRZJEFTTGHtchs= go.uber.org/atomic v1.6.0 h1:Ezj3JGmsOnG1MoRWQkPBsKLe9DwWD9QeXzTRzzldNVk= go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= @@ -99,12 +123,14 @@ golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b h1:0mm1VjtFUOIlE1SbDlwjYaDxZVDP2S5ou6y0gSgXHu8= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e h1:vcxGaoTs7kV8m5Np9uUNQin4BrLOthgV7252N8V+FwY= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -112,11 +138,15 @@ golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191025021431-6c3a3bfe00ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191224085550-c709ea063b76/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200121082415-34d275377bf9 h1:N19i1HjUnR7TF7rMt8O4p3dLvqvmYyzB6ifMFmrbY50= golang.org/x/sys v0.0.0-20200121082415-34d275377bf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -151,3 +181,5 @@ gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +howett.net/plist v0.0.0-20181124034731-591f970eefbb h1:jhnBjNi9UFpfpl8YZhA9CrOqpnJdvzuiHsl/dnxl11M= +howett.net/plist v0.0.0-20181124034731-591f970eefbb/go.mod h1:vMygbs4qMhSZSc4lCUl2OEE+rDiIIJAIdR4m7MiMcm0= From 4b8084544427292c4f460819a3b4374a23422bde Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Thu, 30 Apr 2020 05:54:38 +0800 Subject: [PATCH 036/111] Tweak jaeger.go (#459) --- bfe_modules/mod_trace/trace/jaeger/jaeger.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/bfe_modules/mod_trace/trace/jaeger/jaeger.go b/bfe_modules/mod_trace/trace/jaeger/jaeger.go index 3b29b7aa2..44c543643 100644 --- a/bfe_modules/mod_trace/trace/jaeger/jaeger.go +++ b/bfe_modules/mod_trace/trace/jaeger/jaeger.go @@ -121,7 +121,5 @@ func (c *Config) Setup(componentName string) (opentracing.Tracer, io.Closer, err log.Logger.Error("Could not initialize jaeger tracer: %s", err.Error()) return nil, nil, err } - log.Logger.Debug("Jaeger tracer configured") - return opentracing.GlobalTracer(), closer, nil } From c072060d203305dcd710f3254a78a48b16795961 Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Thu, 30 Apr 2020 05:56:01 +0800 Subject: [PATCH 037/111] Tweak bfe_util/semver/semver_test.go (#460) --- bfe_util/semver/semver_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bfe_util/semver/semver_test.go b/bfe_util/semver/semver_test.go index a7bc7e3d1..187bc16aa 100644 --- a/bfe_util/semver/semver_test.go +++ b/bfe_util/semver/semver_test.go @@ -21,7 +21,7 @@ type testItem struct { valid bool } -func TestNew(t *testing.T) { +func TestNewVersion(t *testing.T) { tests := []testItem{ {version: "0.1.0"}, {version: "1.0.0-0.3.7"}, @@ -60,7 +60,7 @@ func TestNew(t *testing.T) { } } -func TestVersion_Equal(t *testing.T) { +func TestVersionEqual(t *testing.T) { v1, err := New("1.2.3") if err != nil { t.Fatal(err) From 2d9b68f77bec846c5ae041e2400dc408152cfa17 Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Thu, 30 Apr 2020 05:56:48 +0800 Subject: [PATCH 038/111] Update modules.md (#461) --- docs/zh_cn/module/modules.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/zh_cn/module/modules.md b/docs/zh_cn/module/modules.md index 52f72ed82..e7175025c 100644 --- a/docs/zh_cn/module/modules.md +++ b/docs/zh_cn/module/modules.md @@ -9,11 +9,12 @@ - [mod_geo](configuration/mod_geo/mod_geo.md) - [mod_header](configuration/mod_header/mod_header.md) - [mod_http_code](configuration/mod_http_code/mod_http_code.md) -- [mod_logid](configuration/mod_logid/mod_logid.md) - [mod_key_log](configuration/mod_key_log/mod_key_log.md) +- [mod_logid](configuration/mod_logid/mod_logid.md) - [mod_redirect](configuration/mod_redirect/mod_redirect.md) - [mod_rewrite](configuration/mod_rewrite/mod_rewrite.md) - [mod_static](configuration/mod_static/mod_static.md) - [mod_tag](configuration/mod_tag/mod_tag.md) +- [mod_trace](configuration/mod_trace/mod_trace.md) - [mod_trust_clientip](configuration/mod_trust_clientip/mod_trust_clientip.md) - [mod_userid](configuration/mod_userid/mod_userid.md) From fb99164078b1246ede42a1d672e550a0e13f2f1b Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Thu, 30 Apr 2020 05:57:56 +0800 Subject: [PATCH 039/111] Tweak bfe_module/bfe_callback.go (#462) --- bfe_module/bfe_callback.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bfe_module/bfe_callback.go b/bfe_module/bfe_callback.go index 3be407fa2..fc17503be 100644 --- a/bfe_module/bfe_callback.go +++ b/bfe_module/bfe_callback.go @@ -74,23 +74,23 @@ func NewBfeCallbacks() *BfeCallbacks { bfeCallbacks.callbacks = make(map[int]*HandlerList) // create handler list for each callback point - // for HANDLERS_ACCEPT + // for HandlesAccept bfeCallbacks.callbacks[HandleAccept] = NewHandlerList(HandleAccept) bfeCallbacks.callbacks[HandleHandshake] = NewHandlerList(HandleAccept) - // for HANDLERS_REQUEST + // for HandlersRequest bfeCallbacks.callbacks[HandleBeforeLocation] = NewHandlerList(HandlersRequest) bfeCallbacks.callbacks[HandleFoundProduct] = NewHandlerList(HandlersRequest) bfeCallbacks.callbacks[HandleAfterLocation] = NewHandlerList(HandlersRequest) - // for HANDLERS_FORWARD + // for HandlersForward bfeCallbacks.callbacks[HandleForward] = NewHandlerList(HandlersForward) - // for HANDLERS_RESPONSE + // for HandlersResponse bfeCallbacks.callbacks[HandleReadResponse] = NewHandlerList(HandlersResponse) bfeCallbacks.callbacks[HandleRequestFinish] = NewHandlerList(HandlersResponse) - // for HANDLERS_FINISH + // for HandlersFinish bfeCallbacks.callbacks[HandleFinish] = NewHandlerList(HandlersFinish) return bfeCallbacks From a833e48bc5b5a9a1dcb740f4f8c4bcd6059e30e9 Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Thu, 30 Apr 2020 05:59:10 +0800 Subject: [PATCH 040/111] Tweak bfe_conf/conf_session_cache.go#L29 (#463) --- bfe_config/bfe_conf/conf_session_cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfe_config/bfe_conf/conf_session_cache.go b/bfe_config/bfe_conf/conf_session_cache.go index 74883d4af..798095551 100644 --- a/bfe_config/bfe_conf/conf_session_cache.go +++ b/bfe_config/bfe_conf/conf_session_cache.go @@ -26,7 +26,7 @@ type ConfigSessionCache struct { // address for redis servers Servers string - // perfix for cache key + // prefix for cache key KeyPrefix string // config for connection (ms) From 8ba0602232907c34dfcca32a708df13a1968076d Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Thu, 30 Apr 2020 06:00:37 +0800 Subject: [PATCH 041/111] Tweak bfe_server/reverseproxy.go (#464) --- bfe_server/reverseproxy.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bfe_server/reverseproxy.go b/bfe_server/reverseproxy.go index e9418bb45..17f95367e 100644 --- a/bfe_server/reverseproxy.go +++ b/bfe_server/reverseproxy.go @@ -245,10 +245,10 @@ func (p *ReverseProxy) clusterInvoke(srv *BfeServer, cluster *bfe_cluster.BfeClu } request.SetRequestTransport(clusterBackend, clusterTransport) - log.Logger.Debug("ReverseProxy.Invoke(): before HANDLE_FORWARD backend %s:%d", + log.Logger.Debug("ReverseProxy.Invoke(): before HandleForward backend %s:%d", request.Trans.Backend.Addr, request.Trans.Backend.Port) - // Callback for HANDLE_FORWARD + // Callback for HandleForward hl := srv.CallBacks.GetHandlerList(bfe_module.HandleForward) if hl != nil { retVal := hl.FilterForward(request) @@ -260,7 +260,7 @@ func (p *ReverseProxy) clusterInvoke(srv *BfeServer, cluster *bfe_cluster.BfeClu } } - log.Logger.Debug("ReverseProxy.Invoke(): after HANDLE_FORWARD backend %s:%d", + log.Logger.Debug("ReverseProxy.Invoke(): after HandleForward backend %s:%d", request.Trans.Backend.Addr, request.Trans.Backend.Port) // set backend addr to out request @@ -426,7 +426,7 @@ func (p *ReverseProxy) FinishReq(rw bfe_http.ResponseWriter, request *bfe_basic. } }() - // Callback for HANDLE_REQUEST_FINISH + // Callback for HandleRequestFinish hl := srv.CallBacks.GetHandlerList(bfe_module.HandleRequestFinish) if hl != nil { retVal := hl.FilterResponse(request, request.HttpResponse) @@ -509,7 +509,7 @@ func (p *ReverseProxy) ServeHTTP(rw bfe_http.ResponseWriter, basicReq *bfe_basic // set clientip of original user for request setClientAddr(basicReq) - // Callback for HANDLE_BEFORE_LOCATION + // Callback for HandleBeforeLocation hl = srv.CallBacks.GetHandlerList(bfe_module.HandleBeforeLocation) if hl != nil { retVal, res = hl.FilterRequest(basicReq) From 0c0cc06d95f654c32108f32923e40dd1db69f476 Mon Sep 17 00:00:00 2001 From: icyang <783991106@qq.com> Date: Thu, 30 Apr 2020 18:29:12 +0800 Subject: [PATCH 042/111] Output verbose information about bfe (#466) --- Makefile | 4 +++- bfe.go | 24 ++++++++++++++++-------- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 3420e8b23..39c51907f 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,8 @@ endif # init bfe version BFE_VERSION ?= $(shell cat VERSION) +# init git commit id +GIT_COMMIT ?= $(shell git rev-parse HEAD) # init bfe packages BFE_PKGS := $(shell go list ./...) @@ -55,7 +57,7 @@ prepare-gen: # make compile, go build compile: test build build: - $(GOBUILD) -ldflags "-X main.version=$(BFE_VERSION)" + $(GOBUILD) -ldflags "-X main.version=$(BFE_VERSION) -X main.commit=$(GIT_COMMIT)" # make test, test your code test: test-case vet-case diff --git a/bfe.go b/bfe.go index f6da0abf2..3480f0aae 100644 --- a/bfe.go +++ b/bfe.go @@ -35,15 +35,17 @@ import ( ) var ( - help *bool = flag.Bool("h", false, "to show help") - confRoot *string = flag.String("c", "./conf", "root path of configuration") - logPath *string = flag.String("l", "./log", "dir path of log") - stdOut *bool = flag.Bool("s", false, "to show log in stdout") - showVer *bool = flag.Bool("v", false, "to show version of bfe") - debugLog *bool = flag.Bool("d", false, "to show debug log (otherwise >= info)") + help *bool = flag.Bool("h", false, "to show help") + confRoot *string = flag.String("c", "./conf", "root path of configuration") + logPath *string = flag.String("l", "./log", "dir path of log") + stdOut *bool = flag.Bool("s", false, "to show log in stdout") + showVersion *bool = flag.Bool("v", false, "to show version of bfe") + showVerbose *bool = flag.Bool("V", false, "to show verbose information about bfe") + debugLog *bool = flag.Bool("d", false, "to show debug log (otherwise >= info)") ) var version string +var commit string func main() { var err error @@ -55,8 +57,14 @@ func main() { flag.PrintDefaults() return } - if *showVer { - fmt.Printf("bfe: version %s\n", version) + if *showVersion { + fmt.Printf("bfe version: %s\n", version) + return + } + if *showVerbose { + fmt.Printf("bfe version: %s\n", version) + fmt.Printf("go version: %s\n", runtime.Version()) + fmt.Printf("git commit: %s\n", commit) return } From 4496d155572a6b3a7783fbcb5f51bc7877546376 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 30 Apr 2020 20:05:49 +0800 Subject: [PATCH 043/111] Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cefe49b7..013a4e26a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unrelease] +### Added +- mod_trace: support tracing based on Elastic APM +- mod_compress: support brotli algorithm +- Add condition primitive: req_host_tag_in + + ## [v0.9.0] - 2020-04-16 ### Added - Support loading dynamic modules that may be written and complied by thirdparty vendors @@ -146,6 +153,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Flexible plugin framework to extend functionality. Based on the framework, developer can add new features rapidly - Detailed built-in metrics available for service status monitor +[Unrelease]: https://github.com/baidu/bfe/compare/v0.9.0...HEAD [v0.9.0]: https://github.com/baidu/bfe/compare/v0.8.0...v0.9.0 [v0.8.0]: https://github.com/baidu/bfe/compare/v0.7.0...v0.8.0 [v0.7.0]: https://github.com/baidu/bfe/compare/v0.6.0...v0.7.0 From 2edd9816176a593574c788f3315b446c5ac146e8 Mon Sep 17 00:00:00 2001 From: yangwensi Date: Thu, 30 Apr 2020 23:45:02 +0800 Subject: [PATCH 044/111] Remove legacy Layer4LoadBalancer option (#448) --- bfe_config/bfe_conf/conf_basic.go | 5 +- bfe_server/bfe_listener.go | 11 +- bfe_util/get_l4lb_info.go | 243 +-------------------------- conf/bfe.conf | 2 +- docs/en_us/configuration/bfe.conf.md | 5 +- docs/en_us/installation/install.md | 2 +- docs/zh_cn/configuration/bfe.conf.md | 5 +- docs/zh_cn/installation/install.md | 2 +- 8 files changed, 12 insertions(+), 263 deletions(-) diff --git a/bfe_config/bfe_conf/conf_basic.go b/bfe_config/bfe_conf/conf_basic.go index 061bf1781..63359a594 100644 --- a/bfe_config/bfe_conf/conf_basic.go +++ b/bfe_config/bfe_conf/conf_basic.go @@ -29,7 +29,6 @@ import ( ) const ( - BalancerBgw = "BGW" // layer4 balancer in baidu BalancerProxy = "PROXY" // layer4 balancer working in PROXY mode (eg. F5, Ctrix, ELB etc) BalancerNone = "NONE" // layer4 balancer not used ) @@ -234,14 +233,12 @@ func checkLayer4LoadBalancer(cfg *ConfigBasic) error { } switch cfg.Layer4LoadBalancer { - case BalancerBgw: - return nil case BalancerProxy: return nil case BalancerNone: return nil default: - return fmt.Errorf("Layer4LoadBalancer[%s] should be BGW/PROXY/NONE", cfg.Layer4LoadBalancer) + return fmt.Errorf("Layer4LoadBalancer[%s] should be PROXY/NONE", cfg.Layer4LoadBalancer) } } diff --git a/bfe_server/bfe_listener.go b/bfe_server/bfe_listener.go index ffa928686..34e7e21a1 100644 --- a/bfe_server/bfe_listener.go +++ b/bfe_server/bfe_listener.go @@ -13,11 +13,11 @@ // limitations under the License. // BfeListener is a wapper of TCP listener which accept connections behind -// a load balancer (BGW/PROXY/NONE) +// a load balancer (PROXY/NONE) // // Note: The TLS listener is wired together like: // 1. TCP listener -// 2. BFE listener (BGW/PROXY) +// 2. BFE listener (PROXY) // 3. TLS listener package bfe_server @@ -30,7 +30,6 @@ import ( import ( "github.com/baidu/bfe/bfe_config/bfe_conf" "github.com/baidu/bfe/bfe_proxy" - "github.com/baidu/bfe/bfe_util" ) import ( @@ -38,7 +37,7 @@ import ( ) // BfeListener is used to wrap an underlying TCP listener, which accept connections -// behind a layer4 load balancer (BGW/PROXY) +// behind a layer4 load balancer (PROXY) type BfeListener struct { // Listener is the underlying tcp listener Listener net.Listener @@ -76,10 +75,6 @@ func (l *BfeListener) Accept() (net.Conn, error) { } switch l.BalancerType { - case bfe_conf.BalancerBgw: - conn = bfe_util.NewBgwConn(conn.(*net.TCPConn)) - log.Logger.Debug("BfeListener: accept connection via BGW") - case bfe_conf.BalancerProxy: conn = bfe_proxy.NewConn(conn, l.ProxyHeaderTimeout, l.ProxyHeaderLimit) log.Logger.Debug("BfeListener: accept connection via PROXY") diff --git a/bfe_util/get_l4lb_info.go b/bfe_util/get_l4lb_info.go index 063d5d486..d84fe9f53 100644 --- a/bfe_util/get_l4lb_info.go +++ b/bfe_util/get_l4lb_info.go @@ -15,37 +15,19 @@ package bfe_util import ( - "encoding/binary" - "errors" "fmt" "net" - "sync" - "syscall" - "time" -) - -import ( - "github.com/baidu/go-lib/log" ) import ( "github.com/baidu/bfe/bfe_tls" ) -const ( - TCP_OPT_CIP_ANY = 230 // get cip from tcp option - TCP_OPT_VIP_ANY = 229 // get vip from tcp option -) - -var ( - ErrAddressFormat = errors.New("address format error") -) - // GetVipPort return vip and port for given conn func GetVipPort(conn net.Conn) (net.IP, int, error) { // get underlying bfe conn, the given net.Conn may be wired like: // - TLS Connection (optional) - // - BFE Connection (BGW/PROXY, optional) + // - BFE Connection (PROXY, optional) // - TCP Connection if tc, ok := conn.(*bfe_tls.Conn); ok { conn = tc.GetNetConn() @@ -71,226 +53,3 @@ func GetVip(conn net.Conn) net.IP { } return vip } - -// getVipPortViaBGW gets vip/port from tcp conn via BGW -func getVipPortViaBGW(conn net.Conn) (net.IP, int, error) { - // get conn fd - f, err := GetConnFile(conn) - if err != nil { - return nil, 0, err - } - defer f.Close() - fd := int(f.Fd()) - - // get vip/port - rawAddr, err := GetsockoptMutiByte(fd, syscall.IPPROTO_TCP, TCP_OPT_VIP_ANY) - if err != nil { - log.Logger.Debug("GetsockoptMutiByte() fail: TCP_OPT_VIP_ANY: %v", err) - return nil, 0, err - } - log.Logger.Debug("getVipPortViaBGW(): VIP raw : %v", rawAddr) - - // parse vip/port - return parseSockAddr(rawAddr) -} - -// getCipPortViaBGW gets cip/port from tcp conn via BGW -func getCipPortViaBGW(conn net.Conn) (net.IP, int, error) { - // get conn fd - f, err := GetConnFile(conn) - if err != nil { - return nil, 0, err - } - defer f.Close() - fd := int(f.Fd()) - - // get cip/port - rawAddr, err := GetsockoptMutiByte(fd, syscall.IPPROTO_TCP, TCP_OPT_CIP_ANY) - if err != nil { - log.Logger.Debug("GetsockoptMutiByte fail: TCP_OPT_CIP_ANY: %v", err) - return nil, 0, err - } - log.Logger.Debug("getCipPortViaBGW(): CIP raw : %v", rawAddr) - - // parse cip/port - return parseSockAddr(rawAddr) -} - -// parseSockAddr parses addr from data with format sockaddr_in/sockaddr_in6 -// -// Note: Address format of sockaddr_in: -// struct sockaddr_in { -// sa_family_t sin_family; /* address family: AF_INET */ -// in_port_t sin_port; /* port in network byte order */ -// struct in_addr sin_addr; /* internet address */ -// }; -// struct in_addr { -// uint32_t s_addr; /* address in network byte order */ -// }; -// -// Note: Address format of sockaddr_in6: -// struct sockaddr_in6 { -// sa_family_t sin6_family; /* AF_INET6 */ -// in_port_t sin6_port; /* port number */ -// uint32_t sin6_flowinfo; /* IPv6 flow information */ -// struct in6_addr sin6_addr; /* IPv6 address */ -// uint32_t sin6_scope_id; /* Scope ID (new in 2.4) */ -// }; -// struct in6_addr { -// unsigned char s6_addr[16]; /* IPv6 address */ -// }; -// -func parseSockAddr(rawAddr []byte) (net.IP, int, error) { - family := NativeUint16(rawAddr[0:2]) - - // parse ip - var ip net.IP - switch family { - case syscall.AF_INET: - ip = net.IPv4(rawAddr[4], rawAddr[5], rawAddr[6], rawAddr[7]).To4() - case syscall.AF_INET6: - ip = net.IP(rawAddr[8:24]).To16() - default: - return nil, 0, ErrAddressFormat - } - if ip == nil { - return nil, 0, ErrAddressFormat - } - - // parse port - port := binary.BigEndian.Uint16(rawAddr[2:4]) - - return ip, int(port), nil -} - -var _ AddressFetcher = new(BgwConn) - -// BgwConn is used to wrap an underlying tcp connection which -// may be speaking the bgw Protocol. If it is, the RemoteAddr() will -// return the address of the client. -type BgwConn struct { - conn *net.TCPConn - - // srcAddr is address of real client - // Note: srcAddr is different from conn.RemoteAddr() under BGW64 - srcAddr *net.TCPAddr - - // dstAddr is address of virtual server - dstAddr *net.TCPAddr - once sync.Once -} - -// NewBgwConn is used to wrap a net.TCPConn via BGW -func NewBgwConn(conn *net.TCPConn) *BgwConn { - bConn := &BgwConn{ - conn: conn, - } - return bConn -} - -// Read reads data from the connection. -func (c *BgwConn) Read(b []byte) (int, error) { - return c.conn.Read(b) -} - -// Write writes data to the connection. -func (c *BgwConn) Write(b []byte) (int, error) { - return c.conn.Write(b) -} - -// Close closes the connection. -func (c *BgwConn) Close() error { - return c.conn.Close() -} - -func (c *BgwConn) CloseWrite() error { - return c.conn.CloseWrite() -} - -// LocalAddr returns the local network address. -func (c *BgwConn) LocalAddr() net.Addr { - return c.conn.LocalAddr() -} - -// RemoteAddr returns the address of the client if the bgw -// protocol is being used, otherwise just returns the address of -// the socket peer. -func (c *BgwConn) RemoteAddr() net.Addr { - c.checkTtmInfoOnce() - if c.srcAddr != nil { - return c.srcAddr - } - return c.conn.RemoteAddr() -} - -// VirtualAddr returns the visited address by client -func (c *BgwConn) VirtualAddr() net.Addr { - c.checkTtmInfoOnce() - if c.dstAddr != nil { - return c.dstAddr - } - return nil -} - -// BalancerAddr returns the address of balancer -func (c *BgwConn) BalancerAddr() net.Addr { - // Note: Not implement, just ignore - return nil -} - -// GetNetConn returns the underlying connection -func (c *BgwConn) GetNetConn() net.Conn { - return c.conn -} - -// SetDeadline implements the Conn.SetDeadline method -func (c *BgwConn) SetDeadline(t time.Time) error { - return c.conn.SetDeadline(t) -} - -// SetReadDeadline implements the Conn.SetReadDeadline method -func (c *BgwConn) SetReadDeadline(t time.Time) error { - return c.conn.SetReadDeadline(t) -} - -// SetWriteDeadline implements the Conn.SetWriteDeadline method -func (c *BgwConn) SetWriteDeadline(t time.Time) error { - return c.conn.SetWriteDeadline(t) -} - -func (c *BgwConn) checkTtmInfoOnce() { - c.once.Do(func() { - c.checkTtmInfo() - }) -} - -func (c *BgwConn) checkTtmInfo() { - c.initSrcAddr() - c.initDstAddr() -} - -func (c *BgwConn) initSrcAddr() { - cip, cport, err := getCipPortViaBGW(c) - if err != nil { - log.Logger.Debug("BgwConn getCipPortViaBGW failed, err:%s", err.Error()) - return - } - - c.srcAddr = &net.TCPAddr{ - IP: cip, - Port: cport, - } -} - -func (c *BgwConn) initDstAddr() { - vip, vport, err := getVipPortViaBGW(c) - if err != nil { - log.Logger.Debug("BgwConn getVipPortViaBGW failed, err:%s", err.Error()) - return - } - - c.dstAddr = &net.TCPAddr{ - IP: vip, - Port: vport, - } -} diff --git a/conf/bfe.conf b/conf/bfe.conf index 88073bf61..e34f0bb33 100644 --- a/conf/bfe.conf +++ b/conf/bfe.conf @@ -9,7 +9,7 @@ MonitorPort = 8421 # max number of CPUs to use (0 to use all CPUs) MaxCpus = 0 -# type of layer-4 load balancer (PROXY/BGW/NONE), default NONE +# type of layer-4 load balancer (PROXY/NONE), default NONE Layer4LoadBalancer = "" # tls handshake timeout, in seconds diff --git a/docs/en_us/configuration/bfe.conf.md b/docs/en_us/configuration/bfe.conf.md index 55fdeea12..255b18f66 100644 --- a/docs/en_us/configuration/bfe.conf.md +++ b/docs/en_us/configuration/bfe.conf.md @@ -12,7 +12,7 @@ bfe.conf is the core configuration file of BFE. | Basic.HttpsPort | Integer
Listen port for HTTPS
Default 8443 | | Basic.MonitorPort | Integer
Listen port for monitor
Default 8421 | | Basic.MaxCpus | Integer
Max number of CPUs to use (0 to use all CPUs)
Default 0 | -| Basic.Layer4LoadBalancer | String
Type of layer-4 load balancer (PROXY/BGW/NONE)
Default NONE | +| Basic.Layer4LoadBalancer | String
Type of layer-4 load balancer (PROXY/NONE)
Default NONE | | Basic.TlsHandshakeTimeout | Integer
TLS handshake timeout, in seconds
Default 30 | | Basic.ClientReadTimeout | Integer
Read timeout of communicating with http client, in seconds
Default 60 | | Basic.ClientWriteTimeout | Integer
Write timeout of communicating with http client, in seconds
Default 60 | @@ -70,12 +70,11 @@ MonitorPort = 8421 # max number of CPUs to use (0 to use all CPUs) MaxCpus = 0 -# type of layer-4 load balancer (PROXY/BGW/NONE) +# type of layer-4 load balancer (PROXY/NONE) # # Note: # - PROXY: layer-4 balancer talking the proxy protocol # eg. F5 BigIP/Citrix ADC -# - BGW: Baidu GateWay # - NONE: layer-4 balancer disabled Layer4LoadBalancer = "" diff --git a/docs/en_us/installation/install.md b/docs/en_us/installation/install.md index 33671dd51..7ea8ce437 100644 --- a/docs/en_us/installation/install.md +++ b/docs/en_us/installation/install.md @@ -11,4 +11,4 @@ | ---------- | ------------------ | | Linux OS | Support
*Recommended development and deployment system* | | Mac OS | Support | -| Windows OS | Support
*Not supported to obtain VIP/CIP when configuring layer 4 load balancing as BGW | +| Windows OS | Support
| diff --git a/docs/zh_cn/configuration/bfe.conf.md b/docs/zh_cn/configuration/bfe.conf.md index fd1633f62..2fbc144c8 100644 --- a/docs/zh_cn/configuration/bfe.conf.md +++ b/docs/zh_cn/configuration/bfe.conf.md @@ -12,7 +12,7 @@ bfe.conf是BFE的核心配置 | Server.HttpsPort | Integer
HTTPS(TLS)监听端口
默认值8443 | | Server.MonitorPort | Integer
Monitor监听端口
默认值8421 | | Server.MaxCpus | Integer
最大使用CPU核数; 0代表使用所有CPU核
默认值0 | -| Server.Layer4LoadBalancer | String
四层负载均衡器类型(PROXY/BGW/NONE)
默认值NONE | +| Server.Layer4LoadBalancer | String
四层负载均衡器类型(PROXY/NONE)
默认值NONE | | Server.TlsHandshakeTimeout | Integer
TLS握手超时时间,单位为秒
默认值30 | | Server.ClientReadTimeout | Integer
读客户端超时时间,单位为秒
默认值60 | | Server.ClientWriteTimeout | Integer
写客户端超时时间,单位为秒
默认值60 | @@ -69,12 +69,11 @@ MonitorPort = 8421 # max number of CPUs to use (0 to use all CPUs) MaxCpus = 0 -# type of layer-4 load balancer (PROXY/BGW/NONE) +# type of layer-4 load balancer (PROXY/NONE) # # Note: # - PROXY: layer-4 balancer talking the proxy protocol # eg. F5 BigIP/Citrix ADC -# - BGW: Baidu GateWay # - NONE: layer-4 balancer disabled Layer4LoadBalancer = "" diff --git a/docs/zh_cn/installation/install.md b/docs/zh_cn/installation/install.md index 45ac73460..60a0288c1 100644 --- a/docs/zh_cn/installation/install.md +++ b/docs/zh_cn/installation/install.md @@ -11,4 +11,4 @@ | ---------- | -------------------------------------------------- | | Linux OS | 支持
*建议的开发及部署环境* | | Mac OS | 支持 | -| Windows OS | 支持
*配置四层负载均衡为BGW时,不支持获取VIP/CIP* | +| Windows OS | 支持
| From 668e127a784f5f20fd0a4d70ad98d3adf35a3854 Mon Sep 17 00:00:00 2001 From: "Y.Horie" Date: Sat, 2 May 2020 11:02:41 +0900 Subject: [PATCH 045/111] mod_rewrite: add HostSuffixReplace action (#467) --- bfe_basic/action/action.go | 3 +++ bfe_basic/action/action_host.go | 11 +++++++++++ bfe_modules/mod_rewrite/action.go | 1 + 3 files changed, 15 insertions(+) diff --git a/bfe_basic/action/action.go b/bfe_basic/action/action.go index 0ecaa1388..353e1857c 100644 --- a/bfe_basic/action/action.go +++ b/bfe_basic/action/action.go @@ -39,6 +39,7 @@ const ( // host actions ActionHostSetFromPathPrefix = "HOST_SET_FROM_PATH_PREFIX" // set host from path prefix ActionHostSet = "HOST_SET" // set host + ActionHostSuffixReplace = "HOST_SUFFIX_REPLACE" // set host replaced suffx // path actions ActionPathSet = "PATH_SET" // set path @@ -111,6 +112,8 @@ func (ac *Action) Do(req *bfe_basic.Request) error { ReqHostSet(req, ac.Params[0]) case ActionHostSetFromPathPrefix: ReqHostSetFromFirstPathSegment(req) + case ActionHostSuffixReplace: + ReqHostSuffixReplace(req, ac.Params[0], ac.Params[1]) // for path case ActionPathSet: diff --git a/bfe_basic/action/action_host.go b/bfe_basic/action/action_host.go index 3c4ce59a4..da3b4cefd 100644 --- a/bfe_basic/action/action_host.go +++ b/bfe_basic/action/action_host.go @@ -50,3 +50,14 @@ func ReqHostSetFromFirstPathSegment(req *bfe_basic.Request) { req.HttpRequest.Host = segs[1] req.HttpRequest.URL.Path = "/" + segs[2] } + +// ReqHostSuffixReplace replaces suffix of hostname. +func ReqHostSuffixReplace(req *bfe_basic.Request, originSuffix, newSuffix string) { + hostname := req.HttpRequest.URL.Host + if !strings.HasSuffix(hostname, originSuffix) { + return + } + + hostname = strings.TrimSuffix(hostname, originSuffix) + newSuffix + req.HttpRequest.Host = hostname +} diff --git a/bfe_modules/mod_rewrite/action.go b/bfe_modules/mod_rewrite/action.go index 61e3d6381..ed4a93c0d 100644 --- a/bfe_modules/mod_rewrite/action.go +++ b/bfe_modules/mod_rewrite/action.go @@ -23,6 +23,7 @@ var allowActions map[string]bool = map[string]bool{ // host actions action.ActionHostSetFromPathPrefix: true, // set host from path prefix action.ActionHostSet: true, //set host + action.ActionHostSuffixReplace: true, // replace host suffix // path actions action.ActionPathSet: true, // set path From b5ca065b2bc164bfd37848a4055c407e6802f42b Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sat, 2 May 2020 21:11:51 +0800 Subject: [PATCH 046/111] Update install_using_snap.md --- docs/zh_cn/installation/install_using_snap.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/zh_cn/installation/install_using_snap.md b/docs/zh_cn/installation/install_using_snap.md index 6d0929ba6..605d13fda 100644 --- a/docs/zh_cn/installation/install_using_snap.md +++ b/docs/zh_cn/installation/install_using_snap.md @@ -1,7 +1,7 @@ -# SNAP安装 +# SNAP方式安装 ## 环境准备 -- [snap](https://snapcraft.io/docs/installing-snapd) +在Linux环境可以使用snap工具安装bfe。如果您的系统还未安装snap工具,参见[安装snap](https://snapcraft.io/docs/installing-snapd) ## 安装BFE - 执行如下命令: @@ -16,7 +16,7 @@ $ sudo snap install --edge bfe /var/snap/bfe/common/conf/ ``` -- 日志位于: +- 日志文件位于: ``` /var/snap/bfe/common/log From de760a9abec308af3072f74de04986e1f5771e74 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sat, 2 May 2020 21:55:56 +0800 Subject: [PATCH 047/111] Update SUMMARY.md --- docs/en_us/SUMMARY.md | 10 +++++----- docs/en_us/example/guide.md | 12 ++++++++++++ docs/zh_cn/SUMMARY.md | 4 ++-- docs/zh_cn/example/guide.md | 8 ++++++++ 4 files changed, 27 insertions(+), 7 deletions(-) create mode 100644 docs/en_us/example/guide.md create mode 100644 docs/zh_cn/example/guide.md diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index bf4801d88..2c131fbfe 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -13,11 +13,11 @@ * [Version History](https://github.com/baidu/bfe/blob/master/CHANGELOG.md) * Quick Start * [Install](installation/install_from_source.md) - * [Traffic forwarding Example](example/route.md) - * User Guides - * [Connection/Request Block](example/block.md) - * [Request Redirect](example/redirect.md) - * [Request Rewrite](example/rewrite.md) + * [User Guides](example/guide.md) + * [Traffic forwarding](example/route.md) + * [Traffic blocking](example/block.md) + * [Request redirect](example/redirect.md) + * [Request rewrite](example/rewrite.md) * [TLS mutual authentication](example/client_auth.md) * [Installation](installation/install.md) * [Install from source](installation/install_from_source.md) diff --git a/docs/en_us/example/guide.md b/docs/en_us/example/guide.md new file mode 100644 index 000000000..c94534ac4 --- /dev/null +++ b/docs/en_us/example/guide.md @@ -0,0 +1,12 @@ +# Beginner's Guide + +This guide gives a basic introdction to some tasks that can be done with bfe. +It is supposed that bfe is already installed on your machine. If it is not, +see [Installing bfe](../installation/install.md). + +* [Traffic forwarding](example/route.md) +* [Traffic blocking](example/block.md) +* [Request redirect](example/redirect.md) +* [Request rewrite](example/rewrite.md) +* [TLS mutual authentication](example/client_auth.md) + diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index f4b64183b..0626092d8 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -13,8 +13,8 @@ * [发布历史](https://github.com/baidu/bfe/blob/master/CHANGELOG.md) * 快速开始 * [安装及运行](installation/install_from_source.md) - * [简单转发配置](example/route.md) - * 使用示例配置 + * [使用示例](example/guide.md) + * [流量转发](example/route.md) * [黑名单封禁](example/block.md) * [重定向](example/redirect.md) * [重写](example/rewrite.md) diff --git a/docs/zh_cn/example/guide.md b/docs/zh_cn/example/guide.md new file mode 100644 index 000000000..66f48112d --- /dev/null +++ b/docs/zh_cn/example/guide.md @@ -0,0 +1,8 @@ +## 使用示例 + +这里提供了使用BFE的简单示例。如果您还未安装BFE,请参考[BFE安装说明](../installation/install.md ) + +* [流量转发](example/route.md) +* [黑名单封禁](example/block.md) +* [重定向](example/redirect.md) +* [重写](example/rewrite.md) From 61bfc2fb43f9e3eaa389117a58ad29f7324a6474 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sat, 2 May 2020 21:59:47 +0800 Subject: [PATCH 048/111] Update SUMMARY.md --- docs/en_us/example/guide.md | 10 +++++----- docs/zh_cn/SUMMARY.md | 1 + docs/zh_cn/example/guide.md | 9 +++++---- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/docs/en_us/example/guide.md b/docs/en_us/example/guide.md index c94534ac4..72b0c8bef 100644 --- a/docs/en_us/example/guide.md +++ b/docs/en_us/example/guide.md @@ -4,9 +4,9 @@ This guide gives a basic introdction to some tasks that can be done with bfe. It is supposed that bfe is already installed on your machine. If it is not, see [Installing bfe](../installation/install.md). -* [Traffic forwarding](example/route.md) -* [Traffic blocking](example/block.md) -* [Request redirect](example/redirect.md) -* [Request rewrite](example/rewrite.md) -* [TLS mutual authentication](example/client_auth.md) +* [Traffic forwarding](route.md) +* [Traffic blocking](block.md) +* [Request redirect](redirect.md) +* [Request rewrite](rewrite.md) +* [TLS mutual authentication](client_auth.md) diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index 0626092d8..3089204e5 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -18,6 +18,7 @@ * [黑名单封禁](example/block.md) * [重定向](example/redirect.md) * [重写](example/rewrite.md) + * [TLS客户端认证](client_auth.md) * [安装说明](installation/install.md) * [源码编译安装](installation/install_from_source.md) * [二进制文件下载安装](installation/install_using_binaries.md) diff --git a/docs/zh_cn/example/guide.md b/docs/zh_cn/example/guide.md index 66f48112d..1c9f3a721 100644 --- a/docs/zh_cn/example/guide.md +++ b/docs/zh_cn/example/guide.md @@ -2,7 +2,8 @@ 这里提供了使用BFE的简单示例。如果您还未安装BFE,请参考[BFE安装说明](../installation/install.md ) -* [流量转发](example/route.md) -* [黑名单封禁](example/block.md) -* [重定向](example/redirect.md) -* [重写](example/rewrite.md) +* [流量转发](route.md) +* [黑名单封禁](block.md) +* [重定向](redirect.md) +* [重写](rewrite.md) +* [TLS客户端认证](client_auth.md) From ade65cbeb807fcd31d1684614e1657e8abc89c17 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sat, 2 May 2020 22:49:36 +0800 Subject: [PATCH 049/111] Add operation/log_rotation.md --- docs/en_us/SUMMARY.md | 1 + docs/en_us/operation/log_rotation.md | 15 +++++++++++++++ docs/zh_cn/SUMMARY.md | 1 + docs/zh_cn/operation/log_rotation.md | 14 ++++++++++++++ 4 files changed, 31 insertions(+) create mode 100644 docs/en_us/operation/log_rotation.md create mode 100644 docs/zh_cn/operation/log_rotation.md diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index 2c131fbfe..188e375d9 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -62,6 +62,7 @@ * [System signals](operation/signal.md) * [Configuration reload](operation/reload.md) * [System metrics](operation/monitor.md) + * [Log Rotation](operation/log_rotation.md) * [Traffic tapping](operation/capture_packet.md) * [Performance](operation/performance.md) * How to Contribute diff --git a/docs/en_us/operation/log_rotation.md b/docs/en_us/operation/log_rotation.md new file mode 100644 index 000000000..0d2075a95 --- /dev/null +++ b/docs/en_us/operation/log_rotation.md @@ -0,0 +1,15 @@ +# Log file rotation + +## Introdution + +As time passes, the size of log files increases and occupies more and more disk space. +BFE has a built-in feature of log file rotation which can automatically rotate log files, +remove old ones and retain the recent ones. + +## Description + +| Name | Path | Rotation Configuration | +| ----------- | -------------- | --------------------------------- | +| server log | log/bfe.log | rotate log file at midnight; retain the recent 7 log files | +| access log | log/access.log | [conf/mod_access/mod_access.conf](../configuration/mod_access/mod_access.md) | +| tls key log | log/key.log | [conf/mod_key_log/mod_key_log.conf](../configuration/mod_key_log/mod_key_log.md) | diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index 3089204e5..9a49310a4 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -63,6 +63,7 @@ * [系统信号说明](operation/signal.md) * [配置热加载](operation/reload.md) * [监控指标获取](operation/monitor.md) + * [日志切割备份](operation/log_rotation.md) * [流量抓包分析](operation/capture_packet.md) * [性能数据采集](operation/performance.md) * 参与贡献 diff --git a/docs/zh_cn/operation/log_rotation.md b/docs/zh_cn/operation/log_rotation.md new file mode 100644 index 000000000..4657d000b --- /dev/null +++ b/docs/zh_cn/operation/log_rotation.md @@ -0,0 +1,14 @@ +# 日志切割备份 + +## 简介 + +日志文件随着时间推移会变大并占用越来多越的磁盘空间。 +BEF内置日志自动切割及备份功能,可定期切割日志,删除并仅保留最近的日志文件。 + +## 配置 + +| 日志名称 | 日志路径 | 日志切割及备份配置 | +| ----------- | -------------- | --------------------------------- | +| server log | log/bfe.log | 按天切隔日志,保留最近7天日志 | +| access log | log/access.log | 见[conf/mod_access/mod_access.conf](../configuration/mod_access/mod_access.md) | +| tls key log | log/key.log | 见[conf/mod_key_log/mod_key_log.conf](../configuration/mod_key_log/mod_key_log.md) | From 47031b965c1aa6baa02567174dac2d682e658bba Mon Sep 17 00:00:00 2001 From: yangsijie Date: Wed, 6 May 2020 15:33:43 +0800 Subject: [PATCH 050/111] Update doc for modules --- docs/en_us/SUMMARY.md | 49 +++++++--------- .../mod_http_code/mod_http_code.md | 7 --- .../configuration/mod_logid/mod_logid.md | 7 --- .../{ => development}/module/bfe_callback.md | 0 .../module/how_to_write_module.md | 0 .../{ => development}/module/overview.md | 0 .../mod_access/mod_access.md | 0 .../mod_auth_basic/mod_auth_basic.md | 0 .../mod_block/mod_block.md | 14 +++++ .../mod_compress/mod_compress.md | 0 .../mod_errors/mod_errors.md | 0 .../mod_geo/mod_geo.md | 0 .../mod_header/mod_header.md | 0 .../mod_http_code}/mod_http_code.md | 15 +++-- .../mod_key_log/mod_key_log.md | 0 docs/en_us/modules/mod_logid/mod_logid.md | 14 +++++ .../mod_redirect/mod_redirect.md | 0 .../mod_rewrite/mod_rewrite.md | 0 .../mod_static/mod_static.md | 10 ++++ .../mod_tag/mod_tag.md | 0 .../mod_trace/mod_trace.md | 0 .../mod_trust_clientip/mod_trust_clientip.md | 9 +++ .../mod_userid/mod_userid.md | 0 docs/en_us/{module => modules}/modules.md | 0 docs/en_us/monitor/mod_block.md | 17 ------ docs/en_us/monitor/mod_logid.md | 10 ---- docs/en_us/monitor/mod_static.md | 12 ---- docs/en_us/monitor/mod_trust_clientip.md | 13 ----- docs/zh_cn/SUMMARY.md | 58 +++++++++---------- .../mod_http_code/mod_http_code.md | 7 --- .../configuration/mod_logid/mod_logid.md | 7 --- .../{ => development}/module/bfe_callback.md | 0 .../module/how_to_write_module.md | 0 .../{ => development}/module/overview.md | 0 .../mod_access/mod_access.md | 0 .../mod_auth_basic/mod_auth_basic.md | 10 ++++ .../mod_auth_jwt/mod_auth_jwt.md | 8 +++ .../mod_block/mod_block.md | 14 +++++ .../mod_compress/mod_compress.md | 10 ++++ docs/zh_cn/modules/mod_doh/mod_doh.md | 2 + .../mod_errors/mod_errors.md | 0 .../mod_geo/mod_geo.md | 8 +++ .../mod_header/mod_header.md | 0 .../mod_http_code}/mod_http_code.md | 8 ++- .../mod_key_log/mod_key_log.md | 0 .../mod_logid}/mod_logid.md | 9 ++- docs/zh_cn/modules/mod_prison/mod_prison.md | 2 + .../mod_redirect/mod_redirect.md | 0 .../mod_rewrite/mod_rewrite.md | 0 .../mod_static/mod_static.md | 10 ++++ .../mod_tag/mod_tag.md | 0 .../mod_trace/mod_trace.md | 0 .../mod_trust_clientip/mod_trust_clientip.md | 6 ++ .../mod_userid/mod_userid.md | 0 docs/zh_cn/{module => modules}/modules.md | 4 +- docs/zh_cn/monitor/mod_auth_basic.md | 12 ---- docs/zh_cn/monitor/mod_auth_jwt.md | 11 ---- docs/zh_cn/monitor/mod_block.md | 16 ----- docs/zh_cn/monitor/mod_compress.md | 12 ---- docs/zh_cn/monitor/mod_geo.md | 10 ---- docs/zh_cn/monitor/mod_static.md | 12 ---- docs/zh_cn/monitor/mod_trust_clientip.md | 11 ---- docs/zh_cn/monitor/module_status.md | 2 + 63 files changed, 191 insertions(+), 235 deletions(-) delete mode 100644 docs/en_us/configuration/mod_http_code/mod_http_code.md delete mode 100644 docs/en_us/configuration/mod_logid/mod_logid.md rename docs/en_us/{ => development}/module/bfe_callback.md (100%) rename docs/en_us/{ => development}/module/how_to_write_module.md (100%) rename docs/en_us/{ => development}/module/overview.md (100%) rename docs/en_us/{configuration => modules}/mod_access/mod_access.md (100%) rename docs/en_us/{configuration => modules}/mod_auth_basic/mod_auth_basic.md (100%) rename docs/en_us/{configuration => modules}/mod_block/mod_block.md (69%) rename docs/en_us/{configuration => modules}/mod_compress/mod_compress.md (100%) rename docs/en_us/{configuration => modules}/mod_errors/mod_errors.md (100%) rename docs/en_us/{configuration => modules}/mod_geo/mod_geo.md (100%) rename docs/en_us/{configuration => modules}/mod_header/mod_header.md (100%) rename docs/en_us/{monitor => modules/mod_http_code}/mod_http_code.md (51%) rename docs/en_us/{configuration => modules}/mod_key_log/mod_key_log.md (100%) create mode 100644 docs/en_us/modules/mod_logid/mod_logid.md rename docs/en_us/{configuration => modules}/mod_redirect/mod_redirect.md (100%) rename docs/en_us/{configuration => modules}/mod_rewrite/mod_rewrite.md (100%) rename docs/en_us/{configuration => modules}/mod_static/mod_static.md (81%) rename docs/en_us/{configuration => modules}/mod_tag/mod_tag.md (100%) rename docs/en_us/{configuration => modules}/mod_trace/mod_trace.md (100%) rename docs/en_us/{configuration => modules}/mod_trust_clientip/mod_trust_clientip.md (71%) rename docs/en_us/{configuration => modules}/mod_userid/mod_userid.md (100%) rename docs/en_us/{module => modules}/modules.md (100%) delete mode 100644 docs/en_us/monitor/mod_block.md delete mode 100644 docs/en_us/monitor/mod_logid.md delete mode 100644 docs/en_us/monitor/mod_static.md delete mode 100644 docs/en_us/monitor/mod_trust_clientip.md delete mode 100644 docs/zh_cn/configuration/mod_http_code/mod_http_code.md delete mode 100644 docs/zh_cn/configuration/mod_logid/mod_logid.md rename docs/zh_cn/{ => development}/module/bfe_callback.md (100%) rename docs/zh_cn/{ => development}/module/how_to_write_module.md (100%) rename docs/zh_cn/{ => development}/module/overview.md (100%) rename docs/zh_cn/{configuration => modules}/mod_access/mod_access.md (100%) rename docs/zh_cn/{configuration => modules}/mod_auth_basic/mod_auth_basic.md (80%) rename docs/zh_cn/{configuration => modules}/mod_auth_jwt/mod_auth_jwt.md (91%) rename docs/zh_cn/{configuration => modules}/mod_block/mod_block.md (81%) rename docs/zh_cn/{configuration => modules}/mod_compress/mod_compress.md (81%) create mode 100644 docs/zh_cn/modules/mod_doh/mod_doh.md rename docs/zh_cn/{configuration => modules}/mod_errors/mod_errors.md (100%) rename docs/zh_cn/{configuration => modules}/mod_geo/mod_geo.md (63%) rename docs/zh_cn/{configuration => modules}/mod_header/mod_header.md (100%) rename docs/zh_cn/{monitor => modules/mod_http_code}/mod_http_code.md (74%) rename docs/zh_cn/{configuration => modules}/mod_key_log/mod_key_log.md (100%) rename docs/zh_cn/{monitor => modules/mod_logid}/mod_logid.md (68%) create mode 100644 docs/zh_cn/modules/mod_prison/mod_prison.md rename docs/zh_cn/{configuration => modules}/mod_redirect/mod_redirect.md (100%) rename docs/zh_cn/{configuration => modules}/mod_rewrite/mod_rewrite.md (100%) rename docs/zh_cn/{configuration => modules}/mod_static/mod_static.md (86%) rename docs/zh_cn/{configuration => modules}/mod_tag/mod_tag.md (100%) rename docs/zh_cn/{configuration => modules}/mod_trace/mod_trace.md (100%) rename docs/zh_cn/{configuration => modules}/mod_trust_clientip/mod_trust_clientip.md (80%) rename docs/zh_cn/{configuration => modules}/mod_userid/mod_userid.md (100%) rename docs/zh_cn/{module => modules}/modules.md (89%) delete mode 100644 docs/zh_cn/monitor/mod_auth_basic.md delete mode 100644 docs/zh_cn/monitor/mod_auth_jwt.md delete mode 100644 docs/zh_cn/monitor/mod_block.md delete mode 100644 docs/zh_cn/monitor/mod_compress.md delete mode 100644 docs/zh_cn/monitor/mod_geo.md delete mode 100644 docs/zh_cn/monitor/mod_static.md delete mode 100644 docs/zh_cn/monitor/mod_trust_clientip.md diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index 188e375d9..8511c3050 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -40,22 +40,22 @@ * [Instances balancing](configuration/cluster_conf/cluster_table.data.md) * Name Service * [Naming](configuration/server_data_conf/name_conf.data.md) - * [Modules](module/modules.md) - * [mod_access](configuration/mod_access/mod_access.md) - * [mod_auth_basic](configuration/mod_auth_basic/mod_auth_basic.md) - * [mod_block](configuration/mod_block/mod_block.md) - * [mod_compress](configuration/mod_compress/mod_compress.md) - * [mod_errors](configuration/mod_errors/mod_errors.md) - * [mod_geo](configuration/mod_geo/mod_geo.md) - * [mod_header](configuration/mod_header/mod_header.md) - * [mod_http_code](configuration/mod_http_code/mod_http_code.md) - * [mod_key_log](configuration/mod_key_log/mod_key_log.md) - * [mod_redirect](configuration/mod_redirect/mod_redirect.md) - * [mod_rewrite](configuration/mod_rewrite/mod_rewrite.md) - * [mod_static](configuration/mod_static/mod_static.md) - * [mod_tag](configuration/mod_tag/mod_tag.md) - * [mod_trust_clientip](configuration/mod_trust_clientip/mod_trust_clientip.md) - * [mod_userid](configuration/mod_userid/mod_userid.md) +* [Modules](modules/modules.md) + * [mod_access](modules/mod_access/mod_access.md) + * [mod_auth_basic](modules/mod_auth_basic/mod_auth_basic.md) + * [mod_block](modules/mod_block/mod_block.md) + * [mod_compress](modules/mod_compress/mod_compress.md) + * [mod_errors](modules/mod_errors/mod_errors.md) + * [mod_geo](modules/mod_geo/mod_geo.md) + * [mod_header](modules/mod_header/mod_header.md) + * [mod_http_code](modules/mod_http_code/mod_http_code.md) + * [mod_key_log](modules/mod_key_log/mod_key_log.md) + * [mod_redirect](modules/mod_redirect/mod_redirect.md) + * [mod_rewrite](modules/mod_rewrite/mod_rewrite.md) + * [mod_static](modules/mod_static/mod_static.md) + * [mod_tag](modules/mod_tag/mod_tag.md) + * [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) + * [mod_userid](modules/mod_userid/mod_userid.md) * Operation * [Command line options](operation/command.md) * [Environment argruments](operation/env_var.md) @@ -73,9 +73,9 @@ * [Releasing process](development/release_regulation.md) * Development guides * [Source code layout](development/source_code_layout.md) - * [BFE module development](module/overview.md) - * [BFE callback introduction](module/bfe_callback.md) - * [How to write a module](module/how_to_write_module.md) + * [BFE module development](development/module/overview.md) + * [BFE callback introduction](development/module/bfe_callback.md) + * [How to write a module](development/module/how_to_write_module.md) * FAQ * [Installation](faq/installation.md) * [Configuration](faq/configuration.md) @@ -96,16 +96,7 @@ * [Balance error](monitor/bal_state.md) * Proxy * [Proxy state](monitor/proxy_state.md) - * Modules - * [module_status](monitor/module_status.md) - * [mod_auth_basic](monitor/mod_auth_basic.md) - * [mod_block](monitor/mod_block.md) - * [mod_compress](monitor/mod_compress.md) - * [mod_geo](monitor/mod_geo.md) - * [mod_http_code](monitor/mod_http_code.md) - * [mod_logid](monitor/mod_logid.md) - * [mod_static](monitor/mod_static.md) - * [mod_trust_clientip](monitor/mod_trust_clientip.md) + * [Modules](monitor/module_status.md) * Lentency * [Lentency histogram](monitor/proxy_XXX_delay.md) * Appendix B: Condition diff --git a/docs/en_us/configuration/mod_http_code/mod_http_code.md b/docs/en_us/configuration/mod_http_code/mod_http_code.md deleted file mode 100644 index 1874e1949..000000000 --- a/docs/en_us/configuration/mod_http_code/mod_http_code.md +++ /dev/null @@ -1,7 +0,0 @@ -# Introduction - -Count HTTP status codes. - -# Module Configuration - -Not required diff --git a/docs/en_us/configuration/mod_logid/mod_logid.md b/docs/en_us/configuration/mod_logid/mod_logid.md deleted file mode 100644 index ff9a368f0..000000000 --- a/docs/en_us/configuration/mod_logid/mod_logid.md +++ /dev/null @@ -1,7 +0,0 @@ -# Introduction - -Generate log id. - -# Module Configuration - -Not required diff --git a/docs/en_us/module/bfe_callback.md b/docs/en_us/development/module/bfe_callback.md similarity index 100% rename from docs/en_us/module/bfe_callback.md rename to docs/en_us/development/module/bfe_callback.md diff --git a/docs/en_us/module/how_to_write_module.md b/docs/en_us/development/module/how_to_write_module.md similarity index 100% rename from docs/en_us/module/how_to_write_module.md rename to docs/en_us/development/module/how_to_write_module.md diff --git a/docs/en_us/module/overview.md b/docs/en_us/development/module/overview.md similarity index 100% rename from docs/en_us/module/overview.md rename to docs/en_us/development/module/overview.md diff --git a/docs/en_us/configuration/mod_access/mod_access.md b/docs/en_us/modules/mod_access/mod_access.md similarity index 100% rename from docs/en_us/configuration/mod_access/mod_access.md rename to docs/en_us/modules/mod_access/mod_access.md diff --git a/docs/en_us/configuration/mod_auth_basic/mod_auth_basic.md b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md similarity index 100% rename from docs/en_us/configuration/mod_auth_basic/mod_auth_basic.md rename to docs/en_us/modules/mod_auth_basic/mod_auth_basic.md diff --git a/docs/en_us/configuration/mod_block/mod_block.md b/docs/en_us/modules/mod_block/mod_block.md similarity index 69% rename from docs/en_us/configuration/mod_block/mod_block.md rename to docs/en_us/modules/mod_block/mod_block.md index 80fd08ce4..258ab4509 100644 --- a/docs/en_us/configuration/mod_block/mod_block.md +++ b/docs/en_us/modules/mod_block/mod_block.md @@ -74,3 +74,17 @@ conf/mod_block/block_rules.data } } ``` + +# Metrics + +| Metric | Description | +| ------------- | ------------------------------------------------------------ | +| CONN_ACCEPT | Counter for connection accepted | +| CONN_REFUSE | Counter for connection refused | +| CONN_TOTAL | Counter for all connnetion checked | +| REQ_ACCEPT | Counter for request accepted | +| REQ_REFUSE | Counter for request refused | +| REQ_TOTAL | Counter for all request in | +| REQ_TO_CHECK | Counter for request to check | +| WRONG_COMMAND | Counter for request with condition satisfied, but wrong command | + diff --git a/docs/en_us/configuration/mod_compress/mod_compress.md b/docs/en_us/modules/mod_compress/mod_compress.md similarity index 100% rename from docs/en_us/configuration/mod_compress/mod_compress.md rename to docs/en_us/modules/mod_compress/mod_compress.md diff --git a/docs/en_us/configuration/mod_errors/mod_errors.md b/docs/en_us/modules/mod_errors/mod_errors.md similarity index 100% rename from docs/en_us/configuration/mod_errors/mod_errors.md rename to docs/en_us/modules/mod_errors/mod_errors.md diff --git a/docs/en_us/configuration/mod_geo/mod_geo.md b/docs/en_us/modules/mod_geo/mod_geo.md similarity index 100% rename from docs/en_us/configuration/mod_geo/mod_geo.md rename to docs/en_us/modules/mod_geo/mod_geo.md diff --git a/docs/en_us/configuration/mod_header/mod_header.md b/docs/en_us/modules/mod_header/mod_header.md similarity index 100% rename from docs/en_us/configuration/mod_header/mod_header.md rename to docs/en_us/modules/mod_header/mod_header.md diff --git a/docs/en_us/monitor/mod_http_code.md b/docs/en_us/modules/mod_http_code/mod_http_code.md similarity index 51% rename from docs/en_us/monitor/mod_http_code.md rename to docs/en_us/modules/mod_http_code/mod_http_code.md index 080eafa5f..069f1f168 100644 --- a/docs/en_us/monitor/mod_http_code.md +++ b/docs/en_us/modules/mod_http_code/mod_http_code.md @@ -1,12 +1,17 @@ -# Introduction +# Introduction -Count HTTP status codes. +Count HTTP status codes. -# Monitor Item +# Module Configuration -| Monitor Item | Description | +Not required + +# Metrics + +| Metric | Description | | -------------------- | --------------------- | | ALL2_X_X | counter of 2XX status | | ALL3_X_X | coutner of 3XX status | | ALL4_X_X | coutner of 4XX status | -| ALL4_X_X | coutner of 5XX status | \ No newline at end of file +| ALL4_X_X | coutner of 5XX status | + diff --git a/docs/en_us/configuration/mod_key_log/mod_key_log.md b/docs/en_us/modules/mod_key_log/mod_key_log.md similarity index 100% rename from docs/en_us/configuration/mod_key_log/mod_key_log.md rename to docs/en_us/modules/mod_key_log/mod_key_log.md diff --git a/docs/en_us/modules/mod_logid/mod_logid.md b/docs/en_us/modules/mod_logid/mod_logid.md new file mode 100644 index 000000000..784629bc1 --- /dev/null +++ b/docs/en_us/modules/mod_logid/mod_logid.md @@ -0,0 +1,14 @@ +# Introduction + +Generate log id. + +# Module Configuration + +Not required + +# Metrics + +| Metric | Description | +| -------------------- | ----------------------------------- | +| LOGID_CONVERT_FAILED | Counter for old logid convert error | + diff --git a/docs/en_us/configuration/mod_redirect/mod_redirect.md b/docs/en_us/modules/mod_redirect/mod_redirect.md similarity index 100% rename from docs/en_us/configuration/mod_redirect/mod_redirect.md rename to docs/en_us/modules/mod_redirect/mod_redirect.md diff --git a/docs/en_us/configuration/mod_rewrite/mod_rewrite.md b/docs/en_us/modules/mod_rewrite/mod_rewrite.md similarity index 100% rename from docs/en_us/configuration/mod_rewrite/mod_rewrite.md rename to docs/en_us/modules/mod_rewrite/mod_rewrite.md diff --git a/docs/en_us/configuration/mod_static/mod_static.md b/docs/en_us/modules/mod_static/mod_static.md similarity index 81% rename from docs/en_us/configuration/mod_static/mod_static.md rename to docs/en_us/modules/mod_static/mod_static.md index 90957ee55..f82894e74 100644 --- a/docs/en_us/configuration/mod_static/mod_static.md +++ b/docs/en_us/modules/mod_static/mod_static.md @@ -59,3 +59,13 @@ conf/mod_static/static_rule.data "Version": "20190101000000" } ``` + +# Metrics + +| Metric | Description | +| ----------------------- |----------------------------------------| +| FILE_BROWSE_COUNT | Counter for BROWSE requests | +| FILE_CURRENT_OPENED | Counter for current opend files | +| FILE_BROWSE_NOT_EXIST | Counter for "file not exists" requests | +| FILE_BROWSE_SIZE | Total served file size | + diff --git a/docs/en_us/configuration/mod_tag/mod_tag.md b/docs/en_us/modules/mod_tag/mod_tag.md similarity index 100% rename from docs/en_us/configuration/mod_tag/mod_tag.md rename to docs/en_us/modules/mod_tag/mod_tag.md diff --git a/docs/en_us/configuration/mod_trace/mod_trace.md b/docs/en_us/modules/mod_trace/mod_trace.md similarity index 100% rename from docs/en_us/configuration/mod_trace/mod_trace.md rename to docs/en_us/modules/mod_trace/mod_trace.md diff --git a/docs/en_us/configuration/mod_trust_clientip/mod_trust_clientip.md b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md similarity index 71% rename from docs/en_us/configuration/mod_trust_clientip/mod_trust_clientip.md rename to docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md index 4987e6bc7..c03a54713 100644 --- a/docs/en_us/configuration/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md @@ -47,3 +47,12 @@ DataPath = mod_trust_clientip/trust_client_ip.data } ``` +# Metrics + +| Metric | Description | +| ---------------------------- | -------------------------------------------------- | +| CONN_ADDR_INTERNAL | ^PCounter for connection from internal | +| CONN_ADDR_INTERNAL_NOT_TRUST | ^PCounter for connection from internal and not trust | +| CONN_TOTAL | ^PCounter for all connnetion checked | +| CONN_TRUST_CLIENTIP | ^PCounter for connnection from trust address | + diff --git a/docs/en_us/configuration/mod_userid/mod_userid.md b/docs/en_us/modules/mod_userid/mod_userid.md similarity index 100% rename from docs/en_us/configuration/mod_userid/mod_userid.md rename to docs/en_us/modules/mod_userid/mod_userid.md diff --git a/docs/en_us/module/modules.md b/docs/en_us/modules/modules.md similarity index 100% rename from docs/en_us/module/modules.md rename to docs/en_us/modules/modules.md diff --git a/docs/en_us/monitor/mod_block.md b/docs/en_us/monitor/mod_block.md deleted file mode 100644 index ba802da04..000000000 --- a/docs/en_us/monitor/mod_block.md +++ /dev/null @@ -1,17 +0,0 @@ -# Introduction - -mod_block monitor state of module block. - -# Monitor Item - -| Monitor Item | Description | -| ------------- | ------------------------------------------------------------ | -| CONN_ACCEPT | Counter for connection accepted | -| CONN_REFUSE | Counter for connection refused | -| CONN_TOTAL | Counter for all connnetion checked | -| REQ_ACCEPT | Counter for request accepted | -| REQ_REFUSE | Counter for request refused | -| REQ_TOTAL | Counter for all request in | -| REQ_TO_CHECK | Counter for request to check | -| WRONG_COMMAND | Counter for request with condition satisfied, but wrong command | - diff --git a/docs/en_us/monitor/mod_logid.md b/docs/en_us/monitor/mod_logid.md deleted file mode 100644 index 6fed7fffe..000000000 --- a/docs/en_us/monitor/mod_logid.md +++ /dev/null @@ -1,10 +0,0 @@ -# Introduction - -Mod_logid monitor state of module logid. - -# Monitor Item - -| Monitor Item | Description | -| -------------------- | ----------------------------------- | -| LOGID_CONVERT_FAILED | Counter for old logid convert error | - diff --git a/docs/en_us/monitor/mod_static.md b/docs/en_us/monitor/mod_static.md deleted file mode 100644 index 277bdb233..000000000 --- a/docs/en_us/monitor/mod_static.md +++ /dev/null @@ -1,12 +0,0 @@ -# Introduction - -mod_static serves static files. - -# Monitor Item - -| Monitor Item | Description | -| ----------------------- |----------------------------------------| -| FILE_BROWSE_COUNT | Counter for BROWSE requests | -| FILE_CURRENT_OPENED | Counter for current opend files | -| FILE_BROWSE_NOT_EXIST | Counter for "file not exists" requests | -| FILE_BROWSE_SIZE | Total served file size | \ No newline at end of file diff --git a/docs/en_us/monitor/mod_trust_clientip.md b/docs/en_us/monitor/mod_trust_clientip.md deleted file mode 100644 index 195dcac46..000000000 --- a/docs/en_us/monitor/mod_trust_clientip.md +++ /dev/null @@ -1,13 +0,0 @@ -# Introduction - -mod_trust_clientip monitor state of module trust clientip. - -# Monitor Item - -| Monitor Item | Description | -| ---------------------------- | -------------------------------------------------- | -| CONN_ADDR_INTERNAL | Counter for connection from internal | -| CONN_ADDR_INTERNAL_NOT_TRUST | Counter for connection from internal and not trust | -| CONN_TOTAL | Counter for all connnetion checked | -| CONN_TRUST_CLIENTIP | Counter for connnection from trust address | - diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index 9a49310a4..a26c4c2b6 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -18,7 +18,7 @@ * [黑名单封禁](example/block.md) * [重定向](example/redirect.md) * [重写](example/rewrite.md) - * [TLS客户端认证](client_auth.md) + * [TLS客户端认证](example/client_auth.md) * [安装说明](installation/install.md) * [源码编译安装](installation/install_from_source.md) * [二进制文件下载安装](installation/install_using_binaries.md) @@ -40,23 +40,27 @@ * [实例负载均衡](configuration/cluster_conf/cluster_table.data.md) * 名字服务 * [名字规则](configuration/server_data_conf/name_conf.data.md) - * [扩展模块](module/modules.md) - * [mod_access](configuration/mod_access/mod_access.md) - * [mod_auth_basic](configuration/mod_auth_basic/mod_auth_basic.md) - * [mod_auth_jwt](configuration/mod_auth_jwt/mod_auth_jwt.md) - * [mod_block](configuration/mod_block/mod_block.md) - * [mod_compress](configuration/mod_compress/mod_compress.md) - * [mod_errors](configuration/mod_errors/mod_errors.md) - * [mod_geo](configuration/mod_geo/mod_geo.md) - * [mod_header](configuration/mod_header/mod_header.md) - * [mod_http_code](configuration/mod_http_code/mod_http_code.md) - * [mod_key_log](configuration/mod_key_log/mod_key_log.md) - * [mod_redirect](configuration/mod_redirect/mod_redirect.md) - * [mod_rewrite](configuration/mod_rewrite/mod_rewrite.md) - * [mod_static](configuration/mod_static/mod_static.md) - * [mod_tag](configuration/mod_tag/mod_tag.md) - * [mod_trust_clientip](configuration/mod_trust_clientip/mod_trust_clientip.md) - * [mod_userid](configuration/mod_userid/mod_userid.md) +* [扩展模块](modules/modules.md) + * [mod_access](modules/mod_access/mod_access.md) + * [mod_auth_basic](modules/mod_auth_basic/mod_auth_basic.md) + * [mod_auth_jwt](modules/mod_auth_jwt/mod_auth_jwt.md) + * [mod_block](modules/mod_block/mod_block.md) + * [mod_compress](modules/mod_compress/mod_compress.md) + * [mod_doh](modules/mod_doh/mod_doh.md) + * [mod_errors](modules/mod_errors/mod_errors.md) + * [mod_geo](modules/mod_geo/mod_geo.md) + * [mod_header](modules/mod_header/mod_header.md) + * [mod_http_code](modules/mod_http_code/mod_http_code.md) + * [mod_key_log](modules/mod_key_log/mod_key_log.md) + * [mod_logid](modules/mod_logid/mod_logid.md) + * [mod_prison](modules/mod_prison/mod_prison.md) + * [mod_redirect](modules/mod_redirect/mod_redirect.md) + * [mod_rewrite](modules/mod_rewrite/mod_rewrite.md) + * [mod_static](modules/mod_static/mod_static.md) + * [mod_tag](modules/mod_tag/mod_tag.md) + * [mod_trace](modules/mod_trace/mod_trace.md) + * [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) + * [mod_userid](modules/mod_userid/mod_userid.md) * 运维管理 * [命令行工具及参数](operation/command.md) * [环境变量说明](operation/env_var.md) @@ -74,9 +78,9 @@ * [版本发布说明](development/release_regulation.md) * 开发参考文档 * [代码结构说明](development/source_code_layout.md) - * [模块开发介绍](module/overview.md) - * [BFE回调机制说明](module/bfe_callback.md) - * [如何开发模块](module/how_to_write_module.md) + * [模块开发介绍](development/module/overview.md) + * [BFE回调机制说明](development/module/bfe_callback.md) + * [如何开发模块](development/module/how_to_write_module.md) * 常见问题 * [安装相关](faq/installation.md) * [配置相关](faq/configuration.md) @@ -97,17 +101,7 @@ * [均衡错误](monitor/bal_state.md) * 反向代理 * [转发状态](monitor/proxy_state.md) - * 扩展模块 - * [module_status](monitor/module_status.md) - * [mod_auth_basic](monitor/mod_auth_basic.md) - * [mod_auth_jwt](monitor/mod_auth_jwt.md) - * [mod_block](monitor/mod_block.md) - * [mod_compress](monitor/mod_compress.md) - * [mod_geo](monitor/mod_geo.md) - * [mod_http_code](monitor/mod_http_code.md) - * [mod_logid](monitor/mod_logid.md) - * [mod_static](monitor/mod_static.md) - * [mod_trust_clientip](monitor/mod_trust_clientip.md) + * [扩展模块](monitor/module_status.md) * 延迟 * [延迟分布](monitor/proxy_XXX_delay.md) * 附录B:条件原语 diff --git a/docs/zh_cn/configuration/mod_http_code/mod_http_code.md b/docs/zh_cn/configuration/mod_http_code/mod_http_code.md deleted file mode 100644 index 1d3972f0a..000000000 --- a/docs/zh_cn/configuration/mod_http_code/mod_http_code.md +++ /dev/null @@ -1,7 +0,0 @@ -# 模块简介 - -用来统计HTTP状态码。 - -# 基础配置 - -在bfe.conf中启用即可,无其它配置。 diff --git a/docs/zh_cn/configuration/mod_logid/mod_logid.md b/docs/zh_cn/configuration/mod_logid/mod_logid.md deleted file mode 100644 index e4f76a9eb..000000000 --- a/docs/zh_cn/configuration/mod_logid/mod_logid.md +++ /dev/null @@ -1,7 +0,0 @@ -# 模块简介 - -用来生成logid。 - -# 基础配置 - -在bfe.conf中启用即可,无其它配置。 diff --git a/docs/zh_cn/module/bfe_callback.md b/docs/zh_cn/development/module/bfe_callback.md similarity index 100% rename from docs/zh_cn/module/bfe_callback.md rename to docs/zh_cn/development/module/bfe_callback.md diff --git a/docs/zh_cn/module/how_to_write_module.md b/docs/zh_cn/development/module/how_to_write_module.md similarity index 100% rename from docs/zh_cn/module/how_to_write_module.md rename to docs/zh_cn/development/module/how_to_write_module.md diff --git a/docs/zh_cn/module/overview.md b/docs/zh_cn/development/module/overview.md similarity index 100% rename from docs/zh_cn/module/overview.md rename to docs/zh_cn/development/module/overview.md diff --git a/docs/zh_cn/configuration/mod_access/mod_access.md b/docs/zh_cn/modules/mod_access/mod_access.md similarity index 100% rename from docs/zh_cn/configuration/mod_access/mod_access.md rename to docs/zh_cn/modules/mod_access/mod_access.md diff --git a/docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md similarity index 80% rename from docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md rename to docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md index 08895add3..cd95cf2d1 100644 --- a/docs/zh_cn/configuration/mod_auth_basic/mod_auth_basic.md +++ b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md @@ -62,3 +62,13 @@ user2:{SHA}fEqNCco3Yq9h5ZUglD3CZJT4lBs=:user2, 123456 Version": "20190101000000" } ``` + +# 监控项 + +| 监控项 | 描述 | +| ----------------------- | ---------------------------------- | +| REQ_AUTH_RULE_HIT | 命中基本认证规则的请求数 | +| REQ_AUTH_CHALLENGE | 命中规则、未携带AUTHORIZATION头的请求数 | +| REQ_AUTH_SUCCESS | 认证成功的请求数 | +| REQ_AUTH_FAILURE | 认证失败的请求数 | + diff --git a/docs/zh_cn/configuration/mod_auth_jwt/mod_auth_jwt.md b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md similarity index 91% rename from docs/zh_cn/configuration/mod_auth_jwt/mod_auth_jwt.md rename to docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md index ba196271f..c4329aa0c 100644 --- a/docs/zh_cn/configuration/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md @@ -88,3 +88,11 @@ JWT(包括嵌套JWT)必须使用压缩序列格式(Compact Serialization),不 * 默认的,进行字段验证时仅在JWS的Payload部分或JWE的plaintext部分查找相关字段,可以通过配置启用EnabledHeaderClaims配置项达到当默认位置不存在相应字段时,则到Header部分中查找相关字段的目的。JWS的签名验证机制天然地可以保证Header和Payload的数据完整性;JWE虽然没有签名验证机制,但由于其解密AAD与Header相关,Header被篡改会导致AAD不正确,无法正确解密出明文,间接保证了JWE的Header的数据完整性。因此,启用该配置选项不必担心数据完整性问题,无论是对于JWS或是JWE。 * 由于[JWE](https://tools.ietf.org/html/rfc7516)的RFC文档中并未规定plaintext的具体格式;而[JWT](https://tools.ietf.org/html/rfc7519#section-3)的RFC文档说明了在JWE中,声明字段应为JWE的plaintext部分。故约定,对于JWE,在需要承载声明字段的情况下,将进行了base64URL编码后的声明字段JSON字符串作为JWE的plaintext,则ciphertext为:base64URLEncode(Encrypt(Claim Set))。在plaintext无法应用该规则进行解码、且未启用EnabledHeaderClaims的情况下,对JWE的字段验证会被跳过(默认成功)。 +# 监控项 + +| 监控项 | 描述 | +| ------------------------ | ---------------------------------- | +| AUTH_TOTAL | 命中认证规则的请求数 | +| AUTH_SUCCESS | 认证成功的请求数 | +| AUTH_FAILED | 认证失败的请求数 | +~ diff --git a/docs/zh_cn/configuration/mod_block/mod_block.md b/docs/zh_cn/modules/mod_block/mod_block.md similarity index 81% rename from docs/zh_cn/configuration/mod_block/mod_block.md rename to docs/zh_cn/modules/mod_block/mod_block.md index e55ff7c6f..106e6a2f1 100644 --- a/docs/zh_cn/configuration/mod_block/mod_block.md +++ b/docs/zh_cn/modules/mod_block/mod_block.md @@ -69,3 +69,17 @@ IPBlacklistPath = mod_block/ip_blacklist.data } } ``` + + +# 监控项 + +| 监控项 | 描述 | +| ------------- | ---------------------------- | +| CONN_TOTAL | 连接总数 | +| CONN_REFUSE | 连接拒绝的总数 | +| CONN_ACCEPT | 连接接受的总数 | +| REQ_TOTAL | 请求总数 | +| REQ_REFUSE | 请求拒绝的总数 | +| REQ_ACCEPT | 请求接受的总数 | +| REQ_TO_CHECK | 检查的请求数 | + diff --git a/docs/zh_cn/configuration/mod_compress/mod_compress.md b/docs/zh_cn/modules/mod_compress/mod_compress.md similarity index 81% rename from docs/zh_cn/configuration/mod_compress/mod_compress.md rename to docs/zh_cn/modules/mod_compress/mod_compress.md index 055ff528a..aa86301c5 100644 --- a/docs/zh_cn/configuration/mod_compress/mod_compress.md +++ b/docs/zh_cn/modules/mod_compress/mod_compress.md @@ -61,3 +61,13 @@ OpenDebug = false "Version": "20190101000000" } ``` + +# 监控项 + +| 监控项 | 描述 | +| ----------------------- | --------------------------------- | +| REQ_TOTAL |统计mod_compress处理的总请求数 | +| REQ_SUPPORT_COMPRESS |支持压缩请求数 | +| REQ_MATCH_COMPRESS_RULE |命中压缩规则请求数 | +| RES_ENCODE_COMPRESS |响应被压缩请求数 | + diff --git a/docs/zh_cn/modules/mod_doh/mod_doh.md b/docs/zh_cn/modules/mod_doh/mod_doh.md new file mode 100644 index 000000000..414496c45 --- /dev/null +++ b/docs/zh_cn/modules/mod_doh/mod_doh.md @@ -0,0 +1,2 @@ +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). + diff --git a/docs/zh_cn/configuration/mod_errors/mod_errors.md b/docs/zh_cn/modules/mod_errors/mod_errors.md similarity index 100% rename from docs/zh_cn/configuration/mod_errors/mod_errors.md rename to docs/zh_cn/modules/mod_errors/mod_errors.md diff --git a/docs/zh_cn/configuration/mod_geo/mod_geo.md b/docs/zh_cn/modules/mod_geo/mod_geo.md similarity index 63% rename from docs/zh_cn/configuration/mod_geo/mod_geo.md rename to docs/zh_cn/modules/mod_geo/mod_geo.md index 893df9068..1e0a38e25 100644 --- a/docs/zh_cn/configuration/mod_geo/mod_geo.md +++ b/docs/zh_cn/modules/mod_geo/mod_geo.md @@ -19,3 +19,11 @@ [basic] GeoDBPath = mod_geo/geo.db ``` + +# 监控项 + +| 监控项 | 描述 | +| ----------------------- | --------------------------------- | +| ERR_GET_GEO_INFO | 通过地理信息字典查询用户地理位置信息时,失败的次数 | +| ERR_RELOAD_GEO_DATABASE | Reload 地理信息字典失败的次数 | +~ diff --git a/docs/zh_cn/configuration/mod_header/mod_header.md b/docs/zh_cn/modules/mod_header/mod_header.md similarity index 100% rename from docs/zh_cn/configuration/mod_header/mod_header.md rename to docs/zh_cn/modules/mod_header/mod_header.md diff --git a/docs/zh_cn/monitor/mod_http_code.md b/docs/zh_cn/modules/mod_http_code/mod_http_code.md similarity index 74% rename from docs/zh_cn/monitor/mod_http_code.md rename to docs/zh_cn/modules/mod_http_code/mod_http_code.md index 976dfc2b5..96d8d68d8 100644 --- a/docs/zh_cn/monitor/mod_http_code.md +++ b/docs/zh_cn/modules/mod_http_code/mod_http_code.md @@ -1,6 +1,10 @@ -# 简介 +# 模块简介 -mod_http_code统计HTTP响应状态码。 +用来统计HTTP状态码。 + +# 基础配置 + +在bfe.conf中启用即可,无其它配置。 # 监控项 diff --git a/docs/zh_cn/configuration/mod_key_log/mod_key_log.md b/docs/zh_cn/modules/mod_key_log/mod_key_log.md similarity index 100% rename from docs/zh_cn/configuration/mod_key_log/mod_key_log.md rename to docs/zh_cn/modules/mod_key_log/mod_key_log.md diff --git a/docs/zh_cn/monitor/mod_logid.md b/docs/zh_cn/modules/mod_logid/mod_logid.md similarity index 68% rename from docs/zh_cn/monitor/mod_logid.md rename to docs/zh_cn/modules/mod_logid/mod_logid.md index b54a03b53..abdabde55 100644 --- a/docs/zh_cn/monitor/mod_logid.md +++ b/docs/zh_cn/modules/mod_logid/mod_logid.md @@ -1,9 +1,14 @@ -# 简介 +# 模块简介 -mod_logid 是模块logid的状态信息。 +用来生成logid。 + +# 基础配置 + +在bfe.conf中启用即可,无其它配置。 # 监控项 | 监控项 | 描述 | | ----------------------- | --------------------------------- | | NO_LOGID_FROM_UPPER_BFE | 来自信任上游且未携带logid的请求数 | + diff --git a/docs/zh_cn/modules/mod_prison/mod_prison.md b/docs/zh_cn/modules/mod_prison/mod_prison.md new file mode 100644 index 000000000..414496c45 --- /dev/null +++ b/docs/zh_cn/modules/mod_prison/mod_prison.md @@ -0,0 +1,2 @@ +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). + diff --git a/docs/zh_cn/configuration/mod_redirect/mod_redirect.md b/docs/zh_cn/modules/mod_redirect/mod_redirect.md similarity index 100% rename from docs/zh_cn/configuration/mod_redirect/mod_redirect.md rename to docs/zh_cn/modules/mod_redirect/mod_redirect.md diff --git a/docs/zh_cn/configuration/mod_rewrite/mod_rewrite.md b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md similarity index 100% rename from docs/zh_cn/configuration/mod_rewrite/mod_rewrite.md rename to docs/zh_cn/modules/mod_rewrite/mod_rewrite.md diff --git a/docs/zh_cn/configuration/mod_static/mod_static.md b/docs/zh_cn/modules/mod_static/mod_static.md similarity index 86% rename from docs/zh_cn/configuration/mod_static/mod_static.md rename to docs/zh_cn/modules/mod_static/mod_static.md index 2b5323555..c92388243 100644 --- a/docs/zh_cn/configuration/mod_static/mod_static.md +++ b/docs/zh_cn/modules/mod_static/mod_static.md @@ -81,3 +81,13 @@ MIME配置文件: conf/mod_static/mime_type.data "Version": "20190101000000" } ``` + +# 监控项 + +| 监控项 | 描述 | +| ----------------------- | --------------------------------- | +| FILE_BROWSE_COUNT |统计BROWSE请求数 | +| FILE_CURRENT_OPENED |统计当前打开的文件数 | +| FILE_BROWSE_NOT_EXIST |文件不存在请求数 | +| FILE_BROWSE_SIZE |已处理文件总大小 | + diff --git a/docs/zh_cn/configuration/mod_tag/mod_tag.md b/docs/zh_cn/modules/mod_tag/mod_tag.md similarity index 100% rename from docs/zh_cn/configuration/mod_tag/mod_tag.md rename to docs/zh_cn/modules/mod_tag/mod_tag.md diff --git a/docs/zh_cn/configuration/mod_trace/mod_trace.md b/docs/zh_cn/modules/mod_trace/mod_trace.md similarity index 100% rename from docs/zh_cn/configuration/mod_trace/mod_trace.md rename to docs/zh_cn/modules/mod_trace/mod_trace.md diff --git a/docs/zh_cn/configuration/mod_trust_clientip/mod_trust_clientip.md b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md similarity index 80% rename from docs/zh_cn/configuration/mod_trust_clientip/mod_trust_clientip.md rename to docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md index b4a2ce1f4..10af80d2a 100644 --- a/docs/zh_cn/configuration/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md @@ -47,3 +47,9 @@ DataPath = mod_trust_clientip/trust_client_ip.data } ``` +# 监控信息 + +| 监控项 | 描述 | +| ---------------------------- | -------------------------------------- | +| CONN_TOTAL | 所有连接数 | +| CONN_TRUST_CLIENTIP | 来源于信任地址的连接数 | diff --git a/docs/zh_cn/configuration/mod_userid/mod_userid.md b/docs/zh_cn/modules/mod_userid/mod_userid.md similarity index 100% rename from docs/zh_cn/configuration/mod_userid/mod_userid.md rename to docs/zh_cn/modules/mod_userid/mod_userid.md diff --git a/docs/zh_cn/module/modules.md b/docs/zh_cn/modules/modules.md similarity index 89% rename from docs/zh_cn/module/modules.md rename to docs/zh_cn/modules/modules.md index e7175025c..021184e5e 100644 --- a/docs/zh_cn/module/modules.md +++ b/docs/zh_cn/modules/modules.md @@ -1,16 +1,18 @@ -# 扩展模块索引 +# 扩展模块 - [mod_access](configuration/mod_access/mod_access.md) - [mod_auth_basic](configuration/mod_auth_basic/mod_auth_basic.md) - [mod_auth_jwt](configuration/mod_auth_jwt/mod_auth_jwt.md) - [mod_block](configuration/mod_block/mod_block.md) - [mod_compress](configuration/mod_compress/mod_compress.md) +- [mod_doh](configuration/mod_doh/mod_doh.md) - [mod_errors](configuration/mod_errors/mod_errors.md) - [mod_geo](configuration/mod_geo/mod_geo.md) - [mod_header](configuration/mod_header/mod_header.md) - [mod_http_code](configuration/mod_http_code/mod_http_code.md) - [mod_key_log](configuration/mod_key_log/mod_key_log.md) - [mod_logid](configuration/mod_logid/mod_logid.md) +- [mod_prison](configuration/mod_prison/mod_prison.md) - [mod_redirect](configuration/mod_redirect/mod_redirect.md) - [mod_rewrite](configuration/mod_rewrite/mod_rewrite.md) - [mod_static](configuration/mod_static/mod_static.md) diff --git a/docs/zh_cn/monitor/mod_auth_basic.md b/docs/zh_cn/monitor/mod_auth_basic.md deleted file mode 100644 index bdd740a0e..000000000 --- a/docs/zh_cn/monitor/mod_auth_basic.md +++ /dev/null @@ -1,12 +0,0 @@ -# 简介 - -mod_auth_basic支持HTTP基本认证。 - -# 监控项 - -| 监控项 | 描述 | -| ----------------------- | ---------------------------------- | -| REQ_AUTH_RULE_HIT | 命中基本认证规则的请求数 | -| REQ_AUTH_CHALLENGE | 命中规则、未携带AUTHORIZATION头的请求数 | -| REQ_AUTH_SUCCESS | 认证成功的请求数 | -| REQ_AUTH_FAILURE | 认证失败的请求数 | \ No newline at end of file diff --git a/docs/zh_cn/monitor/mod_auth_jwt.md b/docs/zh_cn/monitor/mod_auth_jwt.md deleted file mode 100644 index cc2992b25..000000000 --- a/docs/zh_cn/monitor/mod_auth_jwt.md +++ /dev/null @@ -1,11 +0,0 @@ -# 简介 - -mod_auth_jwt支持JWT身份认证。 - -# 监控项 - -| 监控项 | 描述 | -| ------------------------ | ---------------------------------- | -| AUTH_TOTAL | 命中认证规则的请求数 | -| AUTH_SUCCESS | 认证成功的请求数 | -| AUTH_FAILED | 认证失败的请求数 | \ No newline at end of file diff --git a/docs/zh_cn/monitor/mod_block.md b/docs/zh_cn/monitor/mod_block.md deleted file mode 100644 index cbed2ae03..000000000 --- a/docs/zh_cn/monitor/mod_block.md +++ /dev/null @@ -1,16 +0,0 @@ -# 简介 - -mod_block 是封禁模块的状态信息。 - -# 监控项 - -| 监控项 | 描述 | -| ------------- | ---------------------------- | -| CONN_TOTAL | 连接总数 | -| CONN_REFUSE | 连接拒绝的总数 | -| CONN_ACCEPT | 连接接受的总数 | -| REQ_TOTAL | 请求总数 | -| REQ_REFUSE | 请求拒绝的总数 | -| REQ_ACCEPT | 请求接受的总数 | -| REQ_TO_CHECK | 检查的请求数 | - diff --git a/docs/zh_cn/monitor/mod_compress.md b/docs/zh_cn/monitor/mod_compress.md deleted file mode 100644 index 99bce6c10..000000000 --- a/docs/zh_cn/monitor/mod_compress.md +++ /dev/null @@ -1,12 +0,0 @@ -# 简介 - -mod_compress支持响应压缩,如:GZIP压缩。 - -# 监控项 - -| 监控项 | 描述 | -| ----------------------- | --------------------------------- | -| REQ_TOTAL |统计mod_compress处理的总请求数 | -| REQ_SUPPORT_COMPRESS |支持压缩请求数 | -| REQ_MATCH_COMPRESS_RULE |命中压缩规则请求数 | -| RES_ENCODE_COMPRESS |响应被压缩请求数 | \ No newline at end of file diff --git a/docs/zh_cn/monitor/mod_geo.md b/docs/zh_cn/monitor/mod_geo.md deleted file mode 100644 index 9ed52376e..000000000 --- a/docs/zh_cn/monitor/mod_geo.md +++ /dev/null @@ -1,10 +0,0 @@ -# 简介 - -mod_geo 是模块geo的状态信息。 - -# 监控项 - -| 监控项 | 描述 | -| ----------------------- | --------------------------------- | -| ERR_GET_GEO_INFO | 通过地理信息字典查询用户地理位置信息时,失败的次数 | -| ERR_RELOAD_GEO_DATABASE | Reload 地理信息字典失败的次数 | diff --git a/docs/zh_cn/monitor/mod_static.md b/docs/zh_cn/monitor/mod_static.md deleted file mode 100644 index 385982782..000000000 --- a/docs/zh_cn/monitor/mod_static.md +++ /dev/null @@ -1,12 +0,0 @@ -# 简介 - -mod_static支持静态文件访问。 - -# 监控项 - -| 监控项 | 描述 | -| ----------------------- | --------------------------------- | -| FILE_BROWSE_COUNT |统计BROWSE请求数 | -| FILE_CURRENT_OPENED |统计当前打开的文件数 | -| FILE_BROWSE_NOT_EXIST |文件不存在请求数 | -| FILE_BROWSE_SIZE |已处理文件总大小 | \ No newline at end of file diff --git a/docs/zh_cn/monitor/mod_trust_clientip.md b/docs/zh_cn/monitor/mod_trust_clientip.md deleted file mode 100644 index 85b4a812d..000000000 --- a/docs/zh_cn/monitor/mod_trust_clientip.md +++ /dev/null @@ -1,11 +0,0 @@ -# 简介 - -mod_trust_clientip 是模块trust_clientip的状态信息。 - -# 监控信息 - -| 监控项 | 描述 | -| ---------------------------- | -------------------------------------- | -| CONN_TOTAL | 所有连接数 | -| CONN_TRUST_CLIENTIP | 来源于信任地址的连接数 | - diff --git a/docs/zh_cn/monitor/module_status.md b/docs/zh_cn/monitor/module_status.md index 901c221b6..18c269dc6 100644 --- a/docs/zh_cn/monitor/module_status.md +++ b/docs/zh_cn/monitor/module_status.md @@ -9,3 +9,5 @@ module_status 是模块信息。 | available | 可用模块列表 | | enabled | 启用模块列表 | +关于模块监控项, []() + From fa4d33262952ae9c500c7b250c9ee2b8358a7c68 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Wed, 6 May 2020 16:05:12 +0800 Subject: [PATCH 051/111] Update docs//modules/modules.md --- docs/en_us/modules/mod_access/mod_access.md | 2 +- .../modules/mod_auth_basic/mod_auth_basic.md | 4 +- docs/en_us/modules/mod_block/mod_block.md | 2 +- .../modules/mod_compress/mod_compress.md | 4 +- docs/en_us/modules/mod_errors/mod_errors.md | 6 +-- docs/en_us/modules/mod_geo/mod_geo.md | 2 +- docs/en_us/modules/mod_header/mod_header.md | 2 +- .../modules/mod_redirect/mod_redirect.md | 4 +- docs/en_us/modules/mod_rewrite/mod_rewrite.md | 4 +- docs/en_us/modules/mod_static/mod_static.md | 4 +- docs/en_us/modules/mod_tag/mod_tag.md | 4 +- docs/en_us/modules/mod_trace/mod_trace.md | 6 +-- .../mod_trust_clientip/mod_trust_clientip.md | 4 +- docs/en_us/modules/mod_userid/mod_userid.md | 4 +- docs/en_us/modules/modules.md | 33 +++++++++------ docs/zh_cn/modules/modules.md | 40 +++++++++---------- 16 files changed, 67 insertions(+), 58 deletions(-) diff --git a/docs/en_us/modules/mod_access/mod_access.md b/docs/en_us/modules/mod_access/mod_access.md index 82230e0a2..46ed52600 100644 --- a/docs/en_us/modules/mod_access/mod_access.md +++ b/docs/en_us/modules/mod_access/mod_access.md @@ -2,7 +2,7 @@ The mod_access module writes request logs and session logs in the specified format. -# Module configuration +# Module Configuration ## Description conf/mod_access/mod_access.conf diff --git a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md index 86945c5aa..8f7a66dbf 100644 --- a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md @@ -2,7 +2,7 @@ mod_auth_basic implements the HTTP basic authentication. -# Module configuration +# Module Configuration ## Description conf/mod_auth_basic/mod_auth_basic.conf @@ -21,7 +21,7 @@ DataPath = mod_auth_basic/auth_basic_rule.data OpenDebug = false ``` -# Rule configuration +# Rule Configuration ## Description | Config Item | Description | | ---------------------| ------------------------------------------- | diff --git a/docs/en_us/modules/mod_block/mod_block.md b/docs/en_us/modules/mod_block/mod_block.md index 258ab4509..ade4bb792 100644 --- a/docs/en_us/modules/mod_block/mod_block.md +++ b/docs/en_us/modules/mod_block/mod_block.md @@ -29,7 +29,7 @@ Format of IPBlacklistPath file 192.168.1.250 ``` -# Rule configuration +# Rule Configuration ## Description diff --git a/docs/en_us/modules/mod_compress/mod_compress.md b/docs/en_us/modules/mod_compress/mod_compress.md index 1034451c2..85a5e4dd5 100644 --- a/docs/en_us/modules/mod_compress/mod_compress.md +++ b/docs/en_us/modules/mod_compress/mod_compress.md @@ -2,7 +2,7 @@ mod_compress compresses responses using specified method. -# Module configuration +# Module Configuration ## Description conf/mod_compress/mod_compress.conf @@ -20,7 +20,7 @@ DataPath = mod_compress/compress_rule.data OpenDebug = false ``` -# Rule configuration +# Rule Configuration ## Description | Config Item | Description | | ----------- | -------------------------------------------------------------- | diff --git a/docs/en_us/modules/mod_errors/mod_errors.md b/docs/en_us/modules/mod_errors/mod_errors.md index 019eab51b..95595d2db 100644 --- a/docs/en_us/modules/mod_errors/mod_errors.md +++ b/docs/en_us/modules/mod_errors/mod_errors.md @@ -2,7 +2,7 @@ mod_errors replaces error responses by specified rules. -# Module configuration +# Module Configuration ## Description conf/mod_errors/mod_errors.conf @@ -17,7 +17,7 @@ conf/mod_errors/mod_errors.conf DataPath = mod_errors/errors_rule.data ``` -# Rule configuration +# Rule Configuration ## Description | Config Item | Description | @@ -33,7 +33,7 @@ DataPath = mod_errors/errors_rule.data | Config{v}[].Actions.Params | Object
Parameters of Action | | Config{v}[].Actions.Params[] | String
A Parameter | -## Module actions +## Module Actions | Action | Description | | -------- | ---------------------- | | RETURN | Return response generated from specified static html | diff --git a/docs/en_us/modules/mod_geo/mod_geo.md b/docs/en_us/modules/mod_geo/mod_geo.md index 915e296e6..494522d94 100644 --- a/docs/en_us/modules/mod_geo/mod_geo.md +++ b/docs/en_us/modules/mod_geo/mod_geo.md @@ -2,7 +2,7 @@ mod_geo creates [variables](../mod_header/mod_header.md) with values depending on the client IP address, using the GEO databases. -# Module configuration +# Module Configuration ## Description conf/mod_geo/mod_geo.conf diff --git a/docs/en_us/modules/mod_header/mod_header.md b/docs/en_us/modules/mod_header/mod_header.md index 731990815..866a12140 100644 --- a/docs/en_us/modules/mod_header/mod_header.md +++ b/docs/en_us/modules/mod_header/mod_header.md @@ -2,7 +2,7 @@ Modify header of HTTP request/response based on defined rules. -# Module configuration +# Module Configuration ## Description conf/mod_header/mod_header.conf diff --git a/docs/en_us/modules/mod_redirect/mod_redirect.md b/docs/en_us/modules/mod_redirect/mod_redirect.md index 61d9fac37..d15e13b0e 100644 --- a/docs/en_us/modules/mod_redirect/mod_redirect.md +++ b/docs/en_us/modules/mod_redirect/mod_redirect.md @@ -2,7 +2,7 @@ Redirect HTTP request based on defined rules. -# Module configuration +# Module Configuration ## Description conf/mod_redirect/mod_redirect.conf @@ -18,7 +18,7 @@ conf/mod_redirect/mod_redirect.conf DataPath = mod_redirect/redirect.data ``` -# Rule configuration +# Rule Configuration ## Description conf/mod_redirect/redirect.data diff --git a/docs/en_us/modules/mod_rewrite/mod_rewrite.md b/docs/en_us/modules/mod_rewrite/mod_rewrite.md index 47d5d7428..527c85eeb 100644 --- a/docs/en_us/modules/mod_rewrite/mod_rewrite.md +++ b/docs/en_us/modules/mod_rewrite/mod_rewrite.md @@ -2,7 +2,7 @@ Modify URI of HTTP request based on defined rules. -# Module configuration +# Module Configuration ## Description conf/mod_rewrite/mod_rewrite.conf @@ -18,7 +18,7 @@ conf/mod_rewrite/mod_rewrite.conf DataPath = mod_rewrite/rewrite.data ``` -# Rule configuration +# Rule Configuration ## Description conf/mod_rewrite/rewrite.data diff --git a/docs/en_us/modules/mod_static/mod_static.md b/docs/en_us/modules/mod_static/mod_static.md index f82894e74..5308f949a 100644 --- a/docs/en_us/modules/mod_static/mod_static.md +++ b/docs/en_us/modules/mod_static/mod_static.md @@ -2,7 +2,7 @@ mod_static serves static files. -# Module configuration +# Module Configuration ## Description conf/mod_static/mod_static.conf @@ -17,7 +17,7 @@ conf/mod_static/mod_static.conf DataPath = mod_static/static_rule.data ``` -# Rule configuration +# Rule Configuration ## Description conf/mod_static/static_rule.data diff --git a/docs/en_us/modules/mod_tag/mod_tag.md b/docs/en_us/modules/mod_tag/mod_tag.md index 0b26082bd..29add89e0 100644 --- a/docs/en_us/modules/mod_tag/mod_tag.md +++ b/docs/en_us/modules/mod_tag/mod_tag.md @@ -2,7 +2,7 @@ Set tags for request based on defined rules. -# Module configuration +# Module Configuration ## Description conf/mod_tag/mod_tag.conf @@ -21,7 +21,7 @@ DataPath = mod_tag/tag_rule.data OpenDebug = true ``` -# Rule configuration +# Rule Configuration ## Description conf/mod_tag/tag_rule.data diff --git a/docs/en_us/modules/mod_trace/mod_trace.md b/docs/en_us/modules/mod_trace/mod_trace.md index 0751855cf..f17157ec9 100644 --- a/docs/en_us/modules/mod_trace/mod_trace.md +++ b/docs/en_us/modules/mod_trace/mod_trace.md @@ -2,12 +2,12 @@ Enable trace for requests based on defined rules. -# Module configuration +# Module Configuration ## Description conf/mod_trace/mod_trace.conf -### Basic configuration +### Basic Configuration | Config Item | Description | | ------------------------------| --------------------------------| @@ -153,7 +153,7 @@ ServerURL = http://127.0.0.1:8200 SecretToken = "" ``` -# Rule configuration +# Rule Configuration ## Description conf/mod_trace/trace_rule.data diff --git a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md index c03a54713..781360a5c 100644 --- a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md @@ -2,7 +2,7 @@ Check client IP of incoming request against trusted ip dict. If matched, mark request/connection is trusted. -# Module configuration +# Module Configuration ## Description conf/mod_trust_clientip/mod_trust_clientip.conf @@ -17,7 +17,7 @@ conf/mod_trust_clientip/mod_trust_clientip.conf DataPath = mod_trust_clientip/trust_client_ip.data ``` -# Rule configuraiton +# Rule Configuraiton ## Description conf/mod_trust_clientip/trust_client_ip.data diff --git a/docs/en_us/modules/mod_userid/mod_userid.md b/docs/en_us/modules/mod_userid/mod_userid.md index 7dfa379a8..defe8cbce 100644 --- a/docs/en_us/modules/mod_userid/mod_userid.md +++ b/docs/en_us/modules/mod_userid/mod_userid.md @@ -2,7 +2,7 @@ Add user id to cookie for client identification. -# Module configuration +# Module Configuration ## Description conf/mod_userid/mod_userid.conf @@ -21,7 +21,7 @@ DataPath = mod_userid/userid_rule.data OpenDebug = true ``` -# Rule configuration +# Rule Configuration ## Description conf/mod_userid/userid_rule.data diff --git a/docs/en_us/modules/modules.md b/docs/en_us/modules/modules.md index 27cf8cebb..44447714b 100644 --- a/docs/en_us/modules/modules.md +++ b/docs/en_us/modules/modules.md @@ -1,14 +1,23 @@ -# Plugin module +# BFE Module -- [mod_access](configuration/mod_access/mod_access.md) -- [mod_block](configuration/mod_block/mod_block.md) -- [mod_header](configuration/mod_header/mod_header.md) -- [mod_logid](configuration/mod_logid/mod_logid.md) -- [mod_http_code](configuration/mod_http_code/mod_http_code.md) -- [mod_key_log](configuration/mod_key_log/mod_key_log.md) -- [mod_redirect](configuration/mod_redirect/mod_redirect.md) -- [mod_rewrite](configuration/mod_rewrite/mod_rewrite.md) -- [mod_static](configuration/mod_static/mod_static.md) -- [mod_trust_clientip](configuration/mod_trust_clientip/mod_trust_clientip.md) -- [mod_userid](configuration/mod_userid/mod_userid.md) +- [mod_access](modules/mod_access/mod_access.md) +- [mod_auth_basic](modules/mod_auth_basic/mod_auth_basic.md) +- [mod_auth_jwt](modules/mod_auth_jwt/mod_auth_jwt.md) +- [mod_block](modules/mod_block/mod_block.md) +- [mod_compress](modules/mod_compress/mod_compress.md) +- [mod_doh](modules/mod_doh/mod_doh.md) +- [mod_errors](modules/mod_errors/mod_errors.md) +- [mod_geo](modules/mod_geo/mod_geo.md) +- [mod_header](modules/mod_header/mod_header.md) +- [mod_http_code](modules/mod_http_code/mod_http_code.md) +- [mod_key_log](modules/mod_key_log/mod_key_log.md) +- [mod_logid](modules/mod_logid/mod_logid.md) +- [mod_prison](modules/mod_prison/mod_prison.md) +- [mod_redirect](modules/mod_redirect/mod_redirect.md) +- [mod_rewrite](modules/mod_rewrite/mod_rewrite.md) +- [mod_static](modules/mod_static/mod_static.md) +- [mod_tag](modules/mod_tag/mod_tag.md) +- [mod_trace](modules/mod_trace/mod_trace.md) +- [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) +- [mod_userid](modules/mod_userid/mod_userid.md) diff --git a/docs/zh_cn/modules/modules.md b/docs/zh_cn/modules/modules.md index 021184e5e..6eac581b0 100644 --- a/docs/zh_cn/modules/modules.md +++ b/docs/zh_cn/modules/modules.md @@ -1,22 +1,22 @@ # 扩展模块 -- [mod_access](configuration/mod_access/mod_access.md) -- [mod_auth_basic](configuration/mod_auth_basic/mod_auth_basic.md) -- [mod_auth_jwt](configuration/mod_auth_jwt/mod_auth_jwt.md) -- [mod_block](configuration/mod_block/mod_block.md) -- [mod_compress](configuration/mod_compress/mod_compress.md) -- [mod_doh](configuration/mod_doh/mod_doh.md) -- [mod_errors](configuration/mod_errors/mod_errors.md) -- [mod_geo](configuration/mod_geo/mod_geo.md) -- [mod_header](configuration/mod_header/mod_header.md) -- [mod_http_code](configuration/mod_http_code/mod_http_code.md) -- [mod_key_log](configuration/mod_key_log/mod_key_log.md) -- [mod_logid](configuration/mod_logid/mod_logid.md) -- [mod_prison](configuration/mod_prison/mod_prison.md) -- [mod_redirect](configuration/mod_redirect/mod_redirect.md) -- [mod_rewrite](configuration/mod_rewrite/mod_rewrite.md) -- [mod_static](configuration/mod_static/mod_static.md) -- [mod_tag](configuration/mod_tag/mod_tag.md) -- [mod_trace](configuration/mod_trace/mod_trace.md) -- [mod_trust_clientip](configuration/mod_trust_clientip/mod_trust_clientip.md) -- [mod_userid](configuration/mod_userid/mod_userid.md) +- [mod_access](modules/mod_access/mod_access.md) +- [mod_auth_basic](modules/mod_auth_basic/mod_auth_basic.md) +- [mod_auth_jwt](modules/mod_auth_jwt/mod_auth_jwt.md) +- [mod_block](modules/mod_block/mod_block.md) +- [mod_compress](modules/mod_compress/mod_compress.md) +- [mod_doh](modules/mod_doh/mod_doh.md) +- [mod_errors](modules/mod_errors/mod_errors.md) +- [mod_geo](modules/mod_geo/mod_geo.md) +- [mod_header](modules/mod_header/mod_header.md) +- [mod_http_code](modules/mod_http_code/mod_http_code.md) +- [mod_key_log](modules/mod_key_log/mod_key_log.md) +- [mod_logid](modules/mod_logid/mod_logid.md) +- [mod_prison](modules/mod_prison/mod_prison.md) +- [mod_redirect](modules/mod_redirect/mod_redirect.md) +- [mod_rewrite](modules/mod_rewrite/mod_rewrite.md) +- [mod_static](modules/mod_static/mod_static.md) +- [mod_tag](modules/mod_tag/mod_tag.md) +- [mod_trace](modules/mod_trace/mod_trace.md) +- [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) +- [mod_userid](modules/mod_userid/mod_userid.md) From 33bbd21a2b73a553c51cab74622e0fb411c93c7e Mon Sep 17 00:00:00 2001 From: yangsijie Date: Wed, 6 May 2020 16:16:39 +0800 Subject: [PATCH 052/111] Update docs/en_us/SUMMARY.md --- docs/en_us/SUMMARY.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index 8511c3050..ad0703a95 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -43,17 +43,22 @@ * [Modules](modules/modules.md) * [mod_access](modules/mod_access/mod_access.md) * [mod_auth_basic](modules/mod_auth_basic/mod_auth_basic.md) + * [mod_auth_jwt](modules/mod_auth_jwt/mod_auth_jwt.md) * [mod_block](modules/mod_block/mod_block.md) * [mod_compress](modules/mod_compress/mod_compress.md) + * [mod_doh](modules/mod_doh/mod_doh.md) * [mod_errors](modules/mod_errors/mod_errors.md) * [mod_geo](modules/mod_geo/mod_geo.md) * [mod_header](modules/mod_header/mod_header.md) * [mod_http_code](modules/mod_http_code/mod_http_code.md) * [mod_key_log](modules/mod_key_log/mod_key_log.md) + * [mod_logid](modules/mod_logid/mod_logid.md) + * [mod_prison](modules/mod_prison/mod_prison.md) * [mod_redirect](modules/mod_redirect/mod_redirect.md) * [mod_rewrite](modules/mod_rewrite/mod_rewrite.md) * [mod_static](modules/mod_static/mod_static.md) * [mod_tag](modules/mod_tag/mod_tag.md) + * [mod_trace](modules/mod_trace/mod_trace.md) * [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) * [mod_userid](modules/mod_userid/mod_userid.md) * Operation From f6584330e8e0627d0307d18822a13eaabc4b71fa Mon Sep 17 00:00:00 2001 From: yangsijie Date: Wed, 6 May 2020 19:35:39 +0800 Subject: [PATCH 053/111] docs: fix broken links --- docs/en_us/SUMMARY.md | 2 +- docs/en_us/development/local_dev_guide.md | 4 +- docs/en_us/development/write_doc_guide.md | 2 +- docs/en_us/faq/configuration.md | 2 +- .../modules/mod_auth_jwt/mod_auth_jwt.md | 2 + docs/en_us/modules/mod_doh/mod_doh.md | 2 + docs/en_us/modules/mod_prison/mod_prison.md | 2 + docs/en_us/modules/modules.md | 40 +++++++++---------- docs/en_us/operation/capture_packet.md | 2 +- docs/en_us/operation/log_rotation.md | 4 +- docs/zh_cn/development/local_dev_guide.md | 4 +- docs/zh_cn/development/write_doc_guide.md | 2 +- docs/zh_cn/faq/configuration.md | 2 +- docs/zh_cn/modules/modules.md | 40 +++++++++---------- docs/zh_cn/operation/capture_packet.md | 2 +- docs/zh_cn/operation/log_rotation.md | 4 +- 16 files changed, 61 insertions(+), 55 deletions(-) create mode 100644 docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md create mode 100644 docs/en_us/modules/mod_doh/mod_doh.md create mode 100644 docs/en_us/modules/mod_prison/mod_prison.md diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index ad0703a95..8e7f3e88c 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -86,7 +86,7 @@ * [Configuration](faq/configuration.md) * [Performance](faq/performance.md) * [Development](faq/development.md) -* [Appendix A: Monitor](monitor.md) +* Appendix A: Monitor * Protocol * [SSL/TLS](monitor/tls_state.md) * [HTTP](monitor/http_state.md) diff --git a/docs/en_us/development/local_dev_guide.md b/docs/en_us/development/local_dev_guide.md index 31b1cd511..4f3aeaf5f 100644 --- a/docs/en_us/development/local_dev_guide.md +++ b/docs/en_us/development/local_dev_guide.md @@ -26,7 +26,7 @@ $ cd bfe ## Create local branch -At present [Git stream branch model](http://nvie.com/posts/a-successful-git-branching-model/) is applied to BFE to undergo task of development,test,release and maintenance.Please refer to [branch regulation of BFE](../development/releasing_process.md) about details。 +At present [Git stream branch model](http://nvie.com/posts/a-successful-git-branching-model/) is applied to BFE to undergo task of development,test,release and maintenance.Please refer to [branch regulation of BFE](release_regulation.md) about details。 All development tasks of feature and bug fix should be finished in a new branch which is extended from `develop` branch. @@ -75,7 +75,7 @@ no changes added to commit (use "git add" and/or "git commit -a") ## Build and test -Please refer to [Build and Run](../install.md) about construction and test. +Please refer to [Build and Run](../installation/install_from_source.md) about construction and test. ## Commit diff --git a/docs/en_us/development/write_doc_guide.md b/docs/en_us/development/write_doc_guide.md index 56efb7dc7..184d0a3b8 100644 --- a/docs/en_us/development/write_doc_guide.md +++ b/docs/en_us/development/write_doc_guide.md @@ -87,4 +87,4 @@ The steps to submit changes and PR can refer to [How to contribute code](../deve ## Help improve preview tool -We encourage your contributions to all aspects of the platform and supportive contents. You can Fork or Clone repository, ask questions and feedback, or submit bugs on issues. For details, please refer to the [Development Guide](../../../README.md). +We encourage your contributions to all aspects of the platform and supportive contents. You can Fork or Clone repository, ask questions and feedback, or submit bugs on issues. For details, please refer to the [Development Guide](https://github.com/baidu/bfe/blob/develop/README.md). diff --git a/docs/en_us/faq/configuration.md b/docs/en_us/faq/configuration.md index 94eeade5d..ebaaa9936 100644 --- a/docs/en_us/faq/configuration.md +++ b/docs/en_us/faq/configuration.md @@ -4,4 +4,4 @@ - For more details, see [TLS client authentication example](https://github.com/baidu/bfe/blob/develop/docs/zh_cn/example/client_auth.md) ## How to enable HTTP2 protocol -- See [conf/tls_conf/tls_rule_conf.data](configuration/tls_conf/tls_rule_conf.data.md) configuration example +- See [conf/tls_conf/tls_rule_conf.data](../configuration/tls_conf/tls_rule_conf.data.md) configuration example diff --git a/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md new file mode 100644 index 000000000..414496c45 --- /dev/null +++ b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md @@ -0,0 +1,2 @@ +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). + diff --git a/docs/en_us/modules/mod_doh/mod_doh.md b/docs/en_us/modules/mod_doh/mod_doh.md new file mode 100644 index 000000000..414496c45 --- /dev/null +++ b/docs/en_us/modules/mod_doh/mod_doh.md @@ -0,0 +1,2 @@ +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). + diff --git a/docs/en_us/modules/mod_prison/mod_prison.md b/docs/en_us/modules/mod_prison/mod_prison.md new file mode 100644 index 000000000..414496c45 --- /dev/null +++ b/docs/en_us/modules/mod_prison/mod_prison.md @@ -0,0 +1,2 @@ +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). + diff --git a/docs/en_us/modules/modules.md b/docs/en_us/modules/modules.md index 44447714b..73d88087d 100644 --- a/docs/en_us/modules/modules.md +++ b/docs/en_us/modules/modules.md @@ -1,23 +1,23 @@ # BFE Module -- [mod_access](modules/mod_access/mod_access.md) -- [mod_auth_basic](modules/mod_auth_basic/mod_auth_basic.md) -- [mod_auth_jwt](modules/mod_auth_jwt/mod_auth_jwt.md) -- [mod_block](modules/mod_block/mod_block.md) -- [mod_compress](modules/mod_compress/mod_compress.md) -- [mod_doh](modules/mod_doh/mod_doh.md) -- [mod_errors](modules/mod_errors/mod_errors.md) -- [mod_geo](modules/mod_geo/mod_geo.md) -- [mod_header](modules/mod_header/mod_header.md) -- [mod_http_code](modules/mod_http_code/mod_http_code.md) -- [mod_key_log](modules/mod_key_log/mod_key_log.md) -- [mod_logid](modules/mod_logid/mod_logid.md) -- [mod_prison](modules/mod_prison/mod_prison.md) -- [mod_redirect](modules/mod_redirect/mod_redirect.md) -- [mod_rewrite](modules/mod_rewrite/mod_rewrite.md) -- [mod_static](modules/mod_static/mod_static.md) -- [mod_tag](modules/mod_tag/mod_tag.md) -- [mod_trace](modules/mod_trace/mod_trace.md) -- [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) -- [mod_userid](modules/mod_userid/mod_userid.md) +- [mod_access](mod_access/mod_access.md) +- [mod_auth_basic](mod_auth_basic/mod_auth_basic.md) +- [mod_auth_jwt](mod_auth_jwt/mod_auth_jwt.md) +- [mod_block](mod_block/mod_block.md) +- [mod_compress](mod_compress/mod_compress.md) +- [mod_doh](mod_doh/mod_doh.md) +- [mod_errors](mod_errors/mod_errors.md) +- [mod_geo](mod_geo/mod_geo.md) +- [mod_header](mod_header/mod_header.md) +- [mod_http_code](mod_http_code/mod_http_code.md) +- [mod_key_log](mod_key_log/mod_key_log.md) +- [mod_logid](mod_logid/mod_logid.md) +- [mod_prison](mod_prison/mod_prison.md) +- [mod_redirect](mod_redirect/mod_redirect.md) +- [mod_rewrite](mod_rewrite/mod_rewrite.md) +- [mod_static](mod_static/mod_static.md) +- [mod_tag](mod_tag/mod_tag.md) +- [mod_trace](mod_trace/mod_trace.md) +- [mod_trust_clientip](mod_trust_clientip/mod_trust_clientip.md) +- [mod_userid](mod_userid/mod_userid.md) diff --git a/docs/en_us/operation/capture_packet.md b/docs/en_us/operation/capture_packet.md index 7802365ac..a853fb140 100644 --- a/docs/en_us/operation/capture_packet.md +++ b/docs/en_us/operation/capture_packet.md @@ -21,7 +21,7 @@ Use wireshark to open packet capture file. For TLS-based encrypted traffic, you can use mod_key_log and wireshark for analysis. * Step1: Enable mod_key_log module and save the TLS session key to key.log file - * Note:modify bfe.conf and enable mod_key_log, See module configuration [mod_key_log](../configuration/mod_key_log/mod_key_log.md) for details + * Note:modify bfe.conf and enable mod_key_log, See module configuration [mod_key_log](../modules/mod_key_log/mod_key_log.md) for details ``` [server] diff --git a/docs/en_us/operation/log_rotation.md b/docs/en_us/operation/log_rotation.md index 0d2075a95..ee29c9afc 100644 --- a/docs/en_us/operation/log_rotation.md +++ b/docs/en_us/operation/log_rotation.md @@ -11,5 +11,5 @@ remove old ones and retain the recent ones. | Name | Path | Rotation Configuration | | ----------- | -------------- | --------------------------------- | | server log | log/bfe.log | rotate log file at midnight; retain the recent 7 log files | -| access log | log/access.log | [conf/mod_access/mod_access.conf](../configuration/mod_access/mod_access.md) | -| tls key log | log/key.log | [conf/mod_key_log/mod_key_log.conf](../configuration/mod_key_log/mod_key_log.md) | +| access log | log/access.log | [conf/mod_access/mod_access.conf](../modules/mod_access/mod_access.md) | +| tls key log | log/key.log | [conf/mod_key_log/mod_key_log.conf](../modules/mod_key_log/mod_key_log.md) | diff --git a/docs/zh_cn/development/local_dev_guide.md b/docs/zh_cn/development/local_dev_guide.md index 527cd05f4..450a21684 100644 --- a/docs/zh_cn/development/local_dev_guide.md +++ b/docs/zh_cn/development/local_dev_guide.md @@ -24,7 +24,7 @@ $ cd bfe ## 创建本地分支 -BFE目前使用[Git流分支模型](http://nvie.com/posts/a-successful-git-branching-model/)进行开发、测试、发行和维护,具体请参考 [BFE分支规范](../development/releasing_process.md)。 +BFE目前使用[Git流分支模型](http://nvie.com/posts/a-successful-git-branching-model/)进行开发、测试、发行和维护,具体请参考 [BFE分支规范](release_regulation.md)。 所有的 feature 和 bug fix 的开发工作都应该在一个新的分支上完成,一般从 `develop` 分支上创建新分支。 @@ -74,7 +74,7 @@ no changes added to commit (use "git add" and/or "git commit -a") ## 构建和测试 -从源码编译BFE及测试,请参见[编译及安装BFE](../install.md) +从源码编译BFE及测试,请参见[编译及安装BFE](../installation/install_from_source.md) ## 提交(commit) diff --git a/docs/zh_cn/development/write_doc_guide.md b/docs/zh_cn/development/write_doc_guide.md index da7b8fb4a..23d069b23 100644 --- a/docs/zh_cn/development/write_doc_guide.md +++ b/docs/zh_cn/development/write_doc_guide.md @@ -86,4 +86,4 @@ $ gitbook serve --port 8000 ## 帮助改进预览工具 -我们非常欢迎您对平台和支持内容的各个方面做出贡献,以便更好地呈现这些内容。您可以Fork或Clone这个存储库,或者提出问题并提供反馈,以及在issues上提交bug信息。详细内容请参考[开发指南](../../../README.md)。 +我们非常欢迎您对平台和支持内容的各个方面做出贡献,以便更好地呈现这些内容。您可以Fork或Clone这个存储库,或者提出问题并提供反馈,以及在issues上提交bug信息。详细内容请参考[开发指南](https://github.com/baidu/bfe/blob/develop/README.md)。 diff --git a/docs/zh_cn/faq/configuration.md b/docs/zh_cn/faq/configuration.md index 453154620..177804dc9 100644 --- a/docs/zh_cn/faq/configuration.md +++ b/docs/zh_cn/faq/configuration.md @@ -4,4 +4,4 @@ - 具体见[TLS客户端认证示例](https://github.com/baidu/bfe/blob/develop/docs/zh_cn/example/client_auth.md) ## 如何启用HTTP2协议 -- 参考[conf/tls_conf/tls_rule_conf.data](configuration/tls_conf/tls_rule_conf.data.md)配置说明 +- 参考[conf/tls_conf/tls_rule_conf.data](../configuration/tls_conf/tls_rule_conf.data.md)配置说明 diff --git a/docs/zh_cn/modules/modules.md b/docs/zh_cn/modules/modules.md index 6eac581b0..c55b02c7e 100644 --- a/docs/zh_cn/modules/modules.md +++ b/docs/zh_cn/modules/modules.md @@ -1,22 +1,22 @@ # 扩展模块 -- [mod_access](modules/mod_access/mod_access.md) -- [mod_auth_basic](modules/mod_auth_basic/mod_auth_basic.md) -- [mod_auth_jwt](modules/mod_auth_jwt/mod_auth_jwt.md) -- [mod_block](modules/mod_block/mod_block.md) -- [mod_compress](modules/mod_compress/mod_compress.md) -- [mod_doh](modules/mod_doh/mod_doh.md) -- [mod_errors](modules/mod_errors/mod_errors.md) -- [mod_geo](modules/mod_geo/mod_geo.md) -- [mod_header](modules/mod_header/mod_header.md) -- [mod_http_code](modules/mod_http_code/mod_http_code.md) -- [mod_key_log](modules/mod_key_log/mod_key_log.md) -- [mod_logid](modules/mod_logid/mod_logid.md) -- [mod_prison](modules/mod_prison/mod_prison.md) -- [mod_redirect](modules/mod_redirect/mod_redirect.md) -- [mod_rewrite](modules/mod_rewrite/mod_rewrite.md) -- [mod_static](modules/mod_static/mod_static.md) -- [mod_tag](modules/mod_tag/mod_tag.md) -- [mod_trace](modules/mod_trace/mod_trace.md) -- [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) -- [mod_userid](modules/mod_userid/mod_userid.md) +- [mod_access](mod_access/mod_access.md) +- [mod_auth_basic](mod_auth_basic/mod_auth_basic.md) +- [mod_auth_jwt](mod_auth_jwt/mod_auth_jwt.md) +- [mod_block](mod_block/mod_block.md) +- [mod_compress](mod_compress/mod_compress.md) +- [mod_doh](mod_doh/mod_doh.md) +- [mod_errors](mod_errors/mod_errors.md) +- [mod_geo](mod_geo/mod_geo.md) +- [mod_header](mod_header/mod_header.md) +- [mod_http_code](mod_http_code/mod_http_code.md) +- [mod_key_log](mod_key_log/mod_key_log.md) +- [mod_logid](mod_logid/mod_logid.md) +- [mod_prison](mod_prison/mod_prison.md) +- [mod_redirect](mod_redirect/mod_redirect.md) +- [mod_rewrite](mod_rewrite/mod_rewrite.md) +- [mod_static](mod_static/mod_static.md) +- [mod_tag](mod_tag/mod_tag.md) +- [mod_trace](mod_trace/mod_trace.md) +- [mod_trust_clientip](mod_trust_clientip/mod_trust_clientip.md) +- [mod_userid](mod_userid/mod_userid.md) diff --git a/docs/zh_cn/operation/capture_packet.md b/docs/zh_cn/operation/capture_packet.md index 959300bfc..dbf35ba75 100644 --- a/docs/zh_cn/operation/capture_packet.md +++ b/docs/zh_cn/operation/capture_packet.md @@ -21,7 +21,7 @@ tcpdump tcp port 8443 -i any -s -w test.pcap 对于基于TLS的加密流量,可配合使用mod_key_log和wireshark进行解密分析。操作步骤: * Step1: 在bfe开启mod_key_log模块,保存TLS会话密钥到key.log日志文件中 - * 注:修改bfe.conf文件,增加启用mod_key_log模块, 模块配置详见[mod_key_log](../configuration/mod_key_log/mod_key_log.md) + * 注:修改bfe.conf文件,增加启用mod_key_log模块, 模块配置详见[mod_key_log](../modules/mod_key_log/mod_key_log.md) ``` [server] diff --git a/docs/zh_cn/operation/log_rotation.md b/docs/zh_cn/operation/log_rotation.md index 4657d000b..481f75e85 100644 --- a/docs/zh_cn/operation/log_rotation.md +++ b/docs/zh_cn/operation/log_rotation.md @@ -10,5 +10,5 @@ BEF内置日志自动切割及备份功能,可定期切割日志,删除并 | 日志名称 | 日志路径 | 日志切割及备份配置 | | ----------- | -------------- | --------------------------------- | | server log | log/bfe.log | 按天切隔日志,保留最近7天日志 | -| access log | log/access.log | 见[conf/mod_access/mod_access.conf](../configuration/mod_access/mod_access.md) | -| tls key log | log/key.log | 见[conf/mod_key_log/mod_key_log.conf](../configuration/mod_key_log/mod_key_log.md) | +| access log | log/access.log | 见[conf/mod_access/mod_access.conf](../modules/mod_access/mod_access.md) | +| tls key log | log/key.log | 见[conf/mod_key_log/mod_key_log.conf](../modules/mod_key_log/mod_key_log.md) | From 4cdf99b4161116c4c7d257dad4b51c8ff9b255de Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 7 May 2020 08:22:18 +0800 Subject: [PATCH 054/111] docs: update SUMMARY.md, bfe.conf.md etc --- docs/en_us/SUMMARY.md | 1 + docs/en_us/configuration/bfe.conf.md | 20 ++++++++++---------- docs/en_us/monitor/module_status.md | 2 ++ docs/en_us/operation/command.md | 18 +++++++++++------- docs/zh_cn/SUMMARY.md | 1 + docs/zh_cn/configuration/bfe.conf.md | 22 +++++++++++----------- docs/zh_cn/modules/mod_geo/mod_geo.md | 1 - docs/zh_cn/monitor/module_status.md | 2 +- docs/zh_cn/operation/command.md | 14 +++++++++----- 9 files changed, 46 insertions(+), 35 deletions(-) diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index 8e7f3e88c..41e6311f1 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -35,6 +35,7 @@ * [Host rule](configuration/server_data_conf/host_rule.data.md) * [Vip rule](configuration/server_data_conf/vip_rule.data.md) * [Route rule](configuration/server_data_conf/route_rule.data.md) + * [Backend Cluster](server_data_conf/cluster_conf.data.md) * Load Balancing * [Sub-clusters balancing](configuration/cluster_conf/gslb.data.md) * [Instances balancing](configuration/cluster_conf/cluster_table.data.md) diff --git a/docs/en_us/configuration/bfe.conf.md b/docs/en_us/configuration/bfe.conf.md index 255b18f66..2f06a71fa 100644 --- a/docs/en_us/configuration/bfe.conf.md +++ b/docs/en_us/configuration/bfe.conf.md @@ -20,13 +20,13 @@ bfe.conf is the core configuration file of BFE. | Basic.GracefulShutdownTimeout | Integer
Timeout for graceful shutdown (maximum 300 sec)
Default 10 | | Basic.MaxHeaderBytes | Integer
Max length of request header, in bytes
Default 10485 | | Basic.MaxHeaderUriBytes | Integer
Max lenght of request URI, in bytes
Default 8192 | -| Basic.HostRuleConf | String
Path of host config
Default server_data_conf/host_rule.data | -| Basic.VipRuleConf | String
Path of VIP config
Default server_data_conf/vip_rule.data | -| Basic.RouteRuleConf | String
Path of route rule config
Default server_data_conf/route_rule.data | -| Basic.ClusterConf | String
Path of cluster config
Default server_data_conf/cluster_conf.data | -| Basic.ClusterTableConf | String
Path of cluster table config
Default cluster_conf/cluster_table.data | -| Basic.GslbConf | String
Path of gslb config
Default cluster_conf/gslb.data | -| Basic.NameConf | String
Path of naming config
Default server_data_conf/name_conf.data | +| Basic.HostRuleConf | String
Path of [host config](server_data_conf/host_rule.data.md)
Default server_data_conf/host_rule.data | +| Basic.VipRuleConf | String
Path of [VIP config](server_data_conf/vip_rule.data.md)
Default server_data_conf/vip_rule.data | +| Basic.RouteRuleConf | String
Path of [route rule config](server_data_conf/route_rule.data.md)
Default server_data_conf/route_rule.data | +| Basic.ClusterConf | String
Path of [cluster config](server_data_conf/cluster_conf.data.md)
Default server_data_conf/cluster_conf.data | +| Basic.GslbConf | String
Path of [subcluster balancing config](cluster_conf/gslb.data.md)
Default cluster_conf/gslb.data | +| Basic.ClusterTableConf | String
Path of [instance balancing config](cluster_conf/cluster_table.data.md)
Default cluster_conf/cluster_table.data | +| Basic.NameConf | String
Path of [naming config](server_data_conf/name_conf.data.md)
Default server_data_conf/name_conf.data | | Basic.Modules | String
Enabled modules
Default "" | | Basic.MonitorInterval | Integer
Interval for get diff of proxy-state
Default 20 | | Basic.DebugServHttp | Boolean
Debug flag for ServerHttp
Default False | @@ -38,8 +38,8 @@ bfe.conf is the core configuration file of BFE. | Config Item | Description | | --------------------------------- | ---------------------------------------------------------------- | -| HttpsBasic.ServerCertConf | String
Path of cert config
Default tls_conf/server_cert_conf.data | -| HttpsBasic.TlsRuleConf | String
Path of tls rule config
Default tls_conf/tls_rule_conf.data | +| HttpsBasic.ServerCertConf | String
Path of [cert config](tls_conf/server_cert_conf.data.md)
Default tls_conf/server_cert_conf.data | +| HttpsBasic.TlsRuleConf | String
Path of [tls rule config](tls_conf/tls_rule_conf.data.md)
Default tls_conf/tls_rule_conf.data | | HttpsBasic.CipherSuites | String
CipherSuites preference settings
Default | | HttpsBasic.CurvePreferences | String
Curve perference settings
Default CurveP256 | | HttpsBasic.EnableSslv2ClientHello | Boolean
Enable Sslv2ClientHello for compatible with ancient sslv3 client
Default True | @@ -53,7 +53,7 @@ bfe.conf is the core configuration file of BFE. | SessioCache.MaxIdle | Integer
Max idle connections in connection pool
Default 20 | | SessioCache.SessionExpire | Integer
Expire time for tls session state (second)
Default 3600 | | SessionTicket.SessionTicketsDisabled | Boolean
Disable tls session ticket or not
Default True | -| SessionTicket.SessionTicketKeyFile | String
File path of session ticket key
Default tls_conf/session_ticket_key.data | +| SessionTicket.SessionTicketKeyFile | String
Path of [session ticket key config](tls_conf/session_ticket_key.data.md)
Default tls_conf/session_ticket_key.data | # Example diff --git a/docs/en_us/monitor/module_status.md b/docs/en_us/monitor/module_status.md index a0b514e38..5aff70a21 100644 --- a/docs/en_us/monitor/module_status.md +++ b/docs/en_us/monitor/module_status.md @@ -9,3 +9,5 @@ module_status monitor status of modules. | available | List of available modules | | enabled | List of enable modules | +For more details about metrics of each module, see [BFE modules](modules/modules.md). + diff --git a/docs/en_us/operation/command.md b/docs/en_us/operation/command.md index 580006f2f..c3d83ace0 100644 --- a/docs/en_us/operation/command.md +++ b/docs/en_us/operation/command.md @@ -6,24 +6,28 @@ bfe [options] * -c <config dir> -The directory path of config files, default dir is ./conf +The root directory of configuration files, default directory is ./conf * -l <log dir> -The directory path of log files, default dir is ./log +The root directory of log files, default directory is ./log * -s -This flag prints log to stdout. By default, this flag is set false. +Prints logs to stdout. By default, this flag is set false. + +* -d + +Prints debug logs. By default, this flag is set false. * -v -This flag is used to display bfe version. By default, this flag is set false. +Display bfe version and exit. By default, this flag is set false. -* -d +* -V -This flag prints debug log. By default, this flag is set false. +Display verbose version information and exit. By default, this flag is set false. * -h -This flag prints help info. By default, this flag is set false. \ No newline at end of file +Display help infomation and exit. By default, this flag is set false. diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index a26c4c2b6..9eca6bf70 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -35,6 +35,7 @@ * [域名规则](configuration/server_data_conf/host_rule.data.md) * [VIP规则](configuration/server_data_conf/vip_rule.data.md) * [路由规则](configuration/server_data_conf/route_rule.data.md) + * [后端集群](configuration/server_data_conf/cluster_conf.data.md) * 负载均衡 * [子集群负载均衡](configuration/cluster_conf/gslb.data.md) * [实例负载均衡](configuration/cluster_conf/cluster_table.data.md) diff --git a/docs/zh_cn/configuration/bfe.conf.md b/docs/zh_cn/configuration/bfe.conf.md index 2fbc144c8..20dba45ff 100644 --- a/docs/zh_cn/configuration/bfe.conf.md +++ b/docs/zh_cn/configuration/bfe.conf.md @@ -20,14 +20,14 @@ bfe.conf是BFE的核心配置 | Server.KeepAliveEnabled | Boolean
与用户端连接是否启用HTTP KeepAlive
默认值True | | Server.MaxHeaderBytes | Integer
请求头部的最大长度,单位为Byte
默认值1048576 | | Server.MaxHeaderUriBytes | Integer
请求头部URI的最大长度,单位为Byte
默认值8192 | -| Server.HostRuleConf | String
租户域名表配置文件路径
默认值server_data_conf/host_rule.data | -| Server.VipRuleConf | String
租户VIP表配置文件路径
默认值server_data_conf/vip_rule.data | -| Server.RouteRuleConf | String
转发规则配置文件路径
默认值server_data_conf/route_rule.data | -| Server.ClusterConf | String
后端集群相关配置文件路径
默认值server_data_conf/cluster_conf.data | -| Server.GslbConf | String
子集群级别负载均衡配置文件(GSLB)路径
默认值cluster_conf/gslb.data | -| Server.ClusterTableConf | String
实例级别负载均衡配置文件路径
默认值cluster_conf/cluster_table.data | -| Server.NameConf | String
名字与实例映射表配置文件
默认值server_data_conf/name_conf.data | -| Server.Modules | String
启用的模块列表; 启用多个模块请增加多行Modules配置,详见示例
默认值空 | +| Server.HostRuleConf | String
[租户域名表配置](server_data_conf/host_rule.data.md)文件路径
默认值server_data_conf/host_rule.data | +| Server.VipRuleConf | String
[租户VIP表配置](server_data_conf/vip_rule.data.md)文件路径
默认值server_data_conf/vip_rule.data | +| Server.RouteRuleConf | String
[转发规则配置](server_data_conf/route_rule.data.md)文件路径
默认值server_data_conf/route_rule.data | +| Server.ClusterConf | String
[后端集群相关配置](server_data_conf/cluster_conf.data.md)文件路径
默认值server_data_conf/cluster_conf.data | +| Server.GslbConf | String
[子集群级别负载均衡配置](cluster_conf/gslb.data.md)文件(GSLB)路径
默认值cluster_conf/gslb.data | +| Server.ClusterTableConf | String
[实例级别负载均衡配置](cluster_conf/cluster_table.data.md)文件路径
默认值cluster_conf/cluster_table.data | +| Server.NameConf | String
[名字与实例映射表配置](server_data_conf/name_conf.data.md)文件路径
默认值server_data_conf/name_conf.data | +| Server.Modules | String
启用的模块列表; 启用多个模块请增加多行Modules配置,参见配置示例
默认值空 | | Server.MonitorInterval | Integer
Monitor数据统计周期,单位为秒
默认值20 | | Server.DebugServHttp | Boolean
是否开启反向代理模块调试日志
默认值False | | Server.DebugBfeRoute | Boolean
是否开启流量路由模块调试日志
默认值False | @@ -38,8 +38,8 @@ bfe.conf是BFE的核心配置 | 配置项 | 描述 | | --------------------------------- | ------------------------------------------------------------ | -| HttpsBasic.ServerCertConf | String
服务端证书与密钥的配置文件路径
默认值tls_conf/server_cert_conf.data | -| HttpsBasic.TlsRuleConf | String
TLS协议参数配置文件路径
默认值tls_conf/tls_rule_conf.data | +| HttpsBasic.ServerCertConf | String
[服务端证书与密钥的配置](tls_conf/server_cert_conf.data.md)文件路径
默认值tls_conf/server_cert_conf.data | +| HttpsBasic.TlsRuleConf | String
[TLS协议参数配置](tls_conf/tls_rule_conf.data.md)文件路径
默认值tls_conf/tls_rule_conf.data | | HttpsBasic.CipherSuites | String
启用的加密套件列表; 启用多个套件请增加多行cipherSuites配置,详见示例
默认值TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256|TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256|TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256|TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | | HttpsBasic.CurvePreferences | String
启用的ECC椭圆曲线,详见示例
默认值CurveP256 | | HttpsBasic.EnableSslv2ClientHello | Boolean
针对SSLv3协议,启用对SSLv2格式ClientHello的兼容
默认值True | @@ -53,7 +53,7 @@ bfe.conf是BFE的核心配置 | SessionCache.MaxIdle | Integer
与Cache服务的最大空闲长连接数
默认值20 | | SessionCache.SessionExpire | Integer
存储在Cache服务中会话信息的过期时间, 单位秒
默认值3600 | | SessionTicket.SessionTicketsDisabled | Boolean
是否禁用TLS Session Ticket
默认值True| -| SessionTicket.SessionTicketKeyFile | String
Session Ticket Key文件路径
默认值tls_conf/session_ticket_key.data | +| SessionTicket.SessionTicketKeyFile | String
[Session Ticket Key配置](tls_conf/session_ticket_key.data.md)文件路径
默认值tls_conf/session_ticket_key.data | # 配置示例 diff --git a/docs/zh_cn/modules/mod_geo/mod_geo.md b/docs/zh_cn/modules/mod_geo/mod_geo.md index 1e0a38e25..34d70309c 100644 --- a/docs/zh_cn/modules/mod_geo/mod_geo.md +++ b/docs/zh_cn/modules/mod_geo/mod_geo.md @@ -26,4 +26,3 @@ GeoDBPath = mod_geo/geo.db | ----------------------- | --------------------------------- | | ERR_GET_GEO_INFO | 通过地理信息字典查询用户地理位置信息时,失败的次数 | | ERR_RELOAD_GEO_DATABASE | Reload 地理信息字典失败的次数 | -~ diff --git a/docs/zh_cn/monitor/module_status.md b/docs/zh_cn/monitor/module_status.md index 18c269dc6..591468fd1 100644 --- a/docs/zh_cn/monitor/module_status.md +++ b/docs/zh_cn/monitor/module_status.md @@ -9,5 +9,5 @@ module_status 是模块信息。 | available | 可用模块列表 | | enabled | 启用模块列表 | -关于模块监控项, []() +关于各模块监控项, 详见[模块说明](../modules/modules.md) diff --git a/docs/zh_cn/operation/command.md b/docs/zh_cn/operation/command.md index 39dc706a0..9f1bfbe19 100644 --- a/docs/zh_cn/operation/command.md +++ b/docs/zh_cn/operation/command.md @@ -14,16 +14,20 @@ bfe [options] * -s -是否打印log到stdout,默认不打印 +是否打印log到stdout,默认否 + +* -d + +是否打印debug日志,默认否 * -v -是否显示bfe的版本号,默认不显示 +是否显示bfe的版本号并退出,默认否 -* -d +* -V +是否显示bfe的版本相关信息并退出,默认否 -是否打印debug日志,默认不打印 * -h -是否显示帮助信息,默认不显示 +是否显示帮助信息并退出,默认否 From 3cd7378b657aa1cb3059cddd750a55153426f5df Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 7 May 2020 08:56:55 +0800 Subject: [PATCH 055/111] docs: update operation/command.md --- docs/en_us/operation/command.md | 4 ++-- docs/zh_cn/operation/command.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en_us/operation/command.md b/docs/en_us/operation/command.md index c3d83ace0..ffef4f491 100644 --- a/docs/en_us/operation/command.md +++ b/docs/en_us/operation/command.md @@ -14,11 +14,11 @@ The root directory of log files, default directory is ./log * -s -Prints logs to stdout. By default, this flag is set false. +Print logs to stdout. By default, this flag is set false. * -d -Prints debug logs. By default, this flag is set false. +Print debug logs. By default, this flag is set false. * -v diff --git a/docs/zh_cn/operation/command.md b/docs/zh_cn/operation/command.md index 9f1bfbe19..3ac453a4e 100644 --- a/docs/zh_cn/operation/command.md +++ b/docs/zh_cn/operation/command.md @@ -25,8 +25,8 @@ bfe [options] 是否显示bfe的版本号并退出,默认否 * -V -是否显示bfe的版本相关信息并退出,默认否 +是否显示bfe的版本相关信息并退出,默认否 * -h From 47fde375125983b89595afe477e6d949445dd59e Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 7 May 2020 09:13:02 +0800 Subject: [PATCH 056/111] docs: update installation --- docs/en_us/installation/install_from_source.md | 5 +++++ docs/en_us/installation/install_using_binaries.md | 5 +++++ docs/en_us/installation/install_using_go_get.md | 5 +++++ docs/en_us/installation/install_using_snap.md | 5 +++++ docs/zh_cn/installation/install_from_source.md | 3 +++ docs/zh_cn/installation/install_using_binaries.md | 2 ++ docs/zh_cn/installation/install_using_go_get.md | 4 ++++ docs/zh_cn/installation/install_using_snap.md | 4 ++++ 8 files changed, 33 insertions(+) diff --git a/docs/en_us/installation/install_from_source.md b/docs/en_us/installation/install_from_source.md index 18ba22fb3..c79d399c4 100644 --- a/docs/en_us/installation/install_from_source.md +++ b/docs/en_us/installation/install_from_source.md @@ -39,3 +39,8 @@ output/bin/bfe: ELF 64-bit LSB executable, ... $ cd output/bin/ $ ./bfe -c ../conf -l ../log ``` + +## Further reading + +- Get started with [Beginner's Guide](example/guide.md) + diff --git a/docs/en_us/installation/install_using_binaries.md b/docs/en_us/installation/install_using_binaries.md index 20386a5ea..11f24180a 100644 --- a/docs/en_us/installation/install_using_binaries.md +++ b/docs/en_us/installation/install_using_binaries.md @@ -20,3 +20,8 @@ $ tar zxvf bfe___.tar.gz $ cd bfe/bin $ ./bfe -c ../conf -l ../log ``` + +## Further reading + +- Get started with [Beginner's Guide](example/guide.md) + diff --git a/docs/en_us/installation/install_using_go_get.md b/docs/en_us/installation/install_using_go_get.md index 4fcedc901..d6472cc96 100644 --- a/docs/en_us/installation/install_using_go_get.md +++ b/docs/en_us/installation/install_using_go_get.md @@ -22,3 +22,8 @@ output/bin/bfe: ELF 64-bit LSB executable, ... $ cd ${GOPATH}/bin/ $ ./bfe -c ${GOPATH}/src/github.com/baidu/bfe/conf/ ``` + +## Further reading + +- Get started with [Beginner's Guide](example/guide.md) + diff --git a/docs/en_us/installation/install_using_snap.md b/docs/en_us/installation/install_using_snap.md index 67dd9f90a..c37f13ad8 100644 --- a/docs/en_us/installation/install_using_snap.md +++ b/docs/en_us/installation/install_using_snap.md @@ -29,3 +29,8 @@ $ sudo snap install --edge bfe ``` $ sudo /snap/bin/bfe ``` + +## Further reading + +- Get started with [Beginner's Guide](example/guide.md) + diff --git a/docs/zh_cn/installation/install_from_source.md b/docs/zh_cn/installation/install_from_source.md index cf962ebe9..21da3e30d 100644 --- a/docs/zh_cn/installation/install_from_source.md +++ b/docs/zh_cn/installation/install_from_source.md @@ -39,3 +39,6 @@ output/bin/bfe: ELF 64-bit LSB executable, ... $ cd output/bin/ $ ./bfe -c ../conf -l ../log ``` + +## 下一步 +了解[基本功能配置使用](example/guide.md) diff --git a/docs/zh_cn/installation/install_using_binaries.md b/docs/zh_cn/installation/install_using_binaries.md index 3af9197f1..3b5060ae4 100644 --- a/docs/zh_cn/installation/install_using_binaries.md +++ b/docs/zh_cn/installation/install_using_binaries.md @@ -21,3 +21,5 @@ $ cd bfe/bin $ ./bfe -c ../conf -l ../log ``` +## 下一步 +了解[基本功能配置使用](example/guide.md) diff --git a/docs/zh_cn/installation/install_using_go_get.md b/docs/zh_cn/installation/install_using_go_get.md index 1dcaa9a2f..699941fc3 100644 --- a/docs/zh_cn/installation/install_using_go_get.md +++ b/docs/zh_cn/installation/install_using_go_get.md @@ -22,3 +22,7 @@ output/bin/bfe: ELF 64-bit LSB executable, ... $ cd ${GOPATH}/bin/ $ ./bfe -c ${GOPATH}/src/github.com/baidu/bfe/conf/ ``` + +## 下一步 +了解[基本功能配置使用](example/guide.md) + diff --git a/docs/zh_cn/installation/install_using_snap.md b/docs/zh_cn/installation/install_using_snap.md index 605d13fda..21c95f67d 100644 --- a/docs/zh_cn/installation/install_using_snap.md +++ b/docs/zh_cn/installation/install_using_snap.md @@ -29,3 +29,7 @@ $ sudo snap install --edge bfe ``` $ sudo /snap/bin/bfe ``` + +## 下一步 +了解[基本功能配置使用](example/guide.md) + From c25be8e31df401d5a9202e1e14678e297bb10ee0 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 7 May 2020 09:49:33 +0800 Subject: [PATCH 057/111] docs: update README.md --- docs/en_us/SUMMARY.md | 2 +- docs/en_us/installation/install_from_source.md | 2 +- docs/en_us/installation/install_using_binaries.md | 2 +- docs/en_us/installation/install_using_go_get.md | 2 +- docs/en_us/installation/install_using_snap.md | 2 +- docs/en_us/monitor/module_status.md | 2 +- docs/zh_cn/README.md | 2 +- docs/zh_cn/installation/install_from_source.md | 2 +- docs/zh_cn/installation/install_using_binaries.md | 2 +- docs/zh_cn/installation/install_using_go_get.md | 2 +- docs/zh_cn/installation/install_using_snap.md | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index 41e6311f1..c5e0d6fc6 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -35,7 +35,7 @@ * [Host rule](configuration/server_data_conf/host_rule.data.md) * [Vip rule](configuration/server_data_conf/vip_rule.data.md) * [Route rule](configuration/server_data_conf/route_rule.data.md) - * [Backend Cluster](server_data_conf/cluster_conf.data.md) + * [Backend Cluster](configuration/server_data_conf/cluster_conf.data.md) * Load Balancing * [Sub-clusters balancing](configuration/cluster_conf/gslb.data.md) * [Instances balancing](configuration/cluster_conf/cluster_table.data.md) diff --git a/docs/en_us/installation/install_from_source.md b/docs/en_us/installation/install_from_source.md index c79d399c4..855a51e54 100644 --- a/docs/en_us/installation/install_from_source.md +++ b/docs/en_us/installation/install_from_source.md @@ -42,5 +42,5 @@ $ ./bfe -c ../conf -l ../log ## Further reading -- Get started with [Beginner's Guide](example/guide.md) +- Get started with [Beginner's Guide](../example/guide.md) diff --git a/docs/en_us/installation/install_using_binaries.md b/docs/en_us/installation/install_using_binaries.md index 11f24180a..7beff2b9f 100644 --- a/docs/en_us/installation/install_using_binaries.md +++ b/docs/en_us/installation/install_using_binaries.md @@ -23,5 +23,5 @@ $ ./bfe -c ../conf -l ../log ## Further reading -- Get started with [Beginner's Guide](example/guide.md) +- Get started with [Beginner's Guide](../example/guide.md) diff --git a/docs/en_us/installation/install_using_go_get.md b/docs/en_us/installation/install_using_go_get.md index d6472cc96..f2609dac0 100644 --- a/docs/en_us/installation/install_using_go_get.md +++ b/docs/en_us/installation/install_using_go_get.md @@ -25,5 +25,5 @@ $ ./bfe -c ${GOPATH}/src/github.com/baidu/bfe/conf/ ## Further reading -- Get started with [Beginner's Guide](example/guide.md) +- Get started with [Beginner's Guide](../example/guide.md) diff --git a/docs/en_us/installation/install_using_snap.md b/docs/en_us/installation/install_using_snap.md index c37f13ad8..e5d65500a 100644 --- a/docs/en_us/installation/install_using_snap.md +++ b/docs/en_us/installation/install_using_snap.md @@ -32,5 +32,5 @@ $ sudo /snap/bin/bfe ## Further reading -- Get started with [Beginner's Guide](example/guide.md) +- Get started with [Beginner's Guide](../example/guide.md) diff --git a/docs/en_us/monitor/module_status.md b/docs/en_us/monitor/module_status.md index 5aff70a21..09abf2c63 100644 --- a/docs/en_us/monitor/module_status.md +++ b/docs/en_us/monitor/module_status.md @@ -9,5 +9,5 @@ module_status monitor status of modules. | available | List of available modules | | enabled | List of enable modules | -For more details about metrics of each module, see [BFE modules](modules/modules.md). +For more details about metrics of each module, see [BFE modules](../modules/modules.md). diff --git a/docs/zh_cn/README.md b/docs/zh_cn/README.md index 780ac65ff..61cc3d96d 100644 --- a/docs/zh_cn/README.md +++ b/docs/zh_cn/README.md @@ -1,4 +1,4 @@ -BFE是基于百度统一前端技术框架开源的七层流量接入系统 +BFE是基于百度统一接入前端(Baidu FrontEnd)开源的七层流量接入系统 BFE文档由以下几个主要部分组成: diff --git a/docs/zh_cn/installation/install_from_source.md b/docs/zh_cn/installation/install_from_source.md index 21da3e30d..628c90bbe 100644 --- a/docs/zh_cn/installation/install_from_source.md +++ b/docs/zh_cn/installation/install_from_source.md @@ -41,4 +41,4 @@ $ ./bfe -c ../conf -l ../log ``` ## 下一步 -了解[基本功能配置使用](example/guide.md) +了解[基本功能配置使用](../example/guide.md) diff --git a/docs/zh_cn/installation/install_using_binaries.md b/docs/zh_cn/installation/install_using_binaries.md index 3b5060ae4..d953d2262 100644 --- a/docs/zh_cn/installation/install_using_binaries.md +++ b/docs/zh_cn/installation/install_using_binaries.md @@ -22,4 +22,4 @@ $ ./bfe -c ../conf -l ../log ``` ## 下一步 -了解[基本功能配置使用](example/guide.md) +了解[基本功能配置使用](../example/guide.md) diff --git a/docs/zh_cn/installation/install_using_go_get.md b/docs/zh_cn/installation/install_using_go_get.md index 699941fc3..09127cd3a 100644 --- a/docs/zh_cn/installation/install_using_go_get.md +++ b/docs/zh_cn/installation/install_using_go_get.md @@ -24,5 +24,5 @@ $ ./bfe -c ${GOPATH}/src/github.com/baidu/bfe/conf/ ``` ## 下一步 -了解[基本功能配置使用](example/guide.md) +了解[基本功能配置使用](../example/guide.md) diff --git a/docs/zh_cn/installation/install_using_snap.md b/docs/zh_cn/installation/install_using_snap.md index 21c95f67d..e844b9a5c 100644 --- a/docs/zh_cn/installation/install_using_snap.md +++ b/docs/zh_cn/installation/install_using_snap.md @@ -31,5 +31,5 @@ $ sudo /snap/bin/bfe ``` ## 下一步 -了解[基本功能配置使用](example/guide.md) +了解[基本功能配置使用](../example/guide.md) From 9f5fa589657f96efeff7fcea38ad62e415c14ff0 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Thu, 7 May 2020 11:17:49 +0800 Subject: [PATCH 058/111] docs: update condition --- docs/en_us/condition/request/cookie.md | 12 ++++++------ docs/en_us/condition/request/header.md | 10 +++++----- docs/en_us/condition/request/uri.md | 18 +++++++++--------- docs/zh_cn/condition/request/cookie.md | 10 +++++----- docs/zh_cn/condition/request/header.md | 10 +++++----- docs/zh_cn/condition/request/uri.md | 18 +++++++++--------- 6 files changed, 39 insertions(+), 39 deletions(-) diff --git a/docs/en_us/condition/request/cookie.md b/docs/en_us/condition/request/cookie.md index a0cc310c3..8b3446ae7 100644 --- a/docs/en_us/condition/request/cookie.md +++ b/docs/en_us/condition/request/cookie.md @@ -13,7 +13,7 @@ * Example ``` -req_cookie_key_in("UID") +req_cookie_key_in("uid|cid|uss") ``` ## req_cookie_value_in(key, value_list, case_insensitive) @@ -30,7 +30,7 @@ req_cookie_key_in("UID") * Example ``` -req_cookie_value_in("UID", "XXX", true) +req_cookie_value_in("deviceid", "testid", true) ``` ## req_cookie_value_prefix_in(key, value_prefix_list, case_insensitive) @@ -47,7 +47,7 @@ req_cookie_value_in("UID", "XXX", true) * Example ``` -req_cookie_value_prefix_in("UID", "XXX", true) +req_cookie_value_prefix_in("deviceid", "x", true) ``` ## req_cookie_value_suffix_in(key, value_suffix_list, case_insensitive) @@ -64,7 +64,7 @@ req_cookie_value_prefix_in("UID", "XXX", true) * Example ``` -req_cookie_value_suffix_in("UID", "XXX", true) +req_cookie_value_suffix_in("deviceid", "1", true) ``` ## req_cookie_value_hash_in(key, value_list, case_insensitive) @@ -81,7 +81,7 @@ req_cookie_value_suffix_in("UID", "XXX", true) * Example ``` -req_cookie_value_hash_in("UID", "100", true) +req_cookie_value_hash_in("uid", "100", true) ``` ## req_cookie_value_contain(key, value, case_insensitive) @@ -99,5 +99,5 @@ req_cookie_value_hash_in("UID", "100", true) * Example ``` -req_cookie_value_contain("UID", "XXX", true) +req_cookie_value_contain("deviceid", "test", true) ``` diff --git a/docs/en_us/condition/request/header.md b/docs/en_us/condition/request/header.md index 1ddce4d7f..69ce72ae5 100644 --- a/docs/en_us/condition/request/header.md +++ b/docs/en_us/condition/request/header.md @@ -39,7 +39,7 @@ req_header_key_in("header-Test") * Example ``` -req_header_value_in("Host", "XXX.com", true) +req_header_value_in("Referer", "https://example.org/login", true) ``` ## req_header_value_prefix_in(header_name, value_prefix_list, case_insensitive) @@ -56,7 +56,7 @@ req_header_value_in("Host", "XXX.com", true) * Example ``` -req_header_prefix_value_in("Host", "XXX", true) +req_header_prefix_value_in("Refer", "https://example.org", true) ``` ## req_header_value_suffix_in(header_name, value_suffix_list, case_insensitive) @@ -73,7 +73,7 @@ req_header_prefix_value_in("Host", "XXX", true) * Example ``` -req_header_suffix_value_in("Host", "XXX", true) +req_header_suffix_value_in("User-Agent", "2.0.4", true) ``` ## req_header_value_hash_in(header_name, value_list, case_insensitive) @@ -90,7 +90,7 @@ req_header_suffix_value_in("Host", "XXX", true) * Example ``` -req_header_value_hash_in("Host", "100-200|400", true) +req_header_value_hash_in("X-Device-Id", "100-200|400", true) ``` ## req_header_value_contain(header_name, value_list, case_insensitive) @@ -107,5 +107,5 @@ req_header_value_hash_in("Host", "100-200|400", true) * Example ``` -req_header_value_contain("Host", "XXX.com", true) +req_header_value_contain("User-Agent", "Firefox|Chrome", true) ``` diff --git a/docs/en_us/condition/request/uri.md b/docs/en_us/condition/request/uri.md index 74d59f99c..3a60757d1 100644 --- a/docs/en_us/condition/request/uri.md +++ b/docs/en_us/condition/request/uri.md @@ -34,7 +34,7 @@ req_host_in("www.bfe-networks.com | bfe-networks.com") * Example ``` -req_path_in("/abc", true) +req_path_in("/api/search|/api/list", true) ``` ## req_path_prefix_in(prefix_list, case_insensitive) @@ -50,7 +50,7 @@ req_path_in("/abc", true) * Example ``` -req_path_prefix_in("/x/y", false) +req_path_prefix_in("/api/report|/api/analytics", false) ``` ## req_path_suffix_in(suffix_list, case_insensitive) @@ -66,7 +66,7 @@ req_path_prefix_in("/x/y", false) * Example ``` -req_path_suffix_in("/x/y", false) +req_path_suffix_in(".php|.jsp", false) ``` **Note:** @@ -84,7 +84,7 @@ req_path_suffix_in("/x/y", false) * Example ``` -req_query_key_exist("abc") +req_query_key_exist("word|wd") ``` ## req_query_key_prefix_in(prefix_list) @@ -100,7 +100,7 @@ req_query_key_exist("abc") * Example ``` -req_query_key_prefix_in("abc") +req_query_key_prefix_in("rid") ``` ## req_query_value_in(key, value_list, case_insensitive) @@ -117,7 +117,7 @@ req_query_key_prefix_in("abc") * Example ``` -req_query_value_in("abc", "XXX", true) +req_query_value_in("uid", "x|y|z", true) ``` ## req_query_value_prefix_in(key, prefix_list, case_insensitive) @@ -134,7 +134,7 @@ req_query_value_in("abc", "XXX", true) * Example ``` -req_query_value_prefix_in("abc", "XXX", true) +req_query_value_prefix_in("uid", "100|200", true) ``` ## req_query_value_suffix_in(key, suffix_list, case_insensitive) @@ -151,7 +151,7 @@ req_query_value_prefix_in("abc", "XXX", true) * Example ``` -req_query_value_suffix_in("abc", "XXX", true) +req_query_value_suffix_in("uid", "1|2|3", true) ``` ## req_query_value_hash_in(key, value_list, case_insensitive) @@ -168,7 +168,7 @@ req_query_value_suffix_in("abc", "XXX", true) * Example ``` -req_query_value_hash_in("abc", "100", true) +req_query_value_hash_in("cid", "100", true) ``` ## req_port_in(port_list) diff --git a/docs/zh_cn/condition/request/cookie.md b/docs/zh_cn/condition/request/cookie.md index 36cfc93b5..c3cc8bb6b 100644 --- a/docs/zh_cn/condition/request/cookie.md +++ b/docs/zh_cn/condition/request/cookie.md @@ -10,7 +10,7 @@ * 示例 ``` -req_cookie_key_in("uid1|uid2|uid3") +req_cookie_key_in("uid|cid|uss") ``` ## req_cookie_value_in(key, value_list, case_insensitive) @@ -25,7 +25,7 @@ req_cookie_key_in("uid1|uid2|uid3") * 示例 ``` -req_cookie_value_in("uid", "xxx", true) +req_cookie_value_in("deviceid", "testid", true) ``` ## req_cookie_value_prefix_in(key, prefix_list, case_insensitive) @@ -40,7 +40,7 @@ req_cookie_value_in("uid", "xxx", true) * 示例 ``` -req_cookie_value_prefix_in("uid", "xxx", true) +req_cookie_value_prefix_in("deviceid", "x", true) ``` ## req_cookie_value_suffix_in(key, suffix_list, case_insensitive) @@ -55,7 +55,7 @@ req_cookie_value_prefix_in("uid", "xxx", true) * 示例 ``` -req_cookie_value_suffix_in("uid", "xxx", true) +req_cookie_value_suffix_in("deviceid", "1", true) ``` ## req_cookie_value_hash_in(key, hash_value_list, case_insensitive) @@ -85,6 +85,6 @@ req_cookie_value_hash_in("uid", "100", true) * 示例 ``` -req_cookie_value_contain("uid", "xxx", true) +req_cookie_value_contain("deviceid", "test", true) ``` diff --git a/docs/zh_cn/condition/request/header.md b/docs/zh_cn/condition/request/header.md index 3ff71479b..646d5dcdf 100644 --- a/docs/zh_cn/condition/request/header.md +++ b/docs/zh_cn/condition/request/header.md @@ -32,7 +32,7 @@ req_header_key_in("header-Test") * 示例 ``` -req_header_value_in("Host", "xxx.com", true) +req_header_value_in("Referer", "https://example.org/login", true) ``` ## req_header_value_prefix_in(header_name, prefix_list, case_insensitive) @@ -47,7 +47,7 @@ req_header_value_in("Host", "xxx.com", true) * 示例 ``` -req_header_value_prefix_in("Host", "xxx", true) +req_header_value_prefix_in("Referer", "https://example.org", true) ``` ## req_header_value_suffix_in(header_name, suffix_list, case_insensitive) @@ -62,7 +62,7 @@ req_header_value_prefix_in("Host", "xxx", true) * 示例 ``` -req_header_value_suffix_in("Host", "xxx", true) +req_header_value_suffix_in("User-Agent", "2.0.4", true) ``` ## req_header_value_hash_in(header_name, hash_value_list, case_insensitive) @@ -77,7 +77,7 @@ req_header_value_suffix_in("Host", "xxx", true) * 示例 ``` -req_header_value_hash_in("Host", "100-200|400", true) +req_header_value_hash_in("X-Device-Id", "100-200|400", true) ``` ## req_header_value_contain(header_name, value_list, case_insensitive) @@ -92,5 +92,5 @@ req_header_value_hash_in("Host", "100-200|400", true) * 示例 ``` -req_header_value_contain("Host", "xxx", true) +req_header_value_contain("User-Agent", "Firefox|Chrome", true) ``` diff --git a/docs/zh_cn/condition/request/uri.md b/docs/zh_cn/condition/request/uri.md index 0639e13e7..65e990d7f 100644 --- a/docs/zh_cn/condition/request/uri.md +++ b/docs/zh_cn/condition/request/uri.md @@ -25,7 +25,7 @@ req_host_in("www.bfe-networks.com|bfe-networks.com") * 示例 ``` -req_path_in("/abc", true) +req_path_in("/api/search|/api/list", true) ``` ## req_path_prefix_in(prefix_list, case_insensitive) @@ -40,7 +40,7 @@ req_path_in("/abc", true) * 示例 ``` -req_path_prefix_in("/x/y", false) +req_path_prefix_in("/api/report|/api/analytics", false) ``` ## req_path_suffix_in(suffix_list, case_insensitive) @@ -54,7 +54,7 @@ req_path_prefix_in("/x/y", false) * 示例 ``` -req_path_suffix_in("/x/y", false) +req_path_suffix_in(".php|.jsp", false) ``` ## req_query_key_in(key_list) @@ -67,7 +67,7 @@ req_path_suffix_in("/x/y", false) * 示例 ``` -req_query_key_in("abc") +req_query_key_in("word|wd") ``` ## req_query_key_prefix_in(prefix_list) @@ -80,7 +80,7 @@ req_query_key_in("abc") * 示例 ``` -req_query_key_prefix_in("abc") +req_query_key_prefix_in("rid") ``` ## req_query_value_in(key, value_list, case_insensitive) @@ -95,7 +95,7 @@ req_query_key_prefix_in("abc") * 示例 ``` -req_query_value_in("abc", "xxx", true) +req_query_value_in("uid", "x|y|z", true) ``` ## req_query_value_prefix_in(key, prefix_list, case_insensitive) @@ -110,7 +110,7 @@ req_query_value_in("abc", "xxx", true) * 示例 ``` -req_query_value_prefix_in("abc", "xxx", true) +req_query_value_prefix_in("uid", "100|200", true) ``` ## req_query_value_suffix_in(key, suffix_list, case_insensitive) @@ -125,7 +125,7 @@ req_query_value_prefix_in("abc", "xxx", true) * 示例 ``` -req_query_value_suffix_in("abc", "xxx", true) +req_query_value_suffix_in("uid", "1|2|3", true) ``` ## req_query_value_hash_in(key, hash_value_list, case_insensitive) @@ -140,7 +140,7 @@ req_query_value_suffix_in("abc", "xxx", true) * 示例 ``` -req_query_value_hash_in("abc", "100", true) +req_query_value_hash_in("cid", "100", true) ``` ## req_port_in(port_list) From f17c0258d097351f39929025065d6fcfa0246693 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Thu, 7 May 2020 12:33:04 +0800 Subject: [PATCH 059/111] docs: update configuration/tls_conf/tls_rule_conf.data.md --- .../tls_conf/tls_rule_conf.data.md | 33 +++++++++++++++++++ .../tls_conf/tls_rule_conf.data.md | 32 ++++++++++++++++++ 2 files changed, 65 insertions(+) diff --git a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md index cc01633f5..47b21065a 100644 --- a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md @@ -46,3 +46,36 @@ tls_rule_conf.data records the tls protocol config } } ``` + +# Security Grade + +BFE supports multiple security grades(A+/A/B/C) for ease of TLS configuration. Security grades vary depending on the protocols and the cipher suites supported. + +## Grade A+ + +| Supported Protocols | Supported Cipher Suites | +| ------------------- | ----------------------- | +| TLS1.2 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | + + +## Grade A + +| Supported Protocols | Supported Cipher Suites | +| ------------------- | ----------------------- | +| TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | + +## Grade B + +| Supported Protocols | Supported Cipher Suites | +| ------------------- | ----------------------- | +| TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | +| SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | + + +## Grade C + +| Supported Protocols | Supported Cipher Suites | +| ------------------- | ----------------------- | +| TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA
TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | +| SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | + diff --git a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md index 169c6254c..5026e6d03 100644 --- a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md @@ -46,3 +46,35 @@ tls_rule_conf.data配置TLS协议参数。 } } ``` + +# 安全等级说明 + +BFE支持多种安全等级(A+/A/B/C)。各安全等级差异在于支持的协议版本及加密套件。A+等级安全性最高、连通性最低;C等级安全性最低、连通性最高。 + +## 安全等级A+ + +| 支持协议 | 支持加密套件 | +| -------- | -------- | ------------ | +| TLS1.2 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | + + +## 安全等级A + +| 支持协议 | 支持加密套件 | +| -------- | -------- | ------------ | +| TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | + +## 安全等级B + +| 支持协议 | 支持加密套件 | +| -------- | -------- | ------------ | +| TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | +| SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | + + +## 安全等级C + +| 支持协议 | 支持加密套件 | +| -------- | -------- | ------------ | +| TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA
TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | +| SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | From ece5a306a4164c8b58a10b3d51754805be7a5d0a Mon Sep 17 00:00:00 2001 From: yangsijie Date: Thu, 7 May 2020 12:47:18 +0800 Subject: [PATCH 060/111] docs: update introduction/overview.md --- docs/en_us/SUMMARY.md | 2 +- docs/en_us/{ => introduction}/overview.md | 0 docs/zh_cn/SUMMARY.md | 2 +- docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md | 8 ++++---- docs/zh_cn/{ => introduction}/overview.md | 3 ++- 5 files changed, 8 insertions(+), 7 deletions(-) rename docs/en_us/{ => introduction}/overview.md (100%) rename docs/zh_cn/{ => introduction}/overview.md (79%) diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index c5e0d6fc6..cdb585ea9 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -2,7 +2,7 @@ * [About](README.md) * Introduction - * [Overview](overview.md) + * [Overview](introduction/overview.md) * [Comparsion to similar systems](introduction/comparison.md) * Design overview * [Terminology](introduction/terminology.md) diff --git a/docs/en_us/overview.md b/docs/en_us/introduction/overview.md similarity index 100% rename from docs/en_us/overview.md rename to docs/en_us/introduction/overview.md diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index 9eca6bf70..8d90b36e2 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -2,7 +2,7 @@ * [关于](README.md) * 介绍 - * [BFE概览](overview.md) + * [BFE概览](introduction/overview.md) * [竞品对比](introduction/comparison.md) * 设计简介 * [相关术语](introduction/terminology.md) diff --git a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md index 5026e6d03..9f65cf5c6 100644 --- a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md @@ -54,20 +54,20 @@ BFE支持多种安全等级(A+/A/B/C)。各安全等级差异在于支持的 ## 安全等级A+ | 支持协议 | 支持加密套件 | -| -------- | -------- | ------------ | +| -------- | ------------ | | TLS1.2 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | ## 安全等级A | 支持协议 | 支持加密套件 | -| -------- | -------- | ------------ | +| -------- | ------------ | | TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | ## 安全等级B | 支持协议 | 支持加密套件 | -| -------- | -------- | ------------ | +| -------- | ------------ | | TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | | SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | @@ -75,6 +75,6 @@ BFE支持多种安全等级(A+/A/B/C)。各安全等级差异在于支持的 ## 安全等级C | 支持协议 | 支持加密套件 | -| -------- | -------- | ------------ | +| -------- | ------------ | | TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA
TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | | SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | diff --git a/docs/zh_cn/overview.md b/docs/zh_cn/introduction/overview.md similarity index 79% rename from docs/zh_cn/overview.md rename to docs/zh_cn/introduction/overview.md index f0e2d5abf..1d4fcdbd6 100644 --- a/docs/zh_cn/overview.md +++ b/docs/zh_cn/introduction/overview.md @@ -2,7 +2,8 @@ ## BFE是什么 -- BFE是基于百度统一前端技术框架开源的七层流量接入系统 +- BFE是基于百度统一接入前端(Baidu FrontEnd)开源的七层流量接入系统 + ## BFE的功能特性及优点 From 7ef2878c41a638fddfc5436d7f318960996dfe8c Mon Sep 17 00:00:00 2001 From: icyang <783991106@qq.com> Date: Thu, 7 May 2020 16:23:37 +0800 Subject: [PATCH 061/111] Support redirection with customized header (#468) --- bfe_basic/request.go | 5 +++-- bfe_server/redirect.go | 11 +++++++++-- bfe_server/reverseproxy.go | 8 ++++---- conf/cluster_conf/cluster_table.data | 2 +- 4 files changed, 17 insertions(+), 9 deletions(-) diff --git a/bfe_basic/request.go b/bfe_basic/request.go index 91a3a1639..74361b998 100644 --- a/bfe_basic/request.go +++ b/bfe_basic/request.go @@ -35,8 +35,9 @@ type BackendInfo struct { } type RedirectInfo struct { - Url string // URL - Code int // HTTP status code + Url string // URL + Code int // HTTP status code + Header bfe_http.Header // Extra header } type RequestRoute struct { diff --git a/bfe_server/redirect.go b/bfe_server/redirect.go index 69b78b084..e0b0f3e0d 100644 --- a/bfe_server/redirect.go +++ b/bfe_server/redirect.go @@ -33,7 +33,7 @@ import ( // Redirect replies to the request with a redirect to url, // which may be a path relative to the request path. -func Redirect(w bfe_http.ResponseWriter, r *bfe_http.Request, urlStr string, code int) { +func Redirect(w bfe_http.ResponseWriter, r *bfe_http.Request, urlStr string, code int, extraHeader bfe_http.Header) { if u, err := url.Parse(urlStr); err == nil { // If url was relative, make absolute by // combining with request path. @@ -78,7 +78,14 @@ func Redirect(w bfe_http.ResponseWriter, r *bfe_http.Request, urlStr string, cod } } - w.Header().Set("Location", urlStr) + header := w.Header() + for key, values := range extraHeader { + for _, value := range values { + header.Add(key, value) + } + } + header.Set("Location", urlStr) + header.Set("Server", "bfe") w.WriteHeader(code) // RFC2616 recommends that a short note "SHOULD" be included in the diff --git a/bfe_server/reverseproxy.go b/bfe_server/reverseproxy.go index 17f95367e..507c16995 100644 --- a/bfe_server/reverseproxy.go +++ b/bfe_server/reverseproxy.go @@ -526,7 +526,7 @@ func (p *ReverseProxy) ServeHTTP(rw bfe_http.ResponseWriter, basicReq *bfe_basic return case bfe_module.BfeHandlerRedirect: // make redirect - Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code) + Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code, basicReq.Redirect.Header) isRedirect = true basicReq.BfeStatusCode = basicReq.Redirect.Code goto send_response @@ -566,7 +566,7 @@ func (p *ReverseProxy) ServeHTTP(rw bfe_http.ResponseWriter, basicReq *bfe_basic return case bfe_module.BfeHandlerRedirect: // make redirect - Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code) + Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code, basicReq.Redirect.Header) isRedirect = true basicReq.BfeStatusCode = basicReq.Redirect.Code goto send_response @@ -626,7 +626,7 @@ func (p *ReverseProxy) ServeHTTP(rw bfe_http.ResponseWriter, basicReq *bfe_basic return case bfe_module.BfeHandlerRedirect: // make redirect - Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code) + Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code, basicReq.Redirect.Header) isRedirect = true @@ -695,7 +695,7 @@ response_got: return case bfe_module.BfeHandlerRedirect: // make redirect - Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code) + Redirect(rw, req, basicReq.Redirect.Url, basicReq.Redirect.Code, basicReq.Redirect.Header) isRedirect = true basicReq.BfeStatusCode = basicReq.Redirect.Code goto send_response diff --git a/conf/cluster_conf/cluster_table.data b/conf/cluster_conf/cluster_table.data index 5112914b7..7ca4785bd 100644 --- a/conf/cluster_conf/cluster_table.data +++ b/conf/cluster_conf/cluster_table.data @@ -5,7 +5,7 @@ { "Addr": "10.199.189.26", "Name": "example_hostname", - "Port": 10257, + "Port": 8181, "Weight": 10 } ] From 670b27f5a80bfb86d0a0834ca11d66aa192043a9 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Thu, 7 May 2020 16:46:47 +0800 Subject: [PATCH 062/111] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index b05db1d75..bf13cc637 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,7 +6,9 @@ | Caiyuan Yang | jansci621 | | Chongmiao Liu | lcmmhcc | | Derek Zheng | shanhuhai5739 | +| Haobin zhang | zhanghaobin | | Jie Liu | freeHackOfJeff | +| Jie Wan | wanjiecs | | Jin Tong | cumirror | | Jiyang Zhang | scriptkids | | Kaiyu Zheng | kaiyuzheng | @@ -26,14 +28,18 @@ | Sijie Yang | iyangsj | | Tianqi Zhang | NKztq | | Wenjie Tian | WJTian | +| Wenlong Chen | LeroChen | | Wensi Yang | tianxinheihei | | Xiaofei Yu | xiaofei0800 | | Xiaoli Liu | liuxiaoli007 | +| Xiaonan chen | two | | Xiaoye Jiang | kidleaf-jiang | | Xin Li | lx-or-xxxl | | Yang Liu | dut-yangliu | | Yuqi Xiao | YuqiXiao | +| Zheng Liu | liuzheng | | Zhichao Lin | lxiaozhic | +| Yuchen Wang | CHneger | | | 0xflotus | | | calify | | | MoonShining | From cce6fd904000496e2bd0e6c9c5ba7bc37b38b44c Mon Sep 17 00:00:00 2001 From: yangwensi Date: Thu, 7 May 2020 19:54:34 +0800 Subject: [PATCH 063/111] Add docs/mkdocs.yml (#470) --- docs/mkdocs.yml | 152 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 docs/mkdocs.yml diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml new file mode 100644 index 000000000..b8577e8bf --- /dev/null +++ b/docs/mkdocs.yml @@ -0,0 +1,152 @@ +site_name: BFE +dev_addr: 0.0.0.0:8000 + +repo_name: 'Github' +repo_url: https://github.com/baidu/bfe +docs_dir: 'en_us' +edit_uri: edit/master/docs/en_us/ + +theme: + name: material + language: en + + +markdown_extensions: + - codehilite + - attr_list + - admonition + - footnotes + +plugins: + - search + +nav: + - 'About': 'README.md' + - 'Introduction': + - 'Overview': 'introduction/overview.md' + - 'Comparsion to similar systems': 'introduction/comparison.md' + - 'Design overview': + - 'Terminology': 'introduction/terminology.md' + - 'Traffic fowarding model': 'introduction/forward_model.md' + - 'Traffic routing': 'introduction/route.md' + - 'Traffic balancing': 'introduction/balance.md' + - 'Getting help': 'introduction/getting_help.md' + - 'Version History': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' + - 'Quick Start': + - 'Install': 'installation/install_from_source.md' + - 'User Guides': + - 'Overview': 'example/guide.md' + - 'Traffic forwarding': 'example/route.md' + - 'Traffic blocking': 'example/block.md' + - 'Request redirect': 'example/redirect.md' + - 'Request rewrite': 'example/rewrite.md' + - 'TLS mutual authentication': 'example/client_auth.md' + - 'Installation': + - 'Overview': 'installation/install.md' + - 'Install from source': 'installation/install_from_source.md' + - 'Install using binaries': 'installation/install_using_binaries.md' + - 'Install using go get': 'installation/install_using_go_get.md' + - 'Install using snap': 'installation/install_using_snap.md' + - 'Configuration': + - 'Overview': 'configuration/config.md' + - 'Core': 'configuration/bfe.conf.md' + - 'Protocol': + - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' + - 'Certificate': 'configuration/tls_conf/server_cert_conf.data.md' + - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' + - 'Routing': + - 'Host rule': 'configuration/server_data_conf/host_rule.data.md' + - 'Vip rule': 'configuration/server_data_conf/vip_rule.data.md' + - 'Route rule': 'configuration/server_data_conf/route_rule.data.md' + - 'Backend Cluster': 'configuration/server_data_conf/cluster_conf.data.md' + - 'Load Balancing': + - 'Sub-clusters balancing': 'configuration/cluster_conf/gslb.data.md' + - 'Instances balancing': 'configuration/cluster_conf/cluster_table.data.md' + - 'Name Service': + - 'Naming': 'configuration/server_data_conf/name_conf.data.md' + - 'Modules': + - 'mod_access': 'modules/mod_access/mod_access.md' + - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' + - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' + - 'mod_block': 'modules/mod_block/mod_block.md' + - 'mod_compress': 'modules/mod_compress/mod_compress.md' + - 'mod_doh': 'modules/mod_doh/mod_doh.md' + - 'mod_errors': 'modules/mod_errors/mod_errors.md' + - 'mod_geo': 'modules/mod_geo/mod_geo.md' + - 'mod_header': 'modules/mod_header/mod_header.md' + - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' + - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' + - 'mod_logid': 'modules/mod_logid/mod_logid.md' + - 'mod_prison': 'modules/mod_prison/mod_prison.md' + - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' + - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' + - 'mod_static': 'modules/mod_static/mod_static.md' + - 'mod_tag': 'modules/mod_tag/mod_tag.md' + - 'mod_trace': 'modules/mod_trace/mod_trace.md' + - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' + - 'mod_userid': 'modules/mod_userid/mod_userid.md' + - 'Operation': + - 'Command line options': 'operation/command.md' + - 'Environment argruments': 'operation/env_var.md' + - 'System signals': 'operation/signal.md' + - 'Configuration reload': 'operation/reload.md' + - 'System metrics': 'operation/monitor.md' + - 'Log Rotation': 'operation/log_rotation.md' + - 'Traffic tapping': 'operation/capture_packet.md' + - 'Performance': 'operation/performance.md' + - 'How to Contribute': + - 'Contribute codes': + - 'Local development': 'development/local_dev_guide.md' + - 'Sumbit PR': 'development/submit_pr_guide.md' + - 'Contribute documents': 'development/write_doc_guide.md' + - 'Releasing process': 'development/release_regulation.md' + - 'Development guides': + - 'Source code layout': 'development/source_code_layout.md' + - 'BFE module development': + - 'Overview': 'development/module/overview.md' + - 'BFE callback introduction': 'development/module/bfe_callback.md' + - 'How to write a module': 'development/module/how_to_write_module.md' + - 'FAQ': + - 'Installation': 'faq/installation.md' + - 'Configuration': 'faq/configuration.md' + - 'Performance': 'faq/performance.md' + - 'Development': 'faq/development.md' + - 'Appendix A: Monitor': + - 'Protocol': + - 'SSL/TLS': 'monitor/tls_state.md' + - 'HTTP': 'monitor/http_state.md' + - 'HTTP2': 'monitor/http2_state.md' + - 'SPDY': 'monitor/spdy_state.md' + - 'WebSocket': 'monitor/websocket_state.md' + - 'Stream': 'monitor/stream_state.md' + - 'Routing': + - 'Host table': 'monitor/host_table_status.md' + - 'Load Balancing': + - 'Balance details': 'monitor/bal_table_status.md' + - 'Balance error': 'monitor/bal_state.md' + - 'Proxy': + - 'Proxy state': 'monitor/proxy_state.md' + - 'Modules': 'monitor/module_status.md' + - 'Lentency': + - 'Lentency histogram': 'monitor/proxy_XXX_delay.md' + - 'Appendix B: Condition': + - 'Condition Concept and Grammar': 'condition/condition_grammar.md' + - 'Condition Naming Convention': 'condition/condition_naming_convention.md' + - 'Condition Primitives Index': 'condition/condition_primitive_index.md' + - 'Request related Condition Primitives': + - 'Method': 'condition/request/method.md' + - 'URI': 'condition/request/uri.md' + - 'Protocol': 'condition/request/protocol.md' + - 'Header': 'condition/request/header.md' + - 'Cookie': 'condition/request/cookie.md' + - 'Tag': 'condition/request/tag.md' + - 'IP': 'condition/request/ip.md' + - 'Response related Condition Primitives': + - 'Code': 'condition/response/code.md' + - 'Header': 'condition/response/header.md' + - 'Session related Condition Primitives': + - 'IP': 'condition/session/ip.md' + - 'TLS': 'condition/session/tls.md' + - 'System related Condition Primitives': + - 'Time': 'condition/system/time.md' + From 6f6629052a3e4fff335c764031acd16939a1db9d Mon Sep 17 00:00:00 2001 From: yangsijie Date: Thu, 7 May 2020 20:49:51 +0800 Subject: [PATCH 064/111] Update docs/mkdocs.yml --- docs/mkdocs.yml | 103 ++++++++++++++++++++++++------------------------ 1 file changed, 52 insertions(+), 51 deletions(-) diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index b8577e8bf..f6e1bbd61 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -10,6 +10,7 @@ theme: name: material language: en +copyright: "Copyright © 2019-2020 BFE Authors" markdown_extensions: - codehilite @@ -21,47 +22,47 @@ plugins: - search nav: - - 'About': 'README.md' + - 'Welcome': 'README.md' - 'Introduction': - 'Overview': 'introduction/overview.md' - - 'Comparsion to similar systems': 'introduction/comparison.md' - - 'Design overview': + - 'Comparsion to Similar Systems': 'introduction/comparison.md' + - 'Design Overview': - 'Terminology': 'introduction/terminology.md' - - 'Traffic fowarding model': 'introduction/forward_model.md' - - 'Traffic routing': 'introduction/route.md' - - 'Traffic balancing': 'introduction/balance.md' - - 'Getting help': 'introduction/getting_help.md' + - 'Traffic Fowarding Model': 'introduction/forward_model.md' + - 'Traffic Routing': 'introduction/route.md' + - 'Traffic Balancing': 'introduction/balance.md' + - 'Getting Help': 'introduction/getting_help.md' - 'Version History': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' - 'Quick Start': - 'Install': 'installation/install_from_source.md' - 'User Guides': - 'Overview': 'example/guide.md' - - 'Traffic forwarding': 'example/route.md' - - 'Traffic blocking': 'example/block.md' - - 'Request redirect': 'example/redirect.md' - - 'Request rewrite': 'example/rewrite.md' - - 'TLS mutual authentication': 'example/client_auth.md' + - 'Traffic Forwarding': 'example/route.md' + - 'Traffic Blocking': 'example/block.md' + - 'Request Redirect': 'example/redirect.md' + - 'Request Rewrite': 'example/rewrite.md' + - 'TLS Mutual Authentication': 'example/client_auth.md' - 'Installation': - 'Overview': 'installation/install.md' - - 'Install from source': 'installation/install_from_source.md' - - 'Install using binaries': 'installation/install_using_binaries.md' - - 'Install using go get': 'installation/install_using_go_get.md' - - 'Install using snap': 'installation/install_using_snap.md' + - 'Install from Source': 'installation/install_from_source.md' + - 'Install using Binaries': 'installation/install_using_binaries.md' + - 'Install using Go Get': 'installation/install_using_go_get.md' + - 'Install using Snap': 'installation/install_using_snap.md' - 'Configuration': - 'Overview': 'configuration/config.md' - 'Core': 'configuration/bfe.conf.md' - 'Protocol': - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' - 'Certificate': 'configuration/tls_conf/server_cert_conf.data.md' - - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' + - 'Session Ticket Key': 'configuration/tls_conf/session_ticket_key.data.md' - 'Routing': - - 'Host rule': 'configuration/server_data_conf/host_rule.data.md' - - 'Vip rule': 'configuration/server_data_conf/vip_rule.data.md' - - 'Route rule': 'configuration/server_data_conf/route_rule.data.md' + - 'Host Rule': 'configuration/server_data_conf/host_rule.data.md' + - 'Vip Rule': 'configuration/server_data_conf/vip_rule.data.md' + - 'Route Rule': 'configuration/server_data_conf/route_rule.data.md' - 'Backend Cluster': 'configuration/server_data_conf/cluster_conf.data.md' - 'Load Balancing': - - 'Sub-clusters balancing': 'configuration/cluster_conf/gslb.data.md' - - 'Instances balancing': 'configuration/cluster_conf/cluster_table.data.md' + - 'Sub-clusters Balancing': 'configuration/cluster_conf/gslb.data.md' + - 'Instances Balancing': 'configuration/cluster_conf/cluster_table.data.md' - 'Name Service': - 'Naming': 'configuration/server_data_conf/name_conf.data.md' - 'Modules': @@ -86,32 +87,32 @@ nav: - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' - 'mod_userid': 'modules/mod_userid/mod_userid.md' - 'Operation': - - 'Command line options': 'operation/command.md' - - 'Environment argruments': 'operation/env_var.md' - - 'System signals': 'operation/signal.md' - - 'Configuration reload': 'operation/reload.md' - - 'System metrics': 'operation/monitor.md' + - 'Command Line Options': 'operation/command.md' + - 'Environment Argruments': 'operation/env_var.md' + - 'System Signals': 'operation/signal.md' + - 'Configuration Reload': 'operation/reload.md' + - 'System Metrics': 'operation/monitor.md' - 'Log Rotation': 'operation/log_rotation.md' - - 'Traffic tapping': 'operation/capture_packet.md' + - 'Traffic Tapping': 'operation/capture_packet.md' - 'Performance': 'operation/performance.md' - 'How to Contribute': - - 'Contribute codes': - - 'Local development': 'development/local_dev_guide.md' + - 'Contribute Codes': + - 'Local Development': 'development/local_dev_guide.md' - 'Sumbit PR': 'development/submit_pr_guide.md' - - 'Contribute documents': 'development/write_doc_guide.md' - - 'Releasing process': 'development/release_regulation.md' - - 'Development guides': - - 'Source code layout': 'development/source_code_layout.md' - - 'BFE module development': + - 'Contribute Documents': 'development/write_doc_guide.md' + - 'Releasing Process': 'development/release_regulation.md' + - 'Development Guides': + - 'Source Code Layout': 'development/source_code_layout.md' + - 'BFE Module Development': - 'Overview': 'development/module/overview.md' - - 'BFE callback introduction': 'development/module/bfe_callback.md' - - 'How to write a module': 'development/module/how_to_write_module.md' + - 'BFE Callback Introduction': 'development/module/bfe_callback.md' + - 'How to Write a Module': 'development/module/how_to_write_module.md' - 'FAQ': - 'Installation': 'faq/installation.md' - 'Configuration': 'faq/configuration.md' - 'Performance': 'faq/performance.md' - 'Development': 'faq/development.md' - - 'Appendix A: Monitor': + - 'Monitor Reference': - 'Protocol': - 'SSL/TLS': 'monitor/tls_state.md' - 'HTTP': 'monitor/http_state.md' @@ -120,20 +121,20 @@ nav: - 'WebSocket': 'monitor/websocket_state.md' - 'Stream': 'monitor/stream_state.md' - 'Routing': - - 'Host table': 'monitor/host_table_status.md' + - 'Host Table': 'monitor/host_table_status.md' - 'Load Balancing': - - 'Balance details': 'monitor/bal_table_status.md' - - 'Balance error': 'monitor/bal_state.md' + - 'Balance Details': 'monitor/bal_table_status.md' + - 'Balance Error': 'monitor/bal_state.md' - 'Proxy': - - 'Proxy state': 'monitor/proxy_state.md' + - 'Proxy State': 'monitor/proxy_state.md' - 'Modules': 'monitor/module_status.md' - 'Lentency': - - 'Lentency histogram': 'monitor/proxy_XXX_delay.md' - - 'Appendix B: Condition': - - 'Condition Concept and Grammar': 'condition/condition_grammar.md' - - 'Condition Naming Convention': 'condition/condition_naming_convention.md' - - 'Condition Primitives Index': 'condition/condition_primitive_index.md' - - 'Request related Condition Primitives': + - 'Lentency Histogram': 'monitor/proxy_XXX_delay.md' + - 'Condition Reference': + - 'Concept and Grammar': 'condition/condition_grammar.md' + - 'Naming Convention': 'condition/condition_naming_convention.md' + - 'Primitives Index': 'condition/condition_primitive_index.md' + - 'Request related Primitives': - 'Method': 'condition/request/method.md' - 'URI': 'condition/request/uri.md' - 'Protocol': 'condition/request/protocol.md' @@ -141,12 +142,12 @@ nav: - 'Cookie': 'condition/request/cookie.md' - 'Tag': 'condition/request/tag.md' - 'IP': 'condition/request/ip.md' - - 'Response related Condition Primitives': + - 'Response related Primitives': - 'Code': 'condition/response/code.md' - 'Header': 'condition/response/header.md' - - 'Session related Condition Primitives': + - 'Session related Primitives': - 'IP': 'condition/session/ip.md' - 'TLS': 'condition/session/tls.md' - - 'System related Condition Primitives': + - 'System related Primitives': - 'Time': 'condition/system/time.md' From 58962f1c929bd9aa1e6e053fb5f5441515c6d13c Mon Sep 17 00:00:00 2001 From: yangsijie Date: Thu, 7 May 2020 23:20:57 +0800 Subject: [PATCH 065/111] docs: update doc style and fix some minor issues --- docs/en_us/SUMMARY.md | 6 +- docs/en_us/condition/condition_grammar.md | 81 +++++----- docs/en_us/configuration/bfe.conf.md | 12 +- .../cluster_conf/cluster_table.data.md | 12 +- .../configuration/cluster_conf/gslb.data.md | 8 +- .../server_data_conf/cluster_conf.data.md | 18 ++- .../server_data_conf/host_rule.data.md | 8 +- .../server_data_conf/name_conf.data.md | 8 +- .../server_data_conf/route_rule.data.md | 8 +- .../server_data_conf/vip_rule.data.md | 8 +- .../tls_conf/server_cert_conf.data.md | 8 +- .../tls_conf/session_ticket_key.data.md | 8 +- .../tls_conf/tls_rule_conf.data.md | 18 ++- docs/en_us/development/write_doc_guide.md | 12 +- docs/en_us/installation/install.md | 2 +- .../en_us/installation/install_from_source.md | 5 +- .../installation/install_using_binaries.md | 2 +- ...ll_using_go_get.md => install_using_go.md} | 13 +- docs/en_us/installation/install_using_snap.md | 14 +- docs/en_us/introduction/overview.md | 2 +- docs/en_us/introduction/terminology.md | 24 +-- docs/en_us/modules/mod_access/mod_access.md | 11 +- .../modules/mod_auth_basic/mod_auth_basic.md | 18 ++- .../modules/mod_auth_jwt/mod_auth_jwt.md | 4 +- docs/en_us/modules/mod_block/mod_block.md | 20 +-- .../modules/mod_compress/mod_compress.md | 21 ++- docs/en_us/modules/mod_doh/mod_doh.md | 4 +- docs/en_us/modules/mod_errors/mod_errors.md | 19 ++- docs/en_us/modules/mod_geo/mod_geo.md | 10 +- docs/en_us/modules/mod_header/mod_header.md | 19 ++- .../modules/mod_http_code/mod_http_code.md | 8 +- docs/en_us/modules/mod_key_log/mod_key_log.md | 10 +- docs/en_us/modules/mod_logid/mod_logid.md | 8 +- docs/en_us/modules/mod_prison/mod_prison.md | 4 +- .../modules/mod_redirect/mod_redirect.md | 18 ++- docs/en_us/modules/mod_rewrite/mod_rewrite.md | 18 ++- docs/en_us/modules/mod_static/mod_static.md | 20 +-- docs/en_us/modules/mod_tag/mod_tag.md | 16 +- docs/en_us/modules/mod_trace/mod_trace.md | 34 ++-- .../mod_trust_clientip/mod_trust_clientip.md | 18 ++- docs/en_us/modules/mod_userid/mod_userid.md | 16 +- docs/en_us/monitor/bal_state.md | 6 +- docs/en_us/monitor/bal_table_status.md | 8 +- docs/en_us/monitor/host_table_status.md | 8 +- docs/en_us/monitor/http2_state.md | 6 +- docs/en_us/monitor/http_state.md | 6 +- docs/en_us/monitor/module_status.md | 6 +- docs/en_us/monitor/proxy_XXX_delay.md | 8 +- docs/en_us/monitor/proxy_state.md | 8 +- docs/en_us/monitor/spdy_state.md | 8 +- docs/en_us/monitor/stream_state.md | 8 +- docs/en_us/monitor/tls_state.md | 6 +- docs/en_us/monitor/websocket_state.md | 6 +- docs/en_us/operation/capture_packet.md | 2 +- docs/en_us/operation/env_var.md | 15 +- docs/en_us/operation/log_rotation.md | 6 +- docs/en_us/operation/performance.md | 8 +- docs/mkdocs.yml | 153 ------------------ docs/mkdocs_en.yml | 150 +++++++++++++++++ docs/mkdocs_zh.yml | 149 +++++++++++++++++ docs/zh_cn/SUMMARY.md | 2 +- docs/zh_cn/condition/condition_grammar.md | 79 ++++----- docs/zh_cn/configuration/bfe.conf.md | 12 +- .../cluster_conf/cluster_table.data.md | 12 +- .../configuration/cluster_conf/gslb.data.md | 8 +- .../server_data_conf/cluster_conf.data.md | 20 +-- .../server_data_conf/host_rule.data.md | 8 +- .../server_data_conf/name_conf.data.md | 8 +- .../server_data_conf/route_rule.data.md | 8 +- .../server_data_conf/vip_rule.data.md | 8 +- .../tls_conf/server_cert_conf.data.md | 8 +- .../tls_conf/session_ticket_key.data.md | 8 +- .../tls_conf/tls_rule_conf.data.md | 18 ++- docs/zh_cn/development/write_doc_guide.md | 12 +- docs/zh_cn/installation/install.md | 2 +- .../zh_cn/installation/install_from_source.md | 3 +- .../installation/install_using_binaries.md | 2 +- ...ll_using_go_get.md => install_using_go.md} | 13 +- docs/zh_cn/installation/install_using_snap.md | 14 +- docs/zh_cn/introduction/balance.md | 19 ++- docs/zh_cn/introduction/route.md | 1 + docs/zh_cn/introduction/terminology.md | 22 +-- docs/zh_cn/modules/mod_access/mod_access.md | 18 ++- .../modules/mod_auth_basic/mod_auth_basic.md | 18 ++- .../modules/mod_auth_jwt/mod_auth_jwt.md | 17 +- docs/zh_cn/modules/mod_block/mod_block.md | 20 +-- .../modules/mod_compress/mod_compress.md | 20 +-- docs/zh_cn/modules/mod_doh/mod_doh.md | 4 +- docs/zh_cn/modules/mod_errors/mod_errors.md | 18 ++- docs/zh_cn/modules/mod_geo/mod_geo.md | 12 +- docs/zh_cn/modules/mod_header/mod_header.md | 20 +-- .../modules/mod_http_code/mod_http_code.md | 8 +- docs/zh_cn/modules/mod_key_log/mod_key_log.md | 10 +- docs/zh_cn/modules/mod_logid/mod_logid.md | 8 +- docs/zh_cn/modules/mod_prison/mod_prison.md | 4 +- .../modules/mod_redirect/mod_redirect.md | 18 ++- docs/zh_cn/modules/mod_rewrite/mod_rewrite.md | 20 +-- docs/zh_cn/modules/mod_static/mod_static.md | 24 +-- docs/zh_cn/modules/mod_tag/mod_tag.md | 16 +- docs/zh_cn/modules/mod_trace/mod_trace.md | 30 ++-- .../mod_trust_clientip/mod_trust_clientip.md | 16 +- docs/zh_cn/modules/mod_userid/mod_userid.md | 16 +- docs/zh_cn/monitor/bal_state.md | 6 +- docs/zh_cn/monitor/bal_table_status.md | 8 +- docs/zh_cn/monitor/host_table_status.md | 6 +- docs/zh_cn/monitor/http2_state.md | 6 +- docs/zh_cn/monitor/http_state.md | 6 +- docs/zh_cn/monitor/module_status.md | 6 +- docs/zh_cn/monitor/proxy_XXX_delay.md | 8 +- docs/zh_cn/monitor/proxy_state.md | 18 ++- docs/zh_cn/monitor/spdy_state.md | 8 +- docs/zh_cn/monitor/stream_state.md | 6 +- docs/zh_cn/monitor/tls_state.md | 6 +- docs/zh_cn/monitor/websocket_state.md | 6 +- docs/zh_cn/operation/capture_packet.md | 4 +- docs/zh_cn/operation/env_var.md | 13 +- docs/zh_cn/operation/log_rotation.md | 6 +- docs/zh_cn/operation/monitor.md | 9 +- docs/zh_cn/operation/performance.md | 19 +-- docs/zh_cn/operation/reload.md | 17 +- 120 files changed, 1113 insertions(+), 789 deletions(-) rename docs/en_us/installation/{install_using_go_get.md => install_using_go.md} (68%) delete mode 100644 docs/mkdocs.yml create mode 100644 docs/mkdocs_en.yml create mode 100644 docs/mkdocs_zh.yml rename docs/zh_cn/installation/{install_using_go_get.md => install_using_go.md} (69%) diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index cdb585ea9..0dff14401 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -11,7 +11,7 @@ * [Traffic balancing](introduction/balance.md) * [Getting help](introduction/getting_help.md) * [Version History](https://github.com/baidu/bfe/blob/master/CHANGELOG.md) -* Quick Start +* Getting Started * [Install](installation/install_from_source.md) * [User Guides](example/guide.md) * [Traffic forwarding](example/route.md) @@ -22,7 +22,7 @@ * [Installation](installation/install.md) * [Install from source](installation/install_from_source.md) * [Install using binaries](installation/install_using_binaries.md) - * [Install using go get](installation/install_using_go_get.md) + * [Install using go](installation/install_using_go.md) * [Install using snap](installation/install_using_snap.md) * Configuration * [Overview](configuration/config.md) @@ -62,7 +62,7 @@ * [mod_trace](modules/mod_trace/mod_trace.md) * [mod_trust_clientip](modules/mod_trust_clientip/mod_trust_clientip.md) * [mod_userid](modules/mod_userid/mod_userid.md) -* Operation +* Operations * [Command line options](operation/command.md) * [Environment argruments](operation/env_var.md) * [System signals](operation/signal.md) diff --git a/docs/en_us/condition/condition_grammar.md b/docs/en_us/condition/condition_grammar.md index 3121bb139..f188739ed 100644 --- a/docs/en_us/condition/condition_grammar.md +++ b/docs/en_us/condition/condition_grammar.md @@ -2,40 +2,39 @@ ## Basic Concepts -- **Condition Primitive** +### Condition Primitive - - Basic conditional judgment unit, which defines the primitive of comparison +- Basic conditional judgment unit, which defines the primitive of comparison - ``` - req_host_in("www.bfe-networks.com|bfe-networks.com") # host is one of the configured domains - ``` +``` +req_host_in("www.bfe-networks.com|bfe-networks.com") +``` -- **Condition Expression** +### Condition Expression - - Expression using "and/or/not" to connect condition primitive +- Expression using "and/or/not" to connect condition primitive - ``` - req_host_in("bfe-networks.com") && req_method_in("GET") # domain is bfe-networks.com and HTTP method is "GET" - ``` +``` +req_host_in("bfe-networks.com") && req_method_in("GET") +``` -- **Condition Variable** +### Condition Variable - - Variable that is defined by **Condition Expression** +### Variable that is defined by **Condition Expression** - ``` - bfe_host = req_host_in("bfe-networks.com") # variable bfe_host is defined by condition expression - ``` +``` +bfe_host = req_host_in("bfe-networks.com") +``` -- **Advanced Condition Expression** +### Advanced Condition Expression - - Expression using "and/or/not" to connect condition primitive and condition variable +- Expression using "and/or/not" to connect condition primitive and condition variable - - In advanced condition expression, condition variable is identified by **"$" prefix** - - ``` - $news_host && req_method_in("GET") # match condition variable and HTTP method is "GET" - ``` +- In advanced condition expression, condition variable is identified by **"$" prefix** +``` +$news_host && req_method_in("GET") +``` ## Condition Primitive Grammar @@ -56,16 +55,14 @@ Condition Expression grammar is defined as follows: - Expression description - ``` - Condition Expression(CE) -> - CE && CE - | CE || CE - | ( CE ) - | ! CE - | Condition Primitive - ``` - - +``` +Condition Expression(CE) -> + CE && CE + | CE || CE + | ( CE ) + | ! CE + | Condition Primitive +``` ## Advanced Condition Expression Grammar @@ -75,14 +72,12 @@ Advanced Condition Expression grammar is defined as follows: - Expression description - ``` - Advanced Condition Expression(ACE) -> - ACE && ACE - | ACE || ACE - | ( ACE) - | ! ACE - | Condition Primitive - | Condition Variable - ``` - - +``` +Advanced Condition Expression(ACE) -> + ACE && ACE + | ACE || ACE + | ( ACE) + | ! ACE + | Condition Primitive + | Condition Variable +``` diff --git a/docs/en_us/configuration/bfe.conf.md b/docs/en_us/configuration/bfe.conf.md index 2f06a71fa..21a9c18d4 100644 --- a/docs/en_us/configuration/bfe.conf.md +++ b/docs/en_us/configuration/bfe.conf.md @@ -1,10 +1,12 @@ -# Introduction +# Core Configuration + +## Introduction bfe.conf is the core configuration file of BFE. -# Configuration +## Configuration -## Server basic config +### Server basic config | Config Item | Description | | ----------------------------- | ------------------------------------------------------------ | @@ -34,7 +36,7 @@ bfe.conf is the core configuration file of BFE. | Basic.DebugBal | Boolean
Debug flag for Bal
Default False | | Basic.DebugHealthCheck | Boolean
Debug flag for HealthCheck
Default False | -## TLS basic config +### TLS basic config | Config Item | Description | | --------------------------------- | ---------------------------------------------------------------- | @@ -56,7 +58,7 @@ bfe.conf is the core configuration file of BFE. | SessionTicket.SessionTicketKeyFile | String
Path of [session ticket key config](tls_conf/session_ticket_key.data.md)
Default tls_conf/session_ticket_key.data | -# Example +## Example ``` [Server] diff --git a/docs/en_us/configuration/cluster_conf/cluster_table.data.md b/docs/en_us/configuration/cluster_conf/cluster_table.data.md index 356d1b2d1..634c2d65b 100644 --- a/docs/en_us/configuration/cluster_conf/cluster_table.data.md +++ b/docs/en_us/configuration/cluster_conf/cluster_table.data.md @@ -1,10 +1,12 @@ -# Introduction +# Instances Balancing Configuration + +## Introduction cluster_table.data records the load balancing config among instances. -# Configuration +## Configuration -## Basic configuration +### Basic configuration | Config Item | Description | | --------------------- | ------------------------------- | | Version | String
Verson of config file | @@ -14,7 +16,7 @@ cluster_table.data records the load balancing config among instances. | Config{v}{k} | String
name of subcluster | | Config{v}{v} | Object
config of subcluster(a list of instance) | -## Instance configuraton +### Instance configuraton | Config Item | Description | | --------------------- | ------------------------------- | | Addr | String
ip address of instance | @@ -22,7 +24,7 @@ cluster_table.data records the load balancing config among instances. | Port | String
port of instance | | Weight | String
weight of instance | -# Example +## Example ``` { "Config": { diff --git a/docs/en_us/configuration/cluster_conf/gslb.data.md b/docs/en_us/configuration/cluster_conf/gslb.data.md index 624098fe8..3cbebe3c1 100644 --- a/docs/en_us/configuration/cluster_conf/gslb.data.md +++ b/docs/en_us/configuration/cluster_conf/gslb.data.md @@ -1,8 +1,10 @@ -# Introduction +# SubClusters Balancing Configuration + +## Introduction gslb.data records the load balancing config between sub-clusters. -# Configuration +## Configuration | Config Item | Description | | ----------- | ------------------------------------------------------------ | @@ -14,7 +16,7 @@ gslb.data records the load balancing config between sub-clusters. | Hostname | String
Hostname of gslb scheduler | | Ts | String
Timestamp of config file | -# Example +## Example ``` { "Clusters": { diff --git a/docs/en_us/configuration/server_data_conf/cluster_conf.data.md b/docs/en_us/configuration/server_data_conf/cluster_conf.data.md index ec39caaff..402dcaf4c 100644 --- a/docs/en_us/configuration/server_data_conf/cluster_conf.data.md +++ b/docs/en_us/configuration/server_data_conf/cluster_conf.data.md @@ -1,17 +1,19 @@ -# Introduction +# Cluster Configuration + +## Introduction cluster_conf.data records the cluster config. -# Configuration +## Configuration | Config Item | Description | | ----------- | ------------------------------------------------------------- | | Version | String
Verson of config file | | Config | Struct
Map data, key is cluster name, value is cluster config detail | -## Cluster Config Detail +### Cluster Config Detail -### Backend Config +#### Backend Config BackendConf is config for backend. @@ -22,7 +24,7 @@ BackendConf is config for backend. | MaxIdleConnsPerHost | Int
Max idle conns to each backend | | RetryLevel | Int
Retry level if request fail | -### Health Check Config +#### Health Check Config CheckConf is config of backend check. @@ -37,7 +39,7 @@ CheckConf is config of backend check. | CheckTimeout | Int
Timeout for health check, in ms | | CheckInterval | Int
Interval of health check, in ms | -### GSLB Config +#### GSLB Config GslbBasic is cluster config for Gslb. @@ -48,7 +50,7 @@ GslbBasic is cluster config for Gslb. | BalanceMode | String
BalanceMode, default WRR | | HashConf | Struct
Hash config about load balabnce
- HashStrategy: HashStrategy is hash strategy for subcluster-level load balance. Such as ClientIdOnly, ClientIpOnly, ClientIdPreferred
- HashHeader: HashHeader is an optional request header which represents a unique client. Format for speicial cookie header is "Cookie:Key"
- SessionSticky: SessionSticky enable sticky session (ensures that all requests from the user during the session are sent to the same backend) | -### Cluster Basic Config +#### Cluster Basic Config ClusterBasic is basic config for cluster. @@ -62,7 +64,7 @@ ClusterBasic is basic config for cluster. | ResFlushInterval | Int
Interval to flush response in ms. if zero, disable periodic flush | | CancelOnClientClose | Bool
Cancel blocking operation on server if client connection disconnected | -# Example +## Example ``` { "Version": "20190101000000", diff --git a/docs/en_us/configuration/server_data_conf/host_rule.data.md b/docs/en_us/configuration/server_data_conf/host_rule.data.md index a1bb2997c..c908881f8 100644 --- a/docs/en_us/configuration/server_data_conf/host_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/host_rule.data.md @@ -1,8 +1,10 @@ -# Introduction +# Host Rule Configuration + +## Introduction host_rule.data records the domain names for each product. -# Configuration +## Configuration | Config Item | Description | | -------------- | ------------------------------------------------------------ | @@ -15,7 +17,7 @@ host_rule.data records the domain names for each product. | HostTags{k} | Struct
Product name | | HostTags{v} | Struct
HostTag list for product | -# Example +## Example ``` { diff --git a/docs/en_us/configuration/server_data_conf/name_conf.data.md b/docs/en_us/configuration/server_data_conf/name_conf.data.md index 865d830c8..9d40353e7 100644 --- a/docs/en_us/configuration/server_data_conf/name_conf.data.md +++ b/docs/en_us/configuration/server_data_conf/name_conf.data.md @@ -1,8 +1,10 @@ -# Introduction +# Naming Configurationn + +## Introduction name_conf.data records the mapping between service name and service instances. -# Configuration +## Configuration | Config Item | Description | | ----------- | ------------------------------------------------------------ | @@ -14,7 +16,7 @@ name_conf.data records the mapping between service name and service instances. | Config{v}[].Port | Integer
Instance port | | Config{v}[].Weight | Integer
Instance weight | -# Example +## Example ``` { diff --git a/docs/en_us/configuration/server_data_conf/route_rule.data.md b/docs/en_us/configuration/server_data_conf/route_rule.data.md index c9f43bd79..82af18c4f 100644 --- a/docs/en_us/configuration/server_data_conf/route_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/route_rule.data.md @@ -1,8 +1,10 @@ -# Introduction +# Route Rule Configuration + +## Introduction route_rule.data records route rule config for each product. -# Configuration +## Configuration | Config Item | Description | | ----------- | ------------------------------------------------------------ | @@ -13,7 +15,7 @@ route_rule.data records route rule config for each product. | ProductRule{v}[].Cond | String
Condition expression | | ProductRule{v}[].ClusterName | String
Destination cluster name | -# Example +## Example ``` { diff --git a/docs/en_us/configuration/server_data_conf/vip_rule.data.md b/docs/en_us/configuration/server_data_conf/vip_rule.data.md index 8b3243023..6cf9d10c9 100644 --- a/docs/en_us/configuration/server_data_conf/vip_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/vip_rule.data.md @@ -1,8 +1,10 @@ -# Introduction +# VIP Rule Configuration + +## Introduction vip_rule.data records vip lists for each product. -# Configuration +## Configuration | Config Item | Description | | ----------- | ------------------------------------------------------------ | @@ -11,7 +13,7 @@ vip_rule.data records vip lists for each product. | Vips{k} | String
Product name | | Vips{v} | Struct
Vip list for product | -# Example +## Example ``` { diff --git a/docs/en_us/configuration/tls_conf/server_cert_conf.data.md b/docs/en_us/configuration/tls_conf/server_cert_conf.data.md index 442ce381d..4c3707f79 100644 --- a/docs/en_us/configuration/tls_conf/server_cert_conf.data.md +++ b/docs/en_us/configuration/tls_conf/server_cert_conf.data.md @@ -1,8 +1,10 @@ -# Introduction +# Configuration about Server Certificates + +## Introduction server_cert_conf.data records the config for server certificate and private key -# Configuration +## Configuration | Config Item | Description | | ----------- | ------------------------------------------------------------ | @@ -16,7 +18,7 @@ server_cert_conf.data records the config for server certificate and private key | Config.CertConf{v}.ServerKeyFile | String
Path of private key | | Config.CertConf{v}.OcspResponseFile | String
Path of OCSP Stple (optional) | -# Example +## Example ``` { "Version": "20190101000000", diff --git a/docs/en_us/configuration/tls_conf/session_ticket_key.data.md b/docs/en_us/configuration/tls_conf/session_ticket_key.data.md index d9d5e11cc..63074450d 100644 --- a/docs/en_us/configuration/tls_conf/session_ticket_key.data.md +++ b/docs/en_us/configuration/tls_conf/session_ticket_key.data.md @@ -1,15 +1,17 @@ -# Introduction +# Configuration about TLS Session Ticket Key + +## Introduction session_ticket_key.data records the session ticket key. -# Configuration +## Configuration | Config Item | Description | | ---------------- | --------------------------------------------------------------- | | Version | String
Version of config file | | SessionTicketKey | String
The session ticket key. length is 48 and contains only [a-z0-9] | -# Example +## Example ``` { "Version": "20190101000000", diff --git a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md index 47b21065a..b401c28e7 100644 --- a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md @@ -1,8 +1,10 @@ -# Introduction +# Configration about TLS + +## Introduction tls_rule_conf.data records the tls protocol config -# Configuration +## Configuration | Config Item | Description | | ----------------------- | ------------------------------------------------------------------------------ | @@ -23,7 +25,7 @@ tls_rule_conf.data records the tls protocol config | DefaultNextProtos | Object
Default(Supported) application layer protocols over TLS | | DefaultNextProtos[] | String
TLS application layer protocol
- Contains h2, spdy/3.1, http/1.1 | -# Example +## Example ``` { @@ -47,24 +49,24 @@ tls_rule_conf.data records the tls protocol config } ``` -# Security Grade +## Security Grade BFE supports multiple security grades(A+/A/B/C) for ease of TLS configuration. Security grades vary depending on the protocols and the cipher suites supported. -## Grade A+ +### Grade A+ | Supported Protocols | Supported Cipher Suites | | ------------------- | ----------------------- | | TLS1.2 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | -## Grade A +### Grade A | Supported Protocols | Supported Cipher Suites | | ------------------- | ----------------------- | | TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | -## Grade B +### Grade B | Supported Protocols | Supported Cipher Suites | | ------------------- | ----------------------- | @@ -72,7 +74,7 @@ BFE supports multiple security grades(A+/A/B/C) for ease of TLS configuration. S | SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | -## Grade C +### Grade C | Supported Protocols | Supported Cipher Suites | | ------------------- | ----------------------- | diff --git a/docs/en_us/development/write_doc_guide.md b/docs/en_us/development/write_doc_guide.md index 184d0a3b8..7ec9687f5 100644 --- a/docs/en_us/development/write_doc_guide.md +++ b/docs/en_us/development/write_doc_guide.md @@ -17,7 +17,7 @@ Once the document is written, you can use the preview tool to check how the docu ## How to use the preview tool -### 1. Install its dependencies +### Install its dependencies Before doing this, please make sure your operating system has gitbook installed. @@ -29,7 +29,7 @@ sudo npm install -g gitbook-cli ``` -### 2. Clone related repository: +### Clone related repository: First download the full repository: @@ -37,7 +37,7 @@ First download the full repository: git clone https://github.com/baidu/bfe ``` -### 3. Run document site locally +### Run document site locally Change to base directory of documents which you want to load and build(docs/LANG), run: @@ -58,12 +58,12 @@ Then: open your browser and navigate to http://localhost:8000. All content should be written in [Markdown](https://guides.github.com/features/mastering-markdown/) (GitHub style). -### 1. Contribute new documents +### Contribute new documents - Create a new `.md` file or modify an existing article in the repository you are currently working on - Add the new document name to the corresponding index file (SUMMARY.md) -### 2. Run the preview tool +### Run the preview tool - Run the preview tool in base directory of documents (docs/LANG) @@ -73,7 +73,7 @@ All content should be written in [Markdown](https://guides.github.com/features/m gitbook serve --port 8000 ``` -### 3. Preview modification +### Preview modification Open your browser and navigate to http://localhost:8000 . diff --git a/docs/en_us/installation/install.md b/docs/en_us/installation/install.md index 7ea8ce437..e6007e573 100644 --- a/docs/en_us/installation/install.md +++ b/docs/en_us/installation/install.md @@ -3,7 +3,7 @@ ## Installation method - [Install from source](install_from_source.md) - [Install using binaries](install_using_binaries.md) -- [Install using "go get"](install_using_go_get.md) +- [Install using go](install_using_go.md) - [Install using snap](install_using_snap.md) ## Platform support diff --git a/docs/en_us/installation/install_from_source.md b/docs/en_us/installation/install_from_source.md index 855a51e54..5db87a7ed 100644 --- a/docs/en_us/installation/install_from_source.md +++ b/docs/en_us/installation/install_from_source.md @@ -6,10 +6,10 @@ ## Download source code ``` -git clone https://github.com/baidu/bfe +$ git clone https://github.com/baidu/bfe ``` -## Compile +## Build - Execute the following command to build bfe: ``` @@ -27,7 +27,6 @@ $ make test ``` $ file output/bin/bfe - output/bin/bfe: ELF 64-bit LSB executable, ... ``` diff --git a/docs/en_us/installation/install_using_binaries.md b/docs/en_us/installation/install_using_binaries.md index 7beff2b9f..62567b8f4 100644 --- a/docs/en_us/installation/install_using_binaries.md +++ b/docs/en_us/installation/install_using_binaries.md @@ -4,7 +4,7 @@ - [Download the latest release](https://github.com/baidu/bfe/releases) of BFE for your platfrom. -## Extract +## Installation - Extract the files to the installation directory: diff --git a/docs/en_us/installation/install_using_go_get.md b/docs/en_us/installation/install_using_go.md similarity index 68% rename from docs/en_us/installation/install_using_go_get.md rename to docs/en_us/installation/install_using_go.md index f2609dac0..ba54831e3 100644 --- a/docs/en_us/installation/install_using_go_get.md +++ b/docs/en_us/installation/install_using_go.md @@ -1,4 +1,7 @@ -# Install using "go get" +# Install using go + +## Prerequisites +- golang 1.13+ ## Installation - Get the source code and install @@ -7,13 +10,7 @@ $ go get github.com/baidu/bfe ``` -- Executable object file location - -``` -$ file ${GOPATH}/bin/bfe - -output/bin/bfe: ELF 64-bit LSB executable, ... -``` +Executable object file location is ${GOPATH}/bin/bfe ## Run - Run BFE with example configuration files: diff --git a/docs/en_us/installation/install_using_snap.md b/docs/en_us/installation/install_using_snap.md index e5d65500a..7dc1e9b82 100644 --- a/docs/en_us/installation/install_using_snap.md +++ b/docs/en_us/installation/install_using_snap.md @@ -3,24 +3,16 @@ ## Prerequisite - [snap](https://snapcraft.io/docs/installing-snapd) -## Install BFE +## Installation - Execute the following command to install bfe: ``` $ sudo snap install --edge bfe ``` -- Configuration files location: +Configuration files location: /var/snap/bfe/common/conf/ -``` -/var/snap/bfe/common/conf/ -``` - -- Log files location: - -``` -/var/snap/bfe/common/log -``` +Log files location: /var/snap/bfe/common/log ## Run diff --git a/docs/en_us/introduction/overview.md b/docs/en_us/introduction/overview.md index b370c118f..df0074b58 100644 --- a/docs/en_us/introduction/overview.md +++ b/docs/en_us/introduction/overview.md @@ -1,6 +1,6 @@ # Overview -## What is BFE? +## What is BFE - BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front End. diff --git a/docs/en_us/introduction/terminology.md b/docs/en_us/introduction/terminology.md index a0b674d56..2cc6a4a81 100644 --- a/docs/en_us/introduction/terminology.md +++ b/docs/en_us/introduction/terminology.md @@ -1,18 +1,18 @@ # Terminology -- Product - - The product equals "tenant" in BFE, which has its own configuration, such as routing policy, permission, etc. - - Field "host" in HTTP header is used to identify product that the incoming message belongs to. +## Product +- The product equals "tenant" in BFE, which has its own configuration, such as routing policy, permission, etc. +- Field "host" in HTTP header is used to identify product that the incoming message belongs to. -- Cluster - - Cluster means a set of backend servers which provide same functionality and process similar task. - - Usually,cluster span multiple IDC/region in scope. +## Cluster +- Cluster means a set of backend servers which provide same functionality and process similar task. +- Usually,cluster span multiple IDC/region in scope. -- Sub Cluster - - A cluster may be composed of multiple sub clusters conceptually. - - Usally, backend servers within one IDC/region is defined as a sub cluster. +## Sub Cluster +- A cluster may be composed of multiple sub clusters conceptually. +- Usally, backend servers within one IDC/region is defined as a sub cluster. -- Instance - - Instance is backend server. A sub cluster would contain multiple instances. - - To BFE,each backend instance expose IP address + port to accept request. +## Instance +- Instance is backend server. A sub cluster would contain multiple instances. +- To BFE,each backend instance expose IP address + port to accept request. diff --git a/docs/en_us/modules/mod_access/mod_access.md b/docs/en_us/modules/mod_access/mod_access.md index 46ed52600..b2648bbb5 100644 --- a/docs/en_us/modules/mod_access/mod_access.md +++ b/docs/en_us/modules/mod_access/mod_access.md @@ -1,10 +1,12 @@ -# Introduction +# mod_access + +## Introduction The mod_access module writes request logs and session logs in the specified format. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_access/mod_access.conf | Config Item | Description | @@ -16,7 +18,8 @@ The mod_access module writes request logs and session logs in the specified form | Template.RequestTemplate | String
template of request log | | Template.SessionTemplate | String
template of session log | -## Example +### Example + ``` [Log] # filename prefix for log diff --git a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md index 8f7a66dbf..aa10d460e 100644 --- a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md @@ -1,9 +1,12 @@ -# Introduction +# mod_auth_basic + +## Introduction mod_auth_basic implements the HTTP basic authentication. -# Module Configuration -## Description +## Module Configuration + +### Description conf/mod_auth_basic/mod_auth_basic.conf | Config Item | Description | @@ -11,7 +14,7 @@ conf/mod_auth_basic/mod_auth_basic.conf | Basic.DataPath | String
path of rule configuration | | Log.OpenDebug | Boolean
whether enable debug log
Default False | -## Example +### Example ``` [basic] @@ -21,8 +24,9 @@ DataPath = mod_auth_basic/auth_basic_rule.data OpenDebug = false ``` -# Rule Configuration -## Description +## Rule Configuration + +### Description | Config Item | Description | | ---------------------| ------------------------------------------- | | Version | String
Version of config file | @@ -47,7 +51,7 @@ user1:$apr1$mI7SilJz$CWwYJyYKbhVDNl26sdUSh/ user2:{SHA}fEqNCco3Yq9h5ZUglD3CZJT4lBs=:user2, 123456 ``` -## Example +### Example ``` { "Config": { diff --git a/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md index 414496c45..fca73e896 100644 --- a/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md @@ -1,2 +1,4 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# mod_auth_jwt + +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](../../development/submit_pr_guide.md). diff --git a/docs/en_us/modules/mod_block/mod_block.md b/docs/en_us/modules/mod_block/mod_block.md index ade4bb792..43a0113be 100644 --- a/docs/en_us/modules/mod_block/mod_block.md +++ b/docs/en_us/modules/mod_block/mod_block.md @@ -1,10 +1,12 @@ -# Introduction +# mod_block + +## Introduction Block incoming connection/request based on defined rules. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_block/mod_block.conf | Config Item | Description | @@ -12,7 +14,7 @@ conf/mod_block/mod_block.conf | Basic.ProductRulePath | path of product rule configuration | | Basic.IPBlacklistPath | path of ip blacklist file | -## Example +### Example ``` [basic] # product rule config file path @@ -29,9 +31,9 @@ Format of IPBlacklistPath file 192.168.1.250 ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_block/block_rules.data @@ -49,13 +51,13 @@ conf/mod_block/block_rules.data | Config{v}[].Action.Params | Object
a list of action parameters | | Config{v}[].Action.Params[] | String
a action parameter | -## Actions +### Actions | Action | Description | | ------ | -------------------- | | CLOSE | Close the connection | -## Example +### Example ``` { @@ -75,7 +77,7 @@ conf/mod_block/block_rules.data } ``` -# Metrics +## Metrics | Metric | Description | | ------------- | ------------------------------------------------------------ | diff --git a/docs/en_us/modules/mod_compress/mod_compress.md b/docs/en_us/modules/mod_compress/mod_compress.md index 85a5e4dd5..4a0ac0fab 100644 --- a/docs/en_us/modules/mod_compress/mod_compress.md +++ b/docs/en_us/modules/mod_compress/mod_compress.md @@ -1,9 +1,12 @@ -# Introductionn +# mod_compress + +## Introductionn mod_compress compresses responses using specified method. -# Module Configuration -## Description +## Module Configuration + +### Description conf/mod_compress/mod_compress.conf | Config Item | Description | @@ -11,7 +14,8 @@ conf/mod_compress/mod_compress.conf | Basic.DataPath | String
Path of rule configuration | | Log.OpenDebug | Boolean
Whether enable debug logs
Default False | -## Example +### Example + ``` [basic] DataPath = mod_compress/compress_rule.data @@ -20,8 +24,9 @@ DataPath = mod_compress/compress_rule.data OpenDebug = false ``` -# Rule Configuration -## Description +## Rule Configuration + +### Description | Config Item | Description | | ----------- | -------------------------------------------------------------- | | Version | String
Vesion of config file | @@ -35,14 +40,14 @@ OpenDebug = false | Config{v}[].Action.Quality | Integer
Compression level | | Config{v}[].Action.FlushSize | Integer
Flush size | -## Module Actions +### Module Actions | Action | Descrition | | ------------------------| ------------------------------------| | GZIP | Compress response using gzip method | | BROTLI | Compress response using brotli method | -## Example +### Example ``` { "Config": { diff --git a/docs/en_us/modules/mod_doh/mod_doh.md b/docs/en_us/modules/mod_doh/mod_doh.md index 414496c45..38509b73f 100644 --- a/docs/en_us/modules/mod_doh/mod_doh.md +++ b/docs/en_us/modules/mod_doh/mod_doh.md @@ -1,2 +1,4 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# mod_doh + +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](../../development/submit_pr_guide.md). diff --git a/docs/en_us/modules/mod_errors/mod_errors.md b/docs/en_us/modules/mod_errors/mod_errors.md index 95595d2db..98cc11646 100644 --- a/docs/en_us/modules/mod_errors/mod_errors.md +++ b/docs/en_us/modules/mod_errors/mod_errors.md @@ -1,9 +1,12 @@ -# Introduction +# mod_erros + +## Introduction mod_errors replaces error responses by specified rules. -# Module Configuration -## Description +## Module Configuration + +### Description conf/mod_errors/mod_errors.conf | Config Item | Description | @@ -11,14 +14,14 @@ conf/mod_errors/mod_errors.conf | Basic.DataPath | String
Path fo rule configuration | | Log.OpenDebug | Boolean
Whether enable debug logs
Default False | -## Example +### Example ``` [basic] DataPath = mod_errors/errors_rule.data ``` -# Rule Configuration -## Description +## Rule Configuration +### Description | Config Item | Description | | ----------- | ---------------------------------------------------------- | @@ -33,13 +36,13 @@ DataPath = mod_errors/errors_rule.data | Config{v}[].Actions.Params | Object
Parameters of Action | | Config{v}[].Actions.Params[] | String
A Parameter | -## Module Actions +### Module Actions | Action | Description | | -------- | ---------------------- | | RETURN | Return response generated from specified static html | | REDIRECT | Redirect to specified location | -## Example +### Example ``` { "Version": "20190101000000", diff --git a/docs/en_us/modules/mod_geo/mod_geo.md b/docs/en_us/modules/mod_geo/mod_geo.md index 494522d94..03c1a94d2 100644 --- a/docs/en_us/modules/mod_geo/mod_geo.md +++ b/docs/en_us/modules/mod_geo/mod_geo.md @@ -1,10 +1,12 @@ -# Introduction +# mod_geo + +## Introduction mod_geo creates [variables](../mod_header/mod_header.md) with values depending on the client IP address, using the GEO databases. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_geo/mod_geo.conf | Config Item | Description | @@ -15,7 +17,7 @@ conf/mod_geo/mod_geo.conf mod_geo supports GeoDB in MaxMind format which can be downloaded from https://dev.maxmind.com/geoip/geoip2/geolite2/ -## Example +### Example ``` [basic] GeoDBPath = mod_geo/geo.db diff --git a/docs/en_us/modules/mod_header/mod_header.md b/docs/en_us/modules/mod_header/mod_header.md index 866a12140..f3bbf73f4 100644 --- a/docs/en_us/modules/mod_header/mod_header.md +++ b/docs/en_us/modules/mod_header/mod_header.md @@ -1,9 +1,12 @@ -# Introduction +# mod_header + +## Introduction Modify header of HTTP request/response based on defined rules. -# Module Configuration -## Description +## Module Configuration + +### Description conf/mod_header/mod_header.conf | Config Item | Description | @@ -11,16 +14,16 @@ conf/mod_header/mod_header.conf | Basic.DataPath | String
path of rule configuraiton | | Log.OpenDebug | Boolean
debug flag of module | -## Example +### Example ``` [basic] DataPath = mod_header/header_rule.data ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_header/header_rule.data | Config Item | Description | @@ -37,7 +40,7 @@ conf/mod_header/header_rule.data | Config{v}[].Actions.Params | Object
A list of parameters for action | | Config{v}[].Actions.Params[] | String
A parameter | -## Actions +### Actions | Action | Description | | -------------- | ---------------------- | | REQ_HEADER_SET | Set request header | @@ -49,7 +52,7 @@ conf/mod_header/header_rule.data | REQ_HEADER_MOD | Modify request header | | RSP_HEADER_MOD | Modify response header | -## Example +### Example ``` { diff --git a/docs/en_us/modules/mod_http_code/mod_http_code.md b/docs/en_us/modules/mod_http_code/mod_http_code.md index 069f1f168..262ee0267 100644 --- a/docs/en_us/modules/mod_http_code/mod_http_code.md +++ b/docs/en_us/modules/mod_http_code/mod_http_code.md @@ -1,12 +1,14 @@ -# Introduction +# mod_http_code + +## Introduction Count HTTP status codes. -# Module Configuration +## Module Configuration Not required -# Metrics +## Metrics | Metric | Description | | -------------------- | --------------------- | diff --git a/docs/en_us/modules/mod_key_log/mod_key_log.md b/docs/en_us/modules/mod_key_log/mod_key_log.md index a0cb281ff..ddb7e7f45 100644 --- a/docs/en_us/modules/mod_key_log/mod_key_log.md +++ b/docs/en_us/modules/mod_key_log/mod_key_log.md @@ -1,4 +1,6 @@ -# Introduction +# mod_key_log + +## Introduction ModuleKeyLog writes tls key logs in NSS key log format so that external programs(eg. wireshark) can decrypt TLS connections for trouble shooting. @@ -6,9 +8,9 @@ programs(eg. wireshark) can decrypt TLS connections for trouble shooting. For more information about NSS key log format, see: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_key_log/mod_key_log.conf | Config Item | Description | @@ -18,7 +20,7 @@ conf/mod_key_log/mod_key_log.conf | Log.RotateWhen | String
inteval to rotate log file | | Log.BackupCount | Integer
max number of rotated log files | -## Example +### Example ``` [Log] # filename prefix for log diff --git a/docs/en_us/modules/mod_logid/mod_logid.md b/docs/en_us/modules/mod_logid/mod_logid.md index 784629bc1..5bf116109 100644 --- a/docs/en_us/modules/mod_logid/mod_logid.md +++ b/docs/en_us/modules/mod_logid/mod_logid.md @@ -1,12 +1,14 @@ -# Introduction +# mod_logid + +## Introduction Generate log id. -# Module Configuration +## Module Configuration Not required -# Metrics +## Metrics | Metric | Description | | -------------------- | ----------------------------------- | diff --git a/docs/en_us/modules/mod_prison/mod_prison.md b/docs/en_us/modules/mod_prison/mod_prison.md index 414496c45..ea96a0492 100644 --- a/docs/en_us/modules/mod_prison/mod_prison.md +++ b/docs/en_us/modules/mod_prison/mod_prison.md @@ -1,2 +1,4 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# mod_prison + +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](../../development/submit_pr_guide.md). diff --git a/docs/en_us/modules/mod_redirect/mod_redirect.md b/docs/en_us/modules/mod_redirect/mod_redirect.md index d15e13b0e..0a6563c13 100644 --- a/docs/en_us/modules/mod_redirect/mod_redirect.md +++ b/docs/en_us/modules/mod_redirect/mod_redirect.md @@ -1,26 +1,28 @@ -# Introduction +# mod_redirect + +## Introduction Redirect HTTP request based on defined rules. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_redirect/mod_redirect.conf | Config Item | Description | | ----------- | --------------------------------------- | | Basic.DataPath | String
path of rule configuraiton | -## Example +### Example ``` [basic] DataPath = mod_redirect/redirect.data ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_redirect/redirect.data | Config Item | Description | @@ -37,7 +39,7 @@ conf/mod_redirect/redirect.data | Config{v}[].Actions[].Params | Object
Parameters of redirect action | | Config{v}[].Status | Integer
Status code | -## Actions +### Actions | Action | Description | | -------------- | ----------------------------------------------------------------------------------- | | URL_SET | redirect to specified URL | @@ -45,7 +47,7 @@ conf/mod_redirect/redirect.data | URL_PREFIX_ADD | redirect to URL concatenated by specified prefix and the original URL | | SCHEME_SET | redirect to the original URL but with scheme changed. supported scheme: http\|https | -## Example +### Example ``` { diff --git a/docs/en_us/modules/mod_rewrite/mod_rewrite.md b/docs/en_us/modules/mod_rewrite/mod_rewrite.md index 527c85eeb..4c5a7cef3 100644 --- a/docs/en_us/modules/mod_rewrite/mod_rewrite.md +++ b/docs/en_us/modules/mod_rewrite/mod_rewrite.md @@ -1,26 +1,28 @@ -# Introduction +# mod_rewrite + +## Introduction Modify URI of HTTP request based on defined rules. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_rewrite/mod_rewrite.conf | Config Item | Description | | ----------- | --------------------------------------- | | Basic.DataPath | String
path of rule configuraiton | -## Example +### Example ``` [basic] DataPath = mod_rewrite/rewrite.data ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_rewrite/rewrite.data | Config Item | Description | @@ -38,7 +40,7 @@ conf/mod_rewrite/rewrite.data | Config{v}[].Last | Integer
If true, stop to check the remaining rules | -## Actions +### Actions | Action | Description | | ------------------------- | ---------------------------------------- | | HOST_SET | Set host to specified value | @@ -51,7 +53,7 @@ conf/mod_rewrite/rewrite.data | QUERY_DEL_ALL_EXCEPT | Del all queries except specified queries | | QUERY_RENAME | Rename query | -## Example +### Example ``` { diff --git a/docs/en_us/modules/mod_static/mod_static.md b/docs/en_us/modules/mod_static/mod_static.md index 5308f949a..ccfc76d8a 100644 --- a/docs/en_us/modules/mod_static/mod_static.md +++ b/docs/en_us/modules/mod_static/mod_static.md @@ -1,25 +1,27 @@ -# Introduction +# mod_static + +## Introduction mod_static serves static files. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_static/mod_static.conf | Config Item | Description | | ----------- | --------------------------------------- | | Basic.DataPath | String
path of rule configuraiton | -## Example +### Example ``` [basic] DataPath = mod_static/static_rule.data ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_static/static_rule.data | Config Item | Description | @@ -34,12 +36,12 @@ conf/mod_static/static_rule.data | Config{v}[].Action.Cmd | String
Name of static action | | Config{v}[].Action.Params | Object
Parameters of static action | -## Actions +### Actions | Action | Description | | ------------------------- | ---------------------------------- | | BROWSE | Serve static files.
The first parameter is the location of root directory.
The second parameter is the name of default file.| -## Example +### Example ``` { "Config": { @@ -60,7 +62,7 @@ conf/mod_static/static_rule.data } ``` -# Metrics +## Metrics | Metric | Description | | ----------------------- |----------------------------------------| diff --git a/docs/en_us/modules/mod_tag/mod_tag.md b/docs/en_us/modules/mod_tag/mod_tag.md index 29add89e0..f972b7cd2 100644 --- a/docs/en_us/modules/mod_tag/mod_tag.md +++ b/docs/en_us/modules/mod_tag/mod_tag.md @@ -1,10 +1,12 @@ -# Introduction +# mod_tag + +## Introduction Set tags for request based on defined rules. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_tag/mod_tag.conf | Config Item | Description | @@ -12,7 +14,7 @@ conf/mod_tag/mod_tag.conf | Basic.DataPath | String
path of rule configuraiton | | Log.OpenDebug | Boolean
debug flag of module | -## Example +### Example ``` [Basic] DataPath = mod_tag/tag_rule.data @@ -21,9 +23,9 @@ DataPath = mod_tag/tag_rule.data OpenDebug = true ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_tag/tag_rule.data | Config Item | Description | @@ -38,7 +40,7 @@ conf/mod_tag/tag_rule.data | Config{v}[].Param.TagValue | String
tag value | | Config{v}[].Last | Boolean
if true, stop to check the remaining rules | -## Example +### Example ``` { diff --git a/docs/en_us/modules/mod_trace/mod_trace.md b/docs/en_us/modules/mod_trace/mod_trace.md index f17157ec9..144fd1044 100644 --- a/docs/en_us/modules/mod_trace/mod_trace.md +++ b/docs/en_us/modules/mod_trace/mod_trace.md @@ -1,13 +1,15 @@ -# Introduction +# mod_trace + +## Introduction Enable trace for requests based on defined rules. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_trace/mod_trace.conf -### Basic Configuration +#### Basic Configuration | Config Item | Description | | ------------------------------| --------------------------------| @@ -16,7 +18,7 @@ Enable trace for requests based on defined rules. | Basic.TraceAgent | String
which trace agent to use (jaeger/zipkin) | | Log.OpenDebug | Boolean
debug flag of module | -### Configuration about Zipkin +#### Configuration about Zipkin | Config Item | Description | | ------------------------------| --------------------------------| @@ -25,7 +27,7 @@ Enable trace for requests based on defined rules. | Zipkin.ID128Bit | String
whether to use 128 bit root span IDs | | Zipkin.SampleRate | Float
the rate between 0.0001 and 1.0 of requests to trace | -### Configuration about Jaeger +#### Configuration about Jaeger | Config Item | Description | | ------------------------------| --------------------------------| @@ -40,7 +42,7 @@ Enable trace for requests based on defined rules. | Jaeger.CollectorUser | String
basic http authentication when sending spans to jaeger-collector | | Jaeger.CollectorPassword | String
basic http authentication when sending spans to jaeger-collector | -### Configuration about Elastic +#### Configuration about Elastic | Config Item | Description | | ------------------------------| --------------------------------| @@ -48,9 +50,10 @@ Enable trace for requests based on defined rules. | Elastic.SecretToken | String
Set the token used to connect to Elastic APM Server | -## Example +### Example + +#### Example for Zipkin -### Example for Zipkin ``` [Basic] DataPath = mod_trace/trace_rule.data @@ -78,7 +81,8 @@ ID128Bit = true SampleRate = 1.0 ``` -### Example for Jaeger +#### Example for Jaeger + ``` [Basic] DataPath = mod_trace/trace_rule.data @@ -131,7 +135,8 @@ CollectorUser = "" CollectorPassword = "" ``` -### Example for Elastic +#### Example for Elastic + ``` [Basic] DataPath = mod_trace/trace_rule.data @@ -153,9 +158,9 @@ ServerURL = http://127.0.0.1:8200 SecretToken = "" ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_trace/trace_rule.data | Config Item | Description | @@ -168,7 +173,8 @@ conf/mod_trace/trace_rule.data | Config[v][].Cond | String
Condition expression, See [Condition](../../condition/condition_grammar.md) | | Config[v][].Enable | Boolean
Enable trace | -## Example +### Example + ``` { "Version": "20200218210000", diff --git a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md index 781360a5c..ce437b109 100644 --- a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md @@ -1,25 +1,27 @@ -# Introduction +# mod_trust_clientip + +## Introduction Check client IP of incoming request against trusted ip dict. If matched, mark request/connection is trusted. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_trust_clientip/mod_trust_clientip.conf | Config Item | Description | | ----------- | --------------------------------------- | | Basic.DataPath | String
path of rule configuraiton | -## Example +### Example ``` [basic] DataPath = mod_trust_clientip/trust_client_ip.data ``` -# Rule Configuraiton +## Rule Configuraiton -## Description +### Description conf/mod_trust_clientip/trust_client_ip.data | Config Item | Type | Description | @@ -32,7 +34,7 @@ DataPath = mod_trust_clientip/trust_client_ip.data | Config{v}[].Begin | String | start ip address | | Config{v}[].End | String | end ip address | -## Example +### Example ``` { "Version": "20190101000000", @@ -47,7 +49,7 @@ DataPath = mod_trust_clientip/trust_client_ip.data } ``` -# Metrics +## Metrics | Metric | Description | | ---------------------------- | -------------------------------------------------- | diff --git a/docs/en_us/modules/mod_userid/mod_userid.md b/docs/en_us/modules/mod_userid/mod_userid.md index defe8cbce..3a478f13d 100644 --- a/docs/en_us/modules/mod_userid/mod_userid.md +++ b/docs/en_us/modules/mod_userid/mod_userid.md @@ -1,10 +1,12 @@ -# Introduction +# mod_userid + +## Introduction Add user id to cookie for client identification. -# Module Configuration +## Module Configuration -## Description +### Description conf/mod_userid/mod_userid.conf | Config Item | Description | @@ -12,7 +14,7 @@ conf/mod_userid/mod_userid.conf | Basic.DataPath | String
path of rule configuraiton | | Log.OpenDebug | Boolean
debug flag of module | -## Example +### Example ``` [basic] DataPath = mod_userid/userid_rule.data @@ -21,9 +23,9 @@ DataPath = mod_userid/userid_rule.data OpenDebug = true ``` -# Rule Configuration +## Rule Configuration -## Description +### Description conf/mod_userid/userid_rule.data | Config Item | Description | @@ -39,7 +41,7 @@ conf/mod_userid/userid_rule.data | Config{v}[].Params.Path | String
the cookie path | | Config{v}[].Params.MaxAge | Integer
the cookie max age | -## Example +### Example ``` { "Version": "2019-12-10184356", diff --git a/docs/en_us/monitor/bal_state.md b/docs/en_us/monitor/bal_state.md index 9ff03436d..bed3ce078 100644 --- a/docs/en_us/monitor/bal_state.md +++ b/docs/en_us/monitor/bal_state.md @@ -1,8 +1,10 @@ -# Introduction +# Balancing Error + +## Introduction bal_state monitor the subcluster level load balance state using gslb. -# Monitor Item +## Monitor Item | Monitor Item | Description | | --------------------------- | -------------------------------------- | diff --git a/docs/en_us/monitor/bal_table_status.md b/docs/en_us/monitor/bal_table_status.md index 7b7c61e8f..dd67f6edd 100644 --- a/docs/en_us/monitor/bal_table_status.md +++ b/docs/en_us/monitor/bal_table_status.md @@ -1,15 +1,17 @@ -# Introduction +# Balancing Details + +## Introduction bal_table_status monitor table state for maintain backend cluster. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ------------ | ------------------------------------------------------------ | | Balancers | State of cluster, it is map data, key is cluster name, value is cluster state | | BackendNum | Number of cluster backend | -## cluster state +### cluster state | Monitor Item | Description | | ------------ | ------------------------------------------------------------ | diff --git a/docs/en_us/monitor/host_table_status.md b/docs/en_us/monitor/host_table_status.md index 5e4d22eb3..5ec6a3821 100644 --- a/docs/en_us/monitor/host_table_status.md +++ b/docs/en_us/monitor/host_table_status.md @@ -1,12 +1,14 @@ -# Introduction +# Host table + +## Introduction host_table_status monitor status of host table. -# Monitor Item +## Monitor Item | Monitor Item | Description | | --------------------- | --------------------------- | | HostTableSize | Size of host table | | HostTagTableSize | Size of host tag table | | VipTableSize | Size of vip table | -| ProductRouteTableSize | Size of product route table | \ No newline at end of file +| ProductRouteTableSize | Size of product route table | diff --git a/docs/en_us/monitor/http2_state.md b/docs/en_us/monitor/http2_state.md index e57addaa1..f6b5f63c1 100644 --- a/docs/en_us/monitor/http2_state.md +++ b/docs/en_us/monitor/http2_state.md @@ -1,8 +1,10 @@ -# Introduction +# HTTP2 + +## Introduction http2_state monitor state of HTTP2. -# Monitor Item +## Monitor Item | Monitor Item | Description | | --------------------------- | ------------------------------------------------------- | diff --git a/docs/en_us/monitor/http_state.md b/docs/en_us/monitor/http_state.md index dfb91c500..86b124d12 100644 --- a/docs/en_us/monitor/http_state.md +++ b/docs/en_us/monitor/http_state.md @@ -1,8 +1,10 @@ -# Introduction +# HTTP + +## Introduction http_state monitor state of HTTP1.0/1.1. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ---------------------------- | ------------------------------------------------------------ | diff --git a/docs/en_us/monitor/module_status.md b/docs/en_us/monitor/module_status.md index 09abf2c63..9e64ba9ae 100644 --- a/docs/en_us/monitor/module_status.md +++ b/docs/en_us/monitor/module_status.md @@ -1,8 +1,10 @@ -# Introduction +# Modules + +## Introduction module_status monitor status of modules. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ------------ | ------------------------- | diff --git a/docs/en_us/monitor/proxy_XXX_delay.md b/docs/en_us/monitor/proxy_XXX_delay.md index e951e1274..8d4a7d093 100644 --- a/docs/en_us/monitor/proxy_XXX_delay.md +++ b/docs/en_us/monitor/proxy_XXX_delay.md @@ -1,8 +1,10 @@ -# Introduction +# Proxy Lentency + +## Introduction proxy_XXX_delay monitor state of proxy delay. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ------------ | ----------------------------------------- | @@ -14,7 +16,7 @@ proxy_XXX_delay monitor state of proxy delay. | PastTime | Last statistic time | | Past | Proxy delay data of last statistic time | -## proxy Delay Data +### proxy Delay Data | Monitor Item | Description | | ------------ | ------------------------------------------------------------ | diff --git a/docs/en_us/monitor/proxy_state.md b/docs/en_us/monitor/proxy_state.md index 2d8289853..96d000893 100644 --- a/docs/en_us/monitor/proxy_state.md +++ b/docs/en_us/monitor/proxy_state.md @@ -1,8 +1,10 @@ -# Introduction +# Proxy + +## Introduction proxy_state monitor state of proxy. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ------------------------------- | -------------------------------------------------------- | @@ -78,4 +80,4 @@ proxy_state monitor state of proxy. | WSS_CLIENT_CONN_ACTIVE | Counter for active connection using WSS | | WSS_CLIENT_CONN_SERVED | Counter for connection serverd using WSS | | WS_CLIENT_CONN_ACTIVE | Counter for active connection using WS | -| WS_CLIENT_CONN_SERVED | Counter for connection serverd using WS | \ No newline at end of file +| WS_CLIENT_CONN_SERVED | Counter for connection serverd using WS | diff --git a/docs/en_us/monitor/spdy_state.md b/docs/en_us/monitor/spdy_state.md index 28775e172..7db2a9da1 100644 --- a/docs/en_us/monitor/spdy_state.md +++ b/docs/en_us/monitor/spdy_state.md @@ -1,8 +1,10 @@ -# Introduction +# SPDY + +## Introduction spdy_state monitor state of SPDY. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ------------------------------ | ------------------------------------------------------- | @@ -26,4 +28,4 @@ spdy_state monitor state of SPDY. | SPDY_TIMEOUT_CONN | Timeout of SPDY connection | | SPDY_TIMEOUT_READ_STREAM | Timeout waiting for reading stream | | SPDY_TIMEOUT_WRITE_STREAM | Timeout waiting for writing stream | -| SPDY_UNKNOWN_FRAME | Counter for unknown frame | \ No newline at end of file +| SPDY_UNKNOWN_FRAME | Counter for unknown frame | diff --git a/docs/en_us/monitor/stream_state.md b/docs/en_us/monitor/stream_state.md index 12bf412aa..13f2f6634 100644 --- a/docs/en_us/monitor/stream_state.md +++ b/docs/en_us/monitor/stream_state.md @@ -1,8 +1,10 @@ -# Introduction +# Stream + +## Introduction stream_state monitor state of STREAM. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ------------------- | ------------------------------------ | @@ -12,4 +14,4 @@ stream_state monitor state of STREAM. | STREAM_ERR_CONNECT | Counter for connecting backend error | | STREAM_ERR_PROXY | Counter for finding backend error | | STREAM_ERR_TRANSFER | Counter for transfer error | -| STREAM_PANIC_CONN | Counter for connection panic | \ No newline at end of file +| STREAM_PANIC_CONN | Counter for connection panic | diff --git a/docs/en_us/monitor/tls_state.md b/docs/en_us/monitor/tls_state.md index 667e1b9b9..aedb021d0 100644 --- a/docs/en_us/monitor/tls_state.md +++ b/docs/en_us/monitor/tls_state.md @@ -1,8 +1,10 @@ -# Introduction +# TLS + +## Introduction tls_state monitor state of TLS. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ------------------------------------------ | ------------------------------------------------------------ | diff --git a/docs/en_us/monitor/websocket_state.md b/docs/en_us/monitor/websocket_state.md index a9a959b4d..bd60dc356 100644 --- a/docs/en_us/monitor/websocket_state.md +++ b/docs/en_us/monitor/websocket_state.md @@ -1,8 +1,10 @@ -# Introduction +# WebSocket + +## Introduction websocket_state monitor state of websocket. -# Monitor Item +## Monitor Item | Monitor Item | Description | | ----------------------------- | ------------------------------------- | diff --git a/docs/en_us/operation/capture_packet.md b/docs/en_us/operation/capture_packet.md index a853fb140..ebdabeb50 100644 --- a/docs/en_us/operation/capture_packet.md +++ b/docs/en_us/operation/capture_packet.md @@ -7,7 +7,7 @@ Use packet capture and analysis tools to locate and analyze complex network prob tcpdump example: ``` -tcpdump tcp port 8443 -i any -s -w test.pcap +# tcpdump tcp port 8443 -i any -s -w test.pcap ``` ## Traffic analysis diff --git a/docs/en_us/operation/env_var.md b/docs/en_us/operation/env_var.md index 244d988ad..acee207c1 100644 --- a/docs/en_us/operation/env_var.md +++ b/docs/en_us/operation/env_var.md @@ -2,9 +2,14 @@ ## GODEBUG -* export GODEBUG="http2debug=1" - * output verbose log which prints header info processed by http2 hpack encode +* Output verbose log which prints http2 header info -* export GODEBUG="http2debug=2" - * output verbose log which prints header info processed by http2 hpack encode - * output verbose framer log read or wrote by http2 server +``` +$ export GODEBUG="http2debug=1" +``` + +* Output verbose log which prints http2 header and framer info + +``` +$ export GODEBUG="http2debug=2" +``` diff --git a/docs/en_us/operation/log_rotation.md b/docs/en_us/operation/log_rotation.md index ee29c9afc..ba423dc79 100644 --- a/docs/en_us/operation/log_rotation.md +++ b/docs/en_us/operation/log_rotation.md @@ -10,6 +10,6 @@ remove old ones and retain the recent ones. | Name | Path | Rotation Configuration | | ----------- | -------------- | --------------------------------- | -| server log | log/bfe.log | rotate log file at midnight; retain the recent 7 log files | -| access log | log/access.log | [conf/mod_access/mod_access.conf](../modules/mod_access/mod_access.md) | -| tls key log | log/key.log | [conf/mod_key_log/mod_key_log.conf](../modules/mod_key_log/mod_key_log.md) | +| Server Log | log/bfe.log | rotate log file at midnight; retain the recent 7 log files | +| Access Log | log/access.log | [conf/mod_access/mod_access.conf](../modules/mod_access/mod_access.md) | +| TLS Key Log | log/key.log | [conf/mod_key_log/mod_key_log.conf](../modules/mod_key_log/mod_key_log.md) | diff --git a/docs/en_us/operation/performance.md b/docs/en_us/operation/performance.md index 21e58b107..067c2ed9d 100644 --- a/docs/en_us/operation/performance.md +++ b/docs/en_us/operation/performance.md @@ -15,7 +15,7 @@ monitorPort = 8421 * FlameGragh ``` -git clone https://github.com/brendangregg/FlameGraph +$ git clone https://github.com/brendangregg/FlameGraph ``` Which contains stackcollpase-go.pl and flamegraph.pl tools @@ -24,15 +24,15 @@ Which contains stackcollpase-go.pl and flamegraph.pl tools * Get performance sampling data ``` -go tool pprof -seconds=60 -raw -output=bfe.pprof http://:/debug/pprof/profile +$ go tool pprof -seconds=60 -raw -output=bfe.pprof http://:/debug/pprof/profile ``` Note: seconds=60 means capturing 60 seconds of stack samples * Transform and draw FlameGraph ``` -./stackcollpase-go.pl bfe.pporf > bfe.flame -./flamegraph.pl bfe.flame > bfe.svg +$ ./stackcollpase-go.pl bfe.pporf > bfe.flame +$ ./flamegraph.pl bfe.flame > bfe.svg ``` * Open bfe.svg in browser diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml deleted file mode 100644 index f6e1bbd61..000000000 --- a/docs/mkdocs.yml +++ /dev/null @@ -1,153 +0,0 @@ -site_name: BFE -dev_addr: 0.0.0.0:8000 - -repo_name: 'Github' -repo_url: https://github.com/baidu/bfe -docs_dir: 'en_us' -edit_uri: edit/master/docs/en_us/ - -theme: - name: material - language: en - -copyright: "Copyright © 2019-2020 BFE Authors" - -markdown_extensions: - - codehilite - - attr_list - - admonition - - footnotes - -plugins: - - search - -nav: - - 'Welcome': 'README.md' - - 'Introduction': - - 'Overview': 'introduction/overview.md' - - 'Comparsion to Similar Systems': 'introduction/comparison.md' - - 'Design Overview': - - 'Terminology': 'introduction/terminology.md' - - 'Traffic Fowarding Model': 'introduction/forward_model.md' - - 'Traffic Routing': 'introduction/route.md' - - 'Traffic Balancing': 'introduction/balance.md' - - 'Getting Help': 'introduction/getting_help.md' - - 'Version History': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' - - 'Quick Start': - - 'Install': 'installation/install_from_source.md' - - 'User Guides': - - 'Overview': 'example/guide.md' - - 'Traffic Forwarding': 'example/route.md' - - 'Traffic Blocking': 'example/block.md' - - 'Request Redirect': 'example/redirect.md' - - 'Request Rewrite': 'example/rewrite.md' - - 'TLS Mutual Authentication': 'example/client_auth.md' - - 'Installation': - - 'Overview': 'installation/install.md' - - 'Install from Source': 'installation/install_from_source.md' - - 'Install using Binaries': 'installation/install_using_binaries.md' - - 'Install using Go Get': 'installation/install_using_go_get.md' - - 'Install using Snap': 'installation/install_using_snap.md' - - 'Configuration': - - 'Overview': 'configuration/config.md' - - 'Core': 'configuration/bfe.conf.md' - - 'Protocol': - - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' - - 'Certificate': 'configuration/tls_conf/server_cert_conf.data.md' - - 'Session Ticket Key': 'configuration/tls_conf/session_ticket_key.data.md' - - 'Routing': - - 'Host Rule': 'configuration/server_data_conf/host_rule.data.md' - - 'Vip Rule': 'configuration/server_data_conf/vip_rule.data.md' - - 'Route Rule': 'configuration/server_data_conf/route_rule.data.md' - - 'Backend Cluster': 'configuration/server_data_conf/cluster_conf.data.md' - - 'Load Balancing': - - 'Sub-clusters Balancing': 'configuration/cluster_conf/gslb.data.md' - - 'Instances Balancing': 'configuration/cluster_conf/cluster_table.data.md' - - 'Name Service': - - 'Naming': 'configuration/server_data_conf/name_conf.data.md' - - 'Modules': - - 'mod_access': 'modules/mod_access/mod_access.md' - - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' - - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' - - 'mod_block': 'modules/mod_block/mod_block.md' - - 'mod_compress': 'modules/mod_compress/mod_compress.md' - - 'mod_doh': 'modules/mod_doh/mod_doh.md' - - 'mod_errors': 'modules/mod_errors/mod_errors.md' - - 'mod_geo': 'modules/mod_geo/mod_geo.md' - - 'mod_header': 'modules/mod_header/mod_header.md' - - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' - - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' - - 'mod_logid': 'modules/mod_logid/mod_logid.md' - - 'mod_prison': 'modules/mod_prison/mod_prison.md' - - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' - - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' - - 'mod_static': 'modules/mod_static/mod_static.md' - - 'mod_tag': 'modules/mod_tag/mod_tag.md' - - 'mod_trace': 'modules/mod_trace/mod_trace.md' - - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' - - 'mod_userid': 'modules/mod_userid/mod_userid.md' - - 'Operation': - - 'Command Line Options': 'operation/command.md' - - 'Environment Argruments': 'operation/env_var.md' - - 'System Signals': 'operation/signal.md' - - 'Configuration Reload': 'operation/reload.md' - - 'System Metrics': 'operation/monitor.md' - - 'Log Rotation': 'operation/log_rotation.md' - - 'Traffic Tapping': 'operation/capture_packet.md' - - 'Performance': 'operation/performance.md' - - 'How to Contribute': - - 'Contribute Codes': - - 'Local Development': 'development/local_dev_guide.md' - - 'Sumbit PR': 'development/submit_pr_guide.md' - - 'Contribute Documents': 'development/write_doc_guide.md' - - 'Releasing Process': 'development/release_regulation.md' - - 'Development Guides': - - 'Source Code Layout': 'development/source_code_layout.md' - - 'BFE Module Development': - - 'Overview': 'development/module/overview.md' - - 'BFE Callback Introduction': 'development/module/bfe_callback.md' - - 'How to Write a Module': 'development/module/how_to_write_module.md' - - 'FAQ': - - 'Installation': 'faq/installation.md' - - 'Configuration': 'faq/configuration.md' - - 'Performance': 'faq/performance.md' - - 'Development': 'faq/development.md' - - 'Monitor Reference': - - 'Protocol': - - 'SSL/TLS': 'monitor/tls_state.md' - - 'HTTP': 'monitor/http_state.md' - - 'HTTP2': 'monitor/http2_state.md' - - 'SPDY': 'monitor/spdy_state.md' - - 'WebSocket': 'monitor/websocket_state.md' - - 'Stream': 'monitor/stream_state.md' - - 'Routing': - - 'Host Table': 'monitor/host_table_status.md' - - 'Load Balancing': - - 'Balance Details': 'monitor/bal_table_status.md' - - 'Balance Error': 'monitor/bal_state.md' - - 'Proxy': - - 'Proxy State': 'monitor/proxy_state.md' - - 'Modules': 'monitor/module_status.md' - - 'Lentency': - - 'Lentency Histogram': 'monitor/proxy_XXX_delay.md' - - 'Condition Reference': - - 'Concept and Grammar': 'condition/condition_grammar.md' - - 'Naming Convention': 'condition/condition_naming_convention.md' - - 'Primitives Index': 'condition/condition_primitive_index.md' - - 'Request related Primitives': - - 'Method': 'condition/request/method.md' - - 'URI': 'condition/request/uri.md' - - 'Protocol': 'condition/request/protocol.md' - - 'Header': 'condition/request/header.md' - - 'Cookie': 'condition/request/cookie.md' - - 'Tag': 'condition/request/tag.md' - - 'IP': 'condition/request/ip.md' - - 'Response related Primitives': - - 'Code': 'condition/response/code.md' - - 'Header': 'condition/response/header.md' - - 'Session related Primitives': - - 'IP': 'condition/session/ip.md' - - 'TLS': 'condition/session/tls.md' - - 'System related Primitives': - - 'Time': 'condition/system/time.md' - diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml new file mode 100644 index 000000000..11f80554b --- /dev/null +++ b/docs/mkdocs_en.yml @@ -0,0 +1,150 @@ +site_name: BFE +dev_addr: 0.0.0.0:8000 + +repo_name: 'Github' +repo_url: https://github.com/baidu/bfe +docs_dir: 'en_us' +edit_uri: edit/master/docs/en_us/ + +theme: + name: material + language: en + +copyright: "Copyright © 2019-2020 BFE Authors" + +markdown_extensions: + - codehilite + +plugins: + - search + +nav: + - 'About': 'README.md' + - 'Introduction': + - 'Overview': 'introduction/overview.md' + - 'Comparsion to Similar Systems': 'introduction/comparison.md' + - 'Design Overview': + - 'Terminology': 'introduction/terminology.md' + - 'Traffic Fowarding Model': 'introduction/forward_model.md' + - 'Traffic Routing': 'introduction/route.md' + - 'Traffic Balancing': 'introduction/balance.md' + - 'Getting Help': 'introduction/getting_help.md' + - 'Version History': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' + - 'Getting Started': + - 'Install BFE': 'installation/install_from_source.md' + - 'User Guides': + - 'Overview': 'example/guide.md' + - 'Traffic Forwarding': 'example/route.md' + - 'Traffic Blocking': 'example/block.md' + - 'Request Redirect': 'example/redirect.md' + - 'Request Rewrite': 'example/rewrite.md' + - 'TLS Mutual Authentication': 'example/client_auth.md' + - 'Installation': + - 'Overview': 'installation/install.md' + - 'Install from Source': 'installation/install_from_source.md' + - 'Install using Binaries': 'installation/install_using_binaries.md' + - 'Install using Go': 'installation/install_using_go.md' + - 'Install using Snap': 'installation/install_using_snap.md' + - 'Configuration': + - 'Overview': 'configuration/config.md' + - 'Core': 'configuration/bfe.conf.md' + - 'Protocol': + - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' + - 'Certificate': 'configuration/tls_conf/server_cert_conf.data.md' + - 'Session Ticket Key': 'configuration/tls_conf/session_ticket_key.data.md' + - 'Routing': + - 'Host Rule': 'configuration/server_data_conf/host_rule.data.md' + - 'Vip Rule': 'configuration/server_data_conf/vip_rule.data.md' + - 'Route Rule': 'configuration/server_data_conf/route_rule.data.md' + - 'Backend Cluster': 'configuration/server_data_conf/cluster_conf.data.md' + - 'Load Balancing': + - 'Sub-clusters Balancing': 'configuration/cluster_conf/gslb.data.md' + - 'Instances Balancing': 'configuration/cluster_conf/cluster_table.data.md' + - 'Name Service': + - 'Naming': 'configuration/server_data_conf/name_conf.data.md' + - 'Modules': + - 'mod_access': 'modules/mod_access/mod_access.md' + - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' + - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' + - 'mod_block': 'modules/mod_block/mod_block.md' + - 'mod_compress': 'modules/mod_compress/mod_compress.md' + - 'mod_doh': 'modules/mod_doh/mod_doh.md' + - 'mod_errors': 'modules/mod_errors/mod_errors.md' + - 'mod_geo': 'modules/mod_geo/mod_geo.md' + - 'mod_header': 'modules/mod_header/mod_header.md' + - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' + - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' + - 'mod_logid': 'modules/mod_logid/mod_logid.md' + - 'mod_prison': 'modules/mod_prison/mod_prison.md' + - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' + - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' + - 'mod_static': 'modules/mod_static/mod_static.md' + - 'mod_tag': 'modules/mod_tag/mod_tag.md' + - 'mod_trace': 'modules/mod_trace/mod_trace.md' + - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' + - 'mod_userid': 'modules/mod_userid/mod_userid.md' + - 'Operations': + - 'Command Line Options': 'operation/command.md' + - 'Environment Argruments': 'operation/env_var.md' + - 'System Signals': 'operation/signal.md' + - 'Configuration Reload': 'operation/reload.md' + - 'System Metrics': 'operation/monitor.md' + - 'Log Rotation': 'operation/log_rotation.md' + - 'Traffic Tapping': 'operation/capture_packet.md' + - 'Performance': 'operation/performance.md' + - 'How to Contribute': + - 'Contribute Codes': + - 'Local Development': 'development/local_dev_guide.md' + - 'Sumbit PR': 'development/submit_pr_guide.md' + - 'Contribute Documents': 'development/write_doc_guide.md' + - 'Releasing Process': 'development/release_regulation.md' + - 'Development Guides': + - 'Source Code Layout': 'development/source_code_layout.md' + - 'BFE Module Development': + - 'Overview': 'development/module/overview.md' + - 'BFE Callback Introduction': 'development/module/bfe_callback.md' + - 'How to Write a Module': 'development/module/how_to_write_module.md' + - 'FAQ': + - 'Installation': 'faq/installation.md' + - 'Configuration': 'faq/configuration.md' + - 'Performance': 'faq/performance.md' + - 'Development': 'faq/development.md' + - 'Monitor Reference': + - 'Protocol': + - 'SSL/TLS': 'monitor/tls_state.md' + - 'HTTP': 'monitor/http_state.md' + - 'HTTP2': 'monitor/http2_state.md' + - 'SPDY': 'monitor/spdy_state.md' + - 'WebSocket': 'monitor/websocket_state.md' + - 'Stream': 'monitor/stream_state.md' + - 'Routing': + - 'Host Table': 'monitor/host_table_status.md' + - 'Load Balancing': + - 'Balance Details': 'monitor/bal_table_status.md' + - 'Balance Error': 'monitor/bal_state.md' + - 'Proxy': + - 'Proxy State': 'monitor/proxy_state.md' + - 'Modules': 'monitor/module_status.md' + - 'Lentency': + - 'Lentency Histogram': 'monitor/proxy_XXX_delay.md' + - 'Condition Reference': + - 'Concept and Grammar': 'condition/condition_grammar.md' + - 'Naming Convention': 'condition/condition_naming_convention.md' + - 'Primitives Index': 'condition/condition_primitive_index.md' + - 'Request related Primitives': + - 'Method': 'condition/request/method.md' + - 'URI': 'condition/request/uri.md' + - 'Protocol': 'condition/request/protocol.md' + - 'Header': 'condition/request/header.md' + - 'Cookie': 'condition/request/cookie.md' + - 'Tag': 'condition/request/tag.md' + - 'IP': 'condition/request/ip.md' + - 'Response related Primitives': + - 'Code': 'condition/response/code.md' + - 'Header': 'condition/response/header.md' + - 'Session related Primitives': + - 'IP': 'condition/session/ip.md' + - 'TLS': 'condition/session/tls.md' + - 'System related Primitives': + - 'Time': 'condition/system/time.md' + diff --git a/docs/mkdocs_zh.yml b/docs/mkdocs_zh.yml new file mode 100644 index 000000000..aabb79e1c --- /dev/null +++ b/docs/mkdocs_zh.yml @@ -0,0 +1,149 @@ +site_name: BFE +dev_addr: 0.0.0.0:8001 + +repo_name: 'Github' +repo_url: https://github.com/baidu/bfe +docs_dir: 'zh_cn' +edit_uri: edit/master/docs/zh_cn/ + +theme: + name: material + language: zh + +copyright: 'Copyright © 2019-2020 BFE Authors' + +markdown_extensions: + - codehilite + +plugins: + - search + +nav: +- '关于': 'README.md' +- '介绍': + - 'BFE概览': 'introduction/overview.md' + - '竞品对比': 'introduction/comparison.md' + - '设计简介': + - '相关术语': 'introduction/terminology.md' + - '流量接入转发模型': 'introduction/forward_model.md' + - '基于内容路由': 'introduction/route.md' + - '流量负载均衡': 'introduction/balance.md' + - '获取帮助': 'introduction/getting_help.md' + - '发布历史': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' +- '快速开始': + - '安装及运行': 'installation/install_from_source.md' + - '使用示例': + - '使用示例': 'example/guide.md' + - '流量转发': 'example/route.md' + - '黑名单封禁': 'example/block.md' + - '重定向': 'example/redirect.md' + - '重写': 'example/rewrite.md' + - 'TLS客户端认证': 'example/client_auth.md' +- '安装说明': + - '安装概述': 'installation/install.md' + - '源码编译安装': 'installation/install_from_source.md' + - '二进制文件下载安装': 'installation/install_using_binaries.md' + - 'go方式安装': 'installation/install_using_go.md' + - 'snap方式安装': 'installation/install_using_snap.md' +- '配置说明': + - '配置概述': 'configuration/config.md' + - '核心配置': 'configuration/bfe.conf.md' + - '协议': + - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' + - '证书': 'configuration/tls_conf/server_cert_conf.data.md' + - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' + - '路由': + - '域名规则': 'configuration/server_data_conf/host_rule.data.md' + - 'VIP规则': 'configuration/server_data_conf/vip_rule.data.md' + - '路由规则': 'configuration/server_data_conf/route_rule.data.md' + - '后端集群': 'configuration/server_data_conf/cluster_conf.data.md' + - '负载均衡': + - '子集群负载均衡': 'configuration/cluster_conf/gslb.data.md' + - '实例负载均衡': 'configuration/cluster_conf/cluster_table.data.md' + - '名字服务': + - '名字规则': 'configuration/server_data_conf/name_conf.data.md' +- '扩展模块': + - 'mod_access': 'modules/mod_access/mod_access.md' + - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' + - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' + - 'mod_block': 'modules/mod_block/mod_block.md' + - 'mod_compress': 'modules/mod_compress/mod_compress.md' + - 'mod_doh': 'modules/mod_doh/mod_doh.md' + - 'mod_errors': 'modules/mod_errors/mod_errors.md' + - 'mod_geo': 'modules/mod_geo/mod_geo.md' + - 'mod_header': 'modules/mod_header/mod_header.md' + - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' + - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' + - 'mod_logid': 'modules/mod_logid/mod_logid.md' + - 'mod_prison': 'modules/mod_prison/mod_prison.md' + - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' + - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' + - 'mod_static': 'modules/mod_static/mod_static.md' + - 'mod_tag': 'modules/mod_tag/mod_tag.md' + - 'mod_trace': 'modules/mod_trace/mod_trace.md' + - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' + - 'mod_userid': 'modules/mod_userid/mod_userid.md' +- '运维管理': + - '命令行工具及参数': 'operation/command.md' + - '环境变量说明': 'operation/env_var.md' + - '系统信号说明': 'operation/signal.md' + - '配置热加载': 'operation/reload.md' + - '监控指标获取': 'operation/monitor.md' + - '日志切割备份': 'operation/log_rotation.md' + - '流量抓包分析': 'operation/capture_packet.md' + - '性能数据采集': 'operation/performance.md' +- '参与贡献': + - '如何贡献代码': + - '本地开发指南': 'development/local_dev_guide.md' + - '提交PR注意事项': 'development/submit_pr_guide.md' + - '如何贡献文档': 'development/write_doc_guide.md' + - '版本发布说明': 'development/release_regulation.md' + - '开发参考文档': + - '代码结构说明': 'development/source_code_layout.md' + - '模块开发介绍': + - '模块开发介绍': 'development/module/overview.md' + - 'BFE回调机制说明': 'development/module/bfe_callback.md' + - '如何开发模块': 'development/module/how_to_write_module.md' +- '常见问题': + - '安装相关': 'faq/installation.md' + - '配置相关': 'faq/configuration.md' + - '性能相关': 'faq/performance.md' + - '开发相关': 'faq/development.md' +- '监控指标': + - '协议': + - 'SSL/TLS': 'monitor/tls_state.md' + - 'HTTP': 'monitor/http_state.md' + - 'HTTP2': 'monitor/http2_state.md' + - 'SPDY': 'monitor/spdy_state.md' + - 'WebSocket': 'monitor/websocket_state.md' + - 'Stream': 'monitor/stream_state.md' + - '路由': + - '域名表': 'monitor/host_table_status.md' + - '负载均衡': + - '均衡详情': 'monitor/bal_table_status.md' + - '均衡错误': 'monitor/bal_state.md' + - '反向代理': + - '转发状态': 'monitor/proxy_state.md' + - '扩展模块': 'monitor/module_status.md' + - '延迟': + - '延迟分布': 'monitor/proxy_XXX_delay.md' +- '条件原语': + - '条件的概念及语法': 'condition/condition_grammar.md' + - '条件原语命名规范': 'condition/condition_naming_convention.md' + - '条件原语索引': 'condition/condition_primitive_index.md' + - '请求相关条件原语': + - 'Method': 'condition/request/method.md' + - 'URI': 'condition/request/uri.md' + - 'Protocol': 'condition/request/protocol.md' + - 'Header': 'condition/request/header.md' + - 'Cookie': 'condition/request/cookie.md' + - 'Tag': 'condition/request/tag.md' + - 'IP': 'condition/request/ip.md' + - '响应相关条件原语': + - 'Code': 'condition/response/code.md' + - 'Header': 'condition/response/header.md' + - '会话相关条件原语': + - 'IP': 'condition/session/ip.md' + - 'TLS': 'condition/session/tls.md' + - '系统相关条件原语': + - 'Time': 'condition/system/time.md' diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index 8d90b36e2..647e52754 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -22,7 +22,7 @@ * [安装说明](installation/install.md) * [源码编译安装](installation/install_from_source.md) * [二进制文件下载安装](installation/install_using_binaries.md) - * [go get方式安装](installation/install_using_go_get.md) + * [go方式安装](installation/install_using_go.md) * [snap方式安装](installation/install_using_snap.md) * 配置说明 * [配置概述](configuration/config.md) diff --git a/docs/zh_cn/condition/condition_grammar.md b/docs/zh_cn/condition/condition_grammar.md index 978529f06..00fd0ef08 100644 --- a/docs/zh_cn/condition/condition_grammar.md +++ b/docs/zh_cn/condition/condition_grammar.md @@ -3,35 +3,41 @@ ## 基本概念: 原语、表达式和变量 -- **条件原语**(Condition Primitive) +### 条件原语(Condition Primitive) - - 最基本的条件判断单元,定义了比较的原语 +- 最基本的条件判断单元,定义了比较的原语 - ``` - req_host_in("www.bfe-networks.com|bfe-networks.com") # host是两个域名之一 - ``` +``` +# host是两个域名之一 +req_host_in("www.bfe-networks.com|bfe-networks.com") +``` -- **条件表达式**(Condition Expression):基于条件原语的“与/或/非组合” +### 条件表达式(Condition Expression) +- 基于条件原语的“与/或/非组合” - ``` - req_host_in("bfe-networks.com") && req_method_in("GET") # 域名是bfe-networks.com且方法是GET - ``` +``` +# 域名是bfe-networks.com且方法是GET +req_host_in("bfe-networks.com") && req_method_in("GET") +``` -- **条件变量**(Condition Variable) +### 条件变量(Condition Variable) - - 可以将**条件表达式**赋值给一个变量,这个变量被定义为条件变量 +- 可以将**条件表达式**赋值给一个变量,这个变量被定义为条件变量 - ``` - bfe_host = req_host_in("bfe-networks.com") # 将条件表达式赋值给变量bfe_host - ``` +``` +# 将条件表达式赋值给变量bfe_host +bfe_host = req_host_in("bfe-networks.com") +``` -- **高级条件表达式**(Advanced Condition Expression):基于条件原语和条件变量的“与/或/非组合” +### 高级条件表达式(Advanced Condition Expression) +- 基于条件原语和条件变量的“与/或/非组合” - - 在高级条件表达式中,条件变量以$前缀作为标示 +- 在高级条件表达式中,条件变量以$前缀作为标示 - ``` - $news_host && req_method_in("GET") # 符合变量news_host且方法是GET - ``` +``` +# 符合变量news_host且方法是GET +$news_host && req_method_in("GET") +``` ## 条件原语的语法 @@ -54,15 +60,14 @@ - 语法描述 - ``` - Condition Expression(CE) -> - CE && CE - | CE || CE - | ( CE ) - | ! CE - | Condition Primitive - ``` - +``` +Condition Expression(CE) -> + CE && CE + | CE || CE + | ( CE ) + | ! CE + | Condition Primitive +``` ## 高级条件表达式的语法 @@ -72,13 +77,13 @@ - 语法描述 - ``` - Advanced Condition Expression(ACE) -> - ACE && ACE - | ACE || ACE - | ( ACE) - | ! ACE - | Condition Primitive - | Condition Variable - ``` +``` +Advanced Condition Expression(ACE) -> + ACE && ACE + | ACE || ACE + | ( ACE) + | ! ACE + | Condition Primitive + | Condition Variable +``` diff --git a/docs/zh_cn/configuration/bfe.conf.md b/docs/zh_cn/configuration/bfe.conf.md index 20dba45ff..e854e91ab 100644 --- a/docs/zh_cn/configuration/bfe.conf.md +++ b/docs/zh_cn/configuration/bfe.conf.md @@ -1,10 +1,12 @@ -# 配置简介 +# 核心配置 + +## 配置简介 bfe.conf是BFE的核心配置 -# 配置描述 +## 配置描述 -## 服务基础配置 +### 服务基础配置 | 配置项 | 描述 | | ------------------------------ | --------------------------------- | @@ -34,7 +36,7 @@ bfe.conf是BFE的核心配置 | Server.DebugBal | Boolean
是否开启负载均衡模块调试日志
默认值False | | Server.DebugHealthCheck | Boolean
是否开启健康检查模块调试日志
默认值False | -## TLS基础配置 +### TLS基础配置 | 配置项 | 描述 | | --------------------------------- | ------------------------------------------------------------ | @@ -55,7 +57,7 @@ bfe.conf是BFE的核心配置 | SessionTicket.SessionTicketsDisabled | Boolean
是否禁用TLS Session Ticket
默认值True| | SessionTicket.SessionTicketKeyFile | String
[Session Ticket Key配置](tls_conf/session_ticket_key.data.md)文件路径
默认值tls_conf/session_ticket_key.data | -# 配置示例 +## 配置示例 ``` [Server] diff --git a/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md b/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md index f1dba2c0b..1bb871189 100644 --- a/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md +++ b/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md @@ -1,10 +1,12 @@ -# 配置简介 +# 实例负载均衡配置 + +## 配置简介 cluster_table.data配置文件记录各后端集群包含的子集群及实例 -# 配置描述 +## 配置描述 -## 基础配置 +### 基础配置 | 配置项 | 描述 | | ------- | -------------------------------------------------------------- | @@ -15,7 +17,7 @@ cluster_table.data配置文件记录各后端集群包含的子集群及实例 | Config{v}{k} | String
子集群名称 | | Config{v}{v} | Object
子集群配置信息,包含多个实例配置 | -## 实例配置 +### 实例配置 | 配置项 | 描述 | | ------- | -------------------------------------------------------------- | | Addr | String
实例监听地址 | @@ -24,7 +26,7 @@ cluster_table.data配置文件记录各后端集群包含的子集群及实例 | Addr | String
实例名称 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/cluster_conf/gslb.data.md b/docs/zh_cn/configuration/cluster_conf/gslb.data.md index d269530a5..8dc8c5083 100644 --- a/docs/zh_cn/configuration/cluster_conf/gslb.data.md +++ b/docs/zh_cn/configuration/cluster_conf/gslb.data.md @@ -1,8 +1,10 @@ -# 配置简介 +# 子集群负载均衡配置 + +## 配置简介 gslb.data配置文件记录各集群内的多个子集群之间分流比例(GSLB)。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | -------- | ---------------------------------------------- | @@ -14,7 +16,7 @@ gslb.data配置文件记录各集群内的多个子集群之间分流比例(GSLB | Clusters{v}{k} | String
子集群名称
保留GSLB_BLACKHOLE代表黑洞子集群,分配到该子集群的流量将被丢弃,用于过载保护 | | Clusters{v}{v} | Integer
子集群承接流量的权重
子集群承接流量的权重取值范围 0~100,各子集群分流权重之和应等于 100 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md b/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md index c30277b54..c44c63c85 100644 --- a/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md +++ b/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md @@ -1,10 +1,12 @@ -# 配置简介 +# 集群转发配置 + +## 配置简介 cluster_conf.data为集群转发配置文件。 -# 配置描述 +## 配置描述 -## 基础配置 +### 基础配置 | 配置项 | 描述 | | ---------- | ------------------------------ | @@ -13,11 +15,11 @@ cluster_conf.data为集群转发配置文件。 | Config[k] | String
集群名称 | | Config[v] | Object
集群转发配置参数 | -## 集群转发配置 +### 集群转发配置 注:以下配置项均位于名字空间Config[v], 在配置项名称中已省略 -### 后端基础配置 +#### 后端基础配置 | 配置项 | 描述 | | ----------------------------- | ------------------------------------------------------------ | @@ -26,7 +28,7 @@ cluster_conf.data为集群转发配置文件。 | Backend.MaxIdleConnsPerHost | Integer
BFE实例与每个后端的最大空闲长连接数
默认值2 | | Backend.RetryLevel | Integer
请求重试级别。0:连接后端失败时,进行重试;1:连接后端失败、转发GET请求失败时均进行重试
默认值0 | -### 健康检查配置 +#### 健康检查配置 | 配置项 | 描述 | | ------------------------ | ------------------------------------------------------------ | @@ -39,7 +41,7 @@ cluster_conf.data为集群转发配置文件。 | CheckConnf.CheckTimeout | Integer
健康检查的超时时间,单位是毫秒
默认值0(无超时)| | CheckConnf.CheckInterval | Integer
健康检查的间隔时间,单位是毫秒
默认值1 | -### GSLB基础配置 +#### GSLB基础配置 | 配置项 | 描述 | | -------------------------------- | ------------------------------------------ | @@ -51,7 +53,7 @@ cluster_conf.data为集群转发配置文件。 | GslbBadic.HashConf.HashHeader | String
会话保持的hash请求头 | | GslbBadic.HashConf.SessionSticky | Boolean
是否开启会话保持(开启后,可以保证来源于同一个用户的请求可以发送到同一个后端)
默认值False | -### 集群基础配置 +#### 集群基础配置 | 配置项 | 描述 | | ----------------------------------- | ------------------------------------ | @@ -59,7 +61,7 @@ cluster_conf.data为集群转发配置文件。 | ClusterBasic.TimeoutWriteClient | Integer
写响应的超时时间,单位为毫秒
默认值60 | | ClusterBasic.TimeoutReadClientAgain | Integer
连接闲置超时时间,单位为毫秒
默认值60 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/server_data_conf/host_rule.data.md b/docs/zh_cn/configuration/server_data_conf/host_rule.data.md index 7ed585cba..c2c4ce2e7 100644 --- a/docs/zh_cn/configuration/server_data_conf/host_rule.data.md +++ b/docs/zh_cn/configuration/server_data_conf/host_rule.data.md @@ -1,8 +1,10 @@ -# 配置简介 +# 域名规则配置 + +## 配置简介 host_rule.data是BFE的产品线域名表配置文件。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | -------------- | -------------------------------------- | @@ -17,7 +19,7 @@ host_rule.data是BFE的产品线域名表配置文件。 | HostTags{v} | String
域名标签列表 | | HostTags{v}[] | String
域名标签 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/server_data_conf/name_conf.data.md b/docs/zh_cn/configuration/server_data_conf/name_conf.data.md index 4a3c6ddc5..9c09efb81 100644 --- a/docs/zh_cn/configuration/server_data_conf/name_conf.data.md +++ b/docs/zh_cn/configuration/server_data_conf/name_conf.data.md @@ -1,8 +1,10 @@ -# 配置简介 +# 名字规则配置 + +## 配置简介 name_conf.data记录了服务名字和服务实例的映射关系。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | ------------------ | ------------------------------ | @@ -15,7 +17,7 @@ name_conf.data记录了服务名字和服务实例的映射关系。 | Config[v][].Port | Integer
实例端口 | | Config[v][].Weight | Integer
实例权重 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/server_data_conf/route_rule.data.md b/docs/zh_cn/configuration/server_data_conf/route_rule.data.md index f0e42d7a0..87922b1e4 100644 --- a/docs/zh_cn/configuration/server_data_conf/route_rule.data.md +++ b/docs/zh_cn/configuration/server_data_conf/route_rule.data.md @@ -1,8 +1,10 @@ -# 配置简介 +# 分流规则配置 + +## 配置简介 route_rule.data 是BFE的分流配置文件。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | ---------------------------- | ---------------------------------------------------------- | @@ -14,7 +16,7 @@ route_rule.data 是BFE的分流配置文件。 | ProductRule[v][].Cond | String
分流条件, 语法详见[Condition](../../condition/condition_grammar.md) | | ProductRule[v][].ClusterName | Object
目的集群 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md b/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md index 7a51dcb37..d1cc3dfb3 100644 --- a/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md +++ b/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md @@ -1,8 +1,10 @@ -# 配置简介 +# VIP规则配置 + +## 配置简介 vip_rule.data配置文件记录产品线的VIP列表。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | --------- | ------------------------------------ | @@ -12,7 +14,7 @@ vip_rule.data配置文件记录产品线的VIP列表。 | Vips[v] | String
VIP列表 | | Vips[v][] | String
VIP | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md b/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md index 1672ee2da..3454ec2a7 100644 --- a/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md +++ b/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md @@ -1,8 +1,10 @@ -# 配置简介 +# TLS服务端证书配置 + +## 配置简介 server_cert_conf.data用于配置证书和密钥。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | -------- | ------------------------------------------------------------ | @@ -16,7 +18,7 @@ server_cert_conf.data用于配置证书和密钥。 | Config.CertConf{v}.ServerKeyFile | String
证书关联密钥文件路径 | | Config.CertConf{v}.OcspResponseFile | String
证书关联OCSP Stple文件路径
可选配置 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md b/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md index 8da778080..2184e3be8 100644 --- a/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md +++ b/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md @@ -1,15 +1,17 @@ -# 配置简介 +# TLS Session Ticket Key配置 + +## 配置简介 session_ticket_key.data配置记录了session ticket key信息。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | ---------------- | -------------------------------------------------------------- | | Version | String
配置文件版本 | | SessionTicketKey | String
Session Ticket密钥,仅包含字符a-z0-9且长度48的字符串 | -# 配置示例 +## 配置示例 ``` { diff --git a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md index 9f65cf5c6..1f8683af6 100644 --- a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md @@ -1,8 +1,10 @@ -# 配置简介 +# TLS协议配置 + +## 配置简介 tls_rule_conf.data配置TLS协议参数。 -# 配置描述 +## 配置描述 | 配置项 | 描述 | | ---------------------- | ------------------------------------------------------------- | @@ -23,7 +25,7 @@ tls_rule_conf.data配置TLS协议参数。 | DefaultNextProtos | Object
支持的TLS应用层协议列表 | | DefaultNextProtos[] | String
TLS应用层协议, 合法值包括h2, spdy/3.1, http/1.1 | -# 配置示例 +## 配置示例 ``` { @@ -47,24 +49,24 @@ tls_rule_conf.data配置TLS协议参数。 } ``` -# 安全等级说明 +## 安全等级说明 BFE支持多种安全等级(A+/A/B/C)。各安全等级差异在于支持的协议版本及加密套件。A+等级安全性最高、连通性最低;C等级安全性最低、连通性最高。 -## 安全等级A+ +### 安全等级A+ | 支持协议 | 支持加密套件 | | -------- | ------------ | | TLS1.2 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | -## 安全等级A +### 安全等级A | 支持协议 | 支持加密套件 | | -------- | ------------ | | TLS1.2
TLS1.1
TLS1.0 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_OLD_SHA256
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
TLS_RSA_WITH_AES_128_CBC_SHA
TLS_RSA_WITH_AES_256_CBC_SHA | -## 安全等级B +### 安全等级B | 支持协议 | 支持加密套件 | | -------- | ------------ | @@ -72,7 +74,7 @@ BFE支持多种安全等级(A+/A/B/C)。各安全等级差异在于支持的 | SSLv3 | TLS_ECDHE_RSA_WITH_RC4_128_SHA
TLS_RSA_WITH_RC4_128_SHA | -## 安全等级C +### 安全等级C | 支持协议 | 支持加密套件 | | -------- | ------------ | diff --git a/docs/zh_cn/development/write_doc_guide.md b/docs/zh_cn/development/write_doc_guide.md index 23d069b23..4b4811ce8 100644 --- a/docs/zh_cn/development/write_doc_guide.md +++ b/docs/zh_cn/development/write_doc_guide.md @@ -17,7 +17,7 @@ BFE的文档主要分为以下几个类别: ## 如何使用预览工具 -### 1. 安装依赖项 +### 安装依赖项 在此之前,请确认您的操作系统安装了gitbook及依赖项 @@ -28,7 +28,7 @@ $ sudo apt-get update && apt-get install -y npm $ sudo npm install -g gitbook-cli ``` -### 2. Clone仓库 +### Clone仓库 下载完整的BFE仓库: @@ -36,7 +36,7 @@ $ sudo npm install -g gitbook-cli $ git clone https://github.com/baidu/bfe ``` -### 3. 在本地运行文档站点 +### 在本地运行文档站点 进入您希望加载和构建内容的目录列表(docs/LANG), 运行: @@ -57,13 +57,13 @@ Serving book on http://localhost:8000 所有内容都应该以[Markdown](https://guides.github.com/features/mastering-markdown/) (GitHub风格)的形式编写。 -### 1. 贡献编写文档 +### 贡献编写文档 - 创建一个新的` .md` 文件或在您当前操作的仓库中修改已存在的文章 - 如果是新增文档,需将新增的文档名,添加到对应的index文件中(SUMMARY.md) -### 2. 运行预览工具 +### 运行预览工具 - 在文档基目录(docs/LANG)启动预览工具 @@ -72,7 +72,7 @@ $ cd docs/zh_cn/ $ gitbook serve --port 8000 ``` -### 3. 预览修改 +### 预览修改 打开浏览器并导航到http://localhost:8000。 diff --git a/docs/zh_cn/installation/install.md b/docs/zh_cn/installation/install.md index 60a0288c1..868553082 100644 --- a/docs/zh_cn/installation/install.md +++ b/docs/zh_cn/installation/install.md @@ -3,7 +3,7 @@ ## 安装方式 - [源码编译安装](install_from_source.md) - [二进制文件下载安装](install_using_binaries.md) -- [go get方式安装](install_using_go_get.md) +- [go方式安装](install_using_go.md) - [snap方式安装](install_using_snap.md) ## 平台支持 diff --git a/docs/zh_cn/installation/install_from_source.md b/docs/zh_cn/installation/install_from_source.md index 628c90bbe..4695c8603 100644 --- a/docs/zh_cn/installation/install_from_source.md +++ b/docs/zh_cn/installation/install_from_source.md @@ -6,7 +6,7 @@ ## 源码下载 ``` -git clone https://github.com/baidu/bfe +$ git clone https://github.com/baidu/bfe ``` ## 编译 @@ -27,7 +27,6 @@ $ make test ``` $ file output/bin/bfe - output/bin/bfe: ELF 64-bit LSB executable, ... ``` diff --git a/docs/zh_cn/installation/install_using_binaries.md b/docs/zh_cn/installation/install_using_binaries.md index d953d2262..9d51bb52f 100644 --- a/docs/zh_cn/installation/install_using_binaries.md +++ b/docs/zh_cn/installation/install_using_binaries.md @@ -4,7 +4,7 @@ - 从这里[下载BFE](https://github.com/baidu/bfe/releases)在各平台的最新版本 -## 解压安装 +## 安装 - 将文件解压到安装目录: diff --git a/docs/zh_cn/installation/install_using_go_get.md b/docs/zh_cn/installation/install_using_go.md similarity index 69% rename from docs/zh_cn/installation/install_using_go_get.md rename to docs/zh_cn/installation/install_using_go.md index 09127cd3a..2cc7d56c1 100644 --- a/docs/zh_cn/installation/install_using_go_get.md +++ b/docs/zh_cn/installation/install_using_go.md @@ -1,4 +1,7 @@ -# go get方式安装 +# go方式安装 + +## 环境准备 +* golang 1.13+ ## 安装 - 获取并安装 @@ -7,13 +10,7 @@ $ go get github.com/baidu/bfe ``` -- 可执行目标文件位置 - -``` -$ file ${GOPATH}/bin/bfe - -output/bin/bfe: ELF 64-bit LSB executable, ... -``` +可执行目标文件位置: ${GOPATH}/bin/bfe ## 运行 - 基于示例配置运行BFE: diff --git a/docs/zh_cn/installation/install_using_snap.md b/docs/zh_cn/installation/install_using_snap.md index e844b9a5c..665e2ff5a 100644 --- a/docs/zh_cn/installation/install_using_snap.md +++ b/docs/zh_cn/installation/install_using_snap.md @@ -3,24 +3,16 @@ ## 环境准备 在Linux环境可以使用snap工具安装bfe。如果您的系统还未安装snap工具,参见[安装snap](https://snapcraft.io/docs/installing-snapd) -## 安装BFE +## 安装 - 执行如下命令: ``` $ sudo snap install --edge bfe ``` -- 配置文件位于: +配置文件位于: /var/snap/bfe/common/conf/ -``` -/var/snap/bfe/common/conf/ -``` - -- 日志文件位于: - -``` -/var/snap/bfe/common/log -``` +日志文件位于: /var/snap/bfe/common/log ## 运行 diff --git a/docs/zh_cn/introduction/balance.md b/docs/zh_cn/introduction/balance.md index 4ec3f7e53..461ad3a3f 100644 --- a/docs/zh_cn/introduction/balance.md +++ b/docs/zh_cn/introduction/balance.md @@ -1,10 +1,14 @@ -# 集群内负载均衡 +# 负载均衡 + +## 集群级别负载均衡 + +### 机制说明 - BFE可以配置一个集群中的子集群的流量分配比例。 - 该配置中可以包含一个虚拟的子集群,BLACKHOLE(黑洞)。分向黑洞的流量会被丢弃。它可以用来防止子集群过载。 -## 示例场景 +### 示例场景 - 假设基本场景如下图所示: @@ -28,14 +32,15 @@ - 通过修改上述配置,可以将流量在不同的子集群之间切换,实现负载均衡、快速止损、过载保护等目的。 -# 子集群内的负载均衡 +## 实例级别负载均衡 +### 机制说明 - 在同一子集群内的多个实例间,BFE支持使用多种负载均衡算法: * WRR: 加权轮询算法 * WLC: 加权最小连接数 - 如实例的处理能力不同,可以分配不同的权重。 -## 健康检查 +### 健康检查 对于BFE下游的每一个实例,BFE会维护一个状态机,包含2个状态: @@ -55,7 +60,7 @@ - BFE从该实例收到健康检查请求的正确响应 -## 失败重试机制 +### 失败重试机制 BFE在转发时,支持以下两种失败重试机制: @@ -68,7 +73,7 @@ BFE在转发时,支持以下两种失败重试机制: - 在原目标子集群之外、使用另外一个子集群进行重试 -## 连接池 +### 连接池 BFE和下游实例的连接支持两种方式: @@ -88,7 +93,7 @@ BFE和下游实例的连接支持两种方式: - 如果连接池中的idle连接数量小于连接池的大小,则将当前使用的连接放入连接池 - 如果连接池中的idle连接数量大于等于连接池的大小,则关闭当前使用的连接 -## 会话保持 +### 会话保持 BFE向下游转发请求时,支持将相同来源请求,转发至固定的业务后端(某个子集群或某个实例) diff --git a/docs/zh_cn/introduction/route.md b/docs/zh_cn/introduction/route.md index 6da78cb0c..9e7888567 100644 --- a/docs/zh_cn/introduction/route.md +++ b/docs/zh_cn/introduction/route.md @@ -1,5 +1,6 @@ # 集群间分流 +## 机制说明 - 集群间分流是指BFE收到请求,基于收到消息内容进行路由,确定由产品线中哪一个集群来处理消息。 ## 示例场景 diff --git a/docs/zh_cn/introduction/terminology.md b/docs/zh_cn/introduction/terminology.md index 8be6201c6..baea4f146 100644 --- a/docs/zh_cn/introduction/terminology.md +++ b/docs/zh_cn/introduction/terminology.md @@ -1,16 +1,16 @@ # 概念说明 -- 产品线(Product) - - 产品线即为BFE中的"租户"。BFE中的配置,比如转发的策略、权限等,是以产品线为单位来进行设置的。 +## 产品线(Product) +- 产品线即为BFE中的"租户"。BFE中的配置,比如转发的策略、权限等,是以产品线为单位来进行设置的。 -- 集群(Cluster) - - 具有同类功能的后端的集合定义为一个集群。一个产品线中可定义多个集群。 - - 通常,一个集群的范围可能跨越多个IDC。 +## 集群(Cluster) +- 具有同类功能的后端的集合定义为一个集群。一个产品线中可定义多个集群。 +- 通常,一个集群的范围可能跨越多个IDC。 -- 子集群(Subcluster) - - 集群又可以划分为多个子集群。 - - 通常,将集群中处于同一IDC中的后端定义为一个子集群。 +## 子集群(Subcluster) +- 集群又可以划分为多个子集群。 +- 通常,将集群中处于同一IDC中的后端定义为一个子集群。 -- 实例(Instance) - - 每个子集群可包含多个后端服务实例。 - - 对于BFE,每个后端实例表现为"IP地址 + 端口号"。 +## 实例(Instance) +- 每个子集群可包含多个后端服务实例。 +- 对于BFE,每个后端实例表现为"IP地址 + 端口号"。 diff --git a/docs/zh_cn/modules/mod_access/mod_access.md b/docs/zh_cn/modules/mod_access/mod_access.md index 01a6bf9f6..34d211974 100644 --- a/docs/zh_cn/modules/mod_access/mod_access.md +++ b/docs/zh_cn/modules/mod_access/mod_access.md @@ -1,8 +1,10 @@ -# 模块简介 +# mod_access + +## 模块简介 mod_access模块以特定格式记录请求日志和会话日志。 -# 基础配置 -## 配置描述 +## 基础配置 +### 配置描述 模块配置文件: conf/mod_access/mod_access.conf | 配置项 | 描述 | @@ -19,7 +21,7 @@ mod_access模块以特定格式记录请求日志和会话日志。 * COMMON:Common Log Format; 等价于配置 RequestTemplate = $host - - $request_time \\"$request_line\\" $status_code $res_len * COMBINED:Combined Log Format; 等价于配置 RequestTemplate = $host - - $request_time \\"$request_line\\" $status_code $res_len \\"${Referer}req_header\\" \\"${User-Agent}req_header\\" -## 配置示例 +### 配置示例 ``` [Log] # filename prefix for log @@ -42,9 +44,9 @@ RequestTemplate = "REQUEST_LOG $time clientip: $remote_addr serverip: $server_ad SessionTemplate = "SESSION_LOG $time clientip: $ses_clientip start_time: $ses_start_time end_time: $ses_end_time overhead: $ses_overhead read_total: $ses_read_total write_total: $ses_write_total keepalive_num: $ses_keepalive_num error: $ses_error" ``` -# 日志变量 +## 日志变量 -## 请求日志变量 +### 请求日志变量 | 变量名 | 含义 | | --------------------- | ------------------------------------------- | @@ -84,7 +86,7 @@ SessionTemplate = "SESSION_LOG $time clientip: $ses_clientip start_time: $ses_s | since_ses_start_time | 接收到请求时当前会话持续时间 | -## 会话日志变量 +### 会话日志变量 | 变量名 | 含义 | | --------------------- | ------------------------------------------- | @@ -102,7 +104,7 @@ SessionTemplate = "SESSION_LOG $time clientip: $ses_clientip start_time: $ses_s | ses_keepalive_num | 会话总处理请求数 | -## 通用日志变量 +### 通用日志变量 | 变量名 | 含义 | | --------------------- | ------------------------------------------- | diff --git a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md index cd95cf2d1..108cfeade 100644 --- a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md @@ -1,9 +1,11 @@ -# 模块简介 +# mod_auth_basic + +## 模块简介 mod_auth_basic支持HTTP基本认证。 -# 基础配置 -## 配置描述 +## 基础配置 +### 配置描述 模块配置文件: conf/mod_auth_basic/mod_auth_basic.conf | 配置项 | 描述 | @@ -11,7 +13,7 @@ mod_auth_basic支持HTTP基本认证。 | Basic.DataPath | String
规则配置的的文件路径 | | Log.OpenDebug | Boolean
是否开启 debug 日志
默认值False | -## 配置示例 +### 配置示例 ``` [basic] @@ -21,8 +23,8 @@ DataPath = mod_auth_basic/auth_basic_rule.data OpenDebug = false ``` -# 规则配置 -## 配置描述 +## 规则配置 +### 配置描述 | 配置项 | 描述 | | ---------------------| ------------------------------------------- | | Version | String
配置文件版本 | @@ -47,7 +49,7 @@ user1:$apr1$mI7SilJz$CWwYJyYKbhVDNl26sdUSh/ user2:{SHA}fEqNCco3Yq9h5ZUglD3CZJT4lBs=:user2, 123456 ``` -## 配置示例 +### 配置示例 ``` { "Config": { @@ -63,7 +65,7 @@ user2:{SHA}fEqNCco3Yq9h5ZUglD3CZJT4lBs=:user2, 123456 } ``` -# 监控项 +## 监控项 | 监控项 | 描述 | | ----------------------- | ---------------------------------- | diff --git a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md index c4329aa0c..5daf55033 100644 --- a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md @@ -1,13 +1,15 @@ -# 简介 +# mod_auth_jwt + +## 模块简介 mod_auth_jwt支持JWT认证。 -# 配置说明 +## 配置说明 -## 配置描述 +### 配置描述 模块配置文件:conf/mod_auth_jwt/mod_auth_jwt.conf -## 配置示例 +### 配置示例 ``` [basic] @@ -55,8 +57,8 @@ ValidateClaimNbf = true OpenDebug = true ``` -# 规则配置 -## 配置示例 +## 规则配置 +### 配置示例 ``` { "Version": "Version", @@ -88,11 +90,10 @@ JWT(包括嵌套JWT)必须使用压缩序列格式(Compact Serialization),不 * 默认的,进行字段验证时仅在JWS的Payload部分或JWE的plaintext部分查找相关字段,可以通过配置启用EnabledHeaderClaims配置项达到当默认位置不存在相应字段时,则到Header部分中查找相关字段的目的。JWS的签名验证机制天然地可以保证Header和Payload的数据完整性;JWE虽然没有签名验证机制,但由于其解密AAD与Header相关,Header被篡改会导致AAD不正确,无法正确解密出明文,间接保证了JWE的Header的数据完整性。因此,启用该配置选项不必担心数据完整性问题,无论是对于JWS或是JWE。 * 由于[JWE](https://tools.ietf.org/html/rfc7516)的RFC文档中并未规定plaintext的具体格式;而[JWT](https://tools.ietf.org/html/rfc7519#section-3)的RFC文档说明了在JWE中,声明字段应为JWE的plaintext部分。故约定,对于JWE,在需要承载声明字段的情况下,将进行了base64URL编码后的声明字段JSON字符串作为JWE的plaintext,则ciphertext为:base64URLEncode(Encrypt(Claim Set))。在plaintext无法应用该规则进行解码、且未启用EnabledHeaderClaims的情况下,对JWE的字段验证会被跳过(默认成功)。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ------------------------ | ---------------------------------- | | AUTH_TOTAL | 命中认证规则的请求数 | | AUTH_SUCCESS | 认证成功的请求数 | | AUTH_FAILED | 认证失败的请求数 | -~ diff --git a/docs/zh_cn/modules/mod_block/mod_block.md b/docs/zh_cn/modules/mod_block/mod_block.md index 106e6a2f1..14f047644 100644 --- a/docs/zh_cn/modules/mod_block/mod_block.md +++ b/docs/zh_cn/modules/mod_block/mod_block.md @@ -1,9 +1,11 @@ -# 模块简介 +# mod_block + +## 模块简介 基于预定义的规则,对连接或请求进行封禁。 -# 基础配置 -## 配置描述 +## 基础配置 +### 配置描述 模块配置文件: conf/mod_block/mod_block.conf | 配置项 | 描述 | @@ -20,7 +22,7 @@ 192.168.1.250 ``` -## 配置示例 +### 配置示例 ``` [basic] # product rule config file path @@ -30,8 +32,8 @@ ProductRulePath = mod_block/block_rules.data IPBlacklistPath = mod_block/ip_blacklist.data ``` -# 规则配置 -## 配置描述 +## 规则配置 +### 配置描述 | 配置项 | 描述 | | ------- | -------------------------------------------------------------- | | Version | String
配置文件版本 | @@ -46,12 +48,12 @@ IPBlacklistPath = mod_block/ip_blacklist.data | Config{v}[].Action.Params | Object
执行指令的相关参数列表 | | Config{v}[].Action.Params[] | String
参数信息 | -## 模块动作 +### 模块动作 | 动作 | 含义 | | ----- | -------- | | CLOSE | 关闭连接 | -## 配置示例 +### 配置示例 ``` { "Version": "20190101000000", @@ -71,7 +73,7 @@ IPBlacklistPath = mod_block/ip_blacklist.data ``` -# 监控项 +## 监控项 | 监控项 | 描述 | | ------------- | ---------------------------- | diff --git a/docs/zh_cn/modules/mod_compress/mod_compress.md b/docs/zh_cn/modules/mod_compress/mod_compress.md index aa86301c5..ef41e7ed6 100644 --- a/docs/zh_cn/modules/mod_compress/mod_compress.md +++ b/docs/zh_cn/modules/mod_compress/mod_compress.md @@ -1,9 +1,11 @@ -# 模块简介 +# mod_compress + +## 模块简介 mod_compress支持响应压缩,如:GZIP压缩。 -# 基础配置 -## 配置描述 +## 基础配置 +### 配置描述 模块配置文件: conf/mod_compress/mod_compress.conf | 配置项 | 描述 | @@ -11,7 +13,7 @@ mod_compress支持响应压缩,如:GZIP压缩。 | Basic.DataPath | String
规则配置的的文件路径 | | Log.OpenDebug | Boolean
是否开启 debug 日志
默认值False | -## 配置示例 +### 配置示例 - 模块配置文件 ``` [basic] @@ -21,8 +23,8 @@ DataPath = mod_compress/compress_rule.data OpenDebug = false ``` -# 规则配置 -## 配置描述 +## 规则配置 +### 配置描述 | 配置项 | 描述 | | ------- | -------------------------------------------------------------- | | Version | String
配置文件版本 | @@ -36,14 +38,14 @@ OpenDebug = false | Config{v}[].Action.Quality | Integer
压缩级别 | | Config{v}[].Action.FlushSize | Integer
压缩过程当中的缓存大小 | -## 模块动作 +### 模块动作 | 动作 | 含义 | | ------------------------| -------------------------| | GZIP | gzip压缩 | | BROTLI | brotli压缩 | -## 配置示例 +### 配置示例 ``` { "Config": { @@ -62,7 +64,7 @@ OpenDebug = false } ``` -# 监控项 +## 监控项 | 监控项 | 描述 | | ----------------------- | --------------------------------- | diff --git a/docs/zh_cn/modules/mod_doh/mod_doh.md b/docs/zh_cn/modules/mod_doh/mod_doh.md index 414496c45..38509b73f 100644 --- a/docs/zh_cn/modules/mod_doh/mod_doh.md +++ b/docs/zh_cn/modules/mod_doh/mod_doh.md @@ -1,2 +1,4 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# mod_doh + +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](../../development/submit_pr_guide.md). diff --git a/docs/zh_cn/modules/mod_errors/mod_errors.md b/docs/zh_cn/modules/mod_errors/mod_errors.md index ca3bf10fd..9b9a7cdf2 100644 --- a/docs/zh_cn/modules/mod_errors/mod_errors.md +++ b/docs/zh_cn/modules/mod_errors/mod_errors.md @@ -1,9 +1,11 @@ -# 模块简介 +# mod_errors + +## 模块简介 根据自定义的条件,将响应内容替换为/重定向至指定错误页。 -# 基础配置 -## 配置描述 +## 基础配置 +### 配置描述 模块配置文件: conf/mod_errors/mod_errors.conf | 配置项 | 描述 | @@ -11,14 +13,14 @@ | Basic.DataPath | String
规则配置的的文件路径 | | Log.OpenDebug | Boolean
是否开启 debug 日志
默认值False | -## 配置示例 +### 配置示例 ``` [basic] DataPath = mod_errors/errors_rule.data ``` -# 规则配置 -## 配置描述 +## 规则配置 +### 配置描述 | 配置项 | 描述 | | ------- | -------------------------------------------------------------- | @@ -33,13 +35,13 @@ DataPath = mod_errors/errors_rule.data | Config{v}[].Actions.Params | Object
执行指令的相关参数列表 | | Config{v}[].Actions.Params[] | String
参数信息 | -## 模块动作 +### 模块动作 | 动作 | 含义 | | -------- | ---------------------- | | RETURN | 响应返回指定错误页 | | REDIRECT | 响应重定向至指定错误页 | -## 配置示例 +### 配置示例 ``` { "Version": "20190101000000", diff --git a/docs/zh_cn/modules/mod_geo/mod_geo.md b/docs/zh_cn/modules/mod_geo/mod_geo.md index 34d70309c..77452b81e 100644 --- a/docs/zh_cn/modules/mod_geo/mod_geo.md +++ b/docs/zh_cn/modules/mod_geo/mod_geo.md @@ -1,10 +1,12 @@ -# 模块简介 +# mod_geo + +## 模块简介 基于地理信息字典,通过用户IP获取相关的地理信息。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块配置文件: conf/mod_geo/mod_geo.conf | 配置项 | 描述 | @@ -14,13 +16,13 @@ 字典文件说明:当前仅支持 MaxMind 地理信息字典, 可在 https://dev.maxmind.com/geoip/geoip2/geolite2/ 下载 -## 配置示例 +### 配置示例 ``` [basic] GeoDBPath = mod_geo/geo.db ``` -# 监控项 +## 监控项 | 监控项 | 描述 | | ----------------------- | --------------------------------- | diff --git a/docs/zh_cn/modules/mod_header/mod_header.md b/docs/zh_cn/modules/mod_header/mod_header.md index b533a24f6..8356ed4f9 100644 --- a/docs/zh_cn/modules/mod_header/mod_header.md +++ b/docs/zh_cn/modules/mod_header/mod_header.md @@ -1,9 +1,11 @@ -# 模块简介 +# mod_header + +## 模块简介 根据自定义条件,修改请求或响应的头部。 -# 基础配置 -## 配置描述 +## 基础配置 +### 配置描述 模块配置文件: conf/mod_header/mod_header.conf | 配置项 | 描述 | @@ -11,14 +13,14 @@ | Basic.DataPath | String
规则配置的的文件路径 | | Log.OpenDebug | Boolean
是否开启 debug 日志
默认值False | -## 配置示例 +### 配置示例 ``` [basic] DataPath = mod_header/header_rule.data ``` -# 规则配置 -## 配置描述 +## 规则配置 +### 配置描述 | 配置项 | 描述 | | ------- | -------------------------------------------------------------- | | Version | String
配置文件版本 | @@ -33,7 +35,7 @@ DataPath = mod_header/header_rule.data | Config{v}[].Actions.Params | Object
执行指令的相关参数列表 | | Config{v}[].Actions.Params[] | String
参数信息 | -## 模块动作 +### 模块动作 | 动作名称 | 含义 | 参数列表说明 | | -------------- | ---------- | --------- | @@ -44,7 +46,7 @@ DataPath = mod_header/header_rule.data | RSP_HEADER_ADD | 添加响应头 | HeaderName, HeaderValue | | RSP_HEADER_DEL | 删除响应头 | HeaderName | -## 配置示例 +### 配置示例 ``` { "Version": "20190101000000", @@ -82,7 +84,7 @@ DataPath = mod_header/header_rule.data } ``` -# 内置变量说明 +## 内置变量说明 可以通过 %variable 使用变量,参见下文示例 | 变量名 | 含义 | diff --git a/docs/zh_cn/modules/mod_http_code/mod_http_code.md b/docs/zh_cn/modules/mod_http_code/mod_http_code.md index 96d8d68d8..56ff1c6e4 100644 --- a/docs/zh_cn/modules/mod_http_code/mod_http_code.md +++ b/docs/zh_cn/modules/mod_http_code/mod_http_code.md @@ -1,12 +1,14 @@ -# 模块简介 +# mod_http_code + +## 模块简介 用来统计HTTP状态码。 -# 基础配置 +## 基础配置 在bfe.conf中启用即可,无其它配置。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ------------------- | ------------------- | diff --git a/docs/zh_cn/modules/mod_key_log/mod_key_log.md b/docs/zh_cn/modules/mod_key_log/mod_key_log.md index dffafb838..04e26bd03 100644 --- a/docs/zh_cn/modules/mod_key_log/mod_key_log.md +++ b/docs/zh_cn/modules/mod_key_log/mod_key_log.md @@ -1,12 +1,14 @@ -# 模块简介 +# mod_key_log + +## 模块简介 ModuleKeyLog以NSS key log格式记录TLS会话密钥, 便于基于第三方工具(例如wireshark) 解密分析TLS加密流量,方便问题诊断分析 关于NSS key log详细格式说明,参见: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format -# 基础配置 -## 配置描述 +## 基础配置 +### 配置描述 模块配置文件: conf/mod_key_log/mod_key_log.conf | 配置项 | 描述 | @@ -16,7 +18,7 @@ https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format | Log.RotateWhen | String
日志切割时间,支持 M/H/D/MIDNIGHT/NEXTHOUR | | Log.BackupCount | Integer
最大的日志存储数量 | -## 配置示例 +### 配置示例 ``` [Log] # filename prefix for log diff --git a/docs/zh_cn/modules/mod_logid/mod_logid.md b/docs/zh_cn/modules/mod_logid/mod_logid.md index abdabde55..84dd0c91b 100644 --- a/docs/zh_cn/modules/mod_logid/mod_logid.md +++ b/docs/zh_cn/modules/mod_logid/mod_logid.md @@ -1,12 +1,14 @@ -# 模块简介 +# mod_logid + +## 模块简介 用来生成logid。 -# 基础配置 +## 基础配置 在bfe.conf中启用即可,无其它配置。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ----------------------- | --------------------------------- | diff --git a/docs/zh_cn/modules/mod_prison/mod_prison.md b/docs/zh_cn/modules/mod_prison/mod_prison.md index 414496c45..ea96a0492 100644 --- a/docs/zh_cn/modules/mod_prison/mod_prison.md +++ b/docs/zh_cn/modules/mod_prison/mod_prison.md @@ -1,2 +1,4 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# mod_prison + +Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](../../development/submit_pr_guide.md). diff --git a/docs/zh_cn/modules/mod_redirect/mod_redirect.md b/docs/zh_cn/modules/mod_redirect/mod_redirect.md index 259fbb520..ed319219d 100644 --- a/docs/zh_cn/modules/mod_redirect/mod_redirect.md +++ b/docs/zh_cn/modules/mod_redirect/mod_redirect.md @@ -1,25 +1,27 @@ -# 模块简介 +# mod_redirect + +## 模块简介 根据自定义的条件,对请求进行重定向。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块配置文件: conf/mod_redirect/mod_redirect.conf | 配置项 | 描述 | | -------------- | ---------------------------------- | | Basic.DataPath | String
规则配置文件路径 | -## 配置示例 +### 配置示例 ``` [basic] DataPath = mod_redirect/redirect.data ``` -# 规则配置 +## 规则配置 -## 配置描述 +### 配置描述 规则配置文件: conf/mod_redirect/redirect.data | 配置项 | 描述 | @@ -35,7 +37,7 @@ DataPath = mod_redirect/redirect.data | Config{v}[].Actions.Params | Object
规则动作参数 | | Config{v}[].Status | Integer
HTTP状态码 | -## 模块动作 +### 模块动作 | 动作 | 描述 | | -------------- | ------------------------------------------------- | | URL_SET | 设置重定向URL为指定值 | @@ -43,7 +45,7 @@ DataPath = mod_redirect/redirect.data | URL_PREFIX_ADD | 设置重定向URL为原始URL增加指定前缀 | | SCHEME_SET | 设置重定向URL为原始URL并修改协议(支持HTTP和HTTPS) | -## 配置示例 +### 配置示例 ``` { "Version": "20190101000000", diff --git a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md index 69f106cb7..21b064443 100644 --- a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md +++ b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md @@ -1,25 +1,27 @@ -# 模块简介 +# mod_rewrite + +## 模块简介 根据自定义的条件,修改请求的URI。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块配置文件: conf/mod_rewrite/mod_rewrite.conf | 配置项 | 描述 | | -------------- | ---------------------------------- | | Basic.DataPath | String
规则配置文件路径 | -## 配置示例 +### 配置示例 ``` [basic] DataPath = mod_rewrite/rewrite.data ``` -# 规则配置 +## 规则配置 -## 配置描述 +### 配置描述 规则配置文件: conf/mod_rewrite/rewrite.data | 配置项 | 描述 | @@ -35,8 +37,8 @@ DataPath = mod_rewrite/rewrite.data | Config{v}[].Action.Param | Object
规则动作参数列表 | | Config{v}[].Last | Boolean
当该项为true时,命中某条规则后,不再向后匹配 | -## 模块动作 -| 动作 | `描述` | +### 模块动作 +| 动作 | 描述 | | ------------------------- | ---------------------------------- | | HOST_SET_FROM_PATH_PREFIX | 根据path前缀设置host | | HOST_SET | 设置host | @@ -48,7 +50,7 @@ DataPath = mod_rewrite/rewrite.data | QUERY_RENAME | 重命名query | | QUERY_DEL_ALL_EXCEPT | 删除除指定key外的所有query | -## 配置示例 +### 配置示例 ``` { "Version": "20190101000000", diff --git a/docs/zh_cn/modules/mod_static/mod_static.md b/docs/zh_cn/modules/mod_static/mod_static.md index c92388243..2112add5a 100644 --- a/docs/zh_cn/modules/mod_static/mod_static.md +++ b/docs/zh_cn/modules/mod_static/mod_static.md @@ -1,10 +1,12 @@ -# 模块简介 +# mod_static + +## 模块简介 mod_static支持返回静态文件作为响应。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块配置文件: conf/mod_static/mod_static.conf | 配置项 | 描述 | @@ -12,7 +14,7 @@ mod_static支持返回静态文件作为响应。 | Basic.DataPath | String
规则配置文件路径 | | Basic.MimeTypePath | String
MIME配置文件路径 | -## 配置示例 +### 配置示例 ``` [basic] DataPath = mod_static/static_rule.data @@ -20,9 +22,9 @@ MimeTypePath = mod_static/mime_type.data ``` -# 规则配置 +## 规则配置 -## 配置描述 +### 配置描述 规则配置文件: conf/mod_static/static_rule.data | 配置项 | 描述 | @@ -39,7 +41,7 @@ MimeTypePath = mod_static/mime_type.data | Config[v][].Action.Param[0] | String
第一个参数为根目录位置 | | Config[v][].Action.Param[1] | String
第二个参数为默认静态文件名 | -## 配置示例 +### 配置示例 ``` { "Config": { @@ -60,8 +62,8 @@ MimeTypePath = mod_static/mime_type.data } ``` -# MIME配置 -## 配置描述 +## MIME配置 +### 配置描述 MIME配置文件: conf/mod_static/mime_type.data | 配置项 | 描述 | @@ -71,7 +73,7 @@ MIME配置文件: conf/mod_static/mime_type.data | Config[k] | String
文件扩展名 | | Config[v] | String
MIME类型 | -## 配置示例 +### 配置示例 ``` { "Config": { @@ -82,7 +84,7 @@ MIME配置文件: conf/mod_static/mime_type.data } ``` -# 监控项 +## 监控项 | 监控项 | 描述 | | ----------------------- | --------------------------------- | diff --git a/docs/zh_cn/modules/mod_tag/mod_tag.md b/docs/zh_cn/modules/mod_tag/mod_tag.md index d807063bf..bd37f2a41 100644 --- a/docs/zh_cn/modules/mod_tag/mod_tag.md +++ b/docs/zh_cn/modules/mod_tag/mod_tag.md @@ -1,10 +1,12 @@ -# 模块简介 +# mod_tag + +## 模块简介 根据自定义的条件,为请求设置Tag标识。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块配置文件: conf/mod_tag/mod_tag.conf | 配置项 | 描述 | @@ -12,7 +14,7 @@ | Basic.DataPath | String
规则配置文件路径 | | Log.OpenDebug | String
是否启用模块调试日志开关 | -## 配置示例 +### 配置示例 ``` [Basic] DataPath = mod_tag/tag_rule.data @@ -21,9 +23,9 @@ DataPath = mod_tag/tag_rule.data OpenDebug = false ``` -# 规则配置 +## 规则配置 -## 配置描述 +### 配置描述 规则配置文件: conf/mod_tag/tag_rule.data | 配置项 | 描述 | @@ -38,7 +40,7 @@ OpenDebug = false | Config[v][].Param.TagValue | String
标签取值 | | Config[v][].Last | Boolean
设置为true时,命中当前规则后停止处理后续规则 | -## 配置示例 +### 配置示例 ``` { "Version": "20200218210000", diff --git a/docs/zh_cn/modules/mod_trace/mod_trace.md b/docs/zh_cn/modules/mod_trace/mod_trace.md index 598aa71ec..e4f677af1 100644 --- a/docs/zh_cn/modules/mod_trace/mod_trace.md +++ b/docs/zh_cn/modules/mod_trace/mod_trace.md @@ -1,13 +1,15 @@ -# 模块简介 +# mod_trace + +## 模块简介 根据自定义的条件,为请求开启trace。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块配置文件: conf/mod_trace/mod_trace.conf -### 基础配置项 +#### 基础配置项 | 配置项 | 描述 | | ------------------------------| -------------------------| @@ -16,7 +18,7 @@ | Basic.TraceAgent | String
设置trace组件,可选值:jaeger和zipkin | | Log.OpenDebug | Boolean
是否启用模块调试日志开关 | -### Zipkin配置项 +#### Zipkin配置项 | 配置项 | 描述 | | ------------------------------| -------------------------| @@ -25,7 +27,7 @@ | Zipkin.ID128Bit | String
是否使用128位span ID | | Zipkin.SampleRate | Float
设置请求抽样比例 | -### Jaeger配置项 +#### Jaeger配置项 | 配置项 | 描述 | | ------------------------------| -------------------------| @@ -40,16 +42,16 @@ | Jaeger.CollectorUser | String
设置jaeger-collector认证用户名 | | Jaeger.CollectorPassword | String
设置jaeger-collector认证密码 | -### Elastic配置项 +#### Elastic配置项 | 配置项 | 描述 | | ------------------------------| -----------------------------------------| | Elastic.ServerURL | String
设置Elastic APM server | | Elastic.SecretToken | String
设置Elastic APM server认证token | -## 配置示例 +### 配置示例 -### 基于Zipkin示例 +#### 基于Zipkin示例 ``` [Basic] @@ -78,7 +80,7 @@ ID128Bit = true SampleRate = 1.0 ``` -### 基于Jaeger示例 +#### 基于Jaeger示例 ``` [Basic] DataPath = mod_trace/trace_rule.data @@ -131,7 +133,7 @@ CollectorUser = "" CollectorPassword = "" ``` -### 基于Elastic示例 +#### 基于Elastic示例 ``` [Basic] DataPath = mod_trace/trace_rule.data @@ -153,9 +155,9 @@ ServerURL = http://127.0.0.1:8200 SecretToken = "" ``` -# 规则配置 +## 规则配置 -## 配置描述 +### 配置描述 规则配置文件: conf/mod_trace/trace_rule.data | 配置项 | 描述 | @@ -168,7 +170,7 @@ SecretToken = "" | Config[v][].Cond | String
规则的匹配条件, 语法详见[Condition](../../condition/condition_grammar.md) | | Config[v][].Enable | Boolean
是否开启trace | -## 配置示例 +### 配置示例 ``` { "Version": "20200218210000", diff --git a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md index 10af80d2a..7609af4e4 100644 --- a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md @@ -1,25 +1,27 @@ -# 模块简介 +# mod_trust_clientip + +## 模块简介 基于配置信任IP列表,检查并标识访问用户真实IP是否属于信任IP。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块配置文件: conf/mod_trust_clientip/mod_trust_clientip.conf | 配置项 | 描述 | | -------------- | -------------------------------- | | Basic.DataPath | String
IP字典文件路径,包含了所有信任IP | -## 配置示例 +### 配置示例 ``` [basic] DataPath = mod_trust_clientip/trust_client_ip.data ``` -# 字典配置 +## 字典配置 -## 配置描述 +### 配置描述 字典配置文件路径: conf/mod_trust_clientip/trust_client_ip.data | 配置项 | 描述 | @@ -32,7 +34,7 @@ DataPath = mod_trust_clientip/trust_client_ip.data | Config[v][].Begin | String
IP段起始地址 | | Config[v][].End | String
IP段结束地址 | -## 配置示例 +### 配置示例 ``` { "Version": "20190101000000", diff --git a/docs/zh_cn/modules/mod_userid/mod_userid.md b/docs/zh_cn/modules/mod_userid/mod_userid.md index d707f7a4b..f917fb108 100644 --- a/docs/zh_cn/modules/mod_userid/mod_userid.md +++ b/docs/zh_cn/modules/mod_userid/mod_userid.md @@ -1,10 +1,12 @@ -# 模块简介 +# mod_userid + +## 模块简介 mod_userid为新用户自动在Cookie中添加用户标识。 -# 基础配置 +## 基础配置 -## 配置描述 +### 配置描述 模块基础配置文件: conf/mod_userid/mod_userid.conf | 配置项 | 描述 | @@ -12,7 +14,7 @@ mod_userid为新用户自动在Cookie中添加用户标识。 | Basic.DataPath | 规则配置文件路径 | | Log.OpenDebug | 是否启用模块调试日志开关 | -## 配置示例 +### 配置示例 ``` [basic] DataPath = mod_userid/userid_rule.data @@ -21,9 +23,9 @@ DataPath = mod_userid/userid_rule.data OpenDebug = true ``` -# 规则配置 +## 规则配置 -## 配置描述 +### 配置描述 模块规则配置文件:conf/mod_userid/userid_rule.data | 配置项 | 描述 | @@ -38,7 +40,7 @@ OpenDebug = true | Config[v][].Params.Path | Cookie的Path属性 | | Config[v][].Params.MaxAge | Cookie的MaxAge属性 | -## 配置示例 +### 配置示例 ``` { "Version": "2019-12-10184356", diff --git a/docs/zh_cn/monitor/bal_state.md b/docs/zh_cn/monitor/bal_state.md index 3f3753c9f..ef8317cbd 100644 --- a/docs/zh_cn/monitor/bal_state.md +++ b/docs/zh_cn/monitor/bal_state.md @@ -1,8 +1,10 @@ -# 简介 +# 均衡错误 + +## 简介 bal_state是子集群负载均衡状态。 -# 监控项 +## 监控项 | 监控项 | 描述 | | --------------------------- | ------------------------------------ | diff --git a/docs/zh_cn/monitor/bal_table_status.md b/docs/zh_cn/monitor/bal_table_status.md index 153757725..9733bdb27 100644 --- a/docs/zh_cn/monitor/bal_table_status.md +++ b/docs/zh_cn/monitor/bal_table_status.md @@ -1,15 +1,17 @@ -# 简介 +# 均衡详情 + +## 简介 bal_table_status 是保存后端集群table的状态。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ---------- | ------------------------------------------------------------ | | Balancers | 集群状态,该监控项时map数据,key是集群名称,value是集群的状态信息 | | BackendNum | 所有集群后端实例总数 | -## 集群状态信息 +### 集群状态信息 | 监控项 | 描述 | | ----------- | ------------------------------------------------------------ | diff --git a/docs/zh_cn/monitor/host_table_status.md b/docs/zh_cn/monitor/host_table_status.md index 279a158da..ef6924973 100644 --- a/docs/zh_cn/monitor/host_table_status.md +++ b/docs/zh_cn/monitor/host_table_status.md @@ -1,8 +1,10 @@ -# 简介 +# 路由表 + +## 简介 host_table_status 是路由相关配置的状态。 -# 监控项 +## 监控项 | 监控项 | 描述 | | --------------------- | ------------------ | diff --git a/docs/zh_cn/monitor/http2_state.md b/docs/zh_cn/monitor/http2_state.md index 14f59813d..191c177eb 100644 --- a/docs/zh_cn/monitor/http2_state.md +++ b/docs/zh_cn/monitor/http2_state.md @@ -1,8 +1,10 @@ -# 简介 +# HTTP2 + +## 简介 http2_state 是HTTP2的状态信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | --------------------------- | ---------------------------- | diff --git a/docs/zh_cn/monitor/http_state.md b/docs/zh_cn/monitor/http_state.md index 35dce59e7..3740fc38d 100644 --- a/docs/zh_cn/monitor/http_state.md +++ b/docs/zh_cn/monitor/http_state.md @@ -1,8 +1,10 @@ -# 简介 +# HTTP + +## 简介 http_state 是HTTP1.0/1.1的状态信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ---------------------------- | ------------------------------------------------------- | diff --git a/docs/zh_cn/monitor/module_status.md b/docs/zh_cn/monitor/module_status.md index 591468fd1..8b462b322 100644 --- a/docs/zh_cn/monitor/module_status.md +++ b/docs/zh_cn/monitor/module_status.md @@ -1,8 +1,10 @@ -# 简介 +# 扩展模块 + +## 简介 module_status 是模块信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | --------- | -------------| diff --git a/docs/zh_cn/monitor/proxy_XXX_delay.md b/docs/zh_cn/monitor/proxy_XXX_delay.md index 2900474b0..2a22f7bcc 100644 --- a/docs/zh_cn/monitor/proxy_XXX_delay.md +++ b/docs/zh_cn/monitor/proxy_XXX_delay.md @@ -1,8 +1,10 @@ -# 简介 +# 转发延时 + +## 简介 proxy_XXX_delay 是转发延时的状态信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ----------- | ---------------------------- | @@ -14,7 +16,7 @@ proxy_XXX_delay 是转发延时的状态信息。 | PastTime | 上个采集时间 | | Past | 上个采集时间的转发延时 | -## 转发延时详细信息 +### 转发延时详细信息 | 监控项 | 描述 | | ---------- | ------------------------------------------------------------ | diff --git a/docs/zh_cn/monitor/proxy_state.md b/docs/zh_cn/monitor/proxy_state.md index b2377a2cf..6ac1e6070 100644 --- a/docs/zh_cn/monitor/proxy_state.md +++ b/docs/zh_cn/monitor/proxy_state.md @@ -1,10 +1,12 @@ -# 简介 +# 转发状态 + +## 简介 proxy_state 是BFE服务的核心状态信息。 -# 监控项 +## 监控项 -## 基本情况 +### 基本情况 | 监控项 | 描述 | | ------------------------------- | ----------------------------------- | @@ -20,7 +22,7 @@ proxy_state 是BFE服务的核心状态信息。 | CLIENT_REQ_WITH_RETRY | 重试的请求数 | -## 客户端相关错误 +### 客户端相关错误 | 监控项 | 描述 | | ------------------------------- | ----------------------------------- | @@ -36,7 +38,7 @@ proxy_state 是BFE服务的核心状态信息。 | ERR_BK_WRITE_REQUEST | 写请求到后端的错误数 | -## 后端相关错误 +### 后端相关错误 | 监控项 | 描述 | | ------------------------------- | ----------------------------------- | @@ -52,7 +54,7 @@ proxy_state 是BFE服务的核心状态信息。 | ERR_CLIENT_ZERO_CONTENTLEN | 从客户端读取请求包含错误的零Content-Length的数量 | -## Panic相关异常 +### Panic相关异常 | 监控项 | 描述 | | ------------------------------- | ----------------------------------- | @@ -61,7 +63,7 @@ proxy_state 是BFE服务的核心状态信息。 | PANIC_CLIENT_CONN_SERVE | 客户端连接协程panic的数量 | -## 流量相关 +### 流量相关 | 监控项 | 描述 | | ------------------------------- | ----------------------------------- | @@ -89,7 +91,7 @@ proxy_state 是BFE服务的核心状态信息。 | WS_CLIENT_CONN_SERVED | WS协议处理连接数 | -## TLS协议相关 +### TLS协议相关 | 监控项 | 描述 | | ------------------------------- | ----------------------------------- | diff --git a/docs/zh_cn/monitor/spdy_state.md b/docs/zh_cn/monitor/spdy_state.md index b2842ab0c..3a617e5cb 100644 --- a/docs/zh_cn/monitor/spdy_state.md +++ b/docs/zh_cn/monitor/spdy_state.md @@ -1,8 +1,10 @@ -# 简介 +# SPDY + +## 简介 spdy_state 是SPDY的状态信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ------------------------------ | -------------------------------- | @@ -26,4 +28,4 @@ spdy_state 是SPDY的状态信息。 | SPDY_TIMEOUT_CONN | SPDY连接出现超时的数量 | | SPDY_TIMEOUT_READ_STREAM | 读stream超时 | | SPDY_TIMEOUT_WRITE_STREAM | 写stream超时 | -| SPDY_UNKNOWN_FRAME | 未知frame的个数 | \ No newline at end of file +| SPDY_UNKNOWN_FRAME | 未知frame的个数 | diff --git a/docs/zh_cn/monitor/stream_state.md b/docs/zh_cn/monitor/stream_state.md index 8a6c98ac9..db5e6afd6 100644 --- a/docs/zh_cn/monitor/stream_state.md +++ b/docs/zh_cn/monitor/stream_state.md @@ -1,8 +1,10 @@ -# 简介 +# Stream + +## 简介 stream_state 是TLS-TCP反向代理的状态信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ------------------- | ------------------- | diff --git a/docs/zh_cn/monitor/tls_state.md b/docs/zh_cn/monitor/tls_state.md index 897493756..337892781 100644 --- a/docs/zh_cn/monitor/tls_state.md +++ b/docs/zh_cn/monitor/tls_state.md @@ -1,8 +1,10 @@ -# 简介 +# TLS + +## 简介 tls_state 是TLS的状态信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ------------------------------------------ | -------------------------------------------------- | diff --git a/docs/zh_cn/monitor/websocket_state.md b/docs/zh_cn/monitor/websocket_state.md index 476f827e5..f5928a7fe 100644 --- a/docs/zh_cn/monitor/websocket_state.md +++ b/docs/zh_cn/monitor/websocket_state.md @@ -1,8 +1,10 @@ -# 简介 +# WebSocket + +## 简介 websocket_state 是websocket的状态信息。 -# 监控项 +## 监控项 | 监控项 | 描述 | | ----------------------------- | --------------------------- | diff --git a/docs/zh_cn/operation/capture_packet.md b/docs/zh_cn/operation/capture_packet.md index dbf35ba75..e6dc57482 100644 --- a/docs/zh_cn/operation/capture_packet.md +++ b/docs/zh_cn/operation/capture_packet.md @@ -7,7 +7,7 @@ 使用tcpdump抓取示例: ``` -tcpdump tcp port 8443 -i any -s -w test.pcap +# tcpdump tcp port 8443 -i any -s -w test.pcap ``` ## 流量分析 @@ -24,7 +24,7 @@ tcpdump tcp port 8443 -i any -s -w test.pcap * 注:修改bfe.conf文件,增加启用mod_key_log模块, 模块配置详见[mod_key_log](../modules/mod_key_log/mod_key_log.md) ``` -[server] +[Server] Modules = mod_key_log ``` diff --git a/docs/zh_cn/operation/env_var.md b/docs/zh_cn/operation/env_var.md index 9d3557fff..325e1cdbc 100644 --- a/docs/zh_cn/operation/env_var.md +++ b/docs/zh_cn/operation/env_var.md @@ -2,9 +2,12 @@ ## GODEBUG -* export GODEBUG="http2debug=1" - * 输出经http2 hpack encode处理的原始header日志信息(http/1.1) +* 输出HTTP2 Header日志信息 +``` +$ export GODEBUG="http2debug=1" +``` -* export GODEBUG="http2debug=2" - * 输出经http2 hpack encode处理的原始header日志信息(http/1.1) - * 输出读取和发送的http2 frame日志信息 +* 输出HTTP2 Header及HTTP2 Frame日志信息 +``` +$ export GODEBUG="http2debug=2" +``` diff --git a/docs/zh_cn/operation/log_rotation.md b/docs/zh_cn/operation/log_rotation.md index 481f75e85..8a05c5344 100644 --- a/docs/zh_cn/operation/log_rotation.md +++ b/docs/zh_cn/operation/log_rotation.md @@ -9,6 +9,6 @@ BEF内置日志自动切割及备份功能,可定期切割日志,删除并 | 日志名称 | 日志路径 | 日志切割及备份配置 | | ----------- | -------------- | --------------------------------- | -| server log | log/bfe.log | 按天切隔日志,保留最近7天日志 | -| access log | log/access.log | 见[conf/mod_access/mod_access.conf](../modules/mod_access/mod_access.md) | -| tls key log | log/key.log | 见[conf/mod_key_log/mod_key_log.conf](../modules/mod_key_log/mod_key_log.md) | +| Server Log | log/bfe.log | 按天切隔日志,保留最近7天日志 | +| Access Log | log/access.log | 见[conf/mod_access/mod_access.conf](../modules/mod_access/mod_access.md) | +| TLS Key Log | log/key.log | 见[conf/mod_key_log/mod_key_log.conf](../modules/mod_key_log/mod_key_log.md) | diff --git a/docs/zh_cn/operation/monitor.md b/docs/zh_cn/operation/monitor.md index 21fa8c86f..c956e278b 100644 --- a/docs/zh_cn/operation/monitor.md +++ b/docs/zh_cn/operation/monitor.md @@ -2,12 +2,13 @@ BFE内置丰富的监控指标,支持多种格式,可以通过BFE实例的监控接口获得。 -## 配置 -在BFE的核心配置文件(conf/bfe.conf)中,设置监控端口: +## 配置管理端口 + +在BFE核心配置文件(conf/bfe.conf)中, 配置MonitorPort ``` -[server] -monitorPort = 8421 +[Server] +MonitorPort = 8421 ``` ## 获取指标类别列表 diff --git a/docs/zh_cn/operation/performance.md b/docs/zh_cn/operation/performance.md index fd2c95b8b..3354f7b4d 100644 --- a/docs/zh_cn/operation/performance.md +++ b/docs/zh_cn/operation/performance.md @@ -2,12 +2,13 @@ BFE内置了CPU profile接口,配合使用火焰图工具,用于定位分析性能问题 -## 配置 +## 配置管理端口 + +在BFE核心配置文件(conf/bfe.conf)中, 配置MonitorPort -使用和监控项采集相同的端口 ``` -[server] -monitorPort = 8421 +[Server] +MonitorPort = 8421 ``` ## 工具准备 @@ -15,7 +16,7 @@ monitorPort = 8421 * FlameGragh ``` -git clone https://github.com/brendangregg/FlameGraph +$ git clone https://github.com/brendangregg/FlameGraph ``` 其中包含stackcollpase-go.pl和flamegraph.pl @@ -24,15 +25,15 @@ git clone https://github.com/brendangregg/FlameGraph * 获取性能采样数据 ``` -go tool pprof -seconds=60 -raw -output=bfe.pprof http://:/debug/pprof/profile +$ go tool pprof -seconds=60 -raw -output=bfe.pprof http://:/debug/pprof/profile ``` 注:seconds=60 表示抓取60s的采样数据 * 转换并绘制火焰图 ``` -./stackcollpase-go.pl bfe.pporf > bfe.flame -./flamegraph.pl bfe.flame > bfe.svg +$ ./stackcollpase-go.pl bfe.pporf > bfe.flame +$ ./flamegraph.pl bfe.flame > bfe.svg ``` -在浏览器中打开bfe.svg查看 +* 在浏览器中打开bfe.svg查看 diff --git a/docs/zh_cn/operation/reload.md b/docs/zh_cn/operation/reload.md index 0257ba6c4..8d16db568 100644 --- a/docs/zh_cn/operation/reload.md +++ b/docs/zh_cn/operation/reload.md @@ -2,20 +2,23 @@ BFE内置reload接口以支持配置热加载,通过发送reload请求能够加载新的配置文件 -## 配置 +## 配置管理端口 -使用和监控项采集相同的端口 +在BFE核心配置文件(conf/bfe.conf)中, 配置MonitorPort ``` -[server] -monitorPort = 8421 +[Server] +MonitorPort = 8421 ``` ## 使用方式 -* reload接口仅允许使用localhost访问(127.0.0.1/::1) -* reload接口支持GET请求 - * 示例:curl http://localhost:8421/reload/server_data_conf 将重新加载分流转发配置 +* reload接口仅允许使用localhost访问(127.0.0.1/::1), 仅支持GET请求, 示例: +``` +# 重加载分流转发配置 +$ curl http://localhost:8421/reload/server_data_conf +``` + * 完整的reload接口列表可访问http://localhost:8421/reload 查看 ## 接口说明 From 13f14d7c5ee2bcbc36c2a426a9f46531c5c44399 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Fri, 8 May 2020 20:05:27 +0800 Subject: [PATCH 066/111] docs: update docs for modules --- docs/en_us/development/write_doc_guide.md | 15 +++++++-------- docs/en_us/modules/mod_access/mod_access.md | 2 +- docs/en_us/modules/mod_block/mod_block.md | 2 +- docs/en_us/modules/mod_compress/mod_compress.md | 2 +- docs/en_us/modules/mod_errors/mod_errors.md | 2 +- docs/en_us/modules/mod_header/mod_header.md | 2 +- docs/en_us/modules/mod_http_code/mod_http_code.md | 2 +- docs/en_us/modules/mod_key_log/mod_key_log.md | 2 +- docs/en_us/modules/mod_logid/mod_logid.md | 2 +- docs/en_us/modules/mod_redirect/mod_redirect.md | 2 +- docs/en_us/modules/mod_rewrite/mod_rewrite.md | 2 +- docs/en_us/modules/mod_tag/mod_tag.md | 2 +- docs/en_us/modules/mod_trace/mod_trace.md | 2 +- .../mod_trust_clientip/mod_trust_clientip.md | 2 +- docs/en_us/operation/log_rotation.md | 2 +- docs/zh_cn/modules/mod_access/mod_access.md | 2 +- docs/zh_cn/modules/mod_block/mod_block.md | 2 +- docs/zh_cn/modules/mod_compress/mod_compress.md | 2 +- docs/zh_cn/modules/mod_errors/mod_errors.md | 2 +- docs/zh_cn/modules/mod_geo/mod_geo.md | 2 +- docs/zh_cn/modules/mod_header/mod_header.md | 2 +- docs/zh_cn/modules/mod_http_code/mod_http_code.md | 2 +- docs/zh_cn/modules/mod_key_log/mod_key_log.md | 2 +- docs/zh_cn/modules/mod_logid/mod_logid.md | 2 +- docs/zh_cn/modules/mod_redirect/mod_redirect.md | 2 +- docs/zh_cn/modules/mod_rewrite/mod_rewrite.md | 2 +- docs/zh_cn/modules/mod_tag/mod_tag.md | 2 +- docs/zh_cn/modules/mod_trace/mod_trace.md | 2 +- .../mod_trust_clientip/mod_trust_clientip.md | 2 +- 29 files changed, 35 insertions(+), 36 deletions(-) diff --git a/docs/en_us/development/write_doc_guide.md b/docs/en_us/development/write_doc_guide.md index 7ec9687f5..723e38062 100644 --- a/docs/en_us/development/write_doc_guide.md +++ b/docs/en_us/development/write_doc_guide.md @@ -24,8 +24,8 @@ Before doing this, please make sure your operating system has gitbook installed. Take the ubuntu system as an example, run: ``` -sudo apt-get update && apt-get install -y npm -sudo npm install -g gitbook-cli +$ sudo apt-get update && apt-get install -y npm +$ sudo npm install -g gitbook-cli ``` @@ -34,7 +34,7 @@ sudo npm install -g gitbook-cli First download the full repository: ``` -git clone https://github.com/baidu/bfe +$ git clone https://github.com/baidu/bfe ``` ### Run document site locally @@ -67,11 +67,10 @@ All content should be written in [Markdown](https://guides.github.com/features/m - Run the preview tool in base directory of documents (docs/LANG) - - ``` - cd docs/en_us/ - gitbook serve --port 8000 - ``` +``` +$ cd docs/en_us/ +$ gitbook serve --port 8000 +``` ### Preview modification diff --git a/docs/en_us/modules/mod_access/mod_access.md b/docs/en_us/modules/mod_access/mod_access.md index b2648bbb5..76dcdec9e 100644 --- a/docs/en_us/modules/mod_access/mod_access.md +++ b/docs/en_us/modules/mod_access/mod_access.md @@ -2,7 +2,7 @@ ## Introduction -The mod_access module writes request logs and session logs in the specified format. +mod_access writes request logs and session logs in the specified format. ## Module Configuration diff --git a/docs/en_us/modules/mod_block/mod_block.md b/docs/en_us/modules/mod_block/mod_block.md index 43a0113be..0b63feb54 100644 --- a/docs/en_us/modules/mod_block/mod_block.md +++ b/docs/en_us/modules/mod_block/mod_block.md @@ -2,7 +2,7 @@ ## Introduction -Block incoming connection/request based on defined rules. +mod_block blocks incoming connections/requests based on defined rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_compress/mod_compress.md b/docs/en_us/modules/mod_compress/mod_compress.md index 4a0ac0fab..7e51e2d5d 100644 --- a/docs/en_us/modules/mod_compress/mod_compress.md +++ b/docs/en_us/modules/mod_compress/mod_compress.md @@ -2,7 +2,7 @@ ## Introductionn -mod_compress compresses responses using specified method. +mod_compress compresses responses based on specified rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_errors/mod_errors.md b/docs/en_us/modules/mod_errors/mod_errors.md index 98cc11646..0ba4f5de2 100644 --- a/docs/en_us/modules/mod_errors/mod_errors.md +++ b/docs/en_us/modules/mod_errors/mod_errors.md @@ -2,7 +2,7 @@ ## Introduction -mod_errors replaces error responses by specified rules. +mod_errors replaces error responses based on specified rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_header/mod_header.md b/docs/en_us/modules/mod_header/mod_header.md index f3bbf73f4..2535d4c57 100644 --- a/docs/en_us/modules/mod_header/mod_header.md +++ b/docs/en_us/modules/mod_header/mod_header.md @@ -2,7 +2,7 @@ ## Introduction -Modify header of HTTP request/response based on defined rules. +mod_header modifies header of HTTP request/response based on defined rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_http_code/mod_http_code.md b/docs/en_us/modules/mod_http_code/mod_http_code.md index 262ee0267..ce447aaaa 100644 --- a/docs/en_us/modules/mod_http_code/mod_http_code.md +++ b/docs/en_us/modules/mod_http_code/mod_http_code.md @@ -2,7 +2,7 @@ ## Introduction -Count HTTP status codes. +mod_http_code reports statistics of HTTP response codes. ## Module Configuration diff --git a/docs/en_us/modules/mod_key_log/mod_key_log.md b/docs/en_us/modules/mod_key_log/mod_key_log.md index ddb7e7f45..4c4b30f19 100644 --- a/docs/en_us/modules/mod_key_log/mod_key_log.md +++ b/docs/en_us/modules/mod_key_log/mod_key_log.md @@ -2,7 +2,7 @@ ## Introduction -ModuleKeyLog writes tls key logs in NSS key log format so that external +mod_key_log writes tls key logs in NSS key log format so that external programs(eg. wireshark) can decrypt TLS connections for trouble shooting. For more information about NSS key log format, see: diff --git a/docs/en_us/modules/mod_logid/mod_logid.md b/docs/en_us/modules/mod_logid/mod_logid.md index 5bf116109..8bf324244 100644 --- a/docs/en_us/modules/mod_logid/mod_logid.md +++ b/docs/en_us/modules/mod_logid/mod_logid.md @@ -2,7 +2,7 @@ ## Introduction -Generate log id. +mod_logid generates log ids for sessions/requests. ## Module Configuration diff --git a/docs/en_us/modules/mod_redirect/mod_redirect.md b/docs/en_us/modules/mod_redirect/mod_redirect.md index 0a6563c13..2881dbb5e 100644 --- a/docs/en_us/modules/mod_redirect/mod_redirect.md +++ b/docs/en_us/modules/mod_redirect/mod_redirect.md @@ -2,7 +2,7 @@ ## Introduction -Redirect HTTP request based on defined rules. +mod_redirect redirects HTTP requests based on defined rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_rewrite/mod_rewrite.md b/docs/en_us/modules/mod_rewrite/mod_rewrite.md index 4c5a7cef3..4e66d8e66 100644 --- a/docs/en_us/modules/mod_rewrite/mod_rewrite.md +++ b/docs/en_us/modules/mod_rewrite/mod_rewrite.md @@ -2,7 +2,7 @@ ## Introduction -Modify URI of HTTP request based on defined rules. +mod_rewrite modifies the URI of HTTP request based on defined rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_tag/mod_tag.md b/docs/en_us/modules/mod_tag/mod_tag.md index f972b7cd2..ad39a1579 100644 --- a/docs/en_us/modules/mod_tag/mod_tag.md +++ b/docs/en_us/modules/mod_tag/mod_tag.md @@ -2,7 +2,7 @@ ## Introduction -Set tags for request based on defined rules. +mod_tag sets tags for requests based on defined rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_trace/mod_trace.md b/docs/en_us/modules/mod_trace/mod_trace.md index 144fd1044..f0a17cfab 100644 --- a/docs/en_us/modules/mod_trace/mod_trace.md +++ b/docs/en_us/modules/mod_trace/mod_trace.md @@ -2,7 +2,7 @@ ## Introduction -Enable trace for requests based on defined rules. +mod_trace enables tracing for requests based on defined rules. ## Module Configuration diff --git a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md index ce437b109..4295ab732 100644 --- a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md @@ -2,7 +2,7 @@ ## Introduction -Check client IP of incoming request against trusted ip dict. If matched, mark request/connection is trusted. +mod_trust_clientip checkes the client IP of incoming request/connnection against trusted ip dictionary. If matched, the request/connection is marked as trusted. ## Module Configuration diff --git a/docs/en_us/operation/log_rotation.md b/docs/en_us/operation/log_rotation.md index ba423dc79..4ec863f05 100644 --- a/docs/en_us/operation/log_rotation.md +++ b/docs/en_us/operation/log_rotation.md @@ -1,4 +1,4 @@ -# Log file rotation +# Log rotation ## Introdution diff --git a/docs/zh_cn/modules/mod_access/mod_access.md b/docs/zh_cn/modules/mod_access/mod_access.md index 34d211974..689d2f01a 100644 --- a/docs/zh_cn/modules/mod_access/mod_access.md +++ b/docs/zh_cn/modules/mod_access/mod_access.md @@ -1,7 +1,7 @@ # mod_access ## 模块简介 -mod_access模块以特定格式记录请求日志和会话日志。 +mod_access以指定格式记录请求日志和会话日志。 ## 基础配置 ### 配置描述 diff --git a/docs/zh_cn/modules/mod_block/mod_block.md b/docs/zh_cn/modules/mod_block/mod_block.md index 14f047644..b1360266f 100644 --- a/docs/zh_cn/modules/mod_block/mod_block.md +++ b/docs/zh_cn/modules/mod_block/mod_block.md @@ -2,7 +2,7 @@ ## 模块简介 -基于预定义的规则,对连接或请求进行封禁。 +mod_block基于自定义的规则,对连接或请求进行封禁。 ## 基础配置 ### 配置描述 diff --git a/docs/zh_cn/modules/mod_compress/mod_compress.md b/docs/zh_cn/modules/mod_compress/mod_compress.md index ef41e7ed6..60169f4c0 100644 --- a/docs/zh_cn/modules/mod_compress/mod_compress.md +++ b/docs/zh_cn/modules/mod_compress/mod_compress.md @@ -2,7 +2,7 @@ ## 模块简介 -mod_compress支持响应压缩,如:GZIP压缩。 +mod_compress支持对响应主体压缩。 ## 基础配置 ### 配置描述 diff --git a/docs/zh_cn/modules/mod_errors/mod_errors.md b/docs/zh_cn/modules/mod_errors/mod_errors.md index 9b9a7cdf2..9b7d74519 100644 --- a/docs/zh_cn/modules/mod_errors/mod_errors.md +++ b/docs/zh_cn/modules/mod_errors/mod_errors.md @@ -2,7 +2,7 @@ ## 模块简介 -根据自定义的条件,将响应内容替换为/重定向至指定错误页。 +mod_errors根据自定义的条件,将响应内容替换为/重定向至指定错误页。 ## 基础配置 ### 配置描述 diff --git a/docs/zh_cn/modules/mod_geo/mod_geo.md b/docs/zh_cn/modules/mod_geo/mod_geo.md index 77452b81e..3cf721260 100644 --- a/docs/zh_cn/modules/mod_geo/mod_geo.md +++ b/docs/zh_cn/modules/mod_geo/mod_geo.md @@ -2,7 +2,7 @@ ## 模块简介 -基于地理信息字典,通过用户IP获取相关的地理信息。 +mod_geo基于地理信息字典,通过用户IP获取相关的地理信息。 ## 基础配置 diff --git a/docs/zh_cn/modules/mod_header/mod_header.md b/docs/zh_cn/modules/mod_header/mod_header.md index 8356ed4f9..473d5a7e0 100644 --- a/docs/zh_cn/modules/mod_header/mod_header.md +++ b/docs/zh_cn/modules/mod_header/mod_header.md @@ -2,7 +2,7 @@ ## 模块简介 -根据自定义条件,修改请求或响应的头部。 +mod_header根据自定义条件,修改请求或响应的头部。 ## 基础配置 ### 配置描述 diff --git a/docs/zh_cn/modules/mod_http_code/mod_http_code.md b/docs/zh_cn/modules/mod_http_code/mod_http_code.md index 56ff1c6e4..b1dcd8b67 100644 --- a/docs/zh_cn/modules/mod_http_code/mod_http_code.md +++ b/docs/zh_cn/modules/mod_http_code/mod_http_code.md @@ -2,7 +2,7 @@ ## 模块简介 -用来统计HTTP状态码。 +mod_http_code用来统计HTTP响应状态码。 ## 基础配置 diff --git a/docs/zh_cn/modules/mod_key_log/mod_key_log.md b/docs/zh_cn/modules/mod_key_log/mod_key_log.md index 04e26bd03..3ad062ab3 100644 --- a/docs/zh_cn/modules/mod_key_log/mod_key_log.md +++ b/docs/zh_cn/modules/mod_key_log/mod_key_log.md @@ -2,7 +2,7 @@ ## 模块简介 -ModuleKeyLog以NSS key log格式记录TLS会话密钥, 便于基于第三方工具(例如wireshark) 解密分析TLS加密流量,方便问题诊断分析 +mod_key_log以NSS key log格式记录TLS会话密钥, 便于基于第三方工具(例如wireshark) 解密分析TLS加密流量,方便问题诊断分析 关于NSS key log详细格式说明,参见: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format diff --git a/docs/zh_cn/modules/mod_logid/mod_logid.md b/docs/zh_cn/modules/mod_logid/mod_logid.md index 84dd0c91b..7386a8a54 100644 --- a/docs/zh_cn/modules/mod_logid/mod_logid.md +++ b/docs/zh_cn/modules/mod_logid/mod_logid.md @@ -2,7 +2,7 @@ ## 模块简介 -用来生成logid。 +mod_logid用来生成logid。 ## 基础配置 diff --git a/docs/zh_cn/modules/mod_redirect/mod_redirect.md b/docs/zh_cn/modules/mod_redirect/mod_redirect.md index ed319219d..1ffc07fc3 100644 --- a/docs/zh_cn/modules/mod_redirect/mod_redirect.md +++ b/docs/zh_cn/modules/mod_redirect/mod_redirect.md @@ -2,7 +2,7 @@ ## 模块简介 -根据自定义的条件,对请求进行重定向。 +mod_rediect根据自定义的条件,对请求进行重定向。 ## 基础配置 diff --git a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md index 21b064443..193adb2e1 100644 --- a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md +++ b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md @@ -2,7 +2,7 @@ ## 模块简介 -根据自定义的条件,修改请求的URI。 +mod_rewrite根据自定义的条件,修改请求的URI。 ## 基础配置 diff --git a/docs/zh_cn/modules/mod_tag/mod_tag.md b/docs/zh_cn/modules/mod_tag/mod_tag.md index bd37f2a41..fe2f2e087 100644 --- a/docs/zh_cn/modules/mod_tag/mod_tag.md +++ b/docs/zh_cn/modules/mod_tag/mod_tag.md @@ -2,7 +2,7 @@ ## 模块简介 -根据自定义的条件,为请求设置Tag标识。 +mod_tag根据自定义的条件,为请求设置Tag标识。 ## 基础配置 diff --git a/docs/zh_cn/modules/mod_trace/mod_trace.md b/docs/zh_cn/modules/mod_trace/mod_trace.md index e4f677af1..c842ff04a 100644 --- a/docs/zh_cn/modules/mod_trace/mod_trace.md +++ b/docs/zh_cn/modules/mod_trace/mod_trace.md @@ -2,7 +2,7 @@ ## 模块简介 -根据自定义的条件,为请求开启trace。 +mod_trace根据自定义的条件,为请求开启分布式跟踪。 ## 基础配置 diff --git a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md index 7609af4e4..c0015d6c0 100644 --- a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md @@ -2,7 +2,7 @@ ## 模块简介 -基于配置信任IP列表,检查并标识访问用户真实IP是否属于信任IP。 +mod_trust_clientip基于配置信任IP列表,检查并标识访问用户真实IP是否属于信任IP。 ## 基础配置 From cf846e7761d2311abb1b47856f13c8cc8c9322ec Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Fri, 8 May 2020 23:55:04 +0800 Subject: [PATCH 067/111] Update docs/zh_cn/modules/mod_rewrite/mod_rewrite.md (#471) --- docs/zh_cn/modules/mod_rewrite/mod_rewrite.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md index 193adb2e1..9710cc0ef 100644 --- a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md +++ b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md @@ -42,6 +42,7 @@ DataPath = mod_rewrite/rewrite.data | ------------------------- | ---------------------------------- | | HOST_SET_FROM_PATH_PREFIX | 根据path前缀设置host | | HOST_SET | 设置host | +| HOST_SUFFIX_REPLACE | 替换域名后缀 | | PATH_SET | 设置path | | PATH_PREFIX_ADD | 增加path前缀 | | PATH_PREFIX_TRIM | 删除path前缀 | From d6488fe3d7e0d77b79c885bd2b3d9e213c14c460 Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Fri, 8 May 2020 23:57:00 +0800 Subject: [PATCH 068/111] Update docs/en_us/modules/mod_rewrite/mod_rewrite.md (#472) --- docs/en_us/modules/mod_rewrite/mod_rewrite.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en_us/modules/mod_rewrite/mod_rewrite.md b/docs/en_us/modules/mod_rewrite/mod_rewrite.md index 4e66d8e66..b09336f4f 100644 --- a/docs/en_us/modules/mod_rewrite/mod_rewrite.md +++ b/docs/en_us/modules/mod_rewrite/mod_rewrite.md @@ -45,6 +45,7 @@ conf/mod_rewrite/rewrite.data | ------------------------- | ---------------------------------------- | | HOST_SET | Set host to specified value | | HOST_SET_FROM_PATH_PREFIX | Set host to specified path prefix | +| HOST_SUFFIX_REPLACE | Replace suffix of host | | PATH_SET | Set path to specified value | | PATH_PREFIX_ADD | Add prefix to orignal path | | PATH_PREFIX_TRIM | Trim prefix from orignal path | From 11f49641332ed730555c540a1b1a8c7789051ad7 Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Fri, 8 May 2020 23:59:35 +0800 Subject: [PATCH 069/111] Fix condition/request/header.md (#473) --- docs/en_us/condition/request/header.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en_us/condition/request/header.md b/docs/en_us/condition/request/header.md index 69ce72ae5..e4b793cba 100644 --- a/docs/en_us/condition/request/header.md +++ b/docs/en_us/condition/request/header.md @@ -56,7 +56,7 @@ req_header_value_in("Referer", "https://example.org/login", true) * Example ``` -req_header_prefix_value_in("Refer", "https://example.org", true) +req_header_prefix_value_in("Referer", "https://example.org", true) ``` ## req_header_value_suffix_in(header_name, value_suffix_list, case_insensitive) From a48d373009bbb4b8fcc5e592d3180d0b63ca3448 Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Sat, 9 May 2020 10:09:57 +0800 Subject: [PATCH 070/111] Update condition docs (#474) --- docs/en_us/condition/request/cookie.md | 2 +- docs/en_us/condition/request/header.md | 2 +- docs/en_us/condition/request/ip.md | 2 +- docs/en_us/condition/request/method.md | 2 +- docs/en_us/condition/request/protocol.md | 2 +- docs/en_us/condition/request/tag.md | 2 +- docs/en_us/condition/request/uri.md | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/en_us/condition/request/cookie.md b/docs/en_us/condition/request/cookie.md index 8b3446ae7..05f0b39c2 100644 --- a/docs/en_us/condition/request/cookie.md +++ b/docs/en_us/condition/request/cookie.md @@ -1,4 +1,4 @@ -# Request cookie related primitive +# Request Cookie Related Primitives ## req_cookie_key_in(key_list) * Description: Judge if cookie key matches configured patterns diff --git a/docs/en_us/condition/request/header.md b/docs/en_us/condition/request/header.md index e4b793cba..aa496a43f 100644 --- a/docs/en_us/condition/request/header.md +++ b/docs/en_us/condition/request/header.md @@ -1,4 +1,4 @@ -# Request header related primitives +# Request Header Related Primitives ## req_header_key_in(key_list) * Description: diff --git a/docs/en_us/condition/request/ip.md b/docs/en_us/condition/request/ip.md index c9b3c5210..84bbb99e8 100644 --- a/docs/en_us/condition/request/ip.md +++ b/docs/en_us/condition/request/ip.md @@ -1,4 +1,4 @@ -# IP related primitives +# IP Related Primitives ## req_cip_range(start_ip, end_ip) * Description: Judge if client IP is in [start_ip, end_ip] diff --git a/docs/en_us/condition/request/method.md b/docs/en_us/condition/request/method.md index f2db58e13..4ca4d56ff 100644 --- a/docs/en_us/condition/request/method.md +++ b/docs/en_us/condition/request/method.md @@ -1,4 +1,4 @@ -# Request method related primitives +# Request Method Related Primitives ## req_method_in(method_list) * Descrption: Judge if request method matches configured patterns diff --git a/docs/en_us/condition/request/protocol.md b/docs/en_us/condition/request/protocol.md index 54b7a8489..7bf13579c 100644 --- a/docs/en_us/condition/request/protocol.md +++ b/docs/en_us/condition/request/protocol.md @@ -1,4 +1,4 @@ -# Protocol related primitives +# Protocol Related Primitives ## req_proto_secure() * Description: Judge if request is over TLS protocol(ie. HTTPS/SPDY/HTTP2) diff --git a/docs/en_us/condition/request/tag.md b/docs/en_us/condition/request/tag.md index d2261d703..76a226bd8 100644 --- a/docs/en_us/condition/request/tag.md +++ b/docs/en_us/condition/request/tag.md @@ -1,4 +1,4 @@ -# Request tag related primtives +# Request Tag Related Primtives ## req_tag_match(tagName, tagValue) * Description: Judge if request tag matches configured value diff --git a/docs/en_us/condition/request/uri.md b/docs/en_us/condition/request/uri.md index 3a60757d1..94419cd92 100644 --- a/docs/en_us/condition/request/uri.md +++ b/docs/en_us/condition/request/uri.md @@ -1,4 +1,4 @@ -# Request URI related primitives +# Request URI Related Primitives URI format:http://host[:port]/path/?query From 5bd0b47e0be4815e7f535bca8c01839c9299106d Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sun, 10 May 2020 23:59:48 +0800 Subject: [PATCH 071/111] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bc4b657e7..0ad80ab2f 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,10 @@ BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front - Owners: [MAINTAINERS](MAINTAINERS.md) - Contributors: [CONTRIBUTORS](CONTRIBUTORS.md) -## Discussion +## Communication - Issue: https://github.com/baidu/bfe/issues - -## Contact -- Email:bfe-osc@baidu.com +- Slack: Join the [BFE community on Slack](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA) - Sign up and join channels on topics that interest you. +- WeiChat: If you want to join our WeChat developer group, send a request [mail](mailto:bfe-osc@baidu.com) with information that includes the following: WeChat ID, a contribution you've made to BFE(such as a PR/Issue). We will invite you right away. ## License BFE is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details. From cc34e0c586f0a073c27d8e904288b1072f284929 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Mon, 11 May 2020 00:05:06 +0800 Subject: [PATCH 072/111] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ad80ab2f..268f119ef 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front ## Communication - Issue: https://github.com/baidu/bfe/issues -- Slack: Join the [BFE community on Slack](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA) - Sign up and join channels on topics that interest you. -- WeiChat: If you want to join our WeChat developer group, send a request [mail](mailto:bfe-osc@baidu.com) with information that includes the following: WeChat ID, a contribution you've made to BFE(such as a PR/Issue). We will invite you right away. +- Slack: Join the BFE community on Slack - [Sign up](](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA)) and join channels on topics that interest you. +- WeChat: Join our WeChat Developer group - [Send a request mail](mailto:bfe-osc@baidu.com) with your WeChat ID and a contribution you've made to BFE(such as a PR/Issue). We will invite you right away. ## License BFE is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details. From e8fd5863edff37f7da8d3f619918786ab2966baf Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Mon, 11 May 2020 00:08:50 +0800 Subject: [PATCH 073/111] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 268f119ef..bb53169a6 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,7 @@ BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front - Contributors: [CONTRIBUTORS](CONTRIBUTORS.md) ## Communication -- Issue: https://github.com/baidu/bfe/issues -- Slack: Join the BFE community on Slack - [Sign up](](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA)) and join channels on topics that interest you. +- Slack: Join the BFE community on Slack - [Sign up](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA) and join channels on topics that interest you. - WeChat: Join our WeChat Developer group - [Send a request mail](mailto:bfe-osc@baidu.com) with your WeChat ID and a contribution you've made to BFE(such as a PR/Issue). We will invite you right away. ## License From a22e6e4bd54fd90ad9402d0e28e91241d02a8a27 Mon Sep 17 00:00:00 2001 From: Miles Zhang Date: Mon, 11 May 2020 22:15:53 +0800 Subject: [PATCH 074/111] Add docs about comparison and how to write module (#478) --- docs/en_us/development/module/bfe_callback.md | 90 +++++++- .../development/module/how_to_write_module.md | 192 +++++++++++++++++- docs/en_us/development/module/overview.md | 17 +- docs/en_us/introduction/comparison.md | 84 +++++++- docs/zh_cn/development/module/bfe_callback.md | 2 +- docs/zh_cn/introduction/comparison.md | 82 +++++++- 6 files changed, 461 insertions(+), 6 deletions(-) diff --git a/docs/en_us/development/module/bfe_callback.md b/docs/en_us/development/module/bfe_callback.md index b2c31c53c..2be72ecfb 100644 --- a/docs/en_us/development/module/bfe_callback.md +++ b/docs/en_us/development/module/bfe_callback.md @@ -1 +1,89 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# BFE Callbacks + +## Callback Points in forwarding process + +The Callback Points in the forwarding process are shown below. +![BFECallbacks](../../../images/bfe_callback.png) + +## List of Callback Points +There are 9 callback points in BFE: + +- HandleAccept: after TCP connection with client is established. +- HandleHandshake: after SSL/TLS handshake with client is finished. +- HandleBeforeLocation: before the destination product for the request is identified. +- HandleFoundProduct: after the destination product is identified. +- HandleAfterLocation: after the destionation cluster is identified. +- HandleForward: after the destionation subcluster is identified, and before the request is forwarded. +- HandleReadResponse: after response from backend is received by BFE. +- HandleRequestFinish: after response from backend is forwarded by BFE. +- HandleFinish: after connection with client is closed. + +The definition of callback points is in [/bfe_module/bfe_callback.go](https://github.com/baidu/bfe/tree/master/bfe_module/bfe_callback.go) + +## Return Values of Callback Function + +BFE takes different actions based on the return values of the callback functions. +The return values and the actions are defined as follows: + +- BfeHandlerFinish: send response, then close connection. +- BfeHandlerGoOn: go on to next callback function. +- BfeHandlerRedirect: redirect directly. +- BfeHandlerResponse: send response. +- BfeHandlerClose: close connection without sending response. + +The definition of return values is in [/bfe_module/bfe_handler_list.go](https://github.com/baidu/bfe/tree/master/bfe_module/bfe_handler_list.go) + +## Types of Callback Functions + +The format of callback functions may be different for different callback points. +There are 5 types of callback functions. +- HandlersAccept: Handler for processing connection estalishment +- HandlersRequest: Handler for processing request received +- HandlersForward: Handler for request forwarding process +- HandlersResponse: Handler for processing response received +- HandlersFinish: Handler for processing connection close + +The types of callback function are defined in [/bfe_module/bfe_handler_list.go](https://github.com/baidu/bfe/tree/master/bfe_module/bfe_handler_list.go) + +The following describes each type of callback functions in detail + +Note: For the meaning of type int in the return value below, please refer to "Return Value of Callback Function" section above. + +### HandlersAccept + +- Applicable callback points: + + HandleAccept + + HandleHandshake +- Function prototype: + + handler(session *bfe_basic.Session) int + +### HandlersRequest + +- Applicable callback point: + + HandleBeforeLocation + + HandleFoundProduct + + HandleAfterLocation +- Function prototype: + + handler(req *bfe_basic.Request) (int, *bfe_http.Response) + +### HandlersForward + +- Applicable callback point: + + HandleForward +- Function prototype: + + handler(req *bfe_basic.Request) int + +### HandlersResponse + +- Applicable callback point: + + HandleReadResponse + + HandleRequestFinish +- Function prototype: + + handler(req *bfe_basic.Request, res *bfe_http.Response) int + +### HandlersFinish + +- Applicable callback point: + + HandleFinish +- Function prototype: + + handler(session *bfe_basic.Session) int \ No newline at end of file diff --git a/docs/en_us/development/module/how_to_write_module.md b/docs/en_us/development/module/how_to_write_module.md index b2c31c53c..bb1a11063 100644 --- a/docs/en_us/development/module/how_to_write_module.md +++ b/docs/en_us/development/module/how_to_write_module.md @@ -1 +1,191 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# How to Write a Module + +## Overview + +When writing a module for BFE, the following aspects should be considered: + +- How to load configuration +- How to write and register callback functions +- How to expose internal states + +mod_block is used as an example for ease of understanding.([/bfe_modules/mod_block](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block)) + +## Load Configuration + +### Types of configuration + +For a given module, there are 2 types of configuration: +- Static configuration: be loaded when BFE starts + + There is only one such configuration file for each module + + The name of the configuration file is the same as the module name. It is suffixed with .conf + + Example: mod_block.conf +- Dynamic configuration: be loaded when BFE starts. It can also be hot-reloaded without restarting BFE. + + There can be one or more such configuration files for each module + + The name of the configuration file usually ends with .data + + Example: block_rules.data and ip_blacklist.data in mod_block + +### Placement of configuration files + +- The configuration files of the modules should be placed in [/conf/{module_name}](https://github.com/baidu/bfe/tree/master/conf) +- Example: Configuration files of mod_block are located in [/conf/mod_block](https://github.com/baidu/bfe/tree/master/conf/mod_block) + + +### Verification of configuration + +Configuration files are verified whenever they are loaded, regardless of static or dynamic configuration. +- BFE fails to start if the configuration files fails to be loaded. +- BFE will continue to run if dynamic configuration fails to be hot-reloaded. + +### Hot-reload of dynamic configuration + +For dynamic configurations, it is required to register callback function on dedicated web server. Hot-reload of dynamic configuration can be triggered by accessing specified URL. + +Example: In the init function of mod_block, there is some logic as follows, used to register callback function for configuration reload([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) + +``` + // register web handler for reload + err = whs.RegisterHandler(web_monitor.WebHandleReload, m.name, m.loadConfData) + if err != nil { + ... + } +``` + +## Write and register callback functions + +### Write callback functions + +Write callback functions for appropriate callback point. + +Note that for different callback points, definition of callback functions may be different. Definition of callback points and callback functions in BFE can be found in [bfe_callback](./bfe_callback.md). + +Example: there are two callback functions defined in mod_block([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) +``` +func (m *ModuleBlock) globalBlockHandler(session *bfe_basic.Session) int { + ... +} + +func (m *ModuleBlock) productBlockHandler(request *bfe_basic.Request) (int, *bfe_http.Response) { + ... +} + +``` + +### Register callback functions + +Callback functions should be registered when the module is initialized. + +Example: registration of callback functions in mod_block is as follows([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) + +``` +func (m *ModuleBlock) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHandlers, cr string) error { + ... + // register handler + err = cbs.AddFilter(bfe_module.HandleAccept, m.globalBlockHandler) + if err != nil { + ... + } + + err = cbs.AddFilter(bfe_module.HandleFoundProduct, m.productBlockHandler) + if err != nil { + ... + } + ... +} +``` + +## Expose module internal states + +For each BFE module, it is strongly recommended to expose enough internal states. + +To expose internal states of a module, do the following 3 steps: +- Define state variables +- Register callback function for exposing internal states +- Insert code for doing statistic + +### Define state variables + +Firstly, design statistical metrics and define them as member variables. + +Example: define ModuleBlockState in mod_block ([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) + +``` +type ModuleBlockState struct { + ConnTotal *metrics.Counter // all connnetion checked + ConnAccept *metrics.Counter // connection passed + ConnRefuse *metrics.Counter // connection refused + ReqTotal *metrics.Counter // all request in + ReqToCheck *metrics.Counter // request to check + ReqAccept *metrics.Counter // request accepted + ReqRefuse *metrics.Counter // request refused + WrongCommand *metrics.Counter // request with condition satisfied, but wrong command +} +``` + +Secondly, define a member variable of type ModuleBlockState in ModuleBlock. Also define a member variable of type Metrics for related calculations. +``` +type ModuleBlock struct { + ... + state ModuleBlockState // module state + metrics metrics.Metrics + ... +``` + +Thirdly, do initialization in constructor function. +``` +func NewModuleBlock() *ModuleBlock { + m := new(ModuleBlock) + m.name = ModBlock + m.metrics.Init(&m.state, ModBlock, 0) + ... +} +``` + +### Register a callback function that exposes the internal state + +In order to expose internal status, callback function should be implemented. + +Example: In mod_block, there is logic as follows, where monitorHandlers () is the callback function([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) + +``` +func (m *ModuleBlock) getState(params map[string][]string) ([]byte, error) { + s := m.metrics.GetAll() + return s.Format(params) +} + +func (m *ModuleBlock) getStateDiff(params map[string][]string) ([]byte, error) { + s := m.metrics.GetDiff() + return s.Format(params) +} + +func (m *ModuleBlock) monitorHandlers() map[string]interface{} { + handlers := map[string]interface{}{ + m.name: m.getState, + m.name + ".diff": m.getStateDiff, + } + return handlers +} +``` + +Then register callback function during module initialization. + +``` + // register web handler for monitor + err = web_monitor.RegisterHandlers(whs, web_monitor.WebHandleMonitor, m.monitorHandlers()) + if err != nil { + ... + } +``` + +### Insert code for statistic + +Insert some code for doing statistic. + +Example: [mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go) + +``` +func (m *ModuleBlock) globalBlockHandler(session *bfe_basic.Session) int { + ... + m.state.ConnTotal.Inc(1) + ... +} +``` \ No newline at end of file diff --git a/docs/en_us/development/module/overview.md b/docs/en_us/development/module/overview.md index b2c31c53c..33c675e98 100644 --- a/docs/en_us/development/module/overview.md +++ b/docs/en_us/development/module/overview.md @@ -1 +1,16 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# Overview of BFE Module + +## Introduction + +- BFE supports plugin architecture that make it possible to develop new features rapidly by writing plugins (i.e. modules). + +## How BFE Module works + +- Multiple callback points are provided in the forwarding process in BFE. +- When initializing a module, callback functions are registered on specified callback points. +- On processing each request/connection, when reaching a certain callback point, all registered callback functions are executed sequentially. + + +## Dive into BFE Module +- [BFE callback mechanism](bfe_callback.md) +- [How to write a BFE module](how_to_write_module.md) diff --git a/docs/en_us/introduction/comparison.md b/docs/en_us/introduction/comparison.md index 414496c45..55ee95665 100644 --- a/docs/en_us/introduction/comparison.md +++ b/docs/en_us/introduction/comparison.md @@ -1,2 +1,84 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# Comparison to similar systems + +Here comparion will be made between BFE and several similar system. + +NOTE: Most of the projects below are under active development. Thus some of the information may become out of date. If that is the case please feedback to https://github.com/baidu/bfe/issues. + +## Briefs of BFE and similar systems + +The brief decriptions of several systems are as follows: ++ BFE: BFE is an open-source layer 7 load balancer. ++ [Nginx](http://nginx.org/en/): nginx is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server. ++ [Traefik](https://github.com/containous/traefik): Traefik is a modern HTTP reverse proxy and load balancer. ++ [Envoy](https://www.envoyproxy.io/): Envoy is an open source edge and service proxy, designed for cloud-native applications. + +## Features + +### Protocol Support + ++ All 4 systems support HTTPS and HTTP/2. + +### Health Check + ++ BFE and Nginx only support "passive" health check. ++ Traefik only supports "active" health check. ++ Envoy supports active, passive and hybrid health check. + +NOTE: Nginx Plus (i.e., the commercial version of nginx) supports "active" health check. + +### Instance-Level Load Balancing + ++ All 4 systems support instance-level load balancing. + +### Cluster-Level Load Balancing + ++ BFE, Traefik and Envoy support cluster-level load balancing. ++ Nginx doesn't have this feature. + +NOTE: Envoy supports global and distributed load balancing. + +### Forwarding Rules + ++ BFE provides [Condition Expression](../condition). ++ Nginx uses regular expression. ++ Traefik supports traffic classification based on request content. But it can't support flexible AND or OR logic. ++ Envoy supports rules based on Domain, Path and Header. + +## Extensibility + +### Language + ++ Both BFE and Traefik are written in Golang ++ Nginx is written in C and Lua. ++ Envoy is written in C++. + +### Pluggable + ++ All 4 systems support pluggable architecture. + +### Cost for New Features + +Due to difference in language, cost for new features is lower for BFE and Traefik, while cost is higher for Nginx and Envoy. + +### Resilience to exception + +With recovery mechanism of Golang, Panic can be caught in BFE and Traefik. Both system are immune to sudden crash. + +While Nginx and Envoy can do nothing with wrong memory usage. Debugging such a bug is very time-consuming. + +## Maintenance + +### Observability + ++ BFE provides [rich internal status](../monitor) for external observation. ++ Nginx and Traefik provide less internal status. ++ Envoy also provides quite a lot internal status. + +### Hot-reload of configuration + ++ All 4 systems support hot-reload of configuration. ++ In Nginx, process must be restarted for the configuration to take effect, while active connections are terminated. + +NOTE: Nginx Plus supports hot-reload of configuration, with no process restart. + diff --git a/docs/zh_cn/development/module/bfe_callback.md b/docs/zh_cn/development/module/bfe_callback.md index 3ded9ddfa..a52a44118 100644 --- a/docs/zh_cn/development/module/bfe_callback.md +++ b/docs/zh_cn/development/module/bfe_callback.md @@ -3,7 +3,7 @@ ## BFE的转发过程和回调点 BFE转发过程中的回调点如下图所示。 -![BFE转发过程中的回调点](../../images/bfe_callback.png) +![BFE转发过程中的回调点](../../../images/bfe_callback.png) ## 回调点列表 在BFE中,设置了以下9个回调点: diff --git a/docs/zh_cn/introduction/comparison.md b/docs/zh_cn/introduction/comparison.md index 414496c45..c681e001a 100644 --- a/docs/zh_cn/introduction/comparison.md +++ b/docs/zh_cn/introduction/comparison.md @@ -1,2 +1,82 @@ -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](development/submit_pr_guide.md). +# 同类系统对比 + +下面将BFE和一些相关的系统进行对比。 + +注:由于相关项目在活跃开发,如下信息可能过期或有误,欢迎您在 https://github.com/baidu/bfe/issues 反馈。 + +## BFE及相关系统的定位 + +在各开源系统的官网上,几个相关系统的定位描述如下: ++ BFE: BFE是一个开源的七层负载均衡系统。 ++ [Nginx](http://nginx.org/en/): Nginx是HTTP服务、反向代理服务、邮件代理服务、通用TCP/UDP代理服务。 ++ [Traefik](https://github.com/containous/traefik): Traefik是先进的HTTP反向代理和负载均衡。 ++ [Envoy](https://www.envoyproxy.io/): Envoy是开源的边缘和服务代理,为云原生应用而设计。 + +## 功能对比 + +### 协议支持 + ++ 4个系统都支持HTTPS和HTTP/2 + +### 健康检查 + ++ BFE和Nginx只支持“被动”模式的健康检查。 ++ Traefik只支持“主动”模式的健康检查。 ++ Envoy支持主动、被动和混合模式的健康检查。 + +注:Nginx商业版支持“主动”模式的健康检查。 + +### 实例级别负载均衡 + ++ 4个系统都支持实例级别负载均衡 + +### 集群级别负载均衡 + ++ BFE、Traefik、Envoy都支持集群级别负载均衡 ++ Nginx不支持集群级别负载均衡 + +注:Envoy基于全局及分布式负载均衡策略 + +### 对于转发规则的描述方式 + ++ BFE基于[条件表达式](../condition) ++ Nginx基于正则表达式 ++ Traefik支持基于请求内容的分流,但无法支持灵活的与或非逻辑 ++ Envoy支持基于域名、Path及Header的转发规则 + +## 扩展开发能力 + +### 编程语言 + ++ BFE和Traefik都基于Go语言 ++ Nginx使用C和Lua开发 ++ Envoy使用C++开发 + +### 可插拔架构 + ++ 4个系统都使用了可插拔架构 + +### 新功能开发成本 + +由于编程语言方面的差异,BFE和Traefik的开发成本较低,Nginx和Envoy的开发成本较高。 + +### 异常处理能力 + +由于编程语言方面的差异,BFE和Traefik可以对异常(在Go语言中称为Panic)进行捕获处理,从而避免程序的异常结束; 而Nginx和Envoy无法对内存等方面的错误进行捕获,这些错误很容易导致程序崩溃。 + +## 可运维性 + +### 内部状态展示 + ++ BFE对程序内部状态,提供了[丰富的展示](../monitor) ++ Nginx和Traefik提供的内部状态信息较少 ++ Envoy也提供了丰富的内部状态展示 + +### 配置热加载 + ++ 4个系统都提供配置热加载功能 ++ Nginx配置生效需重启进程,中断活跃长连接 + +注:Nginx商业版支持动态配置,在不重启进程的情况下热加载配置生效 + From f7d448e24926ed62ae55df7a0a7bfa4b10660a44 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Tue, 12 May 2020 08:44:28 +0800 Subject: [PATCH 075/111] docs: fix minor issues --- docs/en_us/README.md | 2 +- docs/en_us/SUMMARY.md | 2 +- docs/en_us/faq/installation.md | 2 +- docs/en_us/modules/mod_userid/mod_userid.md | 2 +- docs/en_us/operation/capture_packet.md | 2 +- docs/en_us/operation/env_var.md | 4 +- docs/en_us/operation/monitor.md | 20 +-- docs/en_us/operation/reload.md | 34 ++--- docs/mkdocs_en.yml | 133 +++++++++++--------- docs/mkdocs_zh.yml | 15 ++- docs/zh_cn/operation/reload.md | 4 +- 11 files changed, 123 insertions(+), 97 deletions(-) diff --git a/docs/en_us/README.md b/docs/en_us/README.md index 738de5c49..efc5477d6 100644 --- a/docs/en_us/README.md +++ b/docs/en_us/README.md @@ -4,7 +4,7 @@ The BFE documentation is composed of a few major sections: * **Introduction**: This section covers a general overview of what BFE is, an architecture overview, etc. -* **Quic Start**: Quickly get started with BFE. +* **Getting started**: Quickly get started with BFE. * **Installation**: How to build/install BFE. diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index 0dff14401..2d6729c73 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -64,7 +64,7 @@ * [mod_userid](modules/mod_userid/mod_userid.md) * Operations * [Command line options](operation/command.md) - * [Environment argruments](operation/env_var.md) + * [Environment variables](operation/env_var.md) * [System signals](operation/signal.md) * [Configuration reload](operation/reload.md) * [System metrics](operation/monitor.md) diff --git a/docs/en_us/faq/installation.md b/docs/en_us/faq/installation.md index c2b0557c2..32ccb459c 100644 --- a/docs/en_us/faq/installation.md +++ b/docs/en_us/faq/installation.md @@ -1,7 +1,7 @@ # Installation FAQ ## Go get timeout during installation -- Set GOPROXY enviromennt as follows (go1.13+): +- Set GOPROXY enviroment variable as follows (go1.13+): ``` $ go env -w GO111MODULE=on $ go env -w GOPROXY=https://goproxy.cn,direct diff --git a/docs/en_us/modules/mod_userid/mod_userid.md b/docs/en_us/modules/mod_userid/mod_userid.md index 3a478f13d..ecbc1e674 100644 --- a/docs/en_us/modules/mod_userid/mod_userid.md +++ b/docs/en_us/modules/mod_userid/mod_userid.md @@ -2,7 +2,7 @@ ## Introduction -Add user id to cookie for client identification. +mod_userid generates user id for client identification. ## Module Configuration diff --git a/docs/en_us/operation/capture_packet.md b/docs/en_us/operation/capture_packet.md index ebdabeb50..466191769 100644 --- a/docs/en_us/operation/capture_packet.md +++ b/docs/en_us/operation/capture_packet.md @@ -24,7 +24,7 @@ For TLS-based encrypted traffic, you can use mod_key_log and wireshark for analy * Note:modify bfe.conf and enable mod_key_log, See module configuration [mod_key_log](../modules/mod_key_log/mod_key_log.md) for details ``` -[server] +[Server] Modules = mod_key_log ``` diff --git a/docs/en_us/operation/env_var.md b/docs/en_us/operation/env_var.md index acee207c1..a97b30c3a 100644 --- a/docs/en_us/operation/env_var.md +++ b/docs/en_us/operation/env_var.md @@ -2,13 +2,13 @@ ## GODEBUG -* Output verbose log which prints http2 header info +* Output verbose log about http2 header info ``` $ export GODEBUG="http2debug=1" ``` -* Output verbose log which prints http2 header and framer info +* Output verbose log about http2 header and framer info ``` $ export GODEBUG="http2debug=2" diff --git a/docs/en_us/operation/monitor.md b/docs/en_us/operation/monitor.md index 2bcd79e95..8c871f1f8 100644 --- a/docs/en_us/operation/monitor.md +++ b/docs/en_us/operation/monitor.md @@ -1,23 +1,23 @@ # System metrics -BFE has a variety of built-in metrics and supports multiple output formats, which can be obtained through monitor interfaces. +BFE has a variety of built-in metrics which can be exposed in various formats. -## Configuration +## Configure monitor port Set monitor port in the BFE core configuration file (conf/bfe.conf). ``` -[server] -monitorPort = 8421 +[Server] +MonitorPort = 8421 ``` ## Fetch metric categories -Visit the following address for a list of available metrics categories +Visit the following address for a list of available metric categories ``` http://:8421/monitor ``` -## Fetch metric data +## Fetch metrics ``` http://:8421/monitor/ @@ -25,10 +25,10 @@ http://:8421/monitor/ ## Fetch metric data in specified format -Currently supported format of metrics: - * [prometheus](https://prometheus.io/) - * kv - * json (default) +Currently supported formats: +* [prometheus](https://prometheus.io/) +* kv +* json (default) Specify the format of the output like below: diff --git a/docs/en_us/operation/reload.md b/docs/en_us/operation/reload.md index cebda150e..41d5e3bd9 100644 --- a/docs/en_us/operation/reload.md +++ b/docs/en_us/operation/reload.md @@ -1,28 +1,32 @@ # Configuration Reload -BFE has built-in reload interfaces to support configuration hot reload. A new configuration file can be reload by sending a reload request. +BFE has built-in feature of configuration hot-reload. A new configuration file can be reload by sending a reload request. -## Config +## Configure monitor port -Use the same port as the monitor +Set MonitorPort in BFE core configuration file(conf/bfe.conf) ``` -[server] -monitorPort = 8421 +[Server] +MonitorPort = 8421 ``` -## How to use +## How to reload -* Reload interface only allows access using localhost(127.0.0.1/::1) -* Reload interface only supports GET requests - * example:curl http://localhost:8421/reload/server_data_conf will reload route configurations -* The complete list of reload interfaces can be viewed at http://localhost:8421/reload +* Reload APIs only allows to be accessed using localhost(127.0.0.1/::1)and only supports GET requests -## Interface description +``` +# reload routing configurations +$ curl http://localhost:8421/reload/server_data_conf +``` + +* The complete list of reload APIs can be viewed at http://localhost:8421/reload + +## Reload APIs -### basic function +### Basic function -| function | default config file | reload interface | +| Function | Default configuration file | Reload API | | ---------------------- | ---------------------------- | ----------------- | | routing | server_data_conf/host_rule.data
server_data_conf/vip_rule.data
server_data_conf/route_rule.data
server_data_conf/cluster_conf.data | /reload/server_data_conf | | balancing | cluster_conf/cluster_table.data
cluster_conf/gslb.data | /reload/gslb_data_conf | @@ -30,9 +34,9 @@ monitorPort = 8421 | TLS rule | tls_conf/server_cert_conf.data
tls_conf/tls_rule_conf.data | /reload/tls_conf | | TLS session ticket key | tls_conf/session_ticket_key.data | /reload/tls_session_ticket_key | -### extension module +### Module -| module | default config file | reload interface | +| Module | Default configuration file | Reload API | | ----------------------- | ---------------------------- | ----------------- | | mod_auth_basic | mod_auth_basic/auth_basic_rule.data | /reload/mod_auth_basic| | mod_block | mod_block/block_rules.data
mod_block/ip_blacklist.data | /reload/mod_block.product_rule_table
/reload/mod_block.global_ip_table | diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 11f80554b..514cb9896 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -4,13 +4,13 @@ dev_addr: 0.0.0.0:8000 repo_name: 'Github' repo_url: https://github.com/baidu/bfe docs_dir: 'en_us' -edit_uri: edit/master/docs/en_us/ +edit_uri: edit/develop/docs/en_us/ theme: name: material language: en -copyright: "Copyright © 2019-2020 BFE Authors" +copyright: 'Copyright © 2019-2020 BFE 中文 | English' markdown_extensions: - codehilite @@ -18,49 +18,60 @@ markdown_extensions: plugins: - search +extra: + social: + - icon: fontawesome/brands/github + link: https://github.com/baidu/bfe + - icon: fontawesome/brands/twitter + link: https://twitter.com/BaiduResearch + - icon: fontawesome/brands/slack + link: https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA + - icon: fontawesome/brands/envelop + link: mailto:bfe-osc@baidu.com + nav: - 'About': 'README.md' - 'Introduction': - 'Overview': 'introduction/overview.md' - - 'Comparsion to Similar Systems': 'introduction/comparison.md' - - 'Design Overview': + - 'Comparsion to similar systems': 'introduction/comparison.md' + - 'Design overview': - 'Terminology': 'introduction/terminology.md' - - 'Traffic Fowarding Model': 'introduction/forward_model.md' - - 'Traffic Routing': 'introduction/route.md' - - 'Traffic Balancing': 'introduction/balance.md' - - 'Getting Help': 'introduction/getting_help.md' - - 'Version History': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' - - 'Getting Started': + - 'Traffic fowarding model': 'introduction/forward_model.md' + - 'Traffic routing': 'introduction/route.md' + - 'Traffic balancing': 'introduction/balance.md' + - 'Getting help': 'introduction/getting_help.md' + - 'Version history': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' + - 'Getting started': - 'Install BFE': 'installation/install_from_source.md' - - 'User Guides': + - 'User guides': - 'Overview': 'example/guide.md' - - 'Traffic Forwarding': 'example/route.md' - - 'Traffic Blocking': 'example/block.md' - - 'Request Redirect': 'example/redirect.md' - - 'Request Rewrite': 'example/rewrite.md' - - 'TLS Mutual Authentication': 'example/client_auth.md' + - 'Traffic forwarding': 'example/route.md' + - 'Traffic blocking': 'example/block.md' + - 'Request redirect': 'example/redirect.md' + - 'Request rewrite': 'example/rewrite.md' + - 'TLS mutual authentication': 'example/client_auth.md' - 'Installation': - 'Overview': 'installation/install.md' - - 'Install from Source': 'installation/install_from_source.md' - - 'Install using Binaries': 'installation/install_using_binaries.md' - - 'Install using Go': 'installation/install_using_go.md' - - 'Install using Snap': 'installation/install_using_snap.md' + - 'Install from source': 'installation/install_from_source.md' + - 'Install using binaries': 'installation/install_using_binaries.md' + - 'Install using go': 'installation/install_using_go.md' + - 'Install using snap': 'installation/install_using_snap.md' - 'Configuration': - 'Overview': 'configuration/config.md' - 'Core': 'configuration/bfe.conf.md' - 'Protocol': - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' - 'Certificate': 'configuration/tls_conf/server_cert_conf.data.md' - - 'Session Ticket Key': 'configuration/tls_conf/session_ticket_key.data.md' + - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' - 'Routing': - - 'Host Rule': 'configuration/server_data_conf/host_rule.data.md' - - 'Vip Rule': 'configuration/server_data_conf/vip_rule.data.md' - - 'Route Rule': 'configuration/server_data_conf/route_rule.data.md' - - 'Backend Cluster': 'configuration/server_data_conf/cluster_conf.data.md' - - 'Load Balancing': - - 'Sub-clusters Balancing': 'configuration/cluster_conf/gslb.data.md' - - 'Instances Balancing': 'configuration/cluster_conf/cluster_table.data.md' - - 'Name Service': + - 'Host rule': 'configuration/server_data_conf/host_rule.data.md' + - 'VIP rule': 'configuration/server_data_conf/vip_rule.data.md' + - 'Route rule': 'configuration/server_data_conf/route_rule.data.md' + - 'Backend cluster': 'configuration/server_data_conf/cluster_conf.data.md' + - 'Load balancing': + - 'Sub-clusters balancing': 'configuration/cluster_conf/gslb.data.md' + - 'Instances balancing': 'configuration/cluster_conf/cluster_table.data.md' + - 'Name service': - 'Naming': 'configuration/server_data_conf/name_conf.data.md' - 'Modules': - 'mod_access': 'modules/mod_access/mod_access.md' @@ -84,32 +95,32 @@ nav: - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' - 'mod_userid': 'modules/mod_userid/mod_userid.md' - 'Operations': - - 'Command Line Options': 'operation/command.md' - - 'Environment Argruments': 'operation/env_var.md' - - 'System Signals': 'operation/signal.md' - - 'Configuration Reload': 'operation/reload.md' - - 'System Metrics': 'operation/monitor.md' - - 'Log Rotation': 'operation/log_rotation.md' - - 'Traffic Tapping': 'operation/capture_packet.md' + - 'Command line pptions': 'operation/command.md' + - 'Environment variables': 'operation/env_var.md' + - 'System signals': 'operation/signal.md' + - 'Configuration reload': 'operation/reload.md' + - 'System metrics': 'operation/monitor.md' + - 'Log rotation': 'operation/log_rotation.md' + - 'Traffic tapping': 'operation/capture_packet.md' - 'Performance': 'operation/performance.md' - - 'How to Contribute': - - 'Contribute Codes': - - 'Local Development': 'development/local_dev_guide.md' + - 'How to contribute': + - 'Contribute codes': + - 'Local development': 'development/local_dev_guide.md' - 'Sumbit PR': 'development/submit_pr_guide.md' - - 'Contribute Documents': 'development/write_doc_guide.md' - - 'Releasing Process': 'development/release_regulation.md' - - 'Development Guides': - - 'Source Code Layout': 'development/source_code_layout.md' - - 'BFE Module Development': + - 'Contribute documents': 'development/write_doc_guide.md' + - 'Releasing process': 'development/release_regulation.md' + - 'Development guides': + - 'Source code layout': 'development/source_code_layout.md' + - 'BFE module development': - 'Overview': 'development/module/overview.md' - - 'BFE Callback Introduction': 'development/module/bfe_callback.md' - - 'How to Write a Module': 'development/module/how_to_write_module.md' + - 'BFE callback introduction': 'development/module/bfe_callback.md' + - 'How to write a module': 'development/module/how_to_write_module.md' - 'FAQ': - 'Installation': 'faq/installation.md' - 'Configuration': 'faq/configuration.md' - 'Performance': 'faq/performance.md' - 'Development': 'faq/development.md' - - 'Monitor Reference': + - 'Monitor reference': - 'Protocol': - 'SSL/TLS': 'monitor/tls_state.md' - 'HTTP': 'monitor/http_state.md' @@ -118,20 +129,20 @@ nav: - 'WebSocket': 'monitor/websocket_state.md' - 'Stream': 'monitor/stream_state.md' - 'Routing': - - 'Host Table': 'monitor/host_table_status.md' - - 'Load Balancing': - - 'Balance Details': 'monitor/bal_table_status.md' - - 'Balance Error': 'monitor/bal_state.md' + - 'Host table': 'monitor/host_table_status.md' + - 'Load balancing': + - 'Balance details': 'monitor/bal_table_status.md' + - 'Balance error': 'monitor/bal_state.md' - 'Proxy': - - 'Proxy State': 'monitor/proxy_state.md' + - 'Proxy state': 'monitor/proxy_state.md' - 'Modules': 'monitor/module_status.md' - 'Lentency': - - 'Lentency Histogram': 'monitor/proxy_XXX_delay.md' - - 'Condition Reference': - - 'Concept and Grammar': 'condition/condition_grammar.md' - - 'Naming Convention': 'condition/condition_naming_convention.md' - - 'Primitives Index': 'condition/condition_primitive_index.md' - - 'Request related Primitives': + - 'Lentency histogram': 'monitor/proxy_XXX_delay.md' + - 'Condition reference': + - 'Concept and grammar': 'condition/condition_grammar.md' + - 'Naming convention': 'condition/condition_naming_convention.md' + - 'Primitives index': 'condition/condition_primitive_index.md' + - 'Request related primitives': - 'Method': 'condition/request/method.md' - 'URI': 'condition/request/uri.md' - 'Protocol': 'condition/request/protocol.md' @@ -139,12 +150,12 @@ nav: - 'Cookie': 'condition/request/cookie.md' - 'Tag': 'condition/request/tag.md' - 'IP': 'condition/request/ip.md' - - 'Response related Primitives': + - 'Response related primitives': - 'Code': 'condition/response/code.md' - 'Header': 'condition/response/header.md' - - 'Session related Primitives': + - 'Session related primitives': - 'IP': 'condition/session/ip.md' - 'TLS': 'condition/session/tls.md' - - 'System related Primitives': + - 'System related primitives': - 'Time': 'condition/system/time.md' diff --git a/docs/mkdocs_zh.yml b/docs/mkdocs_zh.yml index aabb79e1c..0be491af7 100644 --- a/docs/mkdocs_zh.yml +++ b/docs/mkdocs_zh.yml @@ -4,13 +4,13 @@ dev_addr: 0.0.0.0:8001 repo_name: 'Github' repo_url: https://github.com/baidu/bfe docs_dir: 'zh_cn' -edit_uri: edit/master/docs/zh_cn/ +edit_uri: edit/develop/docs/zh_cn/ theme: name: material language: zh -copyright: 'Copyright © 2019-2020 BFE Authors' +copyright: 'Copyright © 2019-2020 BFE 中文 | English' markdown_extensions: - codehilite @@ -18,6 +18,17 @@ markdown_extensions: plugins: - search +extra: + social: + - icon: fontawesome/brands/github + link: https://github.com/baidu/bfe + - icon: fontawesome/brands/twitter + link: https://twitter.com/BaiduResearch + - icon: fontawesome/brands/slack + link: https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA + - icon: fontawesome/brands/envelop + link: mailto:bfe-osc@baidu.com + nav: - '关于': 'README.md' - '介绍': diff --git a/docs/zh_cn/operation/reload.md b/docs/zh_cn/operation/reload.md index 8d16db568..e4919018c 100644 --- a/docs/zh_cn/operation/reload.md +++ b/docs/zh_cn/operation/reload.md @@ -1,6 +1,6 @@ # 热加载配置 -BFE内置reload接口以支持配置热加载,通过发送reload请求能够加载新的配置文件 +BFE内置配置热加载功能,通过请求Reload HTTP API能够加载新的配置文件。 ## 配置管理端口 @@ -19,7 +19,7 @@ MonitorPort = 8421 $ curl http://localhost:8421/reload/server_data_conf ``` -* 完整的reload接口列表可访问http://localhost:8421/reload 查看 +* 完整的Reload API列表可访问http://localhost:8421/reload查看。详见下文说明。 ## 接口说明 From 96baa92e6cf7c3b273ca929197b36f5cc4ec1f7c Mon Sep 17 00:00:00 2001 From: yangsijie Date: Tue, 12 May 2020 09:27:41 +0800 Subject: [PATCH 076/111] docs: fix mkdocs*.yml --- docs/mkdocs_en.yml | 2 +- docs/mkdocs_zh.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 514cb9896..814a5919b 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -26,7 +26,7 @@ extra: link: https://twitter.com/BaiduResearch - icon: fontawesome/brands/slack link: https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA - - icon: fontawesome/brands/envelop + - icon: fontawesome/solid/envelope link: mailto:bfe-osc@baidu.com nav: diff --git a/docs/mkdocs_zh.yml b/docs/mkdocs_zh.yml index 0be491af7..0e5ab83ba 100644 --- a/docs/mkdocs_zh.yml +++ b/docs/mkdocs_zh.yml @@ -26,7 +26,7 @@ extra: link: https://twitter.com/BaiduResearch - icon: fontawesome/brands/slack link: https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA - - icon: fontawesome/brands/envelop + - icon: fontawesome/solid/envelope link: mailto:bfe-osc@baidu.com nav: From dde46614c3c3f5ca84c648771d5667c722716e78 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Tue, 12 May 2020 17:36:45 +0800 Subject: [PATCH 077/111] docs: set syntax highlighting for code blocks --- .../condition/condition_naming_convention.md | 66 +++++++++--------- .../cluster_conf/cluster_table.data.md | 2 +- .../configuration/cluster_conf/gslb.data.md | 2 +- .../server_data_conf/cluster_conf.data.md | 2 +- .../server_data_conf/host_rule.data.md | 2 +- .../server_data_conf/name_conf.data.md | 2 +- .../server_data_conf/route_rule.data.md | 2 +- .../server_data_conf/vip_rule.data.md | 2 +- .../tls_conf/server_cert_conf.data.md | 2 +- .../tls_conf/session_ticket_key.data.md | 2 +- .../tls_conf/tls_rule_conf.data.md | 2 +- .../development/module/how_to_write_module.md | 23 ++++--- .../modules/mod_auth_basic/mod_auth_basic.md | 4 +- docs/en_us/modules/mod_block/mod_block.md | 2 +- .../modules/mod_compress/mod_compress.md | 2 +- docs/en_us/modules/mod_errors/mod_errors.md | 2 +- docs/en_us/modules/mod_header/mod_header.md | 2 +- .../modules/mod_redirect/mod_redirect.md | 2 +- docs/en_us/modules/mod_rewrite/mod_rewrite.md | 2 +- docs/en_us/modules/mod_static/mod_static.md | 2 +- docs/en_us/modules/mod_tag/mod_tag.md | 2 +- docs/en_us/modules/mod_trace/mod_trace.md | 2 +- .../mod_trust_clientip/mod_trust_clientip.md | 2 +- docs/en_us/modules/mod_userid/mod_userid.md | 2 +- .../condition/condition_naming_convention.md | 68 +++++++++---------- .../cluster_conf/cluster_table.data.md | 2 +- .../configuration/cluster_conf/gslb.data.md | 2 +- .../server_data_conf/cluster_conf.data.md | 2 +- .../server_data_conf/host_rule.data.md | 2 +- .../server_data_conf/name_conf.data.md | 2 +- .../server_data_conf/route_rule.data.md | 2 +- .../server_data_conf/vip_rule.data.md | 2 +- .../tls_conf/server_cert_conf.data.md | 2 +- .../tls_conf/session_ticket_key.data.md | 2 +- .../tls_conf/tls_rule_conf.data.md | 2 +- .../development/module/how_to_write_module.md | 23 ++++--- .../modules/mod_auth_basic/mod_auth_basic.md | 2 +- .../modules/mod_auth_jwt/mod_auth_jwt.md | 2 +- docs/zh_cn/modules/mod_block/mod_block.md | 2 +- .../modules/mod_compress/mod_compress.md | 2 +- docs/zh_cn/modules/mod_errors/mod_errors.md | 2 +- docs/zh_cn/modules/mod_header/mod_header.md | 2 +- .../modules/mod_redirect/mod_redirect.md | 2 +- docs/zh_cn/modules/mod_rewrite/mod_rewrite.md | 2 +- docs/zh_cn/modules/mod_static/mod_static.md | 4 +- docs/zh_cn/modules/mod_tag/mod_tag.md | 2 +- docs/zh_cn/modules/mod_trace/mod_trace.md | 4 +- .../mod_trust_clientip/mod_trust_clientip.md | 2 +- docs/zh_cn/modules/mod_userid/mod_userid.md | 2 +- 49 files changed, 141 insertions(+), 135 deletions(-) diff --git a/docs/en_us/condition/condition_naming_convention.md b/docs/en_us/condition/condition_naming_convention.md index 4d3b86650..dc2226652 100644 --- a/docs/en_us/condition/condition_naming_convention.md +++ b/docs/en_us/condition/condition_naming_convention.md @@ -1,37 +1,37 @@ # Condition Naming Convention -- Name prefix of condition primitive: - - Name prefix of request related primitive is "**req_**" - - e.g. **req_host_in()** - - Name prefix of response related primitive is "**res_**" - - e.g. **res_code_in()** - - Name prefix of session related primitive is "**ses_**" - - e.g. **ses_vip_in()** - - Name prefix of system related primitive is "**bfe_**" - - e.g. **bfe_time_range**() +## Name prefix of condition primitive: +- Name prefix of request related primitive is "**req_**" + - e.g. **req_host_in()** +- Name prefix of response related primitive is "**res_**" + - e.g. **res_code_in()** +- Name prefix of session related primitive is "**ses_**" + - e.g. **ses_vip_in()** +- Name prefix of system related primitive is "**bfe_**" + - e.g. **bfe_time_range**() -- Name of compare actions: - - **match**:exact match - - In this situation, the only one parameter is given - - eg. **req_tag_match()** - - **in**:if the value is in the configured set - - eg. **req_host_in()** - - **prefix_in**:if the value prefix is in the configured set - - eg. **req_path_prefix_in()** - - **suffix_in**:if the value suffix is in the configured set - - eg. **req_path_suffix_in()** - - **key_exist**:if the key exists - - eg. **req_query_key_exist()** - - **value_in**:for the configured key, judge if the value is in the configured value set - - eg. **req_query_key_exist()** - - **value_prefix_in**:for the configured key, judge if the value prefix is in the configured set - - eg. **req_header_value_prefix_in()** - - **value_suffix_in**:for the configured key, judge if the value suffix is in the configured set - - eg. **req_header_value_suffix_in()** - - **range**: range match - - eg. **req_cip_range()** - - **regmatch**:regular match - - eg. **req_url_regmatch()** - - **contain**: string match - - eg. **req_cookie_value_contain()** +## Name of compare actions: +- **match**:exact match + - In this situation, the only one parameter is given + - eg. **req_tag_match()** +- **in**:if the value is in the configured set + - eg. **req_host_in()** +- **prefix_in**:if the value prefix is in the configured set + - eg. **req_path_prefix_in()** +- **suffix_in**:if the value suffix is in the configured set + - eg. **req_path_suffix_in()** +- **key_exist**:if the key exists + - eg. **req_query_key_exist()** +- **value_in**:for the configured key, judge if the value is in the configured value set + - eg. **req_query_key_exist()** +- **value_prefix_in**:for the configured key, judge if the value prefix is in the configured set + - eg. **req_header_value_prefix_in()** +- **value_suffix_in**:for the configured key, judge if the value suffix is in the configured set + - eg. **req_header_value_suffix_in()** +- **range**: range match + - eg. **req_cip_range()** +- **regmatch**:regular match + - eg. **req_url_regmatch()** +- **contain**: string match + - eg. **req_cookie_value_contain()** diff --git a/docs/en_us/configuration/cluster_conf/cluster_table.data.md b/docs/en_us/configuration/cluster_conf/cluster_table.data.md index 634c2d65b..cf8ded712 100644 --- a/docs/en_us/configuration/cluster_conf/cluster_table.data.md +++ b/docs/en_us/configuration/cluster_conf/cluster_table.data.md @@ -25,7 +25,7 @@ cluster_table.data records the load balancing config among instances. | Weight | String
weight of instance | ## Example -``` +```json { "Config": { "cluster_example": { diff --git a/docs/en_us/configuration/cluster_conf/gslb.data.md b/docs/en_us/configuration/cluster_conf/gslb.data.md index 3cbebe3c1..6f9227200 100644 --- a/docs/en_us/configuration/cluster_conf/gslb.data.md +++ b/docs/en_us/configuration/cluster_conf/gslb.data.md @@ -17,7 +17,7 @@ gslb.data records the load balancing config between sub-clusters. | Ts | String
Timestamp of config file | ## Example -``` +```json { "Clusters": { "cluster_example": { diff --git a/docs/en_us/configuration/server_data_conf/cluster_conf.data.md b/docs/en_us/configuration/server_data_conf/cluster_conf.data.md index 402dcaf4c..074efc2f6 100644 --- a/docs/en_us/configuration/server_data_conf/cluster_conf.data.md +++ b/docs/en_us/configuration/server_data_conf/cluster_conf.data.md @@ -65,7 +65,7 @@ ClusterBasic is basic config for cluster. | CancelOnClientClose | Bool
Cancel blocking operation on server if client connection disconnected | ## Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/configuration/server_data_conf/host_rule.data.md b/docs/en_us/configuration/server_data_conf/host_rule.data.md index c908881f8..b2effd4ed 100644 --- a/docs/en_us/configuration/server_data_conf/host_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/host_rule.data.md @@ -19,7 +19,7 @@ host_rule.data records the domain names for each product. ## Example -``` +```json { "Version": "20190101000000", "DefaultProduct": null, diff --git a/docs/en_us/configuration/server_data_conf/name_conf.data.md b/docs/en_us/configuration/server_data_conf/name_conf.data.md index 9d40353e7..a47b31070 100644 --- a/docs/en_us/configuration/server_data_conf/name_conf.data.md +++ b/docs/en_us/configuration/server_data_conf/name_conf.data.md @@ -18,7 +18,7 @@ name_conf.data records the mapping between service name and service instances. ## Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/configuration/server_data_conf/route_rule.data.md b/docs/en_us/configuration/server_data_conf/route_rule.data.md index 82af18c4f..d6a6ee86b 100644 --- a/docs/en_us/configuration/server_data_conf/route_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/route_rule.data.md @@ -17,7 +17,7 @@ route_rule.data records route rule config for each product. ## Example -``` +```json { "Version": "20190101000000", "ProductRule": { diff --git a/docs/en_us/configuration/server_data_conf/vip_rule.data.md b/docs/en_us/configuration/server_data_conf/vip_rule.data.md index 6cf9d10c9..b84e2bd93 100644 --- a/docs/en_us/configuration/server_data_conf/vip_rule.data.md +++ b/docs/en_us/configuration/server_data_conf/vip_rule.data.md @@ -15,7 +15,7 @@ vip_rule.data records vip lists for each product. ## Example -``` +```json { "Version": "20190101000000", "Vips": { diff --git a/docs/en_us/configuration/tls_conf/server_cert_conf.data.md b/docs/en_us/configuration/tls_conf/server_cert_conf.data.md index 4c3707f79..c9815051e 100644 --- a/docs/en_us/configuration/tls_conf/server_cert_conf.data.md +++ b/docs/en_us/configuration/tls_conf/server_cert_conf.data.md @@ -19,7 +19,7 @@ server_cert_conf.data records the config for server certificate and private key | Config.CertConf{v}.OcspResponseFile | String
Path of OCSP Stple (optional) | ## Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/configuration/tls_conf/session_ticket_key.data.md b/docs/en_us/configuration/tls_conf/session_ticket_key.data.md index 63074450d..f8b5a4623 100644 --- a/docs/en_us/configuration/tls_conf/session_ticket_key.data.md +++ b/docs/en_us/configuration/tls_conf/session_ticket_key.data.md @@ -12,7 +12,7 @@ session_ticket_key.data records the session ticket key. | SessionTicketKey | String
The session ticket key. length is 48 and contains only [a-z0-9] | ## Example -``` +```json { "Version": "20190101000000", "SessionTicketKey": "08a0d852ef494143af613ef32d3c39314758885f7108e9ab021d55f422a454f7c9cd5a53978f48fa1063eadcdc06878f" diff --git a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md index b401c28e7..2334a9164 100644 --- a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md @@ -27,7 +27,7 @@ tls_rule_conf.data records the tls protocol config ## Example -``` +```json { "Version": "20190101000000", "DefaultNextProtos": ["h2", "http/1.1"], diff --git a/docs/en_us/development/module/how_to_write_module.md b/docs/en_us/development/module/how_to_write_module.md index bb1a11063..64d3a219e 100644 --- a/docs/en_us/development/module/how_to_write_module.md +++ b/docs/en_us/development/module/how_to_write_module.md @@ -42,7 +42,7 @@ For dynamic configurations, it is required to register callback function on dedi Example: In the init function of mod_block, there is some logic as follows, used to register callback function for configuration reload([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) -``` +```golang // register web handler for reload err = whs.RegisterHandler(web_monitor.WebHandleReload, m.name, m.loadConfData) if err != nil { @@ -59,7 +59,8 @@ Write callback functions for appropriate callback point. Note that for different callback points, definition of callback functions may be different. Definition of callback points and callback functions in BFE can be found in [bfe_callback](./bfe_callback.md). Example: there are two callback functions defined in mod_block([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) -``` + +```golang func (m *ModuleBlock) globalBlockHandler(session *bfe_basic.Session) int { ... } @@ -76,7 +77,7 @@ Callback functions should be registered when the module is initialized. Example: registration of callback functions in mod_block is as follows([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) -``` +```golang func (m *ModuleBlock) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHandlers, cr string) error { ... // register handler @@ -108,7 +109,7 @@ Firstly, design statistical metrics and define them as member variables. Example: define ModuleBlockState in mod_block ([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) -``` +```golang type ModuleBlockState struct { ConnTotal *metrics.Counter // all connnetion checked ConnAccept *metrics.Counter // connection passed @@ -122,7 +123,8 @@ type ModuleBlockState struct { ``` Secondly, define a member variable of type ModuleBlockState in ModuleBlock. Also define a member variable of type Metrics for related calculations. -``` + +```golang type ModuleBlock struct { ... state ModuleBlockState // module state @@ -131,7 +133,8 @@ type ModuleBlock struct { ``` Thirdly, do initialization in constructor function. -``` + +```golang func NewModuleBlock() *ModuleBlock { m := new(ModuleBlock) m.name = ModBlock @@ -146,7 +149,7 @@ In order to expose internal status, callback function should be implemented. Example: In mod_block, there is logic as follows, where monitorHandlers () is the callback function([mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)) -``` +```golang func (m *ModuleBlock) getState(params map[string][]string) ([]byte, error) { s := m.metrics.GetAll() return s.Format(params) @@ -168,7 +171,7 @@ func (m *ModuleBlock) monitorHandlers() map[string]interface{} { Then register callback function during module initialization. -``` +```golang // register web handler for monitor err = web_monitor.RegisterHandlers(whs, web_monitor.WebHandleMonitor, m.monitorHandlers()) if err != nil { @@ -182,10 +185,10 @@ Insert some code for doing statistic. Example: [mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go) -``` +```golang func (m *ModuleBlock) globalBlockHandler(session *bfe_basic.Session) int { ... m.state.ConnTotal.Inc(1) ... } -``` \ No newline at end of file +``` diff --git a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md index aa10d460e..02ae69a76 100644 --- a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md @@ -16,7 +16,7 @@ conf/mod_auth_basic/mod_auth_basic.conf ### Example -``` +```json [basic] DataPath = mod_auth_basic/auth_basic_rule.data @@ -52,7 +52,7 @@ user2:{SHA}fEqNCco3Yq9h5ZUglD3CZJT4lBs=:user2, 123456 ``` ### Example -``` +```json { "Config": { "example_product": [ diff --git a/docs/en_us/modules/mod_block/mod_block.md b/docs/en_us/modules/mod_block/mod_block.md index 0b63feb54..d6dab670e 100644 --- a/docs/en_us/modules/mod_block/mod_block.md +++ b/docs/en_us/modules/mod_block/mod_block.md @@ -59,7 +59,7 @@ conf/mod_block/block_rules.data ### Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/modules/mod_compress/mod_compress.md b/docs/en_us/modules/mod_compress/mod_compress.md index 7e51e2d5d..d3e120e62 100644 --- a/docs/en_us/modules/mod_compress/mod_compress.md +++ b/docs/en_us/modules/mod_compress/mod_compress.md @@ -48,7 +48,7 @@ OpenDebug = false | BROTLI | Compress response using brotli method | ### Example -``` +```json { "Config": { "example_product": [ diff --git a/docs/en_us/modules/mod_errors/mod_errors.md b/docs/en_us/modules/mod_errors/mod_errors.md index 0ba4f5de2..1f5cf5282 100644 --- a/docs/en_us/modules/mod_errors/mod_errors.md +++ b/docs/en_us/modules/mod_errors/mod_errors.md @@ -43,7 +43,7 @@ DataPath = mod_errors/errors_rule.data | REDIRECT | Redirect to specified location | ### Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/modules/mod_header/mod_header.md b/docs/en_us/modules/mod_header/mod_header.md index 2535d4c57..584851795 100644 --- a/docs/en_us/modules/mod_header/mod_header.md +++ b/docs/en_us/modules/mod_header/mod_header.md @@ -54,7 +54,7 @@ conf/mod_header/header_rule.data ### Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/modules/mod_redirect/mod_redirect.md b/docs/en_us/modules/mod_redirect/mod_redirect.md index 2881dbb5e..052bce462 100644 --- a/docs/en_us/modules/mod_redirect/mod_redirect.md +++ b/docs/en_us/modules/mod_redirect/mod_redirect.md @@ -49,7 +49,7 @@ conf/mod_redirect/redirect.data ### Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/modules/mod_rewrite/mod_rewrite.md b/docs/en_us/modules/mod_rewrite/mod_rewrite.md index b09336f4f..4bd88515c 100644 --- a/docs/en_us/modules/mod_rewrite/mod_rewrite.md +++ b/docs/en_us/modules/mod_rewrite/mod_rewrite.md @@ -56,7 +56,7 @@ conf/mod_rewrite/rewrite.data ### Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/modules/mod_static/mod_static.md b/docs/en_us/modules/mod_static/mod_static.md index ccfc76d8a..27bbd65fc 100644 --- a/docs/en_us/modules/mod_static/mod_static.md +++ b/docs/en_us/modules/mod_static/mod_static.md @@ -42,7 +42,7 @@ conf/mod_static/static_rule.data | BROWSE | Serve static files.
The first parameter is the location of root directory.
The second parameter is the name of default file.| ### Example -``` +```json { "Config": { "example_product": [ diff --git a/docs/en_us/modules/mod_tag/mod_tag.md b/docs/en_us/modules/mod_tag/mod_tag.md index ad39a1579..8e3a40520 100644 --- a/docs/en_us/modules/mod_tag/mod_tag.md +++ b/docs/en_us/modules/mod_tag/mod_tag.md @@ -42,7 +42,7 @@ conf/mod_tag/tag_rule.data ### Example -``` +```json { "Version": "20200218210000", "Config": { diff --git a/docs/en_us/modules/mod_trace/mod_trace.md b/docs/en_us/modules/mod_trace/mod_trace.md index f0a17cfab..ac65f8cf9 100644 --- a/docs/en_us/modules/mod_trace/mod_trace.md +++ b/docs/en_us/modules/mod_trace/mod_trace.md @@ -175,7 +175,7 @@ conf/mod_trace/trace_rule.data ### Example -``` +```json { "Version": "20200218210000", "Config": { diff --git a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md index 4295ab732..8669f18f5 100644 --- a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md @@ -35,7 +35,7 @@ DataPath = mod_trust_clientip/trust_client_ip.data | Config{v}[].End | String | end ip address | ### Example -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/en_us/modules/mod_userid/mod_userid.md b/docs/en_us/modules/mod_userid/mod_userid.md index ecbc1e674..266e4f43d 100644 --- a/docs/en_us/modules/mod_userid/mod_userid.md +++ b/docs/en_us/modules/mod_userid/mod_userid.md @@ -42,7 +42,7 @@ conf/mod_userid/userid_rule.data | Config{v}[].Params.MaxAge | Integer
the cookie max age | ### Example -``` +```json { "Version": "2019-12-10184356", "Config": { diff --git a/docs/zh_cn/condition/condition_naming_convention.md b/docs/zh_cn/condition/condition_naming_convention.md index 399ed2bec..05f967974 100644 --- a/docs/zh_cn/condition/condition_naming_convention.md +++ b/docs/zh_cn/condition/condition_naming_convention.md @@ -2,39 +2,39 @@ 条件原语名称会使用以下规范: -- 条件原语前缀: - - 针对Request的原语,会以”**req_**“开头 - - 如:**req_host_in()** - - 针对Response的原语,会以”**res_**“开头 - - 如:**res_code_in()** - - 针对Session的原语,会以"**ses_**"开头 - - 如:**ses_vip_in()** - - 针对系统原语,会以“**bfe_**" 开头 - - 如:**bfe_time_range**() +## 条件原语前缀: +- 针对Request的原语,会以”**req_**“开头 + - 如:**req_host_in()** +- 针对Response的原语,会以”**res_**“开头 + - 如:**res_code_in()** +- 针对Session的原语,会以"**ses_**"开头 + - 如:**ses_vip_in()** +- 针对系统原语,会以“**bfe_**" 开头 + - 如:**bfe_time_range**() -- 条件原语中比较的“动作”名称: - - **match**:精确匹配 - - 这种情况下,参数中会提供唯一的一个值供比较 - - 如:**req_tag_match()** - - **in**:值是否在某个集合中 - - 如:**req_host_in()** - - **prefix_in**:值的前缀是否在某个集合中 - - 如:**req_path_prefix_in()** - - **suffix_in**:值的后缀是否在某个集合中 - - 如:**req_path_suffix_in()** - - **key_exist**:是否存在指定的key - - 如:**req_query_key_exist()** - - **value_in**:对给定的key,其value是否落在某个集合中 - - 如:**req_query_key_exist()** - - **value_prefix_in**:对给定的key,其value的前缀是否在某个集合中 - - 如:**req_header_value_prefix_in()** - - **value_suffix_in**:对给定的key,其value的后缀是否在某个集合中 - - 如:**req_header_value_suffix_in()** - - **range**:范围匹配 - - 如:**req_cip_range()** - - **regmatch**:正则匹配 - - 如:**req_url_regmatch()** - - 注:这类条件原语不合理使用将明显影响性能,谨慎使用 - - **contain**: 字符串包含匹配 - - 如:**req_cookie_value_contain()** +## 条件原语中比较的“动作”名称: +- **match**:精确匹配 + - 这种情况下,参数中会提供唯一的一个值供比较 + - 如:**req_tag_match()** +- **in**:值是否在某个集合中 + - 如:**req_host_in()** +- **prefix_in**:值的前缀是否在某个集合中 + - 如:**req_path_prefix_in()** +- **suffix_in**:值的后缀是否在某个集合中 + - 如:**req_path_suffix_in()** +- **key_exist**:是否存在指定的key + - 如:**req_query_key_exist()** +- **value_in**:对给定的key,其value是否落在某个集合中 + - 如:**req_query_key_exist()** +- **value_prefix_in**:对给定的key,其value的前缀是否在某个集合中 + - 如:**req_header_value_prefix_in()** +- **value_suffix_in**:对给定的key,其value的后缀是否在某个集合中 + - 如:**req_header_value_suffix_in()** +- **range**:范围匹配 + - 如:**req_cip_range()** +- **regmatch**:正则匹配 + - 如:**req_url_regmatch()** + - 注:这类条件原语不合理使用将明显影响性能,谨慎使用 +- **contain**: 字符串包含匹配 + - 如:**req_cookie_value_contain()** diff --git a/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md b/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md index 1bb871189..4928991e3 100644 --- a/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md +++ b/docs/zh_cn/configuration/cluster_conf/cluster_table.data.md @@ -28,7 +28,7 @@ cluster_table.data配置文件记录各后端集群包含的子集群及实例 ## 配置示例 -``` +```json { "Config": { "cluster_example": { diff --git a/docs/zh_cn/configuration/cluster_conf/gslb.data.md b/docs/zh_cn/configuration/cluster_conf/gslb.data.md index 8dc8c5083..256c2f6ac 100644 --- a/docs/zh_cn/configuration/cluster_conf/gslb.data.md +++ b/docs/zh_cn/configuration/cluster_conf/gslb.data.md @@ -18,7 +18,7 @@ gslb.data配置文件记录各集群内的多个子集群之间分流比例(GSLB ## 配置示例 -``` +```json { "Clusters": { "cluster_example": { diff --git a/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md b/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md index c44c63c85..b192c8af1 100644 --- a/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md +++ b/docs/zh_cn/configuration/server_data_conf/cluster_conf.data.md @@ -63,7 +63,7 @@ cluster_conf.data为集群转发配置文件。 ## 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/configuration/server_data_conf/host_rule.data.md b/docs/zh_cn/configuration/server_data_conf/host_rule.data.md index c2c4ce2e7..c3e277d75 100644 --- a/docs/zh_cn/configuration/server_data_conf/host_rule.data.md +++ b/docs/zh_cn/configuration/server_data_conf/host_rule.data.md @@ -21,7 +21,7 @@ host_rule.data是BFE的产品线域名表配置文件。 ## 配置示例 -``` +```json { "Version": "20190101000000", "DefaultProduct": null, diff --git a/docs/zh_cn/configuration/server_data_conf/name_conf.data.md b/docs/zh_cn/configuration/server_data_conf/name_conf.data.md index 9c09efb81..10e9b0b37 100644 --- a/docs/zh_cn/configuration/server_data_conf/name_conf.data.md +++ b/docs/zh_cn/configuration/server_data_conf/name_conf.data.md @@ -19,7 +19,7 @@ name_conf.data记录了服务名字和服务实例的映射关系。 ## 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/configuration/server_data_conf/route_rule.data.md b/docs/zh_cn/configuration/server_data_conf/route_rule.data.md index 87922b1e4..62e4f0d2d 100644 --- a/docs/zh_cn/configuration/server_data_conf/route_rule.data.md +++ b/docs/zh_cn/configuration/server_data_conf/route_rule.data.md @@ -18,7 +18,7 @@ route_rule.data 是BFE的分流配置文件。 ## 配置示例 -``` +```json { "Version": "20190101000000", "ProductRule": { diff --git a/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md b/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md index d1cc3dfb3..a514a2177 100644 --- a/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md +++ b/docs/zh_cn/configuration/server_data_conf/vip_rule.data.md @@ -16,7 +16,7 @@ vip_rule.data配置文件记录产品线的VIP列表。 ## 配置示例 -``` +```json { "Version": "20190101000000", "Vips": { diff --git a/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md b/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md index 3454ec2a7..c4eeb5ed0 100644 --- a/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md +++ b/docs/zh_cn/configuration/tls_conf/server_cert_conf.data.md @@ -20,7 +20,7 @@ server_cert_conf.data用于配置证书和密钥。 ## 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md b/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md index 2184e3be8..bebbdf1d0 100644 --- a/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md +++ b/docs/zh_cn/configuration/tls_conf/session_ticket_key.data.md @@ -13,7 +13,7 @@ session_ticket_key.data配置记录了session ticket key信息。 ## 配置示例 -``` +```json { "Version": "20190101000000", "SessionTicketKey": "08a0d852ef494143af613ef32d3c39314758885f7108e9ab021d55f422a454f7c9cd5a53978f48fa1063eadcdc06878f" diff --git a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md index 1f8683af6..9bea0c3d0 100644 --- a/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/zh_cn/configuration/tls_conf/tls_rule_conf.data.md @@ -27,7 +27,7 @@ tls_rule_conf.data配置TLS协议参数。 ## 配置示例 -``` +```json { "Version": "20190101000000", "DefaultNextProtos": ["h2", "http/1.1"], diff --git a/docs/zh_cn/development/module/how_to_write_module.md b/docs/zh_cn/development/module/how_to_write_module.md index 851476856..c9852fbdf 100644 --- a/docs/zh_cn/development/module/how_to_write_module.md +++ b/docs/zh_cn/development/module/how_to_write_module.md @@ -45,7 +45,7 @@ mod_block的代码位于[/bfe_modules/mod_block](https://github.com/baidu/bfe/tr 例如,在mod_block的初始化函数中,可以看到类似下面的逻辑,就是在注册配置加载的回调(详见[mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)): -``` +```golang // register web handler for reload err = whs.RegisterHandler(web_monitor.WebHandleReload, m.name, m.loadConfData) if err != nil { @@ -62,7 +62,8 @@ mod_block的代码位于[/bfe_modules/mod_block](https://github.com/baidu/bfe/tr 注意,对于不同的回调点,回调函数的形式可能不同。BFE所提供的回调点和回调函数的形式,可参考[BFE的回调机制](./bfe_callback.md) 例如,在mod_block中,编写了以下两个回调函数(详见[mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)): -``` + +```golang func (m *ModuleBlock) globalBlockHandler(session *bfe_basic.Session) int { ... } @@ -79,7 +80,7 @@ func (m *ModuleBlock) productBlockHandler(request *bfe_basic.Request) (int, *bfe 例如,在mod_block中,回调函数的注册逻辑如下(详见[mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)): -``` +```golang func (m *ModuleBlock) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHandlers, cr string) error { ... // register handler @@ -111,7 +112,7 @@ func (m *ModuleBlock) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHan 如,在mod_block中,有如下定义(详见[mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)): -``` +```golang type ModuleBlockState struct { ConnTotal *metrics.Counter // all connnetion checked ConnAccept *metrics.Counter // connection passed @@ -125,7 +126,8 @@ type ModuleBlockState struct { ``` 然后,要在ModuleBlock中定义一个类型为ModuleBlockState的成员变量,还需要定义一个Metrics类型的成员变量,用于相关的计算。 -``` + +```golang type ModuleBlock struct { ... state ModuleBlockState // module state @@ -134,7 +136,8 @@ type ModuleBlock struct { ``` 然后,需要在构造函数中做初始化的操作 -``` + +```golang func NewModuleBlock() *ModuleBlock { m := new(ModuleBlock) m.name = ModBlock @@ -149,7 +152,7 @@ func NewModuleBlock() *ModuleBlock { 如,在mod_block中,有如下逻辑(详见[mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)),其中monitorHandlers()是回调函数: -``` +```golang func (m *ModuleBlock) getState(params map[string][]string) ([]byte, error) { s := m.metrics.GetAll() return s.Format(params) @@ -171,7 +174,7 @@ func (m *ModuleBlock) monitorHandlers() map[string]interface{} { 然后,在模块的初始化时,需要注册这个回调函数 -``` +```golang // register web handler for monitor err = web_monitor.RegisterHandlers(whs, web_monitor.WebHandleMonitor, m.monitorHandlers()) if err != nil { @@ -185,10 +188,10 @@ func (m *ModuleBlock) monitorHandlers() map[string]interface{} { 如,在mod_block中,可以看到如下代码(详见[mod_block.go](https://github.com/baidu/bfe/tree/master/bfe_modules/mod_block/mod_block.go)): -``` +```golang func (m *ModuleBlock) globalBlockHandler(session *bfe_basic.Session) int { ... m.state.ConnTotal.Inc(1) ... } -``` \ No newline at end of file +``` diff --git a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md index 108cfeade..498d7d82d 100644 --- a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md @@ -50,7 +50,7 @@ user2:{SHA}fEqNCco3Yq9h5ZUglD3CZJT4lBs=:user2, 123456 ``` ### 配置示例 -``` +```json { "Config": { "example_product": [ diff --git a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md index 5daf55033..a330da019 100644 --- a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md @@ -59,7 +59,7 @@ OpenDebug = true ## 规则配置 ### 配置示例 -``` +```json { "Version": "Version", "Config": { diff --git a/docs/zh_cn/modules/mod_block/mod_block.md b/docs/zh_cn/modules/mod_block/mod_block.md index b1360266f..65fae89af 100644 --- a/docs/zh_cn/modules/mod_block/mod_block.md +++ b/docs/zh_cn/modules/mod_block/mod_block.md @@ -54,7 +54,7 @@ IPBlacklistPath = mod_block/ip_blacklist.data | CLOSE | 关闭连接 | ### 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/modules/mod_compress/mod_compress.md b/docs/zh_cn/modules/mod_compress/mod_compress.md index 60169f4c0..9e07471b6 100644 --- a/docs/zh_cn/modules/mod_compress/mod_compress.md +++ b/docs/zh_cn/modules/mod_compress/mod_compress.md @@ -46,7 +46,7 @@ OpenDebug = false | BROTLI | brotli压缩 | ### 配置示例 -``` +```json { "Config": { "example_product": [ diff --git a/docs/zh_cn/modules/mod_errors/mod_errors.md b/docs/zh_cn/modules/mod_errors/mod_errors.md index 9b7d74519..1fed6a200 100644 --- a/docs/zh_cn/modules/mod_errors/mod_errors.md +++ b/docs/zh_cn/modules/mod_errors/mod_errors.md @@ -42,7 +42,7 @@ DataPath = mod_errors/errors_rule.data | REDIRECT | 响应重定向至指定错误页 | ### 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/modules/mod_header/mod_header.md b/docs/zh_cn/modules/mod_header/mod_header.md index 473d5a7e0..b3164dc86 100644 --- a/docs/zh_cn/modules/mod_header/mod_header.md +++ b/docs/zh_cn/modules/mod_header/mod_header.md @@ -47,7 +47,7 @@ DataPath = mod_header/header_rule.data | RSP_HEADER_DEL | 删除响应头 | HeaderName | ### 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/modules/mod_redirect/mod_redirect.md b/docs/zh_cn/modules/mod_redirect/mod_redirect.md index 1ffc07fc3..92e0f439b 100644 --- a/docs/zh_cn/modules/mod_redirect/mod_redirect.md +++ b/docs/zh_cn/modules/mod_redirect/mod_redirect.md @@ -46,7 +46,7 @@ DataPath = mod_redirect/redirect.data | SCHEME_SET | 设置重定向URL为原始URL并修改协议(支持HTTP和HTTPS) | ### 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md index 9710cc0ef..9964387c4 100644 --- a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md +++ b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md @@ -52,7 +52,7 @@ DataPath = mod_rewrite/rewrite.data | QUERY_DEL_ALL_EXCEPT | 删除除指定key外的所有query | ### 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/modules/mod_static/mod_static.md b/docs/zh_cn/modules/mod_static/mod_static.md index 2112add5a..8e4befa63 100644 --- a/docs/zh_cn/modules/mod_static/mod_static.md +++ b/docs/zh_cn/modules/mod_static/mod_static.md @@ -42,7 +42,7 @@ MimeTypePath = mod_static/mime_type.data | Config[v][].Action.Param[1] | String
第二个参数为默认静态文件名 | ### 配置示例 -``` +```json { "Config": { "example_product": [ @@ -74,7 +74,7 @@ MIME配置文件: conf/mod_static/mime_type.data | Config[v] | String
MIME类型 | ### 配置示例 -``` +```json { "Config": { ".avi": "video/x-msvideo", diff --git a/docs/zh_cn/modules/mod_tag/mod_tag.md b/docs/zh_cn/modules/mod_tag/mod_tag.md index fe2f2e087..acc82a055 100644 --- a/docs/zh_cn/modules/mod_tag/mod_tag.md +++ b/docs/zh_cn/modules/mod_tag/mod_tag.md @@ -41,7 +41,7 @@ OpenDebug = false | Config[v][].Last | Boolean
设置为true时,命中当前规则后停止处理后续规则 | ### 配置示例 -``` +```json { "Version": "20200218210000", "Config": { diff --git a/docs/zh_cn/modules/mod_trace/mod_trace.md b/docs/zh_cn/modules/mod_trace/mod_trace.md index c842ff04a..e6c64d068 100644 --- a/docs/zh_cn/modules/mod_trace/mod_trace.md +++ b/docs/zh_cn/modules/mod_trace/mod_trace.md @@ -53,7 +53,7 @@ mod_trace根据自定义的条件,为请求开启分布式跟踪。 #### 基于Zipkin示例 -``` +```json [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe @@ -171,7 +171,7 @@ SecretToken = "" | Config[v][].Enable | Boolean
是否开启trace | ### 配置示例 -``` +```json { "Version": "20200218210000", "Config": { diff --git a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md index c0015d6c0..6cdf1f274 100644 --- a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md @@ -35,7 +35,7 @@ DataPath = mod_trust_clientip/trust_client_ip.data | Config[v][].End | String
IP段结束地址 | ### 配置示例 -``` +```json { "Version": "20190101000000", "Config": { diff --git a/docs/zh_cn/modules/mod_userid/mod_userid.md b/docs/zh_cn/modules/mod_userid/mod_userid.md index f917fb108..ad2437351 100644 --- a/docs/zh_cn/modules/mod_userid/mod_userid.md +++ b/docs/zh_cn/modules/mod_userid/mod_userid.md @@ -41,7 +41,7 @@ OpenDebug = true | Config[v][].Params.MaxAge | Cookie的MaxAge属性 | ### 配置示例 -``` +```json { "Version": "2019-12-10184356", "Config": { From 8c1d9bb3ecd44532af171a610b35e1f2389c71f9 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Tue, 12 May 2020 18:03:06 +0800 Subject: [PATCH 078/111] docs: fix minor issues --- docs/en_us/introduction/comparison.md | 1 + docs/zh_cn/introduction/comparison.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/en_us/introduction/comparison.md b/docs/en_us/introduction/comparison.md index 55ee95665..f0ad39258 100644 --- a/docs/en_us/introduction/comparison.md +++ b/docs/en_us/introduction/comparison.md @@ -7,6 +7,7 @@ NOTE: Most of the projects below are under active development. Thus some of the ## Briefs of BFE and similar systems The brief decriptions of several systems are as follows: + + BFE: BFE is an open-source layer 7 load balancer. + [Nginx](http://nginx.org/en/): nginx is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server. + [Traefik](https://github.com/containous/traefik): Traefik is a modern HTTP reverse proxy and load balancer. diff --git a/docs/zh_cn/introduction/comparison.md b/docs/zh_cn/introduction/comparison.md index c681e001a..3c35de818 100644 --- a/docs/zh_cn/introduction/comparison.md +++ b/docs/zh_cn/introduction/comparison.md @@ -7,6 +7,7 @@ ## BFE及相关系统的定位 在各开源系统的官网上,几个相关系统的定位描述如下: + + BFE: BFE是一个开源的七层负载均衡系统。 + [Nginx](http://nginx.org/en/): Nginx是HTTP服务、反向代理服务、邮件代理服务、通用TCP/UDP代理服务。 + [Traefik](https://github.com/containous/traefik): Traefik是先进的HTTP反向代理和负载均衡。 From 352c53420d957c98a2700bb0561092b2c6b5f84b Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Thu, 14 May 2020 16:02:56 +0800 Subject: [PATCH 079/111] Add Condition primitive: req_host_suffix_in (#479) --- bfe_basic/condition/build.go | 7 +++++++ bfe_basic/condition/parser/semant.go | 1 + 2 files changed, 8 insertions(+) diff --git a/bfe_basic/condition/build.go b/bfe_basic/condition/build.go index e52de0207..7d2470edf 100644 --- a/bfe_basic/condition/build.go +++ b/bfe_basic/condition/build.go @@ -172,6 +172,13 @@ func buildPrimitive(node *parser.CallExpr) (Condition, error) { fetcher: &HostFetcher{}, matcher: NewRegMatcher(reg), }, nil + case "req_host_suffix_in": + return &PrimitiveCond{ + name: node.Fun.Name, + node: node, + fetcher: &HostFetcher{}, + matcher: NewSuffixInMatcher(node.Args[0].Value, true), + }, nil case "req_path_in": return &PrimitiveCond{ name: node.Fun.Name, diff --git a/bfe_basic/condition/parser/semant.go b/bfe_basic/condition/parser/semant.go index fc907cb65..8052abfd5 100644 --- a/bfe_basic/condition/parser/semant.go +++ b/bfe_basic/condition/parser/semant.go @@ -31,6 +31,7 @@ var funcProtos = map[string][]Token{ "req_host_in": {STRING}, "req_host_regmatch": {STRING}, "req_host_tag_in": {STRING}, + "req_host_suffix_in": {STRING}, "req_path_in": {STRING, BOOL}, "req_path_prefix_in": {STRING, BOOL}, "req_path_suffix_in": {STRING, BOOL}, From 24907221394bba34a28cb68a25b75ba69eb6d009 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Fri, 15 May 2020 17:59:26 +0800 Subject: [PATCH 080/111] docs: update operation/performance.md (#480) --- docs/images/bfe.svg | 1408 +++++++++++++++++++++++++++ docs/zh_cn/operation/performance.md | 1 + 2 files changed, 1409 insertions(+) create mode 100644 docs/images/bfe.svg diff --git a/docs/images/bfe.svg b/docs/images/bfe.svg new file mode 100644 index 000000000..ffd3a71ae --- /dev/null +++ b/docs/images/bfe.svg @@ -0,0 +1,1408 @@ + + + + + + + + + + + + + + +Flame Graph + +Reset Zoom +Search +ic + + + +runtime.memmove (2 samples, 1.85%) +r.. + + +github.com/baidu/bfe/bfe_server.(*ReverseProxy).ServeHTTP (10 samples, 9.26%) +github.com/ba.. + + +github.com/baidu/bfe/bfe_server.(*ReverseProxy).clusterInvoke.func1 (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Writer).flush (3 samples, 2.78%) +gi.. + + +internal/poll.(*FD).destroy (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_http.(*persistConn).close (1 samples, 0.93%) + + + +syscall.syscall (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Writer).Flush (2 samples, 1.85%) +g.. + + +io.(*LimitedReader).Read (7 samples, 6.48%) +io.(*Lim.. + + +time.Time.String (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.StartUp.func1 (2 samples, 1.85%) +g.. + + +runtime.chansend (1 samples, 0.93%) + + + +net.(*conn).Write (2 samples, 1.85%) +n.. + + +runtime.systemstack (15 samples, 13.89%) +runtime.systemstack + + +github.com/baidu/bfe/bfe_module.(*HandlerList).FilterResponse (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Writer).Flush (3 samples, 2.78%) +gi.. + + +github.com/baidu/bfe/bfe_http.(*bodyEOFSignal).condfn (2 samples, 1.85%) +g.. + + +runtime.sysUsed (1 samples, 0.93%) + + + +net.(*conn).Write (2 samples, 1.85%) +n.. + + +net.(*TCPListener).accept (2 samples, 1.85%) +n.. + + +internal/poll.(*FD).Write (2 samples, 1.85%) +i.. + + +net.sysSocket (6 samples, 5.56%) +net.sys.. + + +net.(*netFD).Close (1 samples, 0.93%) + + + +runtime.notewakeup (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*BfeServer).ServeHttp (2 samples, 1.85%) +g.. + + +syscall.syscall (2 samples, 1.85%) +s.. + + +syscall.rawSyscall (2 samples, 1.85%) +s.. + + +internal/poll.(*FD).Write (2 samples, 1.85%) +i.. + + +runtime.chansend1 (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*response).Flush (5 samples, 4.63%) +githu.. + + +syscall.Read (1 samples, 0.93%) + + + +syscall.read (1 samples, 0.93%) + + + +runtime.(*gcWork).balance (2 samples, 1.85%) +r.. + + +runtime.startm (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_http.ReadRequest (7 samples, 6.48%) +github.c.. + + +net.(*conn).Close (1 samples, 0.93%) + + + +runtime.semasleep (11 samples, 10.19%) +runtime.semasl.. + + +runtime.tracebackdefers (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Reader).Peek (2 samples, 1.85%) +g.. + + +runtime.systemstack (3 samples, 2.78%) +ru.. + + +syscall.connect (2 samples, 1.85%) +s.. + + +syscall.syscall (1 samples, 0.93%) + + + +syscall.Socket (2 samples, 1.85%) +s.. + + +github.com/baidu/bfe/bfe_bufio.(*Writer).Flush (2 samples, 1.85%) +g.. + + +syscall.Connect (2 samples, 1.85%) +s.. + + +github.com/baidu/bfe/bfe_bufio.(*Reader).fill (7 samples, 6.48%) +github.c.. + + +github.com/baidu/bfe/bfe_server.createTransport.func1 (11 samples, 10.19%) +github.com/bai.. + + +net.(*Dialer).Dial (11 samples, 10.19%) +net.(*Dialer)... + + +runtime.pthread_mutex_unlock (1 samples, 0.93%) + + + +runtime.newstack (1 samples, 0.93%) + + + +syscall.syscall (2 samples, 1.85%) +s.. + + +github.com/baidu/bfe/bfe_server.(*conn).serve (22 samples, 20.37%) +github.com/baidu/bfe/bfe_server.. + + +runtime.nanotime (1 samples, 0.93%) + + + +net.(*conn).Write (5 samples, 4.63%) +net.(.. + + +runtime.semawakeup (1 samples, 0.93%) + + + +runtime.notewakeup (1 samples, 0.93%) + + + +runtime.assertE2I2 (1 samples, 0.93%) + + + +runtime.adjustdefers (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*conn).finish (1 samples, 0.93%) + + + +net.(*sysDialer).dialTCP (10 samples, 9.26%) +net.(*sysDial.. + + +runtime.notesleep (2 samples, 1.85%) +r.. + + +github.com/baidu/bfe/bfe_module.(*HandlerList).FilterAccept (1 samples, 0.93%) + + + +runtime.mstart1 (18 samples, 16.67%) +runtime.mstart1 + + +syscall.getsockname (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*ReverseProxy).FinishReq (1 samples, 0.93%) + + + +runtime.pthread_cond_signal (1 samples, 0.93%) + + + +syscall.setsockopt (1 samples, 0.93%) + + + +syscall.fcntl (4 samples, 3.70%) +sysc.. + + +runtime.findObject (1 samples, 0.93%) + + + +internal/poll.(*FD).Read (7 samples, 6.48%) +internal.. + + +net.(*netFD).Write (2 samples, 1.85%) +n.. + + +net.(*netFD).Close (1 samples, 0.93%) + + + +runtime.notesleep (11 samples, 10.19%) +runtime.notesl.. + + +runtime.notetsleep (3 samples, 2.78%) +ru.. + + +syscall.syscall (2 samples, 1.85%) +s.. + + +runtime.pthread_cond_wait (11 samples, 10.19%) +runtime.pthrea.. + + +github.com/baidu/go-lib/log/log4go.NewTimeFileLogWriter.func1 (1 samples, 0.93%) + + + +runtime.adjustpointers (1 samples, 0.93%) + + + +runtime.wakep (1 samples, 0.93%) + + + +runtime.(*mheap).alloc_m (1 samples, 0.93%) + + + +runtime.startm (6 samples, 5.56%) +runtime.. + + +runtime.copystack (1 samples, 0.93%) + + + +runtime.pthread_cond_signal (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_bufio.(*Reader).ReadSlice (7 samples, 6.48%) +github.c.. + + +runtime.usleep (8 samples, 7.41%) +runtime.us.. + + +net.setKeepAlivePeriod (1 samples, 0.93%) + + + +runtime.adjustframe (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Writer).flush (2 samples, 1.85%) +g.. + + +runtime.park_m (21 samples, 19.44%) +runtime.park_m + + +runtime.notewakeup (6 samples, 5.56%) +runtime.. + + +internal/poll.(*FD).Read (1 samples, 0.93%) + + + +runtime.stopm (11 samples, 10.19%) +runtime.stopm + + +github.com/baidu/bfe/bfe_http.(*Transport).dial (11 samples, 10.19%) +github.com/bai.. + + +runtime.kevent (3 samples, 2.78%) +ru.. + + +runtime.nanotime (7 samples, 6.48%) +runtime... + + +github.com/baidu/bfe/bfe_bufio.(*Reader).fill (2 samples, 1.85%) +g.. + + +github.com/baidu/bfe/bfe_server.(*BfeListener).Accept (2 samples, 1.85%) +g.. + + +github.com/baidu/bfe/bfe_server.(*response).Flush (2 samples, 1.85%) +g.. + + +runtime.goexit0 (8 samples, 7.41%) +runtime.go.. + + +os.(*File).write (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_net/textproto.(*Reader).ReadLine (7 samples, 6.48%) +github.c.. + + +runtime.(*mheap).alloc.func1 (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*conn).readRequest (7 samples, 6.48%) +github.c.. + + +runtime.findrunnable (20 samples, 18.52%) +runtime.findrunnable + + +net.(*sysDialer).dialSingle (10 samples, 9.26%) +net.(*sysDial.. + + +github.com/baidu/bfe/bfe_module.(*HandlerList).FilterFinish (1 samples, 0.93%) + + + +runtime.pthread_cond_wait (2 samples, 1.85%) +r.. + + +github.com/baidu/bfe/bfe_net/textproto.(*Reader).readLineSlice (7 samples, 6.48%) +github.c.. + + +runtime.kevent (2 samples, 1.85%) +r.. + + +runtime.notetsleep_internal (1 samples, 0.93%) + + + +runtime.mapdelete_fast64 (1 samples, 0.93%) + + + +runtime.(*waitq).dequeue (1 samples, 0.93%) + + + +syscall.fcntl (1 samples, 0.93%) + + + +syscall.Write (2 samples, 1.85%) +s.. + + +runtime.schedule (21 samples, 19.44%) +runtime.schedule + + +runtime.semasleep (2 samples, 1.85%) +r.. + + +runtime.gcBgMarkWorker (3 samples, 2.78%) +ru.. + + +syscall.socket (2 samples, 1.85%) +s.. + + +net.(*sysDialer).doDialTCP (10 samples, 9.26%) +net.(*sysDial.. + + +internal/poll.(*FD).Close (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_modules/mod_access.onLogFmtSesEndTime (1 samples, 0.93%) + + + +syscall.Read (7 samples, 6.48%) +syscall... + + +runtime.scanobject (1 samples, 0.93%) + + + +internal/poll.(*FD).Write (5 samples, 4.63%) +inter.. + + +syscall.rawSyscall (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*chunkWriter).flush (2 samples, 1.85%) +g.. + + +runtime.handoff (2 samples, 1.85%) +r.. + + +runtime.madvise (1 samples, 0.93%) + + + +runtime.wakep (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_modules/mod_access.(*ModuleAccess).requestLogHandler (1 samples, 0.93%) + + + +runtime.(*mheap).allocSpanLocked (1 samples, 0.93%) + + + +github.com/baidu/go-lib/log/log4go.Logger.Info (1 samples, 0.93%) + + + +time.Time.AppendFormat (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_http.(*persistConn).closeLocked (1 samples, 0.93%) + + + +syscall.GetsockoptInt (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_module.(*genericFinishFilter).FilterFinish (1 samples, 0.93%) + + + +runtime.runqsteal (1 samples, 0.93%) + + + +runtime.startm (1 samples, 0.93%) + + + +runtime.wakep (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_http.(*Transport).setReqConn (1 samples, 0.93%) + + + +os.(*File).Write (1 samples, 0.93%) + + + +runtime.semawakeup (1 samples, 0.93%) + + + +net.(*netFD).connect (3 samples, 2.78%) +ne.. + + +github.com/baidu/bfe/bfe_server.(*conn).serve.func1 (1 samples, 0.93%) + + + +time.Time.Format (1 samples, 0.93%) + + + +runtime.semawakeup (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_server.(*conn).serve.func2 (2 samples, 1.85%) +g.. + + +syscall.accept (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_http.(*Transport).dialConn (11 samples, 10.19%) +github.com/bai.. + + +runtime.walltime (1 samples, 0.93%) + + + +net.(*TCPListener).Accept (2 samples, 1.85%) +n.. + + +runtime.pthread_cond_signal (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_server.(*chunkWriter).Write (2 samples, 1.85%) +g.. + + +net.(*netFD).Write (2 samples, 1.85%) +n.. + + +runtime.notewakeup (2 samples, 1.85%) +r.. + + +syscall.Getsockname (1 samples, 0.93%) + + + +syscall.syscall6 (1 samples, 0.93%) + + + +runtime.aeshash64 (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*BfeServer).Serve (2 samples, 1.85%) +g.. + + +syscall.SetsockoptInt (1 samples, 0.93%) + + + +syscall.syscall (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Writer).Flush (5 samples, 4.63%) +githu.. + + +syscall.Write (5 samples, 4.63%) +sysca.. + + +runtime.stopm (2 samples, 1.85%) +r.. + + +runtime.netpoll (4 samples, 3.70%) +runt.. + + +all (108 samples, 100%) + + + +syscall.SetNonblock (1 samples, 0.93%) + + + +net.(*netFD).accept (2 samples, 1.85%) +n.. + + +net.(*Dialer).DialContext (11 samples, 10.19%) +net.(*Dialer)... + + +runtime.startm (1 samples, 0.93%) + + + +runtime.resetspinning (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Writer).flush (2 samples, 1.85%) +g.. + + +runtime.newproc1 (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_util.CopyWithoutBuffer (4 samples, 3.70%) +gith.. + + +github.com/baidu/bfe/bfe_server.(*ReverseProxy).sendResponse (9 samples, 8.33%) +github.com/.. + + +runtime.gcBgMarkWorker.func2 (3 samples, 2.78%) +ru.. + + +runtime.mcall (29 samples, 26.85%) +runtime.mcall + + +net.(*conn).Close (1 samples, 0.93%) + + + +syscall.syscall (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*liveSwitchReader).Read (7 samples, 6.48%) +github.c.. + + +syscall.syscall6 (1 samples, 0.93%) + + + +internal/poll.(*FD).Write (1 samples, 0.93%) + + + +runtime.semasleep (1 samples, 0.93%) + + + +net.(*sysDialer).dialSerial (10 samples, 9.26%) +net.(*sysDial.. + + +runtime.ready (6 samples, 5.56%) +runtime.. + + +syscall.syscall (4 samples, 3.70%) +sysc.. + + +syscall.write (5 samples, 4.63%) +sysca.. + + +time.now (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_bufio.(*Reader).ReadLine (7 samples, 6.48%) +github.c.. + + +syscall.syscall (7 samples, 6.48%) +syscall... + + +syscall.getsockopt (1 samples, 0.93%) + + + +syscall.write (2 samples, 1.85%) +s.. + + +net.(*netFD).Read (1 samples, 0.93%) + + + +syscall.write (2 samples, 1.85%) +s.. + + +internal/poll.(*FD).decref (1 samples, 0.93%) + + + +runtime.newproc.func1 (6 samples, 5.56%) +runtime.. + + +runtime.runqgrab (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_http.(*Request).write (3 samples, 2.78%) +gi.. + + +internal/poll.(*FD).SetsockoptInt (1 samples, 0.93%) + + + +net.DialTimeout (11 samples, 10.19%) +net.DialTimeout + + +internal/poll.(*FD).destroy (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_modules/mod_access.(*ModuleAccess).sessionLogHandler (1 samples, 0.93%) + + + +internal/poll.(*FD).decref (1 samples, 0.93%) + + + +runtime.pthread_cond_timedwait_relative_np (1 samples, 0.93%) + + + +runtime.gcDrain (3 samples, 2.78%) +ru.. + + +runtime.usleep (1 samples, 0.93%) + + + +runtime.semawakeup (2 samples, 1.85%) +r.. + + +runtime.sysmon (18 samples, 16.67%) +runtime.sysmon + + +syscall.Close (1 samples, 0.93%) + + + +runtime.goready.func1 (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_server.(*conn).close (1 samples, 0.93%) + + + +syscall.Write (1 samples, 0.93%) + + + +internal/poll.(*FD).Accept (2 samples, 1.85%) +i.. + + +runtime.findrunnable (7 samples, 6.48%) +runtime... + + +net.(*conn).Read (1 samples, 0.93%) + + + +syscall.write (1 samples, 0.93%) + + + +runtime.nanotime (2 samples, 1.85%) +r.. + + +github.com/baidu/bfe/bfe_http.(*bodyEOFSignal).Read (2 samples, 1.85%) +g.. + + +github.com/baidu/bfe/bfe_http.(*persistConn).writeLoop (4 samples, 3.70%) +gith.. + + +net.internetSocket (10 samples, 9.26%) +net.internetS.. + + +internal/poll.(*FD).Close (1 samples, 0.93%) + + + +net.(*conn).Read (7 samples, 6.48%) +net.(*co.. + + +time.appendInt (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_http.(*persistConn).readLoop (3 samples, 2.78%) +gi.. + + +runtime.pthread_cond_signal (2 samples, 1.85%) +r.. + + +syscall.Write (2 samples, 1.85%) +s.. + + +syscall.syscall (1 samples, 0.93%) + + + +runtime.getitab (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*ReverseProxy).clusterInvoke (1 samples, 0.93%) + + + +net.(*netFD).Read (7 samples, 6.48%) +net.(*ne.. + + +net.(*netFD).Write (5 samples, 4.63%) +net.(.. + + +runtime.semawakeup (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_bufio.(*Writer).flush (5 samples, 4.63%) +githu.. + + +github.com/baidu/bfe/bfe_module.(*genericResponseFilter).FilterResponse (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_http.(*persistConn).readLoop.func3 (2 samples, 1.85%) +g.. + + +runtime.wakep (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*chunkWriter).flush (5 samples, 4.63%) +githu.. + + +net.(*netFD).dial (4 samples, 3.70%) +net... + + +syscall.read (7 samples, 6.48%) +syscall... + + +syscall.CloseOnExec (4 samples, 3.70%) +sysc.. + + +runtime.netpoll (6 samples, 5.56%) +runtime.. + + +runtime.mstart (33 samples, 30.56%) +runtime.mstart + + +net.socket (10 samples, 9.26%) +net.socket + + +runtime.notewakeup (6 samples, 5.56%) +runtime.. + + +github.com/baidu/bfe/bfe_server.(*ReverseProxy).copyResponse (9 samples, 8.33%) +github.com/.. + + +runtime.entersyscall_sysmon (2 samples, 1.85%) +r.. + + +syscall.syscall (5 samples, 4.63%) +sysca.. + + +syscall.Close (1 samples, 0.93%) + + + +time.Now (1 samples, 0.93%) + + + +internal/poll.accept (2 samples, 1.85%) +i.. + + +runtime.gorecover (1 samples, 0.93%) + + + +syscall.syscall (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_server.(*conn).serveRequest (11 samples, 10.19%) +github.com/bai.. + + +github.com/baidu/bfe/bfe_http.(*Transport).putIdleConn (1 samples, 0.93%) + + + +syscall.Accept (1 samples, 0.93%) + + + +github.com/baidu/bfe/bfe_http.(*Transport).getConn.func1 (11 samples, 10.19%) +github.com/bai.. + + +runtime.resetspinning (1 samples, 0.93%) + + + +runtime.schedule (8 samples, 7.41%) +runtime.sc.. + + + diff --git a/docs/zh_cn/operation/performance.md b/docs/zh_cn/operation/performance.md index 3354f7b4d..aeec96d9f 100644 --- a/docs/zh_cn/operation/performance.md +++ b/docs/zh_cn/operation/performance.md @@ -37,3 +37,4 @@ $ ./flamegraph.pl bfe.flame > bfe.svg ``` * 在浏览器中打开bfe.svg查看 +![火焰图示例](../../images/bfe.svg) From 5bb9a9dbabeabfa604f3ad6fc7969ccaef19c51a Mon Sep 17 00:00:00 2001 From: yangwensi Date: Fri, 15 May 2020 19:41:39 +0800 Subject: [PATCH 081/111] docs: add material template (#481) --- docs/en_us/index.md | 4 + docs/material/.icons/fontawesome/LICENSE.txt | 34 +++ .../.icons/fontawesome/brands/500px.svg | 1 + .../fontawesome/brands/accessible-icon.svg | 1 + .../.icons/fontawesome/brands/accusoft.svg | 1 + .../brands/acquisitions-incorporated.svg | 1 + .../.icons/fontawesome/brands/adn.svg | 1 + .../.icons/fontawesome/brands/adobe.svg | 1 + .../.icons/fontawesome/brands/adversal.svg | 1 + .../fontawesome/brands/affiliatetheme.svg | 1 + .../.icons/fontawesome/brands/airbnb.svg | 1 + .../.icons/fontawesome/brands/algolia.svg | 1 + .../.icons/fontawesome/brands/alipay.svg | 1 + .../.icons/fontawesome/brands/amazon-pay.svg | 1 + .../.icons/fontawesome/brands/amazon.svg | 1 + .../.icons/fontawesome/brands/amilia.svg | 1 + .../.icons/fontawesome/brands/android.svg | 1 + .../.icons/fontawesome/brands/angellist.svg | 1 + .../fontawesome/brands/angrycreative.svg | 1 + .../.icons/fontawesome/brands/angular.svg | 1 + .../fontawesome/brands/app-store-ios.svg | 1 + .../.icons/fontawesome/brands/app-store.svg | 1 + .../.icons/fontawesome/brands/apper.svg | 1 + .../.icons/fontawesome/brands/apple-pay.svg | 1 + .../.icons/fontawesome/brands/apple.svg | 1 + .../.icons/fontawesome/brands/artstation.svg | 1 + .../.icons/fontawesome/brands/asymmetrik.svg | 1 + .../.icons/fontawesome/brands/atlassian.svg | 1 + .../.icons/fontawesome/brands/audible.svg | 1 + .../fontawesome/brands/autoprefixer.svg | 1 + .../.icons/fontawesome/brands/avianex.svg | 1 + .../.icons/fontawesome/brands/aviato.svg | 1 + .../.icons/fontawesome/brands/aws.svg | 1 + .../.icons/fontawesome/brands/bandcamp.svg | 1 + .../.icons/fontawesome/brands/battle-net.svg | 1 + .../fontawesome/brands/behance-square.svg | 1 + .../.icons/fontawesome/brands/behance.svg | 1 + .../.icons/fontawesome/brands/bimobject.svg | 1 + .../.icons/fontawesome/brands/bitbucket.svg | 1 + .../.icons/fontawesome/brands/bitcoin.svg | 1 + .../.icons/fontawesome/brands/bity.svg | 1 + .../.icons/fontawesome/brands/black-tie.svg | 1 + .../.icons/fontawesome/brands/blackberry.svg | 1 + .../.icons/fontawesome/brands/blogger-b.svg | 1 + .../.icons/fontawesome/brands/blogger.svg | 1 + .../.icons/fontawesome/brands/bluetooth-b.svg | 1 + .../.icons/fontawesome/brands/bluetooth.svg | 1 + .../.icons/fontawesome/brands/bootstrap.svg | 1 + .../.icons/fontawesome/brands/btc.svg | 1 + .../.icons/fontawesome/brands/buffer.svg | 1 + .../fontawesome/brands/buromobelexperte.svg | 1 + .../.icons/fontawesome/brands/buy-n-large.svg | 1 + .../.icons/fontawesome/brands/buysellads.svg | 1 + .../brands/canadian-maple-leaf.svg | 1 + .../fontawesome/brands/cc-amazon-pay.svg | 1 + .../.icons/fontawesome/brands/cc-amex.svg | 1 + .../fontawesome/brands/cc-apple-pay.svg | 1 + .../fontawesome/brands/cc-diners-club.svg | 1 + .../.icons/fontawesome/brands/cc-discover.svg | 1 + .../.icons/fontawesome/brands/cc-jcb.svg | 1 + .../fontawesome/brands/cc-mastercard.svg | 1 + .../.icons/fontawesome/brands/cc-paypal.svg | 1 + .../.icons/fontawesome/brands/cc-stripe.svg | 1 + .../.icons/fontawesome/brands/cc-visa.svg | 1 + .../.icons/fontawesome/brands/centercode.svg | 1 + .../.icons/fontawesome/brands/centos.svg | 1 + .../.icons/fontawesome/brands/chrome.svg | 1 + .../.icons/fontawesome/brands/chromecast.svg | 1 + .../.icons/fontawesome/brands/cloudscale.svg | 1 + .../.icons/fontawesome/brands/cloudsmith.svg | 1 + .../fontawesome/brands/cloudversify.svg | 1 + .../.icons/fontawesome/brands/codepen.svg | 1 + .../.icons/fontawesome/brands/codiepie.svg | 1 + .../.icons/fontawesome/brands/confluence.svg | 1 + .../fontawesome/brands/connectdevelop.svg | 1 + .../.icons/fontawesome/brands/contao.svg | 1 + .../fontawesome/brands/cotton-bureau.svg | 1 + .../.icons/fontawesome/brands/cpanel.svg | 1 + .../brands/creative-commons-by.svg | 1 + .../brands/creative-commons-nc-eu.svg | 1 + .../brands/creative-commons-nc-jp.svg | 1 + .../brands/creative-commons-nc.svg | 1 + .../brands/creative-commons-nd.svg | 1 + .../brands/creative-commons-pd-alt.svg | 1 + .../brands/creative-commons-pd.svg | 1 + .../brands/creative-commons-remix.svg | 1 + .../brands/creative-commons-sa.svg | 1 + .../brands/creative-commons-sampling-plus.svg | 1 + .../brands/creative-commons-sampling.svg | 1 + .../brands/creative-commons-share.svg | 1 + .../brands/creative-commons-zero.svg | 1 + .../fontawesome/brands/creative-commons.svg | 1 + .../fontawesome/brands/critical-role.svg | 1 + .../.icons/fontawesome/brands/css3-alt.svg | 1 + .../.icons/fontawesome/brands/css3.svg | 1 + .../.icons/fontawesome/brands/cuttlefish.svg | 1 + .../fontawesome/brands/d-and-d-beyond.svg | 1 + .../.icons/fontawesome/brands/d-and-d.svg | 1 + .../.icons/fontawesome/brands/dailymotion.svg | 1 + .../.icons/fontawesome/brands/dashcube.svg | 1 + .../.icons/fontawesome/brands/delicious.svg | 1 + .../.icons/fontawesome/brands/deploydog.svg | 1 + .../.icons/fontawesome/brands/deskpro.svg | 1 + .../.icons/fontawesome/brands/dev.svg | 1 + .../.icons/fontawesome/brands/deviantart.svg | 1 + .../.icons/fontawesome/brands/dhl.svg | 1 + .../.icons/fontawesome/brands/diaspora.svg | 1 + .../.icons/fontawesome/brands/digg.svg | 1 + .../fontawesome/brands/digital-ocean.svg | 1 + .../.icons/fontawesome/brands/discord.svg | 1 + .../.icons/fontawesome/brands/discourse.svg | 1 + .../.icons/fontawesome/brands/dochub.svg | 1 + .../.icons/fontawesome/brands/docker.svg | 1 + .../fontawesome/brands/draft2digital.svg | 1 + .../fontawesome/brands/dribbble-square.svg | 1 + .../.icons/fontawesome/brands/dribbble.svg | 1 + .../.icons/fontawesome/brands/dropbox.svg | 1 + .../.icons/fontawesome/brands/drupal.svg | 1 + .../.icons/fontawesome/brands/dyalog.svg | 1 + .../.icons/fontawesome/brands/earlybirds.svg | 1 + .../.icons/fontawesome/brands/ebay.svg | 1 + .../.icons/fontawesome/brands/edge.svg | 1 + .../.icons/fontawesome/brands/elementor.svg | 1 + .../.icons/fontawesome/brands/ello.svg | 1 + .../.icons/fontawesome/brands/ember.svg | 1 + .../.icons/fontawesome/brands/empire.svg | 1 + .../.icons/fontawesome/brands/envira.svg | 1 + .../.icons/fontawesome/brands/erlang.svg | 1 + .../.icons/fontawesome/brands/ethereum.svg | 1 + .../.icons/fontawesome/brands/etsy.svg | 1 + .../.icons/fontawesome/brands/evernote.svg | 1 + .../fontawesome/brands/expeditedssl.svg | 1 + .../.icons/fontawesome/brands/facebook-f.svg | 1 + .../fontawesome/brands/facebook-messenger.svg | 1 + .../fontawesome/brands/facebook-square.svg | 1 + .../.icons/fontawesome/brands/facebook.svg | 1 + .../brands/fantasy-flight-games.svg | 1 + .../.icons/fontawesome/brands/fedex.svg | 1 + .../.icons/fontawesome/brands/fedora.svg | 1 + .../.icons/fontawesome/brands/figma.svg | 1 + .../fontawesome/brands/firefox-browser.svg | 1 + .../.icons/fontawesome/brands/firefox.svg | 1 + .../fontawesome/brands/first-order-alt.svg | 1 + .../.icons/fontawesome/brands/first-order.svg | 1 + .../.icons/fontawesome/brands/firstdraft.svg | 1 + .../.icons/fontawesome/brands/flickr.svg | 1 + .../.icons/fontawesome/brands/flipboard.svg | 1 + .../.icons/fontawesome/brands/fly.svg | 1 + .../fontawesome/brands/font-awesome-alt.svg | 1 + .../fontawesome/brands/font-awesome-flag.svg | 1 + .../brands/font-awesome-logo-full.svg | 1 + .../fontawesome/brands/font-awesome.svg | 1 + .../fontawesome/brands/fonticons-fi.svg | 1 + .../.icons/fontawesome/brands/fonticons.svg | 1 + .../fontawesome/brands/fort-awesome-alt.svg | 1 + .../fontawesome/brands/fort-awesome.svg | 1 + .../.icons/fontawesome/brands/forumbee.svg | 1 + .../.icons/fontawesome/brands/foursquare.svg | 1 + .../fontawesome/brands/free-code-camp.svg | 1 + .../.icons/fontawesome/brands/freebsd.svg | 1 + .../.icons/fontawesome/brands/fulcrum.svg | 1 + .../fontawesome/brands/galactic-republic.svg | 1 + .../fontawesome/brands/galactic-senate.svg | 1 + .../.icons/fontawesome/brands/get-pocket.svg | 1 + .../.icons/fontawesome/brands/gg-circle.svg | 1 + .../material/.icons/fontawesome/brands/gg.svg | 1 + .../.icons/fontawesome/brands/git-alt.svg | 1 + .../.icons/fontawesome/brands/git-square.svg | 1 + .../.icons/fontawesome/brands/git.svg | 1 + .../.icons/fontawesome/brands/github-alt.svg | 1 + .../fontawesome/brands/github-square.svg | 1 + .../.icons/fontawesome/brands/github.svg | 1 + .../.icons/fontawesome/brands/gitkraken.svg | 1 + .../.icons/fontawesome/brands/gitlab.svg | 1 + .../.icons/fontawesome/brands/gitter.svg | 1 + .../.icons/fontawesome/brands/glide-g.svg | 1 + .../.icons/fontawesome/brands/glide.svg | 1 + .../.icons/fontawesome/brands/gofore.svg | 1 + .../.icons/fontawesome/brands/goodreads-g.svg | 1 + .../.icons/fontawesome/brands/goodreads.svg | 1 + .../fontawesome/brands/google-drive.svg | 1 + .../.icons/fontawesome/brands/google-play.svg | 1 + .../fontawesome/brands/google-plus-g.svg | 1 + .../fontawesome/brands/google-plus-square.svg | 1 + .../.icons/fontawesome/brands/google-plus.svg | 1 + .../fontawesome/brands/google-wallet.svg | 1 + .../.icons/fontawesome/brands/google.svg | 1 + .../.icons/fontawesome/brands/gratipay.svg | 1 + .../.icons/fontawesome/brands/grav.svg | 1 + .../.icons/fontawesome/brands/gripfire.svg | 1 + .../.icons/fontawesome/brands/grunt.svg | 1 + .../.icons/fontawesome/brands/gulp.svg | 1 + .../fontawesome/brands/hacker-news-square.svg | 1 + .../.icons/fontawesome/brands/hacker-news.svg | 1 + .../.icons/fontawesome/brands/hackerrank.svg | 1 + .../.icons/fontawesome/brands/hips.svg | 1 + .../fontawesome/brands/hire-a-helper.svg | 1 + .../.icons/fontawesome/brands/hooli.svg | 1 + .../.icons/fontawesome/brands/hornbill.svg | 1 + .../.icons/fontawesome/brands/hotjar.svg | 1 + .../.icons/fontawesome/brands/houzz.svg | 1 + .../.icons/fontawesome/brands/html5.svg | 1 + .../.icons/fontawesome/brands/hubspot.svg | 1 + .../.icons/fontawesome/brands/ideal.svg | 1 + .../.icons/fontawesome/brands/imdb.svg | 1 + .../fontawesome/brands/instagram-square.svg | 1 + .../.icons/fontawesome/brands/instagram.svg | 1 + .../.icons/fontawesome/brands/intercom.svg | 1 + .../fontawesome/brands/internet-explorer.svg | 1 + .../.icons/fontawesome/brands/invision.svg | 1 + .../.icons/fontawesome/brands/ioxhost.svg | 1 + .../.icons/fontawesome/brands/itch-io.svg | 1 + .../.icons/fontawesome/brands/itunes-note.svg | 1 + .../.icons/fontawesome/brands/itunes.svg | 1 + .../.icons/fontawesome/brands/java.svg | 1 + .../.icons/fontawesome/brands/jedi-order.svg | 1 + .../.icons/fontawesome/brands/jenkins.svg | 1 + .../.icons/fontawesome/brands/jira.svg | 1 + .../.icons/fontawesome/brands/joget.svg | 1 + .../.icons/fontawesome/brands/joomla.svg | 1 + .../.icons/fontawesome/brands/js-square.svg | 1 + .../material/.icons/fontawesome/brands/js.svg | 1 + .../.icons/fontawesome/brands/jsfiddle.svg | 1 + .../.icons/fontawesome/brands/kaggle.svg | 1 + .../.icons/fontawesome/brands/keybase.svg | 1 + .../.icons/fontawesome/brands/keycdn.svg | 1 + .../fontawesome/brands/kickstarter-k.svg | 1 + .../.icons/fontawesome/brands/kickstarter.svg | 1 + .../.icons/fontawesome/brands/korvue.svg | 1 + .../.icons/fontawesome/brands/laravel.svg | 1 + .../fontawesome/brands/lastfm-square.svg | 1 + .../.icons/fontawesome/brands/lastfm.svg | 1 + .../.icons/fontawesome/brands/leanpub.svg | 1 + .../.icons/fontawesome/brands/less.svg | 1 + .../.icons/fontawesome/brands/line.svg | 1 + .../.icons/fontawesome/brands/linkedin-in.svg | 1 + .../.icons/fontawesome/brands/linkedin.svg | 1 + .../.icons/fontawesome/brands/linode.svg | 1 + .../.icons/fontawesome/brands/linux.svg | 1 + .../.icons/fontawesome/brands/lyft.svg | 1 + .../.icons/fontawesome/brands/magento.svg | 1 + .../.icons/fontawesome/brands/mailchimp.svg | 1 + .../.icons/fontawesome/brands/mandalorian.svg | 1 + .../.icons/fontawesome/brands/markdown.svg | 1 + .../.icons/fontawesome/brands/mastodon.svg | 1 + .../.icons/fontawesome/brands/maxcdn.svg | 1 + .../.icons/fontawesome/brands/mdb.svg | 1 + .../.icons/fontawesome/brands/medapps.svg | 1 + .../.icons/fontawesome/brands/medium-m.svg | 1 + .../.icons/fontawesome/brands/medium.svg | 1 + .../.icons/fontawesome/brands/medrt.svg | 1 + .../.icons/fontawesome/brands/meetup.svg | 1 + .../.icons/fontawesome/brands/megaport.svg | 1 + .../.icons/fontawesome/brands/mendeley.svg | 1 + .../.icons/fontawesome/brands/microblog.svg | 1 + .../.icons/fontawesome/brands/microsoft.svg | 1 + .../.icons/fontawesome/brands/mix.svg | 1 + .../.icons/fontawesome/brands/mixcloud.svg | 1 + .../.icons/fontawesome/brands/mixer.svg | 1 + .../.icons/fontawesome/brands/mizuni.svg | 1 + .../.icons/fontawesome/brands/modx.svg | 1 + .../.icons/fontawesome/brands/monero.svg | 1 + .../.icons/fontawesome/brands/napster.svg | 1 + .../.icons/fontawesome/brands/neos.svg | 1 + .../.icons/fontawesome/brands/nimblr.svg | 1 + .../.icons/fontawesome/brands/node-js.svg | 1 + .../.icons/fontawesome/brands/node.svg | 1 + .../.icons/fontawesome/brands/npm.svg | 1 + .../.icons/fontawesome/brands/ns8.svg | 1 + .../.icons/fontawesome/brands/nutritionix.svg | 1 + .../brands/odnoklassniki-square.svg | 1 + .../fontawesome/brands/odnoklassniki.svg | 1 + .../fontawesome/brands/old-republic.svg | 1 + .../.icons/fontawesome/brands/opencart.svg | 1 + .../.icons/fontawesome/brands/openid.svg | 1 + .../.icons/fontawesome/brands/opera.svg | 1 + .../fontawesome/brands/optin-monster.svg | 1 + .../.icons/fontawesome/brands/orcid.svg | 1 + .../.icons/fontawesome/brands/osi.svg | 1 + .../.icons/fontawesome/brands/page4.svg | 1 + .../.icons/fontawesome/brands/pagelines.svg | 1 + .../.icons/fontawesome/brands/palfed.svg | 1 + .../.icons/fontawesome/brands/patreon.svg | 1 + .../.icons/fontawesome/brands/paypal.svg | 1 + .../fontawesome/brands/penny-arcade.svg | 1 + .../.icons/fontawesome/brands/periscope.svg | 1 + .../.icons/fontawesome/brands/phabricator.svg | 1 + .../fontawesome/brands/phoenix-framework.svg | 1 + .../fontawesome/brands/phoenix-squadron.svg | 1 + .../.icons/fontawesome/brands/php.svg | 1 + .../fontawesome/brands/pied-piper-alt.svg | 1 + .../fontawesome/brands/pied-piper-hat.svg | 1 + .../fontawesome/brands/pied-piper-pp.svg | 1 + .../fontawesome/brands/pied-piper-square.svg | 1 + .../.icons/fontawesome/brands/pied-piper.svg | 1 + .../.icons/fontawesome/brands/pinterest-p.svg | 1 + .../fontawesome/brands/pinterest-square.svg | 1 + .../.icons/fontawesome/brands/pinterest.svg | 1 + .../.icons/fontawesome/brands/playstation.svg | 1 + .../fontawesome/brands/product-hunt.svg | 1 + .../.icons/fontawesome/brands/pushed.svg | 1 + .../.icons/fontawesome/brands/python.svg | 1 + .../material/.icons/fontawesome/brands/qq.svg | 1 + .../.icons/fontawesome/brands/quinscape.svg | 1 + .../.icons/fontawesome/brands/quora.svg | 1 + .../.icons/fontawesome/brands/r-project.svg | 1 + .../fontawesome/brands/raspberry-pi.svg | 1 + .../.icons/fontawesome/brands/ravelry.svg | 1 + .../.icons/fontawesome/brands/react.svg | 1 + .../.icons/fontawesome/brands/reacteurope.svg | 1 + .../.icons/fontawesome/brands/readme.svg | 1 + .../.icons/fontawesome/brands/rebel.svg | 1 + .../.icons/fontawesome/brands/red-river.svg | 1 + .../fontawesome/brands/reddit-alien.svg | 1 + .../fontawesome/brands/reddit-square.svg | 1 + .../.icons/fontawesome/brands/reddit.svg | 1 + .../.icons/fontawesome/brands/redhat.svg | 1 + .../.icons/fontawesome/brands/renren.svg | 1 + .../.icons/fontawesome/brands/replyd.svg | 1 + .../fontawesome/brands/researchgate.svg | 1 + .../.icons/fontawesome/brands/resolving.svg | 1 + .../.icons/fontawesome/brands/rev.svg | 1 + .../.icons/fontawesome/brands/rocketchat.svg | 1 + .../.icons/fontawesome/brands/rockrms.svg | 1 + .../.icons/fontawesome/brands/safari.svg | 1 + .../.icons/fontawesome/brands/salesforce.svg | 1 + .../.icons/fontawesome/brands/sass.svg | 1 + .../.icons/fontawesome/brands/schlix.svg | 1 + .../.icons/fontawesome/brands/scribd.svg | 1 + .../.icons/fontawesome/brands/searchengin.svg | 1 + .../.icons/fontawesome/brands/sellcast.svg | 1 + .../.icons/fontawesome/brands/sellsy.svg | 1 + .../fontawesome/brands/servicestack.svg | 1 + .../fontawesome/brands/shirtsinbulk.svg | 1 + .../.icons/fontawesome/brands/shopify.svg | 1 + .../.icons/fontawesome/brands/shopware.svg | 1 + .../.icons/fontawesome/brands/simplybuilt.svg | 1 + .../.icons/fontawesome/brands/sistrix.svg | 1 + .../.icons/fontawesome/brands/sith.svg | 1 + .../.icons/fontawesome/brands/sketch.svg | 1 + .../.icons/fontawesome/brands/skyatlas.svg | 1 + .../.icons/fontawesome/brands/skype.svg | 1 + .../.icons/fontawesome/brands/slack-hash.svg | 1 + .../.icons/fontawesome/brands/slack.svg | 1 + .../.icons/fontawesome/brands/slideshare.svg | 1 + .../fontawesome/brands/snapchat-ghost.svg | 1 + .../fontawesome/brands/snapchat-square.svg | 1 + .../.icons/fontawesome/brands/snapchat.svg | 1 + .../.icons/fontawesome/brands/soundcloud.svg | 1 + .../.icons/fontawesome/brands/sourcetree.svg | 1 + .../.icons/fontawesome/brands/speakap.svg | 1 + .../fontawesome/brands/speaker-deck.svg | 1 + .../.icons/fontawesome/brands/spotify.svg | 1 + .../.icons/fontawesome/brands/squarespace.svg | 1 + .../fontawesome/brands/stack-exchange.svg | 1 + .../fontawesome/brands/stack-overflow.svg | 1 + .../.icons/fontawesome/brands/stackpath.svg | 1 + .../.icons/fontawesome/brands/staylinked.svg | 1 + .../fontawesome/brands/steam-square.svg | 1 + .../fontawesome/brands/steam-symbol.svg | 1 + .../.icons/fontawesome/brands/steam.svg | 1 + .../fontawesome/brands/sticker-mule.svg | 1 + .../.icons/fontawesome/brands/strava.svg | 1 + .../.icons/fontawesome/brands/stripe-s.svg | 1 + .../.icons/fontawesome/brands/stripe.svg | 1 + .../fontawesome/brands/studiovinari.svg | 1 + .../fontawesome/brands/stumbleupon-circle.svg | 1 + .../.icons/fontawesome/brands/stumbleupon.svg | 1 + .../.icons/fontawesome/brands/superpowers.svg | 1 + .../.icons/fontawesome/brands/supple.svg | 1 + .../.icons/fontawesome/brands/suse.svg | 1 + .../.icons/fontawesome/brands/swift.svg | 1 + .../.icons/fontawesome/brands/symfony.svg | 1 + .../.icons/fontawesome/brands/teamspeak.svg | 1 + .../fontawesome/brands/telegram-plane.svg | 1 + .../.icons/fontawesome/brands/telegram.svg | 1 + .../fontawesome/brands/tencent-weibo.svg | 1 + .../fontawesome/brands/the-red-yeti.svg | 1 + .../.icons/fontawesome/brands/themeco.svg | 1 + .../.icons/fontawesome/brands/themeisle.svg | 1 + .../.icons/fontawesome/brands/think-peaks.svg | 1 + .../fontawesome/brands/trade-federation.svg | 1 + .../.icons/fontawesome/brands/trello.svg | 1 + .../.icons/fontawesome/brands/tripadvisor.svg | 1 + .../fontawesome/brands/tumblr-square.svg | 1 + .../.icons/fontawesome/brands/tumblr.svg | 1 + .../.icons/fontawesome/brands/twitch.svg | 1 + .../fontawesome/brands/twitter-square.svg | 1 + .../.icons/fontawesome/brands/twitter.svg | 1 + .../.icons/fontawesome/brands/typo3.svg | 1 + .../.icons/fontawesome/brands/uber.svg | 1 + .../.icons/fontawesome/brands/ubuntu.svg | 1 + .../.icons/fontawesome/brands/uikit.svg | 1 + .../.icons/fontawesome/brands/umbraco.svg | 1 + .../.icons/fontawesome/brands/uniregistry.svg | 1 + .../.icons/fontawesome/brands/unity.svg | 1 + .../.icons/fontawesome/brands/untappd.svg | 1 + .../.icons/fontawesome/brands/ups.svg | 1 + .../.icons/fontawesome/brands/usb.svg | 1 + .../.icons/fontawesome/brands/usps.svg | 1 + .../.icons/fontawesome/brands/ussunnah.svg | 1 + .../.icons/fontawesome/brands/vaadin.svg | 1 + .../.icons/fontawesome/brands/viacoin.svg | 1 + .../fontawesome/brands/viadeo-square.svg | 1 + .../.icons/fontawesome/brands/viadeo.svg | 1 + .../.icons/fontawesome/brands/viber.svg | 1 + .../fontawesome/brands/vimeo-square.svg | 1 + .../.icons/fontawesome/brands/vimeo-v.svg | 1 + .../.icons/fontawesome/brands/vimeo.svg | 1 + .../.icons/fontawesome/brands/vine.svg | 1 + .../material/.icons/fontawesome/brands/vk.svg | 1 + .../.icons/fontawesome/brands/vnv.svg | 1 + .../.icons/fontawesome/brands/vuejs.svg | 1 + .../.icons/fontawesome/brands/waze.svg | 1 + .../.icons/fontawesome/brands/weebly.svg | 1 + .../.icons/fontawesome/brands/weibo.svg | 1 + .../.icons/fontawesome/brands/weixin.svg | 1 + .../fontawesome/brands/whatsapp-square.svg | 1 + .../.icons/fontawesome/brands/whatsapp.svg | 1 + .../.icons/fontawesome/brands/whmcs.svg | 1 + .../.icons/fontawesome/brands/wikipedia-w.svg | 1 + .../.icons/fontawesome/brands/windows.svg | 1 + .../.icons/fontawesome/brands/wix.svg | 1 + .../brands/wizards-of-the-coast.svg | 1 + .../brands/wolf-pack-battalion.svg | 1 + .../fontawesome/brands/wordpress-simple.svg | 1 + .../.icons/fontawesome/brands/wordpress.svg | 1 + .../.icons/fontawesome/brands/wpbeginner.svg | 1 + .../.icons/fontawesome/brands/wpexplorer.svg | 1 + .../.icons/fontawesome/brands/wpforms.svg | 1 + .../.icons/fontawesome/brands/wpressr.svg | 1 + .../.icons/fontawesome/brands/xbox.svg | 1 + .../.icons/fontawesome/brands/xing-square.svg | 1 + .../.icons/fontawesome/brands/xing.svg | 1 + .../fontawesome/brands/y-combinator.svg | 1 + .../.icons/fontawesome/brands/yahoo.svg | 1 + .../.icons/fontawesome/brands/yammer.svg | 1 + .../brands/yandex-international.svg | 1 + .../.icons/fontawesome/brands/yandex.svg | 1 + .../.icons/fontawesome/brands/yarn.svg | 1 + .../.icons/fontawesome/brands/yelp.svg | 1 + .../.icons/fontawesome/brands/yoast.svg | 1 + .../fontawesome/brands/youtube-square.svg | 1 + .../.icons/fontawesome/brands/youtube.svg | 1 + .../.icons/fontawesome/brands/zhihu.svg | 1 + .../fontawesome/regular/address-book.svg | 1 + .../fontawesome/regular/address-card.svg | 1 + .../.icons/fontawesome/regular/angry.svg | 1 + .../regular/arrow-alt-circle-down.svg | 1 + .../regular/arrow-alt-circle-left.svg | 1 + .../regular/arrow-alt-circle-right.svg | 1 + .../regular/arrow-alt-circle-up.svg | 1 + .../.icons/fontawesome/regular/bell-slash.svg | 1 + .../.icons/fontawesome/regular/bell.svg | 1 + .../.icons/fontawesome/regular/bookmark.svg | 1 + .../.icons/fontawesome/regular/building.svg | 1 + .../fontawesome/regular/calendar-alt.svg | 1 + .../fontawesome/regular/calendar-check.svg | 1 + .../fontawesome/regular/calendar-minus.svg | 1 + .../fontawesome/regular/calendar-plus.svg | 1 + .../fontawesome/regular/calendar-times.svg | 1 + .../.icons/fontawesome/regular/calendar.svg | 1 + .../fontawesome/regular/caret-square-down.svg | 1 + .../fontawesome/regular/caret-square-left.svg | 1 + .../regular/caret-square-right.svg | 1 + .../fontawesome/regular/caret-square-up.svg | 1 + .../.icons/fontawesome/regular/chart-bar.svg | 1 + .../fontawesome/regular/check-circle.svg | 1 + .../fontawesome/regular/check-square.svg | 1 + .../.icons/fontawesome/regular/circle.svg | 1 + .../.icons/fontawesome/regular/clipboard.svg | 1 + .../.icons/fontawesome/regular/clock.svg | 1 + .../.icons/fontawesome/regular/clone.svg | 1 + .../fontawesome/regular/closed-captioning.svg | 1 + .../fontawesome/regular/comment-alt.svg | 1 + .../fontawesome/regular/comment-dots.svg | 1 + .../.icons/fontawesome/regular/comment.svg | 1 + .../.icons/fontawesome/regular/comments.svg | 1 + .../.icons/fontawesome/regular/compass.svg | 1 + .../.icons/fontawesome/regular/copy.svg | 1 + .../.icons/fontawesome/regular/copyright.svg | 1 + .../fontawesome/regular/credit-card.svg | 1 + .../.icons/fontawesome/regular/dizzy.svg | 1 + .../.icons/fontawesome/regular/dot-circle.svg | 1 + .../.icons/fontawesome/regular/edit.svg | 1 + .../fontawesome/regular/envelope-open.svg | 1 + .../.icons/fontawesome/regular/envelope.svg | 1 + .../.icons/fontawesome/regular/eye-slash.svg | 1 + .../.icons/fontawesome/regular/eye.svg | 1 + .../.icons/fontawesome/regular/file-alt.svg | 1 + .../fontawesome/regular/file-archive.svg | 1 + .../.icons/fontawesome/regular/file-audio.svg | 1 + .../.icons/fontawesome/regular/file-code.svg | 1 + .../.icons/fontawesome/regular/file-excel.svg | 1 + .../.icons/fontawesome/regular/file-image.svg | 1 + .../.icons/fontawesome/regular/file-pdf.svg | 1 + .../fontawesome/regular/file-powerpoint.svg | 1 + .../.icons/fontawesome/regular/file-video.svg | 1 + .../.icons/fontawesome/regular/file-word.svg | 1 + .../.icons/fontawesome/regular/file.svg | 1 + .../.icons/fontawesome/regular/flag.svg | 1 + .../.icons/fontawesome/regular/flushed.svg | 1 + .../fontawesome/regular/folder-open.svg | 1 + .../.icons/fontawesome/regular/folder.svg | 1 + .../regular/font-awesome-logo-full.svg | 1 + .../.icons/fontawesome/regular/frown-open.svg | 1 + .../.icons/fontawesome/regular/frown.svg | 1 + .../.icons/fontawesome/regular/futbol.svg | 1 + .../.icons/fontawesome/regular/gem.svg | 1 + .../.icons/fontawesome/regular/grimace.svg | 1 + .../.icons/fontawesome/regular/grin-alt.svg | 1 + .../fontawesome/regular/grin-beam-sweat.svg | 1 + .../.icons/fontawesome/regular/grin-beam.svg | 1 + .../fontawesome/regular/grin-hearts.svg | 1 + .../fontawesome/regular/grin-squint-tears.svg | 1 + .../fontawesome/regular/grin-squint.svg | 1 + .../.icons/fontawesome/regular/grin-stars.svg | 1 + .../.icons/fontawesome/regular/grin-tears.svg | 1 + .../regular/grin-tongue-squint.svg | 1 + .../fontawesome/regular/grin-tongue-wink.svg | 1 + .../fontawesome/regular/grin-tongue.svg | 1 + .../.icons/fontawesome/regular/grin-wink.svg | 1 + .../.icons/fontawesome/regular/grin.svg | 1 + .../fontawesome/regular/hand-lizard.svg | 1 + .../.icons/fontawesome/regular/hand-paper.svg | 1 + .../.icons/fontawesome/regular/hand-peace.svg | 1 + .../fontawesome/regular/hand-point-down.svg | 1 + .../fontawesome/regular/hand-point-left.svg | 1 + .../fontawesome/regular/hand-point-right.svg | 1 + .../fontawesome/regular/hand-point-up.svg | 1 + .../fontawesome/regular/hand-pointer.svg | 1 + .../.icons/fontawesome/regular/hand-rock.svg | 1 + .../fontawesome/regular/hand-scissors.svg | 1 + .../.icons/fontawesome/regular/hand-spock.svg | 1 + .../.icons/fontawesome/regular/handshake.svg | 1 + .../.icons/fontawesome/regular/hdd.svg | 1 + .../.icons/fontawesome/regular/heart.svg | 1 + .../.icons/fontawesome/regular/hospital.svg | 1 + .../.icons/fontawesome/regular/hourglass.svg | 1 + .../.icons/fontawesome/regular/id-badge.svg | 1 + .../.icons/fontawesome/regular/id-card.svg | 1 + .../.icons/fontawesome/regular/image.svg | 1 + .../.icons/fontawesome/regular/images.svg | 1 + .../.icons/fontawesome/regular/keyboard.svg | 1 + .../.icons/fontawesome/regular/kiss-beam.svg | 1 + .../fontawesome/regular/kiss-wink-heart.svg | 1 + .../.icons/fontawesome/regular/kiss.svg | 1 + .../.icons/fontawesome/regular/laugh-beam.svg | 1 + .../fontawesome/regular/laugh-squint.svg | 1 + .../.icons/fontawesome/regular/laugh-wink.svg | 1 + .../.icons/fontawesome/regular/laugh.svg | 1 + .../.icons/fontawesome/regular/lemon.svg | 1 + .../.icons/fontawesome/regular/life-ring.svg | 1 + .../.icons/fontawesome/regular/lightbulb.svg | 1 + .../.icons/fontawesome/regular/list-alt.svg | 1 + .../.icons/fontawesome/regular/map.svg | 1 + .../.icons/fontawesome/regular/meh-blank.svg | 1 + .../fontawesome/regular/meh-rolling-eyes.svg | 1 + .../.icons/fontawesome/regular/meh.svg | 1 + .../fontawesome/regular/minus-square.svg | 1 + .../fontawesome/regular/money-bill-alt.svg | 1 + .../.icons/fontawesome/regular/moon.svg | 1 + .../.icons/fontawesome/regular/newspaper.svg | 1 + .../fontawesome/regular/object-group.svg | 1 + .../fontawesome/regular/object-ungroup.svg | 1 + .../fontawesome/regular/paper-plane.svg | 1 + .../fontawesome/regular/pause-circle.svg | 1 + .../fontawesome/regular/play-circle.svg | 1 + .../fontawesome/regular/plus-square.svg | 1 + .../fontawesome/regular/question-circle.svg | 1 + .../.icons/fontawesome/regular/registered.svg | 1 + .../.icons/fontawesome/regular/sad-cry.svg | 1 + .../.icons/fontawesome/regular/sad-tear.svg | 1 + .../.icons/fontawesome/regular/save.svg | 1 + .../fontawesome/regular/share-square.svg | 1 + .../.icons/fontawesome/regular/smile-beam.svg | 1 + .../.icons/fontawesome/regular/smile-wink.svg | 1 + .../.icons/fontawesome/regular/smile.svg | 1 + .../.icons/fontawesome/regular/snowflake.svg | 1 + .../.icons/fontawesome/regular/square.svg | 1 + .../.icons/fontawesome/regular/star-half.svg | 1 + .../.icons/fontawesome/regular/star.svg | 1 + .../fontawesome/regular/sticky-note.svg | 1 + .../fontawesome/regular/stop-circle.svg | 1 + .../.icons/fontawesome/regular/sun.svg | 1 + .../.icons/fontawesome/regular/surprise.svg | 1 + .../fontawesome/regular/thumbs-down.svg | 1 + .../.icons/fontawesome/regular/thumbs-up.svg | 1 + .../fontawesome/regular/times-circle.svg | 1 + .../.icons/fontawesome/regular/tired.svg | 1 + .../.icons/fontawesome/regular/trash-alt.svg | 1 + .../fontawesome/regular/user-circle.svg | 1 + .../.icons/fontawesome/regular/user.svg | 1 + .../fontawesome/regular/window-close.svg | 1 + .../fontawesome/regular/window-maximize.svg | 1 + .../fontawesome/regular/window-minimize.svg | 1 + .../fontawesome/regular/window-restore.svg | 1 + docs/material/.icons/fontawesome/solid/ad.svg | 1 + .../.icons/fontawesome/solid/address-book.svg | 1 + .../.icons/fontawesome/solid/address-card.svg | 1 + .../.icons/fontawesome/solid/adjust.svg | 1 + .../fontawesome/solid/air-freshener.svg | 1 + .../.icons/fontawesome/solid/align-center.svg | 1 + .../fontawesome/solid/align-justify.svg | 1 + .../.icons/fontawesome/solid/align-left.svg | 1 + .../.icons/fontawesome/solid/align-right.svg | 1 + .../.icons/fontawesome/solid/allergies.svg | 1 + .../.icons/fontawesome/solid/ambulance.svg | 1 + .../american-sign-language-interpreting.svg | 1 + .../.icons/fontawesome/solid/anchor.svg | 1 + .../fontawesome/solid/angle-double-down.svg | 1 + .../fontawesome/solid/angle-double-left.svg | 1 + .../fontawesome/solid/angle-double-right.svg | 1 + .../fontawesome/solid/angle-double-up.svg | 1 + .../.icons/fontawesome/solid/angle-down.svg | 1 + .../.icons/fontawesome/solid/angle-left.svg | 1 + .../.icons/fontawesome/solid/angle-right.svg | 1 + .../.icons/fontawesome/solid/angle-up.svg | 1 + .../.icons/fontawesome/solid/angry.svg | 1 + .../.icons/fontawesome/solid/ankh.svg | 1 + .../.icons/fontawesome/solid/apple-alt.svg | 1 + .../.icons/fontawesome/solid/archive.svg | 1 + .../.icons/fontawesome/solid/archway.svg | 1 + .../solid/arrow-alt-circle-down.svg | 1 + .../solid/arrow-alt-circle-left.svg | 1 + .../solid/arrow-alt-circle-right.svg | 1 + .../fontawesome/solid/arrow-alt-circle-up.svg | 1 + .../fontawesome/solid/arrow-circle-down.svg | 1 + .../fontawesome/solid/arrow-circle-left.svg | 1 + .../fontawesome/solid/arrow-circle-right.svg | 1 + .../fontawesome/solid/arrow-circle-up.svg | 1 + .../.icons/fontawesome/solid/arrow-down.svg | 1 + .../.icons/fontawesome/solid/arrow-left.svg | 1 + .../.icons/fontawesome/solid/arrow-right.svg | 1 + .../.icons/fontawesome/solid/arrow-up.svg | 1 + .../.icons/fontawesome/solid/arrows-alt-h.svg | 1 + .../.icons/fontawesome/solid/arrows-alt-v.svg | 1 + .../.icons/fontawesome/solid/arrows-alt.svg | 1 + .../solid/assistive-listening-systems.svg | 1 + .../.icons/fontawesome/solid/asterisk.svg | 1 + docs/material/.icons/fontawesome/solid/at.svg | 1 + .../.icons/fontawesome/solid/atlas.svg | 1 + .../.icons/fontawesome/solid/atom.svg | 1 + .../fontawesome/solid/audio-description.svg | 1 + .../.icons/fontawesome/solid/award.svg | 1 + .../fontawesome/solid/baby-carriage.svg | 1 + .../.icons/fontawesome/solid/baby.svg | 1 + .../.icons/fontawesome/solid/backspace.svg | 1 + .../.icons/fontawesome/solid/backward.svg | 1 + .../.icons/fontawesome/solid/bacon.svg | 1 + .../.icons/fontawesome/solid/bahai.svg | 1 + .../fontawesome/solid/balance-scale-left.svg | 1 + .../fontawesome/solid/balance-scale-right.svg | 1 + .../fontawesome/solid/balance-scale.svg | 1 + .../material/.icons/fontawesome/solid/ban.svg | 1 + .../.icons/fontawesome/solid/band-aid.svg | 1 + .../.icons/fontawesome/solid/barcode.svg | 1 + .../.icons/fontawesome/solid/bars.svg | 1 + .../fontawesome/solid/baseball-ball.svg | 1 + .../fontawesome/solid/basketball-ball.svg | 1 + .../.icons/fontawesome/solid/bath.svg | 1 + .../fontawesome/solid/battery-empty.svg | 1 + .../.icons/fontawesome/solid/battery-full.svg | 1 + .../.icons/fontawesome/solid/battery-half.svg | 1 + .../fontawesome/solid/battery-quarter.svg | 1 + .../solid/battery-three-quarters.svg | 1 + .../material/.icons/fontawesome/solid/bed.svg | 1 + .../.icons/fontawesome/solid/beer.svg | 1 + .../.icons/fontawesome/solid/bell-slash.svg | 1 + .../.icons/fontawesome/solid/bell.svg | 1 + .../.icons/fontawesome/solid/bezier-curve.svg | 1 + .../.icons/fontawesome/solid/bible.svg | 1 + .../.icons/fontawesome/solid/bicycle.svg | 1 + .../.icons/fontawesome/solid/biking.svg | 1 + .../.icons/fontawesome/solid/binoculars.svg | 1 + .../.icons/fontawesome/solid/biohazard.svg | 1 + .../fontawesome/solid/birthday-cake.svg | 1 + .../fontawesome/solid/blender-phone.svg | 1 + .../.icons/fontawesome/solid/blender.svg | 1 + .../.icons/fontawesome/solid/blind.svg | 1 + .../.icons/fontawesome/solid/blog.svg | 1 + .../.icons/fontawesome/solid/bold.svg | 1 + .../.icons/fontawesome/solid/bolt.svg | 1 + .../.icons/fontawesome/solid/bomb.svg | 1 + .../.icons/fontawesome/solid/bone.svg | 1 + .../.icons/fontawesome/solid/bong.svg | 1 + .../.icons/fontawesome/solid/book-dead.svg | 1 + .../.icons/fontawesome/solid/book-medical.svg | 1 + .../.icons/fontawesome/solid/book-open.svg | 1 + .../.icons/fontawesome/solid/book-reader.svg | 1 + .../.icons/fontawesome/solid/book.svg | 1 + .../.icons/fontawesome/solid/bookmark.svg | 1 + .../.icons/fontawesome/solid/border-all.svg | 1 + .../.icons/fontawesome/solid/border-none.svg | 1 + .../.icons/fontawesome/solid/border-style.svg | 1 + .../.icons/fontawesome/solid/bowling-ball.svg | 1 + .../.icons/fontawesome/solid/box-open.svg | 1 + .../.icons/fontawesome/solid/box-tissue.svg | 1 + .../material/.icons/fontawesome/solid/box.svg | 1 + .../.icons/fontawesome/solid/boxes.svg | 1 + .../.icons/fontawesome/solid/braille.svg | 1 + .../.icons/fontawesome/solid/brain.svg | 1 + .../.icons/fontawesome/solid/bread-slice.svg | 1 + .../fontawesome/solid/briefcase-medical.svg | 1 + .../.icons/fontawesome/solid/briefcase.svg | 1 + .../fontawesome/solid/broadcast-tower.svg | 1 + .../.icons/fontawesome/solid/broom.svg | 1 + .../.icons/fontawesome/solid/brush.svg | 1 + .../material/.icons/fontawesome/solid/bug.svg | 1 + .../.icons/fontawesome/solid/building.svg | 1 + .../.icons/fontawesome/solid/bullhorn.svg | 1 + .../.icons/fontawesome/solid/bullseye.svg | 1 + .../.icons/fontawesome/solid/burn.svg | 1 + .../.icons/fontawesome/solid/bus-alt.svg | 1 + .../material/.icons/fontawesome/solid/bus.svg | 1 + .../fontawesome/solid/business-time.svg | 1 + .../.icons/fontawesome/solid/calculator.svg | 1 + .../.icons/fontawesome/solid/calendar-alt.svg | 1 + .../fontawesome/solid/calendar-check.svg | 1 + .../.icons/fontawesome/solid/calendar-day.svg | 1 + .../fontawesome/solid/calendar-minus.svg | 1 + .../fontawesome/solid/calendar-plus.svg | 1 + .../fontawesome/solid/calendar-times.svg | 1 + .../fontawesome/solid/calendar-week.svg | 1 + .../.icons/fontawesome/solid/calendar.svg | 1 + .../.icons/fontawesome/solid/camera-retro.svg | 1 + .../.icons/fontawesome/solid/camera.svg | 1 + .../.icons/fontawesome/solid/campground.svg | 1 + .../.icons/fontawesome/solid/candy-cane.svg | 1 + .../.icons/fontawesome/solid/cannabis.svg | 1 + .../.icons/fontawesome/solid/capsules.svg | 1 + .../.icons/fontawesome/solid/car-alt.svg | 1 + .../.icons/fontawesome/solid/car-battery.svg | 1 + .../.icons/fontawesome/solid/car-crash.svg | 1 + .../.icons/fontawesome/solid/car-side.svg | 1 + .../material/.icons/fontawesome/solid/car.svg | 1 + .../.icons/fontawesome/solid/caravan.svg | 1 + .../.icons/fontawesome/solid/caret-down.svg | 1 + .../.icons/fontawesome/solid/caret-left.svg | 1 + .../.icons/fontawesome/solid/caret-right.svg | 1 + .../fontawesome/solid/caret-square-down.svg | 1 + .../fontawesome/solid/caret-square-left.svg | 1 + .../fontawesome/solid/caret-square-right.svg | 1 + .../fontawesome/solid/caret-square-up.svg | 1 + .../.icons/fontawesome/solid/caret-up.svg | 1 + .../.icons/fontawesome/solid/carrot.svg | 1 + .../fontawesome/solid/cart-arrow-down.svg | 1 + .../.icons/fontawesome/solid/cart-plus.svg | 1 + .../fontawesome/solid/cash-register.svg | 1 + .../material/.icons/fontawesome/solid/cat.svg | 1 + .../.icons/fontawesome/solid/certificate.svg | 1 + .../.icons/fontawesome/solid/chair.svg | 1 + .../fontawesome/solid/chalkboard-teacher.svg | 1 + .../.icons/fontawesome/solid/chalkboard.svg | 1 + .../fontawesome/solid/charging-station.svg | 1 + .../.icons/fontawesome/solid/chart-area.svg | 1 + .../.icons/fontawesome/solid/chart-bar.svg | 1 + .../.icons/fontawesome/solid/chart-line.svg | 1 + .../.icons/fontawesome/solid/chart-pie.svg | 1 + .../.icons/fontawesome/solid/check-circle.svg | 1 + .../.icons/fontawesome/solid/check-double.svg | 1 + .../.icons/fontawesome/solid/check-square.svg | 1 + .../.icons/fontawesome/solid/check.svg | 1 + .../.icons/fontawesome/solid/cheese.svg | 1 + .../.icons/fontawesome/solid/chess-bishop.svg | 1 + .../.icons/fontawesome/solid/chess-board.svg | 1 + .../.icons/fontawesome/solid/chess-king.svg | 1 + .../.icons/fontawesome/solid/chess-knight.svg | 1 + .../.icons/fontawesome/solid/chess-pawn.svg | 1 + .../.icons/fontawesome/solid/chess-queen.svg | 1 + .../.icons/fontawesome/solid/chess-rook.svg | 1 + .../.icons/fontawesome/solid/chess.svg | 1 + .../fontawesome/solid/chevron-circle-down.svg | 1 + .../fontawesome/solid/chevron-circle-left.svg | 1 + .../solid/chevron-circle-right.svg | 1 + .../fontawesome/solid/chevron-circle-up.svg | 1 + .../.icons/fontawesome/solid/chevron-down.svg | 1 + .../.icons/fontawesome/solid/chevron-left.svg | 1 + .../fontawesome/solid/chevron-right.svg | 1 + .../.icons/fontawesome/solid/chevron-up.svg | 1 + .../.icons/fontawesome/solid/child.svg | 1 + .../.icons/fontawesome/solid/church.svg | 1 + .../.icons/fontawesome/solid/circle-notch.svg | 1 + .../.icons/fontawesome/solid/circle.svg | 1 + .../.icons/fontawesome/solid/city.svg | 1 + .../fontawesome/solid/clinic-medical.svg | 1 + .../fontawesome/solid/clipboard-check.svg | 1 + .../fontawesome/solid/clipboard-list.svg | 1 + .../.icons/fontawesome/solid/clipboard.svg | 1 + .../.icons/fontawesome/solid/clock.svg | 1 + .../.icons/fontawesome/solid/clone.svg | 1 + .../fontawesome/solid/closed-captioning.svg | 1 + .../fontawesome/solid/cloud-download-alt.svg | 1 + .../fontawesome/solid/cloud-meatball.svg | 1 + .../fontawesome/solid/cloud-moon-rain.svg | 1 + .../.icons/fontawesome/solid/cloud-moon.svg | 1 + .../.icons/fontawesome/solid/cloud-rain.svg | 1 + .../fontawesome/solid/cloud-showers-heavy.svg | 1 + .../fontawesome/solid/cloud-sun-rain.svg | 1 + .../.icons/fontawesome/solid/cloud-sun.svg | 1 + .../fontawesome/solid/cloud-upload-alt.svg | 1 + .../.icons/fontawesome/solid/cloud.svg | 1 + .../.icons/fontawesome/solid/cocktail.svg | 1 + .../.icons/fontawesome/solid/code-branch.svg | 1 + .../.icons/fontawesome/solid/code.svg | 1 + .../.icons/fontawesome/solid/coffee.svg | 1 + .../material/.icons/fontawesome/solid/cog.svg | 1 + .../.icons/fontawesome/solid/cogs.svg | 1 + .../.icons/fontawesome/solid/coins.svg | 1 + .../.icons/fontawesome/solid/columns.svg | 1 + .../.icons/fontawesome/solid/comment-alt.svg | 1 + .../fontawesome/solid/comment-dollar.svg | 1 + .../.icons/fontawesome/solid/comment-dots.svg | 1 + .../fontawesome/solid/comment-medical.svg | 1 + .../fontawesome/solid/comment-slash.svg | 1 + .../.icons/fontawesome/solid/comment.svg | 1 + .../fontawesome/solid/comments-dollar.svg | 1 + .../.icons/fontawesome/solid/comments.svg | 1 + .../.icons/fontawesome/solid/compact-disc.svg | 1 + .../.icons/fontawesome/solid/compass.svg | 1 + .../.icons/fontawesome/solid/compress-alt.svg | 1 + .../fontawesome/solid/compress-arrows-alt.svg | 1 + .../.icons/fontawesome/solid/compress.svg | 1 + .../fontawesome/solid/concierge-bell.svg | 1 + .../.icons/fontawesome/solid/cookie-bite.svg | 1 + .../.icons/fontawesome/solid/cookie.svg | 1 + .../.icons/fontawesome/solid/copy.svg | 1 + .../.icons/fontawesome/solid/copyright.svg | 1 + .../.icons/fontawesome/solid/couch.svg | 1 + .../.icons/fontawesome/solid/credit-card.svg | 1 + .../.icons/fontawesome/solid/crop-alt.svg | 1 + .../.icons/fontawesome/solid/crop.svg | 1 + .../.icons/fontawesome/solid/cross.svg | 1 + .../.icons/fontawesome/solid/crosshairs.svg | 1 + .../.icons/fontawesome/solid/crow.svg | 1 + .../.icons/fontawesome/solid/crown.svg | 1 + .../.icons/fontawesome/solid/crutch.svg | 1 + .../.icons/fontawesome/solid/cube.svg | 1 + .../.icons/fontawesome/solid/cubes.svg | 1 + .../material/.icons/fontawesome/solid/cut.svg | 1 + .../.icons/fontawesome/solid/database.svg | 1 + .../.icons/fontawesome/solid/deaf.svg | 1 + .../.icons/fontawesome/solid/democrat.svg | 1 + .../.icons/fontawesome/solid/desktop.svg | 1 + .../.icons/fontawesome/solid/dharmachakra.svg | 1 + .../.icons/fontawesome/solid/diagnoses.svg | 1 + .../.icons/fontawesome/solid/dice-d20.svg | 1 + .../.icons/fontawesome/solid/dice-d6.svg | 1 + .../.icons/fontawesome/solid/dice-five.svg | 1 + .../.icons/fontawesome/solid/dice-four.svg | 1 + .../.icons/fontawesome/solid/dice-one.svg | 1 + .../.icons/fontawesome/solid/dice-six.svg | 1 + .../.icons/fontawesome/solid/dice-three.svg | 1 + .../.icons/fontawesome/solid/dice-two.svg | 1 + .../.icons/fontawesome/solid/dice.svg | 1 + .../fontawesome/solid/digital-tachograph.svg | 1 + .../.icons/fontawesome/solid/directions.svg | 1 + .../.icons/fontawesome/solid/disease.svg | 1 + .../.icons/fontawesome/solid/divide.svg | 1 + .../.icons/fontawesome/solid/dizzy.svg | 1 + .../material/.icons/fontawesome/solid/dna.svg | 1 + .../material/.icons/fontawesome/solid/dog.svg | 1 + .../.icons/fontawesome/solid/dollar-sign.svg | 1 + .../fontawesome/solid/dolly-flatbed.svg | 1 + .../.icons/fontawesome/solid/dolly.svg | 1 + .../.icons/fontawesome/solid/donate.svg | 1 + .../.icons/fontawesome/solid/door-closed.svg | 1 + .../.icons/fontawesome/solid/door-open.svg | 1 + .../.icons/fontawesome/solid/dot-circle.svg | 1 + .../.icons/fontawesome/solid/dove.svg | 1 + .../.icons/fontawesome/solid/download.svg | 1 + .../fontawesome/solid/drafting-compass.svg | 1 + .../.icons/fontawesome/solid/dragon.svg | 1 + .../.icons/fontawesome/solid/draw-polygon.svg | 1 + .../fontawesome/solid/drum-steelpan.svg | 1 + .../.icons/fontawesome/solid/drum.svg | 1 + .../fontawesome/solid/drumstick-bite.svg | 1 + .../.icons/fontawesome/solid/dumbbell.svg | 1 + .../fontawesome/solid/dumpster-fire.svg | 1 + .../.icons/fontawesome/solid/dumpster.svg | 1 + .../.icons/fontawesome/solid/dungeon.svg | 1 + .../.icons/fontawesome/solid/edit.svg | 1 + .../material/.icons/fontawesome/solid/egg.svg | 1 + .../.icons/fontawesome/solid/eject.svg | 1 + .../.icons/fontawesome/solid/ellipsis-h.svg | 1 + .../.icons/fontawesome/solid/ellipsis-v.svg | 1 + .../fontawesome/solid/envelope-open-text.svg | 1 + .../fontawesome/solid/envelope-open.svg | 1 + .../fontawesome/solid/envelope-square.svg | 1 + .../.icons/fontawesome/solid/envelope.svg | 1 + .../.icons/fontawesome/solid/equals.svg | 1 + .../.icons/fontawesome/solid/eraser.svg | 1 + .../.icons/fontawesome/solid/ethernet.svg | 1 + .../.icons/fontawesome/solid/euro-sign.svg | 1 + .../.icons/fontawesome/solid/exchange-alt.svg | 1 + .../fontawesome/solid/exclamation-circle.svg | 1 + .../solid/exclamation-triangle.svg | 1 + .../.icons/fontawesome/solid/exclamation.svg | 1 + .../.icons/fontawesome/solid/expand-alt.svg | 1 + .../fontawesome/solid/expand-arrows-alt.svg | 1 + .../.icons/fontawesome/solid/expand.svg | 1 + .../fontawesome/solid/external-link-alt.svg | 1 + .../solid/external-link-square-alt.svg | 1 + .../.icons/fontawesome/solid/eye-dropper.svg | 1 + .../.icons/fontawesome/solid/eye-slash.svg | 1 + .../material/.icons/fontawesome/solid/eye.svg | 1 + .../material/.icons/fontawesome/solid/fan.svg | 1 + .../fontawesome/solid/fast-backward.svg | 1 + .../.icons/fontawesome/solid/fast-forward.svg | 1 + .../.icons/fontawesome/solid/faucet.svg | 1 + .../material/.icons/fontawesome/solid/fax.svg | 1 + .../.icons/fontawesome/solid/feather-alt.svg | 1 + .../.icons/fontawesome/solid/feather.svg | 1 + .../.icons/fontawesome/solid/female.svg | 1 + .../.icons/fontawesome/solid/fighter-jet.svg | 1 + .../.icons/fontawesome/solid/file-alt.svg | 1 + .../.icons/fontawesome/solid/file-archive.svg | 1 + .../.icons/fontawesome/solid/file-audio.svg | 1 + .../.icons/fontawesome/solid/file-code.svg | 1 + .../fontawesome/solid/file-contract.svg | 1 + .../.icons/fontawesome/solid/file-csv.svg | 1 + .../fontawesome/solid/file-download.svg | 1 + .../.icons/fontawesome/solid/file-excel.svg | 1 + .../.icons/fontawesome/solid/file-export.svg | 1 + .../.icons/fontawesome/solid/file-image.svg | 1 + .../.icons/fontawesome/solid/file-import.svg | 1 + .../fontawesome/solid/file-invoice-dollar.svg | 1 + .../.icons/fontawesome/solid/file-invoice.svg | 1 + .../fontawesome/solid/file-medical-alt.svg | 1 + .../.icons/fontawesome/solid/file-medical.svg | 1 + .../.icons/fontawesome/solid/file-pdf.svg | 1 + .../fontawesome/solid/file-powerpoint.svg | 1 + .../fontawesome/solid/file-prescription.svg | 1 + .../fontawesome/solid/file-signature.svg | 1 + .../.icons/fontawesome/solid/file-upload.svg | 1 + .../.icons/fontawesome/solid/file-video.svg | 1 + .../.icons/fontawesome/solid/file-word.svg | 1 + .../.icons/fontawesome/solid/file.svg | 1 + .../.icons/fontawesome/solid/fill-drip.svg | 1 + .../.icons/fontawesome/solid/fill.svg | 1 + .../.icons/fontawesome/solid/film.svg | 1 + .../.icons/fontawesome/solid/filter.svg | 1 + .../.icons/fontawesome/solid/fingerprint.svg | 1 + .../.icons/fontawesome/solid/fire-alt.svg | 1 + .../fontawesome/solid/fire-extinguisher.svg | 1 + .../.icons/fontawesome/solid/fire.svg | 1 + .../.icons/fontawesome/solid/first-aid.svg | 1 + .../.icons/fontawesome/solid/fish.svg | 1 + .../.icons/fontawesome/solid/fist-raised.svg | 1 + .../fontawesome/solid/flag-checkered.svg | 1 + .../.icons/fontawesome/solid/flag-usa.svg | 1 + .../.icons/fontawesome/solid/flag.svg | 1 + .../.icons/fontawesome/solid/flask.svg | 1 + .../.icons/fontawesome/solid/flushed.svg | 1 + .../.icons/fontawesome/solid/folder-minus.svg | 1 + .../.icons/fontawesome/solid/folder-open.svg | 1 + .../.icons/fontawesome/solid/folder-plus.svg | 1 + .../.icons/fontawesome/solid/folder.svg | 1 + .../solid/font-awesome-logo-full.svg | 1 + .../.icons/fontawesome/solid/font.svg | 1 + .../fontawesome/solid/football-ball.svg | 1 + .../.icons/fontawesome/solid/forward.svg | 1 + .../.icons/fontawesome/solid/frog.svg | 1 + .../.icons/fontawesome/solid/frown-open.svg | 1 + .../.icons/fontawesome/solid/frown.svg | 1 + .../fontawesome/solid/funnel-dollar.svg | 1 + .../.icons/fontawesome/solid/futbol.svg | 1 + .../.icons/fontawesome/solid/gamepad.svg | 1 + .../.icons/fontawesome/solid/gas-pump.svg | 1 + .../.icons/fontawesome/solid/gavel.svg | 1 + .../material/.icons/fontawesome/solid/gem.svg | 1 + .../.icons/fontawesome/solid/genderless.svg | 1 + .../.icons/fontawesome/solid/ghost.svg | 1 + .../.icons/fontawesome/solid/gift.svg | 1 + .../.icons/fontawesome/solid/gifts.svg | 1 + .../.icons/fontawesome/solid/glass-cheers.svg | 1 + .../fontawesome/solid/glass-martini-alt.svg | 1 + .../fontawesome/solid/glass-martini.svg | 1 + .../fontawesome/solid/glass-whiskey.svg | 1 + .../.icons/fontawesome/solid/glasses.svg | 1 + .../.icons/fontawesome/solid/globe-africa.svg | 1 + .../fontawesome/solid/globe-americas.svg | 1 + .../.icons/fontawesome/solid/globe-asia.svg | 1 + .../.icons/fontawesome/solid/globe-europe.svg | 1 + .../.icons/fontawesome/solid/globe.svg | 1 + .../.icons/fontawesome/solid/golf-ball.svg | 1 + .../.icons/fontawesome/solid/gopuram.svg | 1 + .../fontawesome/solid/graduation-cap.svg | 1 + .../fontawesome/solid/greater-than-equal.svg | 1 + .../.icons/fontawesome/solid/greater-than.svg | 1 + .../.icons/fontawesome/solid/grimace.svg | 1 + .../.icons/fontawesome/solid/grin-alt.svg | 1 + .../fontawesome/solid/grin-beam-sweat.svg | 1 + .../.icons/fontawesome/solid/grin-beam.svg | 1 + .../.icons/fontawesome/solid/grin-hearts.svg | 1 + .../fontawesome/solid/grin-squint-tears.svg | 1 + .../.icons/fontawesome/solid/grin-squint.svg | 1 + .../.icons/fontawesome/solid/grin-stars.svg | 1 + .../.icons/fontawesome/solid/grin-tears.svg | 1 + .../fontawesome/solid/grin-tongue-squint.svg | 1 + .../fontawesome/solid/grin-tongue-wink.svg | 1 + .../.icons/fontawesome/solid/grin-tongue.svg | 1 + .../.icons/fontawesome/solid/grin-wink.svg | 1 + .../.icons/fontawesome/solid/grin.svg | 1 + .../fontawesome/solid/grip-horizontal.svg | 1 + .../fontawesome/solid/grip-lines-vertical.svg | 1 + .../.icons/fontawesome/solid/grip-lines.svg | 1 + .../fontawesome/solid/grip-vertical.svg | 1 + .../.icons/fontawesome/solid/guitar.svg | 1 + .../.icons/fontawesome/solid/h-square.svg | 1 + .../.icons/fontawesome/solid/hamburger.svg | 1 + .../.icons/fontawesome/solid/hammer.svg | 1 + .../.icons/fontawesome/solid/hamsa.svg | 1 + .../fontawesome/solid/hand-holding-heart.svg | 1 + .../solid/hand-holding-medical.svg | 1 + .../fontawesome/solid/hand-holding-usd.svg | 1 + .../fontawesome/solid/hand-holding-water.svg | 1 + .../.icons/fontawesome/solid/hand-holding.svg | 1 + .../.icons/fontawesome/solid/hand-lizard.svg | 1 + .../fontawesome/solid/hand-middle-finger.svg | 1 + .../.icons/fontawesome/solid/hand-paper.svg | 1 + .../.icons/fontawesome/solid/hand-peace.svg | 1 + .../fontawesome/solid/hand-point-down.svg | 1 + .../fontawesome/solid/hand-point-left.svg | 1 + .../fontawesome/solid/hand-point-right.svg | 1 + .../fontawesome/solid/hand-point-up.svg | 1 + .../.icons/fontawesome/solid/hand-pointer.svg | 1 + .../.icons/fontawesome/solid/hand-rock.svg | 1 + .../fontawesome/solid/hand-scissors.svg | 1 + .../fontawesome/solid/hand-sparkles.svg | 1 + .../.icons/fontawesome/solid/hand-spock.svg | 1 + .../fontawesome/solid/hands-helping.svg | 1 + .../.icons/fontawesome/solid/hands-wash.svg | 1 + .../.icons/fontawesome/solid/hands.svg | 1 + .../fontawesome/solid/handshake-alt-slash.svg | 1 + .../fontawesome/solid/handshake-slash.svg | 1 + .../.icons/fontawesome/solid/handshake.svg | 1 + .../.icons/fontawesome/solid/hanukiah.svg | 1 + .../.icons/fontawesome/solid/hard-hat.svg | 1 + .../.icons/fontawesome/solid/hashtag.svg | 1 + .../fontawesome/solid/hat-cowboy-side.svg | 1 + .../.icons/fontawesome/solid/hat-cowboy.svg | 1 + .../.icons/fontawesome/solid/hat-wizard.svg | 1 + .../material/.icons/fontawesome/solid/hdd.svg | 1 + .../solid/head-side-cough-slash.svg | 1 + .../fontawesome/solid/head-side-cough.svg | 1 + .../fontawesome/solid/head-side-mask.svg | 1 + .../fontawesome/solid/head-side-virus.svg | 1 + .../.icons/fontawesome/solid/heading.svg | 1 + .../fontawesome/solid/headphones-alt.svg | 1 + .../.icons/fontawesome/solid/headphones.svg | 1 + .../.icons/fontawesome/solid/headset.svg | 1 + .../.icons/fontawesome/solid/heart-broken.svg | 1 + .../.icons/fontawesome/solid/heart.svg | 1 + .../.icons/fontawesome/solid/heartbeat.svg | 1 + .../.icons/fontawesome/solid/helicopter.svg | 1 + .../.icons/fontawesome/solid/highlighter.svg | 1 + .../.icons/fontawesome/solid/hiking.svg | 1 + .../.icons/fontawesome/solid/hippo.svg | 1 + .../.icons/fontawesome/solid/history.svg | 1 + .../.icons/fontawesome/solid/hockey-puck.svg | 1 + .../.icons/fontawesome/solid/holly-berry.svg | 1 + .../.icons/fontawesome/solid/home.svg | 1 + .../.icons/fontawesome/solid/horse-head.svg | 1 + .../.icons/fontawesome/solid/horse.svg | 1 + .../.icons/fontawesome/solid/hospital-alt.svg | 1 + .../fontawesome/solid/hospital-symbol.svg | 1 + .../fontawesome/solid/hospital-user.svg | 1 + .../.icons/fontawesome/solid/hospital.svg | 1 + .../.icons/fontawesome/solid/hot-tub.svg | 1 + .../.icons/fontawesome/solid/hotdog.svg | 1 + .../.icons/fontawesome/solid/hotel.svg | 1 + .../fontawesome/solid/hourglass-end.svg | 1 + .../fontawesome/solid/hourglass-half.svg | 1 + .../fontawesome/solid/hourglass-start.svg | 1 + .../.icons/fontawesome/solid/hourglass.svg | 1 + .../.icons/fontawesome/solid/house-damage.svg | 1 + .../.icons/fontawesome/solid/house-user.svg | 1 + .../.icons/fontawesome/solid/hryvnia.svg | 1 + .../.icons/fontawesome/solid/i-cursor.svg | 1 + .../.icons/fontawesome/solid/ice-cream.svg | 1 + .../.icons/fontawesome/solid/icicles.svg | 1 + .../.icons/fontawesome/solid/icons.svg | 1 + .../.icons/fontawesome/solid/id-badge.svg | 1 + .../.icons/fontawesome/solid/id-card-alt.svg | 1 + .../.icons/fontawesome/solid/id-card.svg | 1 + .../.icons/fontawesome/solid/igloo.svg | 1 + .../.icons/fontawesome/solid/image.svg | 1 + .../.icons/fontawesome/solid/images.svg | 1 + .../.icons/fontawesome/solid/inbox.svg | 1 + .../.icons/fontawesome/solid/indent.svg | 1 + .../.icons/fontawesome/solid/industry.svg | 1 + .../.icons/fontawesome/solid/infinity.svg | 1 + .../.icons/fontawesome/solid/info-circle.svg | 1 + .../.icons/fontawesome/solid/info.svg | 1 + .../.icons/fontawesome/solid/italic.svg | 1 + .../.icons/fontawesome/solid/jedi.svg | 1 + .../.icons/fontawesome/solid/joint.svg | 1 + .../fontawesome/solid/journal-whills.svg | 1 + .../.icons/fontawesome/solid/kaaba.svg | 1 + .../material/.icons/fontawesome/solid/key.svg | 1 + .../.icons/fontawesome/solid/keyboard.svg | 1 + .../.icons/fontawesome/solid/khanda.svg | 1 + .../.icons/fontawesome/solid/kiss-beam.svg | 1 + .../fontawesome/solid/kiss-wink-heart.svg | 1 + .../.icons/fontawesome/solid/kiss.svg | 1 + .../.icons/fontawesome/solid/kiwi-bird.svg | 1 + .../.icons/fontawesome/solid/landmark.svg | 1 + .../.icons/fontawesome/solid/language.svg | 1 + .../.icons/fontawesome/solid/laptop-code.svg | 1 + .../.icons/fontawesome/solid/laptop-house.svg | 1 + .../fontawesome/solid/laptop-medical.svg | 1 + .../.icons/fontawesome/solid/laptop.svg | 1 + .../.icons/fontawesome/solid/laugh-beam.svg | 1 + .../.icons/fontawesome/solid/laugh-squint.svg | 1 + .../.icons/fontawesome/solid/laugh-wink.svg | 1 + .../.icons/fontawesome/solid/laugh.svg | 1 + .../.icons/fontawesome/solid/layer-group.svg | 1 + .../.icons/fontawesome/solid/leaf.svg | 1 + .../.icons/fontawesome/solid/lemon.svg | 1 + .../fontawesome/solid/less-than-equal.svg | 1 + .../.icons/fontawesome/solid/less-than.svg | 1 + .../fontawesome/solid/level-down-alt.svg | 1 + .../.icons/fontawesome/solid/level-up-alt.svg | 1 + .../.icons/fontawesome/solid/life-ring.svg | 1 + .../.icons/fontawesome/solid/lightbulb.svg | 1 + .../.icons/fontawesome/solid/link.svg | 1 + .../.icons/fontawesome/solid/lira-sign.svg | 1 + .../.icons/fontawesome/solid/list-alt.svg | 1 + .../.icons/fontawesome/solid/list-ol.svg | 1 + .../.icons/fontawesome/solid/list-ul.svg | 1 + .../.icons/fontawesome/solid/list.svg | 1 + .../fontawesome/solid/location-arrow.svg | 1 + .../.icons/fontawesome/solid/lock-open.svg | 1 + .../.icons/fontawesome/solid/lock.svg | 1 + .../fontawesome/solid/long-arrow-alt-down.svg | 1 + .../fontawesome/solid/long-arrow-alt-left.svg | 1 + .../solid/long-arrow-alt-right.svg | 1 + .../fontawesome/solid/long-arrow-alt-up.svg | 1 + .../.icons/fontawesome/solid/low-vision.svg | 1 + .../.icons/fontawesome/solid/luggage-cart.svg | 1 + .../.icons/fontawesome/solid/lungs-virus.svg | 1 + .../.icons/fontawesome/solid/lungs.svg | 1 + .../.icons/fontawesome/solid/magic.svg | 1 + .../.icons/fontawesome/solid/magnet.svg | 1 + .../.icons/fontawesome/solid/mail-bulk.svg | 1 + .../.icons/fontawesome/solid/male.svg | 1 + .../fontawesome/solid/map-marked-alt.svg | 1 + .../.icons/fontawesome/solid/map-marked.svg | 1 + .../fontawesome/solid/map-marker-alt.svg | 1 + .../.icons/fontawesome/solid/map-marker.svg | 1 + .../.icons/fontawesome/solid/map-pin.svg | 1 + .../.icons/fontawesome/solid/map-signs.svg | 1 + .../material/.icons/fontawesome/solid/map.svg | 1 + .../.icons/fontawesome/solid/marker.svg | 1 + .../.icons/fontawesome/solid/mars-double.svg | 1 + .../fontawesome/solid/mars-stroke-h.svg | 1 + .../fontawesome/solid/mars-stroke-v.svg | 1 + .../.icons/fontawesome/solid/mars-stroke.svg | 1 + .../.icons/fontawesome/solid/mars.svg | 1 + .../.icons/fontawesome/solid/mask.svg | 1 + .../.icons/fontawesome/solid/medal.svg | 1 + .../.icons/fontawesome/solid/medkit.svg | 1 + .../.icons/fontawesome/solid/meh-blank.svg | 1 + .../fontawesome/solid/meh-rolling-eyes.svg | 1 + .../material/.icons/fontawesome/solid/meh.svg | 1 + .../.icons/fontawesome/solid/memory.svg | 1 + .../.icons/fontawesome/solid/menorah.svg | 1 + .../.icons/fontawesome/solid/mercury.svg | 1 + .../.icons/fontawesome/solid/meteor.svg | 1 + .../.icons/fontawesome/solid/microchip.svg | 1 + .../solid/microphone-alt-slash.svg | 1 + .../fontawesome/solid/microphone-alt.svg | 1 + .../fontawesome/solid/microphone-slash.svg | 1 + .../.icons/fontawesome/solid/microphone.svg | 1 + .../.icons/fontawesome/solid/microscope.svg | 1 + .../.icons/fontawesome/solid/minus-circle.svg | 1 + .../.icons/fontawesome/solid/minus-square.svg | 1 + .../.icons/fontawesome/solid/minus.svg | 1 + .../.icons/fontawesome/solid/mitten.svg | 1 + .../.icons/fontawesome/solid/mobile-alt.svg | 1 + .../.icons/fontawesome/solid/mobile.svg | 1 + .../fontawesome/solid/money-bill-alt.svg | 1 + .../fontawesome/solid/money-bill-wave-alt.svg | 1 + .../fontawesome/solid/money-bill-wave.svg | 1 + .../.icons/fontawesome/solid/money-bill.svg | 1 + .../fontawesome/solid/money-check-alt.svg | 1 + .../.icons/fontawesome/solid/money-check.svg | 1 + .../.icons/fontawesome/solid/monument.svg | 1 + .../.icons/fontawesome/solid/moon.svg | 1 + .../fontawesome/solid/mortar-pestle.svg | 1 + .../.icons/fontawesome/solid/mosque.svg | 1 + .../.icons/fontawesome/solid/motorcycle.svg | 1 + .../.icons/fontawesome/solid/mountain.svg | 1 + .../fontawesome/solid/mouse-pointer.svg | 1 + .../.icons/fontawesome/solid/mouse.svg | 1 + .../.icons/fontawesome/solid/mug-hot.svg | 1 + .../.icons/fontawesome/solid/music.svg | 1 + .../fontawesome/solid/network-wired.svg | 1 + .../.icons/fontawesome/solid/neuter.svg | 1 + .../.icons/fontawesome/solid/newspaper.svg | 1 + .../.icons/fontawesome/solid/not-equal.svg | 1 + .../fontawesome/solid/notes-medical.svg | 1 + .../.icons/fontawesome/solid/object-group.svg | 1 + .../fontawesome/solid/object-ungroup.svg | 1 + .../.icons/fontawesome/solid/oil-can.svg | 1 + docs/material/.icons/fontawesome/solid/om.svg | 1 + .../.icons/fontawesome/solid/otter.svg | 1 + .../.icons/fontawesome/solid/outdent.svg | 1 + .../.icons/fontawesome/solid/pager.svg | 1 + .../.icons/fontawesome/solid/paint-brush.svg | 1 + .../.icons/fontawesome/solid/paint-roller.svg | 1 + .../.icons/fontawesome/solid/palette.svg | 1 + .../.icons/fontawesome/solid/pallet.svg | 1 + .../.icons/fontawesome/solid/paper-plane.svg | 1 + .../.icons/fontawesome/solid/paperclip.svg | 1 + .../fontawesome/solid/parachute-box.svg | 1 + .../.icons/fontawesome/solid/paragraph.svg | 1 + .../.icons/fontawesome/solid/parking.svg | 1 + .../.icons/fontawesome/solid/passport.svg | 1 + .../fontawesome/solid/pastafarianism.svg | 1 + .../.icons/fontawesome/solid/paste.svg | 1 + .../.icons/fontawesome/solid/pause-circle.svg | 1 + .../.icons/fontawesome/solid/pause.svg | 1 + .../material/.icons/fontawesome/solid/paw.svg | 1 + .../.icons/fontawesome/solid/peace.svg | 1 + .../.icons/fontawesome/solid/pen-alt.svg | 1 + .../.icons/fontawesome/solid/pen-fancy.svg | 1 + .../.icons/fontawesome/solid/pen-nib.svg | 1 + .../.icons/fontawesome/solid/pen-square.svg | 1 + .../material/.icons/fontawesome/solid/pen.svg | 1 + .../.icons/fontawesome/solid/pencil-alt.svg | 1 + .../.icons/fontawesome/solid/pencil-ruler.svg | 1 + .../fontawesome/solid/people-arrows.svg | 1 + .../.icons/fontawesome/solid/people-carry.svg | 1 + .../.icons/fontawesome/solid/pepper-hot.svg | 1 + .../.icons/fontawesome/solid/percent.svg | 1 + .../.icons/fontawesome/solid/percentage.svg | 1 + .../.icons/fontawesome/solid/person-booth.svg | 1 + .../.icons/fontawesome/solid/phone-alt.svg | 1 + .../.icons/fontawesome/solid/phone-slash.svg | 1 + .../fontawesome/solid/phone-square-alt.svg | 1 + .../.icons/fontawesome/solid/phone-square.svg | 1 + .../.icons/fontawesome/solid/phone-volume.svg | 1 + .../.icons/fontawesome/solid/phone.svg | 1 + .../.icons/fontawesome/solid/photo-video.svg | 1 + .../.icons/fontawesome/solid/piggy-bank.svg | 1 + .../.icons/fontawesome/solid/pills.svg | 1 + .../.icons/fontawesome/solid/pizza-slice.svg | 1 + .../fontawesome/solid/place-of-worship.svg | 1 + .../fontawesome/solid/plane-arrival.svg | 1 + .../fontawesome/solid/plane-departure.svg | 1 + .../.icons/fontawesome/solid/plane-slash.svg | 1 + .../.icons/fontawesome/solid/plane.svg | 1 + .../.icons/fontawesome/solid/play-circle.svg | 1 + .../.icons/fontawesome/solid/play.svg | 1 + .../.icons/fontawesome/solid/plug.svg | 1 + .../.icons/fontawesome/solid/plus-circle.svg | 1 + .../.icons/fontawesome/solid/plus-square.svg | 1 + .../.icons/fontawesome/solid/plus.svg | 1 + .../.icons/fontawesome/solid/podcast.svg | 1 + .../.icons/fontawesome/solid/poll-h.svg | 1 + .../.icons/fontawesome/solid/poll.svg | 1 + .../.icons/fontawesome/solid/poo-storm.svg | 1 + .../material/.icons/fontawesome/solid/poo.svg | 1 + .../.icons/fontawesome/solid/poop.svg | 1 + .../.icons/fontawesome/solid/portrait.svg | 1 + .../.icons/fontawesome/solid/pound-sign.svg | 1 + .../.icons/fontawesome/solid/power-off.svg | 1 + .../.icons/fontawesome/solid/pray.svg | 1 + .../fontawesome/solid/praying-hands.svg | 1 + .../solid/prescription-bottle-alt.svg | 1 + .../fontawesome/solid/prescription-bottle.svg | 1 + .../.icons/fontawesome/solid/prescription.svg | 1 + .../.icons/fontawesome/solid/print.svg | 1 + .../.icons/fontawesome/solid/procedures.svg | 1 + .../fontawesome/solid/project-diagram.svg | 1 + .../.icons/fontawesome/solid/pump-medical.svg | 1 + .../.icons/fontawesome/solid/pump-soap.svg | 1 + .../.icons/fontawesome/solid/puzzle-piece.svg | 1 + .../.icons/fontawesome/solid/qrcode.svg | 1 + .../fontawesome/solid/question-circle.svg | 1 + .../.icons/fontawesome/solid/question.svg | 1 + .../.icons/fontawesome/solid/quidditch.svg | 1 + .../.icons/fontawesome/solid/quote-left.svg | 1 + .../.icons/fontawesome/solid/quote-right.svg | 1 + .../.icons/fontawesome/solid/quran.svg | 1 + .../fontawesome/solid/radiation-alt.svg | 1 + .../.icons/fontawesome/solid/radiation.svg | 1 + .../.icons/fontawesome/solid/rainbow.svg | 1 + .../.icons/fontawesome/solid/random.svg | 1 + .../.icons/fontawesome/solid/receipt.svg | 1 + .../.icons/fontawesome/solid/record-vinyl.svg | 1 + .../.icons/fontawesome/solid/recycle.svg | 1 + .../.icons/fontawesome/solid/redo-alt.svg | 1 + .../.icons/fontawesome/solid/redo.svg | 1 + .../.icons/fontawesome/solid/registered.svg | 1 + .../fontawesome/solid/remove-format.svg | 1 + .../.icons/fontawesome/solid/reply-all.svg | 1 + .../.icons/fontawesome/solid/reply.svg | 1 + .../.icons/fontawesome/solid/republican.svg | 1 + .../.icons/fontawesome/solid/restroom.svg | 1 + .../.icons/fontawesome/solid/retweet.svg | 1 + .../.icons/fontawesome/solid/ribbon.svg | 1 + .../.icons/fontawesome/solid/ring.svg | 1 + .../.icons/fontawesome/solid/road.svg | 1 + .../.icons/fontawesome/solid/robot.svg | 1 + .../.icons/fontawesome/solid/rocket.svg | 1 + .../.icons/fontawesome/solid/route.svg | 1 + .../.icons/fontawesome/solid/rss-square.svg | 1 + .../material/.icons/fontawesome/solid/rss.svg | 1 + .../.icons/fontawesome/solid/ruble-sign.svg | 1 + .../fontawesome/solid/ruler-combined.svg | 1 + .../fontawesome/solid/ruler-horizontal.svg | 1 + .../fontawesome/solid/ruler-vertical.svg | 1 + .../.icons/fontawesome/solid/ruler.svg | 1 + .../.icons/fontawesome/solid/running.svg | 1 + .../.icons/fontawesome/solid/rupee-sign.svg | 1 + .../.icons/fontawesome/solid/sad-cry.svg | 1 + .../.icons/fontawesome/solid/sad-tear.svg | 1 + .../fontawesome/solid/satellite-dish.svg | 1 + .../.icons/fontawesome/solid/satellite.svg | 1 + .../.icons/fontawesome/solid/save.svg | 1 + .../.icons/fontawesome/solid/school.svg | 1 + .../.icons/fontawesome/solid/screwdriver.svg | 1 + .../.icons/fontawesome/solid/scroll.svg | 1 + .../.icons/fontawesome/solid/sd-card.svg | 1 + .../fontawesome/solid/search-dollar.svg | 1 + .../fontawesome/solid/search-location.svg | 1 + .../.icons/fontawesome/solid/search-minus.svg | 1 + .../.icons/fontawesome/solid/search-plus.svg | 1 + .../.icons/fontawesome/solid/search.svg | 1 + .../.icons/fontawesome/solid/seedling.svg | 1 + .../.icons/fontawesome/solid/server.svg | 1 + .../.icons/fontawesome/solid/shapes.svg | 1 + .../fontawesome/solid/share-alt-square.svg | 1 + .../.icons/fontawesome/solid/share-alt.svg | 1 + .../.icons/fontawesome/solid/share-square.svg | 1 + .../.icons/fontawesome/solid/share.svg | 1 + .../.icons/fontawesome/solid/shekel-sign.svg | 1 + .../.icons/fontawesome/solid/shield-alt.svg | 1 + .../.icons/fontawesome/solid/shield-virus.svg | 1 + .../.icons/fontawesome/solid/ship.svg | 1 + .../fontawesome/solid/shipping-fast.svg | 1 + .../.icons/fontawesome/solid/shoe-prints.svg | 1 + .../.icons/fontawesome/solid/shopping-bag.svg | 1 + .../fontawesome/solid/shopping-basket.svg | 1 + .../fontawesome/solid/shopping-cart.svg | 1 + .../.icons/fontawesome/solid/shower.svg | 1 + .../.icons/fontawesome/solid/shuttle-van.svg | 1 + .../.icons/fontawesome/solid/sign-in-alt.svg | 1 + .../fontawesome/solid/sign-language.svg | 1 + .../.icons/fontawesome/solid/sign-out-alt.svg | 1 + .../.icons/fontawesome/solid/sign.svg | 1 + .../.icons/fontawesome/solid/signal.svg | 1 + .../.icons/fontawesome/solid/signature.svg | 1 + .../.icons/fontawesome/solid/sim-card.svg | 1 + .../.icons/fontawesome/solid/sitemap.svg | 1 + .../.icons/fontawesome/solid/skating.svg | 1 + .../fontawesome/solid/skiing-nordic.svg | 1 + .../.icons/fontawesome/solid/skiing.svg | 1 + .../fontawesome/solid/skull-crossbones.svg | 1 + .../.icons/fontawesome/solid/skull.svg | 1 + .../.icons/fontawesome/solid/slash.svg | 1 + .../.icons/fontawesome/solid/sleigh.svg | 1 + .../.icons/fontawesome/solid/sliders-h.svg | 1 + .../.icons/fontawesome/solid/smile-beam.svg | 1 + .../.icons/fontawesome/solid/smile-wink.svg | 1 + .../.icons/fontawesome/solid/smile.svg | 1 + .../.icons/fontawesome/solid/smog.svg | 1 + .../.icons/fontawesome/solid/smoking-ban.svg | 1 + .../.icons/fontawesome/solid/smoking.svg | 1 + .../material/.icons/fontawesome/solid/sms.svg | 1 + .../.icons/fontawesome/solid/snowboarding.svg | 1 + .../.icons/fontawesome/solid/snowflake.svg | 1 + .../.icons/fontawesome/solid/snowman.svg | 1 + .../.icons/fontawesome/solid/snowplow.svg | 1 + .../.icons/fontawesome/solid/soap.svg | 1 + .../.icons/fontawesome/solid/socks.svg | 1 + .../.icons/fontawesome/solid/solar-panel.svg | 1 + .../fontawesome/solid/sort-alpha-down-alt.svg | 1 + .../fontawesome/solid/sort-alpha-down.svg | 1 + .../fontawesome/solid/sort-alpha-up-alt.svg | 1 + .../fontawesome/solid/sort-alpha-up.svg | 1 + .../solid/sort-amount-down-alt.svg | 1 + .../fontawesome/solid/sort-amount-down.svg | 1 + .../fontawesome/solid/sort-amount-up-alt.svg | 1 + .../fontawesome/solid/sort-amount-up.svg | 1 + .../.icons/fontawesome/solid/sort-down.svg | 1 + .../solid/sort-numeric-down-alt.svg | 1 + .../fontawesome/solid/sort-numeric-down.svg | 1 + .../fontawesome/solid/sort-numeric-up-alt.svg | 1 + .../fontawesome/solid/sort-numeric-up.svg | 1 + .../.icons/fontawesome/solid/sort-up.svg | 1 + .../.icons/fontawesome/solid/sort.svg | 1 + .../material/.icons/fontawesome/solid/spa.svg | 1 + .../fontawesome/solid/space-shuttle.svg | 1 + .../.icons/fontawesome/solid/spell-check.svg | 1 + .../.icons/fontawesome/solid/spider.svg | 1 + .../.icons/fontawesome/solid/spinner.svg | 1 + .../.icons/fontawesome/solid/splotch.svg | 1 + .../.icons/fontawesome/solid/spray-can.svg | 1 + .../.icons/fontawesome/solid/square-full.svg | 1 + .../fontawesome/solid/square-root-alt.svg | 1 + .../.icons/fontawesome/solid/square.svg | 1 + .../.icons/fontawesome/solid/stamp.svg | 1 + .../fontawesome/solid/star-and-crescent.svg | 1 + .../fontawesome/solid/star-half-alt.svg | 1 + .../.icons/fontawesome/solid/star-half.svg | 1 + .../fontawesome/solid/star-of-david.svg | 1 + .../.icons/fontawesome/solid/star-of-life.svg | 1 + .../.icons/fontawesome/solid/star.svg | 1 + .../fontawesome/solid/step-backward.svg | 1 + .../.icons/fontawesome/solid/step-forward.svg | 1 + .../.icons/fontawesome/solid/stethoscope.svg | 1 + .../.icons/fontawesome/solid/sticky-note.svg | 1 + .../.icons/fontawesome/solid/stop-circle.svg | 1 + .../.icons/fontawesome/solid/stop.svg | 1 + .../.icons/fontawesome/solid/stopwatch-20.svg | 1 + .../.icons/fontawesome/solid/stopwatch.svg | 1 + .../fontawesome/solid/store-alt-slash.svg | 1 + .../.icons/fontawesome/solid/store-alt.svg | 1 + .../.icons/fontawesome/solid/store-slash.svg | 1 + .../.icons/fontawesome/solid/store.svg | 1 + .../.icons/fontawesome/solid/stream.svg | 1 + .../.icons/fontawesome/solid/street-view.svg | 1 + .../fontawesome/solid/strikethrough.svg | 1 + .../.icons/fontawesome/solid/stroopwafel.svg | 1 + .../.icons/fontawesome/solid/subscript.svg | 1 + .../.icons/fontawesome/solid/subway.svg | 1 + .../fontawesome/solid/suitcase-rolling.svg | 1 + .../.icons/fontawesome/solid/suitcase.svg | 1 + .../material/.icons/fontawesome/solid/sun.svg | 1 + .../.icons/fontawesome/solid/superscript.svg | 1 + .../.icons/fontawesome/solid/surprise.svg | 1 + .../.icons/fontawesome/solid/swatchbook.svg | 1 + .../.icons/fontawesome/solid/swimmer.svg | 1 + .../fontawesome/solid/swimming-pool.svg | 1 + .../.icons/fontawesome/solid/synagogue.svg | 1 + .../.icons/fontawesome/solid/sync-alt.svg | 1 + .../.icons/fontawesome/solid/sync.svg | 1 + .../.icons/fontawesome/solid/syringe.svg | 1 + .../.icons/fontawesome/solid/table-tennis.svg | 1 + .../.icons/fontawesome/solid/table.svg | 1 + .../.icons/fontawesome/solid/tablet-alt.svg | 1 + .../.icons/fontawesome/solid/tablet.svg | 1 + .../.icons/fontawesome/solid/tablets.svg | 1 + .../fontawesome/solid/tachometer-alt.svg | 1 + .../material/.icons/fontawesome/solid/tag.svg | 1 + .../.icons/fontawesome/solid/tags.svg | 1 + .../.icons/fontawesome/solid/tape.svg | 1 + .../.icons/fontawesome/solid/tasks.svg | 1 + .../.icons/fontawesome/solid/taxi.svg | 1 + .../.icons/fontawesome/solid/teeth-open.svg | 1 + .../.icons/fontawesome/solid/teeth.svg | 1 + .../fontawesome/solid/temperature-high.svg | 1 + .../fontawesome/solid/temperature-low.svg | 1 + .../.icons/fontawesome/solid/tenge.svg | 1 + .../.icons/fontawesome/solid/terminal.svg | 1 + .../.icons/fontawesome/solid/text-height.svg | 1 + .../.icons/fontawesome/solid/text-width.svg | 1 + .../.icons/fontawesome/solid/th-large.svg | 1 + .../.icons/fontawesome/solid/th-list.svg | 1 + docs/material/.icons/fontawesome/solid/th.svg | 1 + .../fontawesome/solid/theater-masks.svg | 1 + .../fontawesome/solid/thermometer-empty.svg | 1 + .../fontawesome/solid/thermometer-full.svg | 1 + .../fontawesome/solid/thermometer-half.svg | 1 + .../fontawesome/solid/thermometer-quarter.svg | 1 + .../solid/thermometer-three-quarters.svg | 1 + .../.icons/fontawesome/solid/thermometer.svg | 1 + .../.icons/fontawesome/solid/thumbs-down.svg | 1 + .../.icons/fontawesome/solid/thumbs-up.svg | 1 + .../.icons/fontawesome/solid/thumbtack.svg | 1 + .../.icons/fontawesome/solid/ticket-alt.svg | 1 + .../.icons/fontawesome/solid/times-circle.svg | 1 + .../.icons/fontawesome/solid/times.svg | 1 + .../.icons/fontawesome/solid/tint-slash.svg | 1 + .../.icons/fontawesome/solid/tint.svg | 1 + .../.icons/fontawesome/solid/tired.svg | 1 + .../.icons/fontawesome/solid/toggle-off.svg | 1 + .../.icons/fontawesome/solid/toggle-on.svg | 1 + .../fontawesome/solid/toilet-paper-slash.svg | 1 + .../.icons/fontawesome/solid/toilet-paper.svg | 1 + .../.icons/fontawesome/solid/toilet.svg | 1 + .../.icons/fontawesome/solid/toolbox.svg | 1 + .../.icons/fontawesome/solid/tools.svg | 1 + .../.icons/fontawesome/solid/tooth.svg | 1 + .../.icons/fontawesome/solid/torah.svg | 1 + .../.icons/fontawesome/solid/torii-gate.svg | 1 + .../.icons/fontawesome/solid/tractor.svg | 1 + .../.icons/fontawesome/solid/trademark.svg | 1 + .../fontawesome/solid/traffic-light.svg | 1 + .../.icons/fontawesome/solid/trailer.svg | 1 + .../.icons/fontawesome/solid/train.svg | 1 + .../.icons/fontawesome/solid/tram.svg | 1 + .../fontawesome/solid/transgender-alt.svg | 1 + .../.icons/fontawesome/solid/transgender.svg | 1 + .../.icons/fontawesome/solid/trash-alt.svg | 1 + .../fontawesome/solid/trash-restore-alt.svg | 1 + .../fontawesome/solid/trash-restore.svg | 1 + .../.icons/fontawesome/solid/trash.svg | 1 + .../.icons/fontawesome/solid/tree.svg | 1 + .../.icons/fontawesome/solid/trophy.svg | 1 + .../fontawesome/solid/truck-loading.svg | 1 + .../fontawesome/solid/truck-monster.svg | 1 + .../.icons/fontawesome/solid/truck-moving.svg | 1 + .../.icons/fontawesome/solid/truck-pickup.svg | 1 + .../.icons/fontawesome/solid/truck.svg | 1 + .../.icons/fontawesome/solid/tshirt.svg | 1 + .../material/.icons/fontawesome/solid/tty.svg | 1 + docs/material/.icons/fontawesome/solid/tv.svg | 1 + .../fontawesome/solid/umbrella-beach.svg | 1 + .../.icons/fontawesome/solid/umbrella.svg | 1 + .../.icons/fontawesome/solid/underline.svg | 1 + .../.icons/fontawesome/solid/undo-alt.svg | 1 + .../.icons/fontawesome/solid/undo.svg | 1 + .../fontawesome/solid/universal-access.svg | 1 + .../.icons/fontawesome/solid/university.svg | 1 + .../.icons/fontawesome/solid/unlink.svg | 1 + .../.icons/fontawesome/solid/unlock-alt.svg | 1 + .../.icons/fontawesome/solid/unlock.svg | 1 + .../.icons/fontawesome/solid/upload.svg | 1 + .../fontawesome/solid/user-alt-slash.svg | 1 + .../.icons/fontawesome/solid/user-alt.svg | 1 + .../fontawesome/solid/user-astronaut.svg | 1 + .../.icons/fontawesome/solid/user-check.svg | 1 + .../.icons/fontawesome/solid/user-circle.svg | 1 + .../.icons/fontawesome/solid/user-clock.svg | 1 + .../.icons/fontawesome/solid/user-cog.svg | 1 + .../.icons/fontawesome/solid/user-edit.svg | 1 + .../.icons/fontawesome/solid/user-friends.svg | 1 + .../fontawesome/solid/user-graduate.svg | 1 + .../.icons/fontawesome/solid/user-injured.svg | 1 + .../.icons/fontawesome/solid/user-lock.svg | 1 + .../.icons/fontawesome/solid/user-md.svg | 1 + .../.icons/fontawesome/solid/user-minus.svg | 1 + .../.icons/fontawesome/solid/user-ninja.svg | 1 + .../.icons/fontawesome/solid/user-nurse.svg | 1 + .../.icons/fontawesome/solid/user-plus.svg | 1 + .../.icons/fontawesome/solid/user-secret.svg | 1 + .../.icons/fontawesome/solid/user-shield.svg | 1 + .../.icons/fontawesome/solid/user-slash.svg | 1 + .../.icons/fontawesome/solid/user-tag.svg | 1 + .../.icons/fontawesome/solid/user-tie.svg | 1 + .../.icons/fontawesome/solid/user-times.svg | 1 + .../.icons/fontawesome/solid/user.svg | 1 + .../.icons/fontawesome/solid/users-cog.svg | 1 + .../.icons/fontawesome/solid/users.svg | 1 + .../fontawesome/solid/utensil-spoon.svg | 1 + .../.icons/fontawesome/solid/utensils.svg | 1 + .../fontawesome/solid/vector-square.svg | 1 + .../.icons/fontawesome/solid/venus-double.svg | 1 + .../.icons/fontawesome/solid/venus-mars.svg | 1 + .../.icons/fontawesome/solid/venus.svg | 1 + .../.icons/fontawesome/solid/vial.svg | 1 + .../.icons/fontawesome/solid/vials.svg | 1 + .../.icons/fontawesome/solid/video-slash.svg | 1 + .../.icons/fontawesome/solid/video.svg | 1 + .../.icons/fontawesome/solid/vihara.svg | 1 + .../.icons/fontawesome/solid/virus-slash.svg | 1 + .../.icons/fontawesome/solid/virus.svg | 1 + .../.icons/fontawesome/solid/viruses.svg | 1 + .../.icons/fontawesome/solid/voicemail.svg | 1 + .../fontawesome/solid/volleyball-ball.svg | 1 + .../.icons/fontawesome/solid/volume-down.svg | 1 + .../.icons/fontawesome/solid/volume-mute.svg | 1 + .../.icons/fontawesome/solid/volume-off.svg | 1 + .../.icons/fontawesome/solid/volume-up.svg | 1 + .../.icons/fontawesome/solid/vote-yea.svg | 1 + .../.icons/fontawesome/solid/vr-cardboard.svg | 1 + .../.icons/fontawesome/solid/walking.svg | 1 + .../.icons/fontawesome/solid/wallet.svg | 1 + .../.icons/fontawesome/solid/warehouse.svg | 1 + .../.icons/fontawesome/solid/water.svg | 1 + .../.icons/fontawesome/solid/wave-square.svg | 1 + .../fontawesome/solid/weight-hanging.svg | 1 + .../.icons/fontawesome/solid/weight.svg | 1 + .../.icons/fontawesome/solid/wheelchair.svg | 1 + .../.icons/fontawesome/solid/wifi.svg | 1 + .../.icons/fontawesome/solid/wind.svg | 1 + .../.icons/fontawesome/solid/window-close.svg | 1 + .../fontawesome/solid/window-maximize.svg | 1 + .../fontawesome/solid/window-minimize.svg | 1 + .../fontawesome/solid/window-restore.svg | 1 + .../.icons/fontawesome/solid/wine-bottle.svg | 1 + .../fontawesome/solid/wine-glass-alt.svg | 1 + .../.icons/fontawesome/solid/wine-glass.svg | 1 + .../.icons/fontawesome/solid/won-sign.svg | 1 + .../.icons/fontawesome/solid/wrench.svg | 1 + .../.icons/fontawesome/solid/x-ray.svg | 1 + .../.icons/fontawesome/solid/yen-sign.svg | 1 + .../.icons/fontawesome/solid/yin-yang.svg | 1 + docs/material/.icons/logo.svg | 1 + docs/material/.icons/material/ab-testing.svg | 1 + .../material/.icons/material/abjad-arabic.svg | 1 + .../material/.icons/material/abjad-hebrew.svg | 1 + .../.icons/material/abugida-devanagari.svg | 1 + .../material/.icons/material/abugida-thai.svg | 1 + .../material/access-point-network-off.svg | 1 + .../.icons/material/access-point-network.svg | 1 + .../material/.icons/material/access-point.svg | 1 + .../.icons/material/account-alert-outline.svg | 1 + .../.icons/material/account-alert.svg | 1 + .../material/account-arrow-left-outline.svg | 1 + .../.icons/material/account-arrow-left.svg | 1 + .../material/account-arrow-right-outline.svg | 1 + .../.icons/material/account-arrow-right.svg | 1 + .../material/account-box-multiple-outline.svg | 1 + .../.icons/material/account-box-multiple.svg | 1 + .../.icons/material/account-box-outline.svg | 1 + docs/material/.icons/material/account-box.svg | 1 + .../material/account-cancel-outline.svg | 1 + .../.icons/material/account-cancel.svg | 1 + .../.icons/material/account-cash-outline.svg | 1 + .../material/.icons/material/account-cash.svg | 1 + .../.icons/material/account-check-outline.svg | 1 + .../.icons/material/account-check.svg | 1 + .../.icons/material/account-child-circle.svg | 1 + .../.icons/material/account-child-outline.svg | 1 + .../.icons/material/account-child.svg | 1 + .../material/account-circle-outline.svg | 1 + .../.icons/material/account-circle.svg | 1 + .../.icons/material/account-clock-outline.svg | 1 + .../.icons/material/account-clock.svg | 1 + .../.icons/material/account-cog-outline.svg | 1 + docs/material/.icons/material/account-cog.svg | 1 + .../material/account-convert-outline.svg | 1 + .../.icons/material/account-convert.svg | 1 + .../.icons/material/account-cowboy-hat.svg | 1 + .../material/account-details-outline.svg | 1 + .../.icons/material/account-details.svg | 1 + .../.icons/material/account-edit-outline.svg | 1 + .../material/.icons/material/account-edit.svg | 1 + .../.icons/material/account-group-outline.svg | 1 + .../.icons/material/account-group.svg | 1 + .../.icons/material/account-hard-hat.svg | 1 + .../.icons/material/account-heart-outline.svg | 1 + .../.icons/material/account-heart.svg | 1 + .../.icons/material/account-key-outline.svg | 1 + docs/material/.icons/material/account-key.svg | 1 + .../.icons/material/account-lock-outline.svg | 1 + .../material/.icons/material/account-lock.svg | 1 + .../.icons/material/account-minus-outline.svg | 1 + .../.icons/material/account-minus.svg | 1 + .../account-multiple-check-outline.svg | 1 + .../material/account-multiple-check.svg | 1 + .../account-multiple-minus-outline.svg | 1 + .../material/account-multiple-minus.svg | 1 + .../material/account-multiple-outline.svg | 1 + .../account-multiple-plus-outline.svg | 1 + .../.icons/material/account-multiple-plus.svg | 1 + .../account-multiple-remove-outline.svg | 1 + .../material/account-multiple-remove.svg | 1 + .../.icons/material/account-multiple.svg | 1 + .../.icons/material/account-music-outline.svg | 1 + .../.icons/material/account-music.svg | 1 + .../material/account-network-outline.svg | 1 + .../.icons/material/account-network.svg | 1 + .../.icons/material/account-off-outline.svg | 1 + docs/material/.icons/material/account-off.svg | 1 + .../.icons/material/account-outline.svg | 1 + .../.icons/material/account-plus-outline.svg | 1 + .../material/.icons/material/account-plus.svg | 1 + .../material/account-question-outline.svg | 1 + .../.icons/material/account-question.svg | 1 + .../material/account-remove-outline.svg | 1 + .../.icons/material/account-remove.svg | 1 + .../material/account-search-outline.svg | 1 + .../.icons/material/account-search.svg | 1 + .../material/account-settings-outline.svg | 1 + .../.icons/material/account-settings.svg | 1 + .../.icons/material/account-star-outline.svg | 1 + .../material/.icons/material/account-star.svg | 1 + .../material/account-supervisor-circle.svg | 1 + .../material/account-supervisor-outline.svg | 1 + .../.icons/material/account-supervisor.svg | 1 + .../material/account-switch-outline.svg | 1 + .../.icons/material/account-switch.svg | 1 + .../.icons/material/account-tie-outline.svg | 1 + .../account-tie-voice-off-outline.svg | 1 + .../.icons/material/account-tie-voice-off.svg | 1 + .../material/account-tie-voice-outline.svg | 1 + .../.icons/material/account-tie-voice.svg | 1 + docs/material/.icons/material/account-tie.svg | 1 + .../.icons/material/account-voice.svg | 1 + docs/material/.icons/material/account.svg | 1 + docs/material/.icons/material/adjust.svg | 1 + .../.icons/material/adobe-acrobat.svg | 1 + docs/material/.icons/material/adobe.svg | 1 + .../.icons/material/air-conditioner.svg | 1 + docs/material/.icons/material/air-filter.svg | 1 + docs/material/.icons/material/air-horn.svg | 1 + .../.icons/material/air-humidifier.svg | 1 + .../material/.icons/material/air-purifier.svg | 1 + docs/material/.icons/material/airbag.svg | 1 + .../.icons/material/airballoon-outline.svg | 1 + docs/material/.icons/material/airballoon.svg | 1 + .../.icons/material/airplane-landing.svg | 1 + .../material/.icons/material/airplane-off.svg | 1 + .../.icons/material/airplane-takeoff.svg | 1 + docs/material/.icons/material/airplane.svg | 1 + docs/material/.icons/material/airport.svg | 1 + docs/material/.icons/material/alarm-bell.svg | 1 + docs/material/.icons/material/alarm-check.svg | 1 + .../.icons/material/alarm-light-outline.svg | 1 + docs/material/.icons/material/alarm-light.svg | 1 + .../.icons/material/alarm-multiple.svg | 1 + .../.icons/material/alarm-note-off.svg | 1 + docs/material/.icons/material/alarm-note.svg | 1 + docs/material/.icons/material/alarm-off.svg | 1 + docs/material/.icons/material/alarm-plus.svg | 1 + .../material/.icons/material/alarm-snooze.svg | 1 + docs/material/.icons/material/alarm.svg | 1 + docs/material/.icons/material/album.svg | 1 + .../.icons/material/alert-box-outline.svg | 1 + docs/material/.icons/material/alert-box.svg | 1 + .../material/alert-circle-check-outline.svg | 1 + .../.icons/material/alert-circle-check.svg | 1 + .../.icons/material/alert-circle-outline.svg | 1 + .../material/.icons/material/alert-circle.svg | 1 + .../material/alert-decagram-outline.svg | 1 + .../.icons/material/alert-decagram.svg | 1 + .../.icons/material/alert-octagon-outline.svg | 1 + .../.icons/material/alert-octagon.svg | 1 + .../material/alert-octagram-outline.svg | 1 + .../.icons/material/alert-octagram.svg | 1 + .../.icons/material/alert-outline.svg | 1 + .../.icons/material/alert-rhombus-outline.svg | 1 + .../.icons/material/alert-rhombus.svg | 1 + docs/material/.icons/material/alert.svg | 1 + .../.icons/material/alien-outline.svg | 1 + docs/material/.icons/material/alien.svg | 1 + .../material/align-horizontal-center.svg | 1 + .../.icons/material/align-horizontal-left.svg | 1 + .../material/align-horizontal-right.svg | 1 + .../.icons/material/align-vertical-bottom.svg | 1 + .../.icons/material/align-vertical-center.svg | 1 + .../.icons/material/align-vertical-top.svg | 1 + .../.icons/material/all-inclusive.svg | 1 + docs/material/.icons/material/allergy.svg | 1 + .../.icons/material/alpha-a-box-outline.svg | 1 + docs/material/.icons/material/alpha-a-box.svg | 1 + .../material/alpha-a-circle-outline.svg | 1 + .../.icons/material/alpha-a-circle.svg | 1 + docs/material/.icons/material/alpha-a.svg | 1 + .../.icons/material/alpha-b-box-outline.svg | 1 + docs/material/.icons/material/alpha-b-box.svg | 1 + .../material/alpha-b-circle-outline.svg | 1 + .../.icons/material/alpha-b-circle.svg | 1 + docs/material/.icons/material/alpha-b.svg | 1 + .../.icons/material/alpha-c-box-outline.svg | 1 + docs/material/.icons/material/alpha-c-box.svg | 1 + .../material/alpha-c-circle-outline.svg | 1 + .../.icons/material/alpha-c-circle.svg | 1 + docs/material/.icons/material/alpha-c.svg | 1 + .../.icons/material/alpha-d-box-outline.svg | 1 + docs/material/.icons/material/alpha-d-box.svg | 1 + .../material/alpha-d-circle-outline.svg | 1 + .../.icons/material/alpha-d-circle.svg | 1 + docs/material/.icons/material/alpha-d.svg | 1 + .../.icons/material/alpha-e-box-outline.svg | 1 + docs/material/.icons/material/alpha-e-box.svg | 1 + .../material/alpha-e-circle-outline.svg | 1 + .../.icons/material/alpha-e-circle.svg | 1 + docs/material/.icons/material/alpha-e.svg | 1 + .../.icons/material/alpha-f-box-outline.svg | 1 + docs/material/.icons/material/alpha-f-box.svg | 1 + .../material/alpha-f-circle-outline.svg | 1 + .../.icons/material/alpha-f-circle.svg | 1 + docs/material/.icons/material/alpha-f.svg | 1 + .../.icons/material/alpha-g-box-outline.svg | 1 + docs/material/.icons/material/alpha-g-box.svg | 1 + .../material/alpha-g-circle-outline.svg | 1 + .../.icons/material/alpha-g-circle.svg | 1 + docs/material/.icons/material/alpha-g.svg | 1 + .../.icons/material/alpha-h-box-outline.svg | 1 + docs/material/.icons/material/alpha-h-box.svg | 1 + .../material/alpha-h-circle-outline.svg | 1 + .../.icons/material/alpha-h-circle.svg | 1 + docs/material/.icons/material/alpha-h.svg | 1 + .../.icons/material/alpha-i-box-outline.svg | 1 + docs/material/.icons/material/alpha-i-box.svg | 1 + .../material/alpha-i-circle-outline.svg | 1 + .../.icons/material/alpha-i-circle.svg | 1 + docs/material/.icons/material/alpha-i.svg | 1 + .../.icons/material/alpha-j-box-outline.svg | 1 + docs/material/.icons/material/alpha-j-box.svg | 1 + .../material/alpha-j-circle-outline.svg | 1 + .../.icons/material/alpha-j-circle.svg | 1 + docs/material/.icons/material/alpha-j.svg | 1 + .../.icons/material/alpha-k-box-outline.svg | 1 + docs/material/.icons/material/alpha-k-box.svg | 1 + .../material/alpha-k-circle-outline.svg | 1 + .../.icons/material/alpha-k-circle.svg | 1 + docs/material/.icons/material/alpha-k.svg | 1 + .../.icons/material/alpha-l-box-outline.svg | 1 + docs/material/.icons/material/alpha-l-box.svg | 1 + .../material/alpha-l-circle-outline.svg | 1 + .../.icons/material/alpha-l-circle.svg | 1 + docs/material/.icons/material/alpha-l.svg | 1 + .../.icons/material/alpha-m-box-outline.svg | 1 + docs/material/.icons/material/alpha-m-box.svg | 1 + .../material/alpha-m-circle-outline.svg | 1 + .../.icons/material/alpha-m-circle.svg | 1 + docs/material/.icons/material/alpha-m.svg | 1 + .../.icons/material/alpha-n-box-outline.svg | 1 + docs/material/.icons/material/alpha-n-box.svg | 1 + .../material/alpha-n-circle-outline.svg | 1 + .../.icons/material/alpha-n-circle.svg | 1 + docs/material/.icons/material/alpha-n.svg | 1 + .../.icons/material/alpha-o-box-outline.svg | 1 + docs/material/.icons/material/alpha-o-box.svg | 1 + .../material/alpha-o-circle-outline.svg | 1 + .../.icons/material/alpha-o-circle.svg | 1 + docs/material/.icons/material/alpha-o.svg | 1 + .../.icons/material/alpha-p-box-outline.svg | 1 + docs/material/.icons/material/alpha-p-box.svg | 1 + .../material/alpha-p-circle-outline.svg | 1 + .../.icons/material/alpha-p-circle.svg | 1 + docs/material/.icons/material/alpha-p.svg | 1 + .../.icons/material/alpha-q-box-outline.svg | 1 + docs/material/.icons/material/alpha-q-box.svg | 1 + .../material/alpha-q-circle-outline.svg | 1 + .../.icons/material/alpha-q-circle.svg | 1 + docs/material/.icons/material/alpha-q.svg | 1 + .../.icons/material/alpha-r-box-outline.svg | 1 + docs/material/.icons/material/alpha-r-box.svg | 1 + .../material/alpha-r-circle-outline.svg | 1 + .../.icons/material/alpha-r-circle.svg | 1 + docs/material/.icons/material/alpha-r.svg | 1 + .../.icons/material/alpha-s-box-outline.svg | 1 + docs/material/.icons/material/alpha-s-box.svg | 1 + .../material/alpha-s-circle-outline.svg | 1 + .../.icons/material/alpha-s-circle.svg | 1 + docs/material/.icons/material/alpha-s.svg | 1 + .../.icons/material/alpha-t-box-outline.svg | 1 + docs/material/.icons/material/alpha-t-box.svg | 1 + .../material/alpha-t-circle-outline.svg | 1 + .../.icons/material/alpha-t-circle.svg | 1 + docs/material/.icons/material/alpha-t.svg | 1 + .../.icons/material/alpha-u-box-outline.svg | 1 + docs/material/.icons/material/alpha-u-box.svg | 1 + .../material/alpha-u-circle-outline.svg | 1 + .../.icons/material/alpha-u-circle.svg | 1 + docs/material/.icons/material/alpha-u.svg | 1 + .../.icons/material/alpha-v-box-outline.svg | 1 + docs/material/.icons/material/alpha-v-box.svg | 1 + .../material/alpha-v-circle-outline.svg | 1 + .../.icons/material/alpha-v-circle.svg | 1 + docs/material/.icons/material/alpha-v.svg | 1 + .../.icons/material/alpha-w-box-outline.svg | 1 + docs/material/.icons/material/alpha-w-box.svg | 1 + .../material/alpha-w-circle-outline.svg | 1 + .../.icons/material/alpha-w-circle.svg | 1 + docs/material/.icons/material/alpha-w.svg | 1 + .../.icons/material/alpha-x-box-outline.svg | 1 + docs/material/.icons/material/alpha-x-box.svg | 1 + .../material/alpha-x-circle-outline.svg | 1 + .../.icons/material/alpha-x-circle.svg | 1 + docs/material/.icons/material/alpha-x.svg | 1 + .../.icons/material/alpha-y-box-outline.svg | 1 + docs/material/.icons/material/alpha-y-box.svg | 1 + .../material/alpha-y-circle-outline.svg | 1 + .../.icons/material/alpha-y-circle.svg | 1 + docs/material/.icons/material/alpha-y.svg | 1 + .../.icons/material/alpha-z-box-outline.svg | 1 + docs/material/.icons/material/alpha-z-box.svg | 1 + .../material/alpha-z-circle-outline.svg | 1 + .../.icons/material/alpha-z-circle.svg | 1 + docs/material/.icons/material/alpha-z.svg | 1 + docs/material/.icons/material/alpha.svg | 1 + .../.icons/material/alphabet-aurebesh.svg | 1 + .../.icons/material/alphabet-cyrillic.svg | 1 + .../.icons/material/alphabet-greek.svg | 1 + .../.icons/material/alphabet-latin.svg | 1 + .../.icons/material/alphabet-piqad.svg | 1 + .../.icons/material/alphabet-tengwar.svg | 1 + .../.icons/material/alphabetical-off.svg | 1 + .../material/alphabetical-variant-off.svg | 1 + .../.icons/material/alphabetical-variant.svg | 1 + .../material/.icons/material/alphabetical.svg | 1 + docs/material/.icons/material/altimeter.svg | 1 + .../material/.icons/material/amazon-alexa.svg | 1 + docs/material/.icons/material/amazon.svg | 1 + docs/material/.icons/material/ambulance.svg | 1 + docs/material/.icons/material/ammunition.svg | 1 + docs/material/.icons/material/ampersand.svg | 1 + .../.icons/material/amplifier-off.svg | 1 + docs/material/.icons/material/amplifier.svg | 1 + docs/material/.icons/material/anchor.svg | 1 + .../material/.icons/material/android-auto.svg | 1 + .../.icons/material/android-debug-bridge.svg | 1 + .../.icons/material/android-messages.svg | 1 + .../.icons/material/android-studio.svg | 1 + docs/material/.icons/material/android.svg | 1 + docs/material/.icons/material/angle-acute.svg | 1 + .../material/.icons/material/angle-obtuse.svg | 1 + docs/material/.icons/material/angle-right.svg | 1 + docs/material/.icons/material/angular.svg | 1 + docs/material/.icons/material/angularjs.svg | 1 + .../.icons/material/animation-outline.svg | 1 + .../material/animation-play-outline.svg | 1 + .../.icons/material/animation-play.svg | 1 + docs/material/.icons/material/animation.svg | 1 + docs/material/.icons/material/ansible.svg | 1 + docs/material/.icons/material/antenna.svg | 1 + docs/material/.icons/material/anvil.svg | 1 + .../material/.icons/material/apache-kafka.svg | 1 + docs/material/.icons/material/api-off.svg | 1 + docs/material/.icons/material/api.svg | 1 + .../.icons/material/apple-airplay.svg | 1 + .../material/.icons/material/apple-finder.svg | 1 + .../material/.icons/material/apple-icloud.svg | 1 + docs/material/.icons/material/apple-ios.svg | 1 + .../.icons/material/apple-keyboard-caps.svg | 1 + .../material/apple-keyboard-command.svg | 1 + .../material/apple-keyboard-control.svg | 1 + .../.icons/material/apple-keyboard-option.svg | 1 + .../.icons/material/apple-keyboard-shift.svg | 1 + .../material/.icons/material/apple-safari.svg | 1 + docs/material/.icons/material/apple.svg | 1 + .../.icons/material/application-export.svg | 1 + .../.icons/material/application-import.svg | 1 + docs/material/.icons/material/application.svg | 1 + .../material/approximately-equal-box.svg | 1 + .../.icons/material/approximately-equal.svg | 1 + docs/material/.icons/material/apps-box.svg | 1 + docs/material/.icons/material/apps.svg | 1 + docs/material/.icons/material/arch.svg | 1 + .../material/archive-arrow-down-outline.svg | 1 + .../.icons/material/archive-arrow-down.svg | 1 + .../material/archive-arrow-up-outline.svg | 1 + .../.icons/material/archive-arrow-up.svg | 1 + .../.icons/material/archive-outline.svg | 1 + docs/material/.icons/material/archive.svg | 1 + .../.icons/material/arm-flex-outline.svg | 1 + docs/material/.icons/material/arm-flex.svg | 1 + .../.icons/material/arrange-bring-forward.svg | 1 + .../material/arrange-bring-to-front.svg | 1 + .../.icons/material/arrange-send-backward.svg | 1 + .../.icons/material/arrange-send-to-back.svg | 1 + docs/material/.icons/material/arrow-all.svg | 1 + .../arrow-bottom-left-bold-outline.svg | 1 + .../material/arrow-bottom-left-thick.svg | 1 + .../.icons/material/arrow-bottom-left.svg | 1 + .../arrow-bottom-right-bold-outline.svg | 1 + .../material/arrow-bottom-right-thick.svg | 1 + .../.icons/material/arrow-bottom-right.svg | 1 + .../.icons/material/arrow-collapse-all.svg | 1 + .../.icons/material/arrow-collapse-down.svg | 1 + .../material/arrow-collapse-horizontal.svg | 1 + .../.icons/material/arrow-collapse-left.svg | 1 + .../.icons/material/arrow-collapse-right.svg | 1 + .../.icons/material/arrow-collapse-up.svg | 1 + .../material/arrow-collapse-vertical.svg | 1 + .../.icons/material/arrow-collapse.svg | 1 + .../material/arrow-decision-auto-outline.svg | 1 + .../.icons/material/arrow-decision-auto.svg | 1 + .../material/arrow-decision-outline.svg | 1 + .../.icons/material/arrow-decision.svg | 1 + .../material/arrow-down-bold-box-outline.svg | 1 + .../.icons/material/arrow-down-bold-box.svg | 1 + .../arrow-down-bold-circle-outline.svg | 1 + .../material/arrow-down-bold-circle.svg | 1 + .../arrow-down-bold-hexagon-outline.svg | 1 + .../material/arrow-down-bold-outline.svg | 1 + .../.icons/material/arrow-down-bold.svg | 1 + .../.icons/material/arrow-down-box.svg | 1 + .../material/arrow-down-circle-outline.svg | 1 + .../.icons/material/arrow-down-circle.svg | 1 + .../arrow-down-drop-circle-outline.svg | 1 + .../material/arrow-down-drop-circle.svg | 1 + .../.icons/material/arrow-down-thick.svg | 1 + docs/material/.icons/material/arrow-down.svg | 1 + .../.icons/material/arrow-expand-all.svg | 1 + .../.icons/material/arrow-expand-down.svg | 1 + .../material/arrow-expand-horizontal.svg | 1 + .../.icons/material/arrow-expand-left.svg | 1 + .../.icons/material/arrow-expand-right.svg | 1 + .../.icons/material/arrow-expand-up.svg | 1 + .../.icons/material/arrow-expand-vertical.svg | 1 + .../material/.icons/material/arrow-expand.svg | 1 + .../.icons/material/arrow-horizontal-lock.svg | 1 + .../material/arrow-left-bold-box-outline.svg | 1 + .../.icons/material/arrow-left-bold-box.svg | 1 + .../arrow-left-bold-circle-outline.svg | 1 + .../material/arrow-left-bold-circle.svg | 1 + .../arrow-left-bold-hexagon-outline.svg | 1 + .../material/arrow-left-bold-outline.svg | 1 + .../.icons/material/arrow-left-bold.svg | 1 + .../.icons/material/arrow-left-box.svg | 1 + .../material/arrow-left-circle-outline.svg | 1 + .../.icons/material/arrow-left-circle.svg | 1 + .../arrow-left-drop-circle-outline.svg | 1 + .../material/arrow-left-drop-circle.svg | 1 + .../arrow-left-right-bold-outline.svg | 1 + .../.icons/material/arrow-left-right-bold.svg | 1 + .../.icons/material/arrow-left-right.svg | 1 + .../.icons/material/arrow-left-thick.svg | 1 + docs/material/.icons/material/arrow-left.svg | 1 + .../material/arrow-right-bold-box-outline.svg | 1 + .../.icons/material/arrow-right-bold-box.svg | 1 + .../arrow-right-bold-circle-outline.svg | 1 + .../material/arrow-right-bold-circle.svg | 1 + .../arrow-right-bold-hexagon-outline.svg | 1 + .../material/arrow-right-bold-outline.svg | 1 + .../.icons/material/arrow-right-bold.svg | 1 + .../.icons/material/arrow-right-box.svg | 1 + .../material/arrow-right-circle-outline.svg | 1 + .../.icons/material/arrow-right-circle.svg | 1 + .../arrow-right-drop-circle-outline.svg | 1 + .../material/arrow-right-drop-circle.svg | 1 + .../.icons/material/arrow-right-thick.svg | 1 + docs/material/.icons/material/arrow-right.svg | 1 + .../material/arrow-split-horizontal.svg | 1 + .../.icons/material/arrow-split-vertical.svg | 1 + .../material/arrow-top-left-bold-outline.svg | 1 + .../arrow-top-left-bottom-right-bold.svg | 1 + .../material/arrow-top-left-bottom-right.svg | 1 + .../.icons/material/arrow-top-left-thick.svg | 1 + .../.icons/material/arrow-top-left.svg | 1 + .../material/arrow-top-right-bold-outline.svg | 1 + .../arrow-top-right-bottom-left-bold.svg | 1 + .../material/arrow-top-right-bottom-left.svg | 1 + .../.icons/material/arrow-top-right-thick.svg | 1 + .../.icons/material/arrow-top-right.svg | 1 + .../material/arrow-up-bold-box-outline.svg | 1 + .../.icons/material/arrow-up-bold-box.svg | 1 + .../material/arrow-up-bold-circle-outline.svg | 1 + .../.icons/material/arrow-up-bold-circle.svg | 1 + .../arrow-up-bold-hexagon-outline.svg | 1 + .../.icons/material/arrow-up-bold-outline.svg | 1 + .../.icons/material/arrow-up-bold.svg | 1 + .../material/.icons/material/arrow-up-box.svg | 1 + .../material/arrow-up-circle-outline.svg | 1 + .../.icons/material/arrow-up-circle.svg | 1 + .../material/arrow-up-down-bold-outline.svg | 1 + .../.icons/material/arrow-up-down-bold.svg | 1 + .../.icons/material/arrow-up-down.svg | 1 + .../material/arrow-up-drop-circle-outline.svg | 1 + .../.icons/material/arrow-up-drop-circle.svg | 1 + .../.icons/material/arrow-up-thick.svg | 1 + docs/material/.icons/material/arrow-up.svg | 1 + .../.icons/material/arrow-vertical-lock.svg | 1 + docs/material/.icons/material/artstation.svg | 1 + .../material/.icons/material/aspect-ratio.svg | 1 + docs/material/.icons/material/assistant.svg | 1 + docs/material/.icons/material/asterisk.svg | 1 + docs/material/.icons/material/at.svg | 1 + docs/material/.icons/material/atlassian.svg | 1 + docs/material/.icons/material/atm.svg | 1 + .../material/.icons/material/atom-variant.svg | 1 + docs/material/.icons/material/atom.svg | 1 + docs/material/.icons/material/attachment.svg | 1 + .../.icons/material/audio-video-off.svg | 1 + docs/material/.icons/material/audio-video.svg | 1 + .../.icons/material/augmented-reality.svg | 1 + .../.icons/material/auto-download.svg | 1 + docs/material/.icons/material/auto-fix.svg | 1 + docs/material/.icons/material/auto-upload.svg | 1 + docs/material/.icons/material/autorenew.svg | 1 + docs/material/.icons/material/av-timer.svg | 1 + docs/material/.icons/material/aws.svg | 1 + docs/material/.icons/material/axe.svg | 1 + .../.icons/material/axis-arrow-info.svg | 1 + .../.icons/material/axis-arrow-lock.svg | 1 + docs/material/.icons/material/axis-arrow.svg | 1 + docs/material/.icons/material/axis-lock.svg | 1 + .../.icons/material/axis-x-arrow-lock.svg | 1 + .../material/.icons/material/axis-x-arrow.svg | 1 + .../material/axis-x-rotate-clockwise.svg | 1 + .../axis-x-rotate-counterclockwise.svg | 1 + .../.icons/material/axis-x-y-arrow-lock.svg | 1 + .../.icons/material/axis-y-arrow-lock.svg | 1 + .../material/.icons/material/axis-y-arrow.svg | 1 + .../material/axis-y-rotate-clockwise.svg | 1 + .../axis-y-rotate-counterclockwise.svg | 1 + .../.icons/material/axis-z-arrow-lock.svg | 1 + .../material/.icons/material/axis-z-arrow.svg | 1 + .../material/axis-z-rotate-clockwise.svg | 1 + .../axis-z-rotate-counterclockwise.svg | 1 + docs/material/.icons/material/axis.svg | 1 + docs/material/.icons/material/babel.svg | 1 + .../.icons/material/baby-bottle-outline.svg | 1 + docs/material/.icons/material/baby-bottle.svg | 1 + docs/material/.icons/material/baby-buggy.svg | 1 + .../.icons/material/baby-carriage-off.svg | 1 + .../.icons/material/baby-carriage.svg | 1 + .../.icons/material/baby-face-outline.svg | 1 + docs/material/.icons/material/baby-face.svg | 1 + docs/material/.icons/material/baby.svg | 1 + docs/material/.icons/material/backburger.svg | 1 + .../.icons/material/backspace-outline.svg | 1 + .../material/backspace-reverse-outline.svg | 1 + .../.icons/material/backspace-reverse.svg | 1 + docs/material/.icons/material/backspace.svg | 1 + .../.icons/material/backup-restore.svg | 1 + .../.icons/material/bacteria-outline.svg | 1 + docs/material/.icons/material/bacteria.svg | 1 + .../material/badge-account-alert-outline.svg | 1 + .../.icons/material/badge-account-alert.svg | 1 + .../badge-account-horizontal-outline.svg | 1 + .../material/badge-account-horizontal.svg | 1 + .../.icons/material/badge-account-outline.svg | 1 + .../.icons/material/badge-account.svg | 1 + docs/material/.icons/material/badminton.svg | 1 + .../.icons/material/bag-carry-on-check.svg | 1 + .../.icons/material/bag-carry-on-off.svg | 1 + .../material/.icons/material/bag-carry-on.svg | 1 + docs/material/.icons/material/bag-checked.svg | 1 + .../material/bag-personal-off-outline.svg | 1 + .../.icons/material/bag-personal-off.svg | 1 + .../.icons/material/bag-personal-outline.svg | 1 + .../material/.icons/material/bag-personal.svg | 1 + docs/material/.icons/material/baguette.svg | 1 + docs/material/.icons/material/balloon.svg | 1 + .../.icons/material/ballot-outline.svg | 1 + .../material/ballot-recount-outline.svg | 1 + .../.icons/material/ballot-recount.svg | 1 + docs/material/.icons/material/ballot.svg | 1 + docs/material/.icons/material/bandage.svg | 1 + docs/material/.icons/material/bandcamp.svg | 1 + docs/material/.icons/material/bank-minus.svg | 1 + .../material/.icons/material/bank-outline.svg | 1 + docs/material/.icons/material/bank-plus.svg | 1 + docs/material/.icons/material/bank-remove.svg | 1 + .../.icons/material/bank-transfer-in.svg | 1 + .../.icons/material/bank-transfer-out.svg | 1 + .../.icons/material/bank-transfer.svg | 1 + docs/material/.icons/material/bank.svg | 1 + docs/material/.icons/material/barcode-off.svg | 1 + .../material/.icons/material/barcode-scan.svg | 1 + docs/material/.icons/material/barcode.svg | 1 + docs/material/.icons/material/barley-off.svg | 1 + docs/material/.icons/material/barley.svg | 1 + docs/material/.icons/material/barn.svg | 1 + docs/material/.icons/material/barrel.svg | 1 + .../material/.icons/material/baseball-bat.svg | 1 + docs/material/.icons/material/baseball.svg | 1 + docs/material/.icons/material/bash.svg | 1 + docs/material/.icons/material/basket-fill.svg | 1 + .../.icons/material/basket-outline.svg | 1 + .../.icons/material/basket-unfill.svg | 1 + docs/material/.icons/material/basket.svg | 1 + .../material/basketball-hoop-outline.svg | 1 + .../.icons/material/basketball-hoop.svg | 1 + docs/material/.icons/material/basketball.svg | 1 + docs/material/.icons/material/bat.svg | 1 + .../.icons/material/battery-10-bluetooth.svg | 1 + docs/material/.icons/material/battery-10.svg | 1 + .../.icons/material/battery-20-bluetooth.svg | 1 + docs/material/.icons/material/battery-20.svg | 1 + .../.icons/material/battery-30-bluetooth.svg | 1 + docs/material/.icons/material/battery-30.svg | 1 + .../.icons/material/battery-40-bluetooth.svg | 1 + docs/material/.icons/material/battery-40.svg | 1 + .../.icons/material/battery-50-bluetooth.svg | 1 + docs/material/.icons/material/battery-50.svg | 1 + .../.icons/material/battery-60-bluetooth.svg | 1 + docs/material/.icons/material/battery-60.svg | 1 + .../.icons/material/battery-70-bluetooth.svg | 1 + docs/material/.icons/material/battery-70.svg | 1 + .../.icons/material/battery-80-bluetooth.svg | 1 + docs/material/.icons/material/battery-80.svg | 1 + .../.icons/material/battery-90-bluetooth.svg | 1 + docs/material/.icons/material/battery-90.svg | 1 + .../material/battery-alert-bluetooth.svg | 1 + .../battery-alert-variant-outline.svg | 1 + .../.icons/material/battery-alert-variant.svg | 1 + .../.icons/material/battery-alert.svg | 1 + .../material/battery-bluetooth-variant.svg | 1 + .../.icons/material/battery-bluetooth.svg | 1 + .../.icons/material/battery-charging-10.svg | 1 + .../.icons/material/battery-charging-100.svg | 1 + .../.icons/material/battery-charging-20.svg | 1 + .../.icons/material/battery-charging-30.svg | 1 + .../.icons/material/battery-charging-40.svg | 1 + .../.icons/material/battery-charging-50.svg | 1 + .../.icons/material/battery-charging-60.svg | 1 + .../.icons/material/battery-charging-70.svg | 1 + .../.icons/material/battery-charging-80.svg | 1 + .../.icons/material/battery-charging-90.svg | 1 + .../.icons/material/battery-charging-high.svg | 1 + .../.icons/material/battery-charging-low.svg | 1 + .../material/battery-charging-medium.svg | 1 + .../material/battery-charging-outline.svg | 1 + .../material/battery-charging-wireless-10.svg | 1 + .../material/battery-charging-wireless-20.svg | 1 + .../material/battery-charging-wireless-30.svg | 1 + .../material/battery-charging-wireless-40.svg | 1 + .../material/battery-charging-wireless-50.svg | 1 + .../material/battery-charging-wireless-60.svg | 1 + .../material/battery-charging-wireless-70.svg | 1 + .../material/battery-charging-wireless-80.svg | 1 + .../material/battery-charging-wireless-90.svg | 1 + .../battery-charging-wireless-alert.svg | 1 + .../battery-charging-wireless-outline.svg | 1 + .../material/battery-charging-wireless.svg | 1 + .../.icons/material/battery-charging.svg | 1 + .../.icons/material/battery-heart-outline.svg | 1 + .../.icons/material/battery-heart-variant.svg | 1 + .../.icons/material/battery-heart.svg | 1 + .../material/.icons/material/battery-high.svg | 1 + docs/material/.icons/material/battery-low.svg | 1 + .../.icons/material/battery-medium.svg | 1 + .../.icons/material/battery-minus.svg | 1 + .../.icons/material/battery-negative.svg | 1 + .../.icons/material/battery-off-outline.svg | 1 + docs/material/.icons/material/battery-off.svg | 1 + .../.icons/material/battery-outline.svg | 1 + .../material/.icons/material/battery-plus.svg | 1 + .../.icons/material/battery-positive.svg | 1 + .../material/battery-unknown-bluetooth.svg | 1 + .../.icons/material/battery-unknown.svg | 1 + docs/material/.icons/material/battery.svg | 1 + docs/material/.icons/material/battlenet.svg | 1 + docs/material/.icons/material/beach.svg | 1 + .../.icons/material/beaker-alert-outline.svg | 1 + .../material/.icons/material/beaker-alert.svg | 1 + .../.icons/material/beaker-check-outline.svg | 1 + .../material/.icons/material/beaker-check.svg | 1 + .../.icons/material/beaker-minus-outline.svg | 1 + .../material/.icons/material/beaker-minus.svg | 1 + .../.icons/material/beaker-outline.svg | 1 + .../.icons/material/beaker-plus-outline.svg | 1 + docs/material/.icons/material/beaker-plus.svg | 1 + .../material/beaker-question-outline.svg | 1 + .../.icons/material/beaker-question.svg | 1 + .../.icons/material/beaker-remove-outline.svg | 1 + .../.icons/material/beaker-remove.svg | 1 + docs/material/.icons/material/beaker.svg | 1 + .../.icons/material/bed-double-outline.svg | 1 + docs/material/.icons/material/bed-double.svg | 1 + docs/material/.icons/material/bed-empty.svg | 1 + .../.icons/material/bed-king-outline.svg | 1 + docs/material/.icons/material/bed-king.svg | 1 + docs/material/.icons/material/bed-outline.svg | 1 + .../.icons/material/bed-queen-outline.svg | 1 + docs/material/.icons/material/bed-queen.svg | 1 + .../.icons/material/bed-single-outline.svg | 1 + docs/material/.icons/material/bed-single.svg | 1 + docs/material/.icons/material/bed.svg | 1 + docs/material/.icons/material/bee-flower.svg | 1 + docs/material/.icons/material/bee.svg | 1 + .../.icons/material/beehive-off-outline.svg | 1 + .../.icons/material/beehive-outline.svg | 1 + .../material/.icons/material/beer-outline.svg | 1 + docs/material/.icons/material/beer.svg | 1 + .../.icons/material/bell-alert-outline.svg | 1 + docs/material/.icons/material/bell-alert.svg | 1 + .../.icons/material/bell-cancel-outline.svg | 1 + docs/material/.icons/material/bell-cancel.svg | 1 + .../.icons/material/bell-check-outline.svg | 1 + docs/material/.icons/material/bell-check.svg | 1 + .../.icons/material/bell-circle-outline.svg | 1 + docs/material/.icons/material/bell-circle.svg | 1 + .../.icons/material/bell-minus-outline.svg | 1 + docs/material/.icons/material/bell-minus.svg | 1 + .../.icons/material/bell-off-outline.svg | 1 + docs/material/.icons/material/bell-off.svg | 1 + .../material/.icons/material/bell-outline.svg | 1 + .../.icons/material/bell-plus-outline.svg | 1 + docs/material/.icons/material/bell-plus.svg | 1 + .../.icons/material/bell-remove-outline.svg | 1 + docs/material/.icons/material/bell-remove.svg | 1 + .../.icons/material/bell-ring-outline.svg | 1 + docs/material/.icons/material/bell-ring.svg | 1 + .../.icons/material/bell-sleep-outline.svg | 1 + docs/material/.icons/material/bell-sleep.svg | 1 + docs/material/.icons/material/bell.svg | 1 + docs/material/.icons/material/beta.svg | 1 + docs/material/.icons/material/betamax.svg | 1 + docs/material/.icons/material/biathlon.svg | 1 + .../.icons/material/bicycle-basket.svg | 1 + docs/material/.icons/material/bicycle.svg | 1 + docs/material/.icons/material/bike-fast.svg | 1 + docs/material/.icons/material/bike.svg | 1 + docs/material/.icons/material/billboard.svg | 1 + .../.icons/material/billiards-rack.svg | 1 + docs/material/.icons/material/billiards.svg | 1 + docs/material/.icons/material/binoculars.svg | 1 + docs/material/.icons/material/bio.svg | 1 + docs/material/.icons/material/biohazard.svg | 1 + docs/material/.icons/material/bitbucket.svg | 1 + docs/material/.icons/material/bitcoin.svg | 1 + docs/material/.icons/material/black-mesa.svg | 1 + .../.icons/material/blender-software.svg | 1 + docs/material/.icons/material/blender.svg | 1 + docs/material/.icons/material/blinds-open.svg | 1 + docs/material/.icons/material/blinds.svg | 1 + .../material/.icons/material/block-helper.svg | 1 + docs/material/.icons/material/blogger.svg | 1 + docs/material/.icons/material/blood-bag.svg | 1 + .../.icons/material/bluetooth-audio.svg | 1 + .../.icons/material/bluetooth-connect.svg | 1 + .../.icons/material/bluetooth-off.svg | 1 + .../.icons/material/bluetooth-settings.svg | 1 + .../.icons/material/bluetooth-transfer.svg | 1 + docs/material/.icons/material/bluetooth.svg | 1 + docs/material/.icons/material/blur-linear.svg | 1 + docs/material/.icons/material/blur-off.svg | 1 + docs/material/.icons/material/blur-radial.svg | 1 + docs/material/.icons/material/blur.svg | 1 + .../.icons/material/bolnisi-cross.svg | 1 + docs/material/.icons/material/bolt.svg | 1 + docs/material/.icons/material/bomb-off.svg | 1 + docs/material/.icons/material/bomb.svg | 1 + docs/material/.icons/material/bone.svg | 1 + .../.icons/material/book-account-outline.svg | 1 + .../material/.icons/material/book-account.svg | 1 + .../.icons/material/book-alphabet.svg | 1 + docs/material/.icons/material/book-cross.svg | 1 + .../material/book-information-variant.svg | 1 + .../.icons/material/book-lock-open.svg | 1 + docs/material/.icons/material/book-lock.svg | 1 + .../material/book-minus-multiple-outline.svg | 1 + .../.icons/material/book-minus-multiple.svg | 1 + docs/material/.icons/material/book-minus.svg | 1 + .../.icons/material/book-multiple-outline.svg | 1 + .../.icons/material/book-multiple.svg | 1 + docs/material/.icons/material/book-music.svg | 1 + .../.icons/material/book-open-outline.svg | 1 + .../material/book-open-page-variant.svg | 1 + .../.icons/material/book-open-variant.svg | 1 + docs/material/.icons/material/book-open.svg | 1 + .../material/.icons/material/book-outline.svg | 1 + .../.icons/material/book-play-outline.svg | 1 + docs/material/.icons/material/book-play.svg | 1 + .../material/book-plus-multiple-outline.svg | 1 + .../.icons/material/book-plus-multiple.svg | 1 + docs/material/.icons/material/book-plus.svg | 1 + .../material/book-remove-multiple-outline.svg | 1 + .../.icons/material/book-remove-multiple.svg | 1 + docs/material/.icons/material/book-remove.svg | 1 + .../.icons/material/book-search-outline.svg | 1 + docs/material/.icons/material/book-search.svg | 1 + .../.icons/material/book-variant-multiple.svg | 1 + .../material/.icons/material/book-variant.svg | 1 + docs/material/.icons/material/book.svg | 1 + .../material/bookmark-check-outline.svg | 1 + .../.icons/material/bookmark-check.svg | 1 + .../material/bookmark-minus-outline.svg | 1 + .../.icons/material/bookmark-minus.svg | 1 + .../material/bookmark-multiple-outline.svg | 1 + .../.icons/material/bookmark-multiple.svg | 1 + .../material/bookmark-music-outline.svg | 1 + .../.icons/material/bookmark-music.svg | 1 + .../.icons/material/bookmark-off-outline.svg | 1 + .../material/.icons/material/bookmark-off.svg | 1 + .../.icons/material/bookmark-outline.svg | 1 + .../.icons/material/bookmark-plus-outline.svg | 1 + .../.icons/material/bookmark-plus.svg | 1 + .../material/bookmark-remove-outline.svg | 1 + .../.icons/material/bookmark-remove.svg | 1 + docs/material/.icons/material/bookmark.svg | 1 + docs/material/.icons/material/bookshelf.svg | 1 + .../material/boom-gate-alert-outline.svg | 1 + .../.icons/material/boom-gate-alert.svg | 1 + .../material/boom-gate-down-outline.svg | 1 + .../.icons/material/boom-gate-down.svg | 1 + .../.icons/material/boom-gate-outline.svg | 1 + .../.icons/material/boom-gate-up-outline.svg | 1 + .../material/.icons/material/boom-gate-up.svg | 1 + docs/material/.icons/material/boom-gate.svg | 1 + docs/material/.icons/material/boombox.svg | 1 + docs/material/.icons/material/boomerang.svg | 1 + docs/material/.icons/material/bootstrap.svg | 1 + .../.icons/material/border-all-variant.svg | 1 + docs/material/.icons/material/border-all.svg | 1 + .../.icons/material/border-bottom-variant.svg | 1 + .../.icons/material/border-bottom.svg | 1 + .../material/.icons/material/border-color.svg | 1 + .../.icons/material/border-horizontal.svg | 1 + .../.icons/material/border-inside.svg | 1 + .../.icons/material/border-left-variant.svg | 1 + docs/material/.icons/material/border-left.svg | 1 + .../.icons/material/border-none-variant.svg | 1 + docs/material/.icons/material/border-none.svg | 1 + .../.icons/material/border-outside.svg | 1 + .../.icons/material/border-right-variant.svg | 1 + .../material/.icons/material/border-right.svg | 1 + .../material/.icons/material/border-style.svg | 1 + .../.icons/material/border-top-variant.svg | 1 + docs/material/.icons/material/border-top.svg | 1 + .../.icons/material/border-vertical.svg | 1 + .../material/bottle-soda-classic-outline.svg | 1 + .../.icons/material/bottle-soda-classic.svg | 1 + .../.icons/material/bottle-soda-outline.svg | 1 + docs/material/.icons/material/bottle-soda.svg | 1 + .../.icons/material/bottle-tonic-outline.svg | 1 + .../material/bottle-tonic-plus-outline.svg | 1 + .../.icons/material/bottle-tonic-plus.svg | 1 + .../material/bottle-tonic-skull-outline.svg | 1 + .../.icons/material/bottle-tonic-skull.svg | 1 + .../material/.icons/material/bottle-tonic.svg | 1 + .../.icons/material/bottle-wine-outline.svg | 1 + docs/material/.icons/material/bottle-wine.svg | 1 + docs/material/.icons/material/bow-tie.svg | 1 + .../.icons/material/bowl-mix-outline.svg | 1 + docs/material/.icons/material/bowl-mix.svg | 1 + .../material/.icons/material/bowl-outline.svg | 1 + docs/material/.icons/material/bowl.svg | 1 + docs/material/.icons/material/bowling.svg | 1 + .../.icons/material/box-cutter-off.svg | 1 + docs/material/.icons/material/box-cutter.svg | 1 + docs/material/.icons/material/box-shadow.svg | 1 + docs/material/.icons/material/box.svg | 1 + .../material/.icons/material/boxing-glove.svg | 1 + docs/material/.icons/material/braille.svg | 1 + docs/material/.icons/material/brain.svg | 1 + .../.icons/material/bread-slice-outline.svg | 1 + docs/material/.icons/material/bread-slice.svg | 1 + docs/material/.icons/material/bridge.svg | 1 + .../material/briefcase-account-outline.svg | 1 + .../.icons/material/briefcase-account.svg | 1 + .../material/briefcase-check-outline.svg | 1 + .../.icons/material/briefcase-check.svg | 1 + .../material/briefcase-clock-outline.svg | 1 + .../.icons/material/briefcase-clock.svg | 1 + .../material/briefcase-download-outline.svg | 1 + .../.icons/material/briefcase-download.svg | 1 + .../material/briefcase-edit-outline.svg | 1 + .../.icons/material/briefcase-edit.svg | 1 + .../material/briefcase-minus-outline.svg | 1 + .../.icons/material/briefcase-minus.svg | 1 + .../.icons/material/briefcase-outline.svg | 1 + .../material/briefcase-plus-outline.svg | 1 + .../.icons/material/briefcase-plus.svg | 1 + .../material/briefcase-remove-outline.svg | 1 + .../.icons/material/briefcase-remove.svg | 1 + .../material/briefcase-search-outline.svg | 1 + .../.icons/material/briefcase-search.svg | 1 + .../material/briefcase-upload-outline.svg | 1 + .../.icons/material/briefcase-upload.svg | 1 + docs/material/.icons/material/briefcase.svg | 1 + .../material/.icons/material/brightness-1.svg | 1 + .../material/.icons/material/brightness-2.svg | 1 + .../material/.icons/material/brightness-3.svg | 1 + .../material/.icons/material/brightness-4.svg | 1 + .../material/.icons/material/brightness-5.svg | 1 + .../material/.icons/material/brightness-6.svg | 1 + .../material/.icons/material/brightness-7.svg | 1 + .../.icons/material/brightness-auto.svg | 1 + .../.icons/material/brightness-percent.svg | 1 + docs/material/.icons/material/broom.svg | 1 + docs/material/.icons/material/brush.svg | 1 + .../.icons/material/bucket-outline.svg | 1 + docs/material/.icons/material/bucket.svg | 1 + docs/material/.icons/material/buddhism.svg | 1 + docs/material/.icons/material/buffer.svg | 1 + docs/material/.icons/material/buffet.svg | 1 + .../.icons/material/bug-check-outline.svg | 1 + docs/material/.icons/material/bug-check.svg | 1 + docs/material/.icons/material/bug-outline.svg | 1 + docs/material/.icons/material/bug.svg | 1 + docs/material/.icons/material/bugle.svg | 1 + docs/material/.icons/material/bulldozer.svg | 1 + docs/material/.icons/material/bullet.svg | 1 + .../.icons/material/bulletin-board.svg | 1 + .../.icons/material/bullhorn-outline.svg | 1 + docs/material/.icons/material/bullhorn.svg | 1 + .../.icons/material/bullseye-arrow.svg | 1 + docs/material/.icons/material/bullseye.svg | 1 + docs/material/.icons/material/bulma.svg | 1 + .../.icons/material/bunk-bed-outline.svg | 1 + docs/material/.icons/material/bunk-bed.svg | 1 + docs/material/.icons/material/bus-alert.svg | 1 + .../.icons/material/bus-articulated-end.svg | 1 + .../.icons/material/bus-articulated-front.svg | 1 + docs/material/.icons/material/bus-clock.svg | 1 + .../.icons/material/bus-double-decker.svg | 1 + docs/material/.icons/material/bus-marker.svg | 1 + .../material/.icons/material/bus-multiple.svg | 1 + docs/material/.icons/material/bus-school.svg | 1 + docs/material/.icons/material/bus-side.svg | 1 + .../.icons/material/bus-stop-covered.svg | 1 + .../.icons/material/bus-stop-uncovered.svg | 1 + docs/material/.icons/material/bus-stop.svg | 1 + docs/material/.icons/material/bus.svg | 1 + docs/material/.icons/material/cable-data.svg | 1 + docs/material/.icons/material/cached.svg | 1 + docs/material/.icons/material/cactus.svg | 1 + .../material/.icons/material/cake-layered.svg | 1 + .../material/.icons/material/cake-variant.svg | 1 + docs/material/.icons/material/cake.svg | 1 + .../.icons/material/calculator-variant.svg | 1 + docs/material/.icons/material/calculator.svg | 1 + .../material/calendar-account-outline.svg | 1 + .../.icons/material/calendar-account.svg | 1 + .../.icons/material/calendar-alert.svg | 1 + .../.icons/material/calendar-arrow-left.svg | 1 + .../.icons/material/calendar-arrow-right.svg | 1 + .../material/calendar-blank-multiple.svg | 1 + .../material/calendar-blank-outline.svg | 1 + .../.icons/material/calendar-blank.svg | 1 + .../material/calendar-check-outline.svg | 1 + .../.icons/material/calendar-check.svg | 1 + .../.icons/material/calendar-clock.svg | 1 + .../.icons/material/calendar-edit.svg | 1 + .../.icons/material/calendar-export.svg | 1 + .../.icons/material/calendar-heart.svg | 1 + .../.icons/material/calendar-import.svg | 1 + .../.icons/material/calendar-minus.svg | 1 + .../material/calendar-month-outline.svg | 1 + .../.icons/material/calendar-month.svg | 1 + .../material/calendar-multiple-check.svg | 1 + .../.icons/material/calendar-multiple.svg | 1 + .../.icons/material/calendar-multiselect.svg | 1 + .../.icons/material/calendar-outline.svg | 1 + .../.icons/material/calendar-plus.svg | 1 + .../.icons/material/calendar-question.svg | 1 + .../material/calendar-range-outline.svg | 1 + .../.icons/material/calendar-range.svg | 1 + .../material/calendar-refresh-outline.svg | 1 + .../.icons/material/calendar-refresh.svg | 1 + .../material/calendar-remove-outline.svg | 1 + .../.icons/material/calendar-remove.svg | 1 + .../.icons/material/calendar-search.svg | 1 + .../.icons/material/calendar-star.svg | 1 + .../.icons/material/calendar-sync-outline.svg | 1 + .../.icons/material/calendar-sync.svg | 1 + .../.icons/material/calendar-text-outline.svg | 1 + .../.icons/material/calendar-text.svg | 1 + .../.icons/material/calendar-today.svg | 1 + .../.icons/material/calendar-week-begin.svg | 1 + .../.icons/material/calendar-week.svg | 1 + .../material/calendar-weekend-outline.svg | 1 + .../.icons/material/calendar-weekend.svg | 1 + docs/material/.icons/material/calendar.svg | 1 + docs/material/.icons/material/call-made.svg | 1 + docs/material/.icons/material/call-merge.svg | 1 + docs/material/.icons/material/call-missed.svg | 1 + .../.icons/material/call-received.svg | 1 + docs/material/.icons/material/call-split.svg | 1 + .../.icons/material/camcorder-off.svg | 1 + docs/material/.icons/material/camcorder.svg | 1 + .../.icons/material/camera-account.svg | 1 + .../material/.icons/material/camera-burst.svg | 1 + .../.icons/material/camera-control.svg | 1 + .../material/camera-enhance-outline.svg | 1 + .../.icons/material/camera-enhance.svg | 1 + .../.icons/material/camera-front-variant.svg | 1 + .../material/.icons/material/camera-front.svg | 1 + .../material/.icons/material/camera-gopro.svg | 1 + .../material/.icons/material/camera-image.svg | 1 + docs/material/.icons/material/camera-iris.svg | 1 + .../material/camera-metering-center.svg | 1 + .../material/camera-metering-matrix.svg | 1 + .../material/camera-metering-partial.svg | 1 + .../.icons/material/camera-metering-spot.svg | 1 + docs/material/.icons/material/camera-off.svg | 1 + .../.icons/material/camera-outline.svg | 1 + .../.icons/material/camera-party-mode.svg | 1 + .../.icons/material/camera-plus-outline.svg | 1 + docs/material/.icons/material/camera-plus.svg | 1 + .../.icons/material/camera-rear-variant.svg | 1 + docs/material/.icons/material/camera-rear.svg | 1 + .../.icons/material/camera-retake-outline.svg | 1 + .../.icons/material/camera-retake.svg | 1 + .../.icons/material/camera-switch-outline.svg | 1 + .../.icons/material/camera-switch.svg | 1 + .../material/.icons/material/camera-timer.svg | 1 + .../material/camera-wireless-outline.svg | 1 + .../.icons/material/camera-wireless.svg | 1 + docs/material/.icons/material/camera.svg | 1 + docs/material/.icons/material/campfire.svg | 1 + docs/material/.icons/material/cancel.svg | 1 + docs/material/.icons/material/candle.svg | 1 + docs/material/.icons/material/candycane.svg | 1 + docs/material/.icons/material/cannabis.svg | 1 + docs/material/.icons/material/caps-lock.svg | 1 + docs/material/.icons/material/car-2-plus.svg | 1 + docs/material/.icons/material/car-3-plus.svg | 1 + .../.icons/material/car-arrow-left.svg | 1 + .../.icons/material/car-arrow-right.svg | 1 + docs/material/.icons/material/car-back.svg | 1 + docs/material/.icons/material/car-battery.svg | 1 + .../.icons/material/car-brake-abs.svg | 1 + .../.icons/material/car-brake-alert.svg | 1 + .../.icons/material/car-brake-hold.svg | 1 + .../.icons/material/car-brake-parking.svg | 1 + .../.icons/material/car-brake-retarder.svg | 1 + .../.icons/material/car-child-seat.svg | 1 + docs/material/.icons/material/car-clutch.svg | 1 + docs/material/.icons/material/car-cog.svg | 1 + .../.icons/material/car-connected.svg | 1 + .../.icons/material/car-convertible.svg | 1 + .../.icons/material/car-coolant-level.svg | 1 + .../.icons/material/car-cruise-control.svg | 1 + .../.icons/material/car-defrost-front.svg | 1 + .../.icons/material/car-defrost-rear.svg | 1 + .../.icons/material/car-door-lock.svg | 1 + docs/material/.icons/material/car-door.svg | 1 + .../material/.icons/material/car-electric.svg | 1 + docs/material/.icons/material/car-esp.svg | 1 + docs/material/.icons/material/car-estate.svg | 1 + .../.icons/material/car-hatchback.svg | 1 + docs/material/.icons/material/car-info.svg | 1 + docs/material/.icons/material/car-key.svg | 1 + .../.icons/material/car-light-dimmed.svg | 1 + .../.icons/material/car-light-fog.svg | 1 + .../.icons/material/car-light-high.svg | 1 + .../.icons/material/car-limousine.svg | 1 + .../material/.icons/material/car-multiple.svg | 1 + docs/material/.icons/material/car-off.svg | 1 + .../.icons/material/car-parking-lights.svg | 1 + docs/material/.icons/material/car-pickup.svg | 1 + .../.icons/material/car-seat-cooler.svg | 1 + .../.icons/material/car-seat-heater.svg | 1 + docs/material/.icons/material/car-seat.svg | 1 + .../material/.icons/material/car-settings.svg | 1 + .../.icons/material/car-shift-pattern.svg | 1 + docs/material/.icons/material/car-side.svg | 1 + docs/material/.icons/material/car-sports.svg | 1 + .../.icons/material/car-tire-alert.svg | 1 + .../.icons/material/car-traction-control.svg | 1 + .../.icons/material/car-turbocharger.svg | 1 + docs/material/.icons/material/car-wash.svg | 1 + .../material/car-windshield-outline.svg | 1 + .../.icons/material/car-windshield.svg | 1 + docs/material/.icons/material/car.svg | 1 + docs/material/.icons/material/caravan.svg | 1 + .../material/card-account-details-outline.svg | 1 + .../card-account-details-star-outline.svg | 1 + .../material/card-account-details-star.svg | 1 + .../.icons/material/card-account-details.svg | 1 + .../material/card-account-mail-outline.svg | 1 + .../.icons/material/card-account-mail.svg | 1 + .../material/card-account-phone-outline.svg | 1 + .../.icons/material/card-account-phone.svg | 1 + .../material/card-bulleted-off-outline.svg | 1 + .../.icons/material/card-bulleted-off.svg | 1 + .../.icons/material/card-bulleted-outline.svg | 1 + .../card-bulleted-settings-outline.svg | 1 + .../material/card-bulleted-settings.svg | 1 + .../.icons/material/card-bulleted.svg | 1 + .../material/.icons/material/card-outline.svg | 1 + .../.icons/material/card-plus-outline.svg | 1 + docs/material/.icons/material/card-plus.svg | 1 + .../.icons/material/card-search-outline.svg | 1 + docs/material/.icons/material/card-search.svg | 1 + .../.icons/material/card-text-outline.svg | 1 + docs/material/.icons/material/card-text.svg | 1 + docs/material/.icons/material/card.svg | 1 + docs/material/.icons/material/cards-club.svg | 1 + .../.icons/material/cards-diamond-outline.svg | 1 + .../.icons/material/cards-diamond.svg | 1 + docs/material/.icons/material/cards-heart.svg | 1 + .../.icons/material/cards-outline.svg | 1 + .../.icons/material/cards-playing-outline.svg | 1 + docs/material/.icons/material/cards-spade.svg | 1 + .../.icons/material/cards-variant.svg | 1 + docs/material/.icons/material/cards.svg | 1 + docs/material/.icons/material/carrot.svg | 1 + .../.icons/material/cart-arrow-down.svg | 1 + .../.icons/material/cart-arrow-right.svg | 1 + .../.icons/material/cart-arrow-up.svg | 1 + docs/material/.icons/material/cart-minus.svg | 1 + docs/material/.icons/material/cart-off.svg | 1 + .../material/.icons/material/cart-outline.svg | 1 + docs/material/.icons/material/cart-plus.svg | 1 + docs/material/.icons/material/cart-remove.svg | 1 + docs/material/.icons/material/cart.svg | 1 + .../.icons/material/case-sensitive-alt.svg | 1 + docs/material/.icons/material/cash-100.svg | 1 + docs/material/.icons/material/cash-marker.svg | 1 + docs/material/.icons/material/cash-minus.svg | 1 + .../.icons/material/cash-multiple.svg | 1 + docs/material/.icons/material/cash-plus.svg | 1 + docs/material/.icons/material/cash-refund.svg | 1 + .../.icons/material/cash-register.svg | 1 + docs/material/.icons/material/cash-remove.svg | 1 + .../.icons/material/cash-usd-outline.svg | 1 + docs/material/.icons/material/cash-usd.svg | 1 + docs/material/.icons/material/cash.svg | 1 + docs/material/.icons/material/cassette.svg | 1 + docs/material/.icons/material/cast-audio.svg | 1 + .../.icons/material/cast-connected.svg | 1 + .../.icons/material/cast-education.svg | 1 + docs/material/.icons/material/cast-off.svg | 1 + docs/material/.icons/material/cast.svg | 1 + docs/material/.icons/material/castle.svg | 1 + docs/material/.icons/material/cat.svg | 1 + docs/material/.icons/material/cctv.svg | 1 + .../.icons/material/ceiling-light.svg | 1 + .../.icons/material/cellphone-android.svg | 1 + .../.icons/material/cellphone-arrow-down.svg | 1 + .../.icons/material/cellphone-basic.svg | 1 + .../.icons/material/cellphone-charging.svg | 1 + .../.icons/material/cellphone-cog.svg | 1 + .../.icons/material/cellphone-dock.svg | 1 + .../.icons/material/cellphone-erase.svg | 1 + .../.icons/material/cellphone-information.svg | 1 + .../.icons/material/cellphone-iphone.svg | 1 + .../.icons/material/cellphone-key.svg | 1 + .../.icons/material/cellphone-link-off.svg | 1 + .../.icons/material/cellphone-link.svg | 1 + .../.icons/material/cellphone-lock.svg | 1 + .../.icons/material/cellphone-message-off.svg | 1 + .../.icons/material/cellphone-message.svg | 1 + .../.icons/material/cellphone-nfc-off.svg | 1 + .../.icons/material/cellphone-nfc.svg | 1 + .../.icons/material/cellphone-off.svg | 1 + .../.icons/material/cellphone-play.svg | 1 + .../.icons/material/cellphone-screenshot.svg | 1 + .../.icons/material/cellphone-settings.svg | 1 + .../.icons/material/cellphone-sound.svg | 1 + .../.icons/material/cellphone-text.svg | 1 + .../.icons/material/cellphone-wireless.svg | 1 + docs/material/.icons/material/cellphone.svg | 1 + .../material/.icons/material/celtic-cross.svg | 1 + docs/material/.icons/material/centos.svg | 1 + .../.icons/material/certificate-outline.svg | 1 + docs/material/.icons/material/certificate.svg | 1 + .../.icons/material/chair-rolling.svg | 1 + .../material/.icons/material/chair-school.svg | 1 + docs/material/.icons/material/charity.svg | 1 + docs/material/.icons/material/chart-arc.svg | 1 + .../material/chart-areaspline-variant.svg | 1 + .../.icons/material/chart-areaspline.svg | 1 + .../.icons/material/chart-bar-stacked.svg | 1 + docs/material/.icons/material/chart-bar.svg | 1 + .../material/chart-bell-curve-cumulative.svg | 1 + .../.icons/material/chart-bell-curve.svg | 1 + .../material/.icons/material/chart-bubble.svg | 1 + .../.icons/material/chart-donut-variant.svg | 1 + docs/material/.icons/material/chart-donut.svg | 1 + docs/material/.icons/material/chart-gantt.svg | 1 + .../.icons/material/chart-histogram.svg | 1 + .../.icons/material/chart-line-stacked.svg | 1 + .../.icons/material/chart-line-variant.svg | 1 + docs/material/.icons/material/chart-line.svg | 1 + .../.icons/material/chart-multiline.svg | 1 + .../.icons/material/chart-multiple.svg | 1 + docs/material/.icons/material/chart-pie.svg | 1 + docs/material/.icons/material/chart-ppf.svg | 1 + .../.icons/material/chart-sankey-variant.svg | 1 + .../material/.icons/material/chart-sankey.svg | 1 + .../material/chart-scatter-plot-hexbin.svg | 1 + .../.icons/material/chart-scatter-plot.svg | 1 + .../material/chart-timeline-variant.svg | 1 + .../.icons/material/chart-timeline.svg | 1 + docs/material/.icons/material/chart-tree.svg | 1 + .../.icons/material/chat-alert-outline.svg | 1 + docs/material/.icons/material/chat-alert.svg | 1 + .../.icons/material/chat-minus-outline.svg | 1 + docs/material/.icons/material/chat-minus.svg | 1 + .../material/.icons/material/chat-outline.svg | 1 + .../.icons/material/chat-plus-outline.svg | 1 + docs/material/.icons/material/chat-plus.svg | 1 + .../material/chat-processing-outline.svg | 1 + .../.icons/material/chat-processing.svg | 1 + .../.icons/material/chat-remove-outline.svg | 1 + docs/material/.icons/material/chat-remove.svg | 1 + .../.icons/material/chat-sleep-outline.svg | 1 + docs/material/.icons/material/chat-sleep.svg | 1 + docs/material/.icons/material/chat.svg | 1 + docs/material/.icons/material/check-all.svg | 1 + docs/material/.icons/material/check-bold.svg | 1 + .../material/check-box-multiple-outline.svg | 1 + .../.icons/material/check-box-outline.svg | 1 + .../.icons/material/check-circle-outline.svg | 1 + .../material/.icons/material/check-circle.svg | 1 + .../.icons/material/check-decagram.svg | 1 + .../.icons/material/check-network-outline.svg | 1 + .../.icons/material/check-network.svg | 1 + .../.icons/material/check-outline.svg | 1 + .../check-underline-circle-outline.svg | 1 + .../material/check-underline-circle.svg | 1 + .../.icons/material/check-underline.svg | 1 + docs/material/.icons/material/check.svg | 1 + docs/material/.icons/material/checkbook.svg | 1 + .../checkbox-blank-circle-outline.svg | 1 + .../.icons/material/checkbox-blank-circle.svg | 1 + .../material/checkbox-blank-off-outline.svg | 1 + .../.icons/material/checkbox-blank-off.svg | 1 + .../material/checkbox-blank-outline.svg | 1 + .../.icons/material/checkbox-blank.svg | 1 + .../.icons/material/checkbox-intermediate.svg | 1 + .../checkbox-marked-circle-outline.svg | 1 + .../material/checkbox-marked-circle.svg | 1 + .../material/checkbox-marked-outline.svg | 1 + .../.icons/material/checkbox-marked.svg | 1 + ...checkbox-multiple-blank-circle-outline.svg | 1 + .../checkbox-multiple-blank-circle.svg | 1 + .../checkbox-multiple-blank-outline.svg | 1 + .../material/checkbox-multiple-blank.svg | 1 + ...heckbox-multiple-marked-circle-outline.svg | 1 + .../checkbox-multiple-marked-circle.svg | 1 + .../checkbox-multiple-marked-outline.svg | 1 + .../material/checkbox-multiple-marked.svg | 1 + .../.icons/material/checkerboard-minus.svg | 1 + .../.icons/material/checkerboard-plus.svg | 1 + .../.icons/material/checkerboard-remove.svg | 1 + .../material/.icons/material/checkerboard.svg | 1 + docs/material/.icons/material/cheese-off.svg | 1 + docs/material/.icons/material/cheese.svg | 1 + docs/material/.icons/material/chef-hat.svg | 1 + .../.icons/material/chemical-weapon.svg | 1 + .../material/.icons/material/chess-bishop.svg | 1 + docs/material/.icons/material/chess-king.svg | 1 + .../material/.icons/material/chess-knight.svg | 1 + docs/material/.icons/material/chess-pawn.svg | 1 + docs/material/.icons/material/chess-queen.svg | 1 + docs/material/.icons/material/chess-rook.svg | 1 + .../.icons/material/chevron-double-down.svg | 1 + .../.icons/material/chevron-double-left.svg | 1 + .../.icons/material/chevron-double-right.svg | 1 + .../.icons/material/chevron-double-up.svg | 1 + .../material/chevron-down-box-outline.svg | 1 + .../.icons/material/chevron-down-box.svg | 1 + .../material/chevron-down-circle-outline.svg | 1 + .../.icons/material/chevron-down-circle.svg | 1 + .../material/.icons/material/chevron-down.svg | 1 + .../material/chevron-left-box-outline.svg | 1 + .../.icons/material/chevron-left-box.svg | 1 + .../material/chevron-left-circle-outline.svg | 1 + .../.icons/material/chevron-left-circle.svg | 1 + .../material/.icons/material/chevron-left.svg | 1 + .../material/chevron-right-box-outline.svg | 1 + .../.icons/material/chevron-right-box.svg | 1 + .../material/chevron-right-circle-outline.svg | 1 + .../.icons/material/chevron-right-circle.svg | 1 + .../.icons/material/chevron-right.svg | 1 + .../.icons/material/chevron-triple-down.svg | 1 + .../.icons/material/chevron-triple-left.svg | 1 + .../.icons/material/chevron-triple-right.svg | 1 + .../.icons/material/chevron-triple-up.svg | 1 + .../material/chevron-up-box-outline.svg | 1 + .../.icons/material/chevron-up-box.svg | 1 + .../material/chevron-up-circle-outline.svg | 1 + .../.icons/material/chevron-up-circle.svg | 1 + docs/material/.icons/material/chevron-up.svg | 1 + docs/material/.icons/material/chili-hot.svg | 1 + .../material/.icons/material/chili-medium.svg | 1 + docs/material/.icons/material/chili-mild.svg | 1 + docs/material/.icons/material/chip.svg | 1 + .../.icons/material/christianity-outline.svg | 1 + .../material/.icons/material/christianity.svg | 1 + docs/material/.icons/material/church.svg | 1 + docs/material/.icons/material/cigar.svg | 1 + .../.icons/material/circle-double.svg | 1 + .../.icons/material/circle-edit-outline.svg | 1 + .../.icons/material/circle-expand.svg | 1 + .../.icons/material/circle-half-full.svg | 1 + docs/material/.icons/material/circle-half.svg | 1 + .../.icons/material/circle-medium.svg | 1 + .../material/circle-multiple-outline.svg | 1 + .../.icons/material/circle-multiple.svg | 1 + .../.icons/material/circle-off-outline.svg | 1 + .../.icons/material/circle-outline.svg | 1 + .../.icons/material/circle-slice-1.svg | 1 + .../.icons/material/circle-slice-2.svg | 1 + .../.icons/material/circle-slice-3.svg | 1 + .../.icons/material/circle-slice-4.svg | 1 + .../.icons/material/circle-slice-5.svg | 1 + .../.icons/material/circle-slice-6.svg | 1 + .../.icons/material/circle-slice-7.svg | 1 + .../.icons/material/circle-slice-8.svg | 1 + .../material/.icons/material/circle-small.svg | 1 + docs/material/.icons/material/circle.svg | 1 + .../material/.icons/material/circular-saw.svg | 1 + .../.icons/material/city-variant-outline.svg | 1 + .../material/.icons/material/city-variant.svg | 1 + docs/material/.icons/material/city.svg | 1 + .../material/clipboard-account-outline.svg | 1 + .../.icons/material/clipboard-account.svg | 1 + .../material/clipboard-alert-outline.svg | 1 + .../.icons/material/clipboard-alert.svg | 1 + .../material/clipboard-arrow-down-outline.svg | 1 + .../.icons/material/clipboard-arrow-down.svg | 1 + .../material/clipboard-arrow-left-outline.svg | 1 + .../.icons/material/clipboard-arrow-left.svg | 1 + .../clipboard-arrow-right-outline.svg | 1 + .../.icons/material/clipboard-arrow-right.svg | 1 + .../material/clipboard-arrow-up-outline.svg | 1 + .../.icons/material/clipboard-arrow-up.svg | 1 + .../clipboard-check-multiple-outline.svg | 1 + .../material/clipboard-check-multiple.svg | 1 + .../material/clipboard-check-outline.svg | 1 + .../.icons/material/clipboard-check.svg | 1 + .../material/clipboard-file-outline.svg | 1 + .../.icons/material/clipboard-file.svg | 1 + .../material/clipboard-flow-outline.svg | 1 + .../.icons/material/clipboard-flow.svg | 1 + .../material/clipboard-list-outline.svg | 1 + .../.icons/material/clipboard-list.svg | 1 + .../material/clipboard-multiple-outline.svg | 1 + .../.icons/material/clipboard-multiple.svg | 1 + .../.icons/material/clipboard-outline.svg | 1 + .../clipboard-play-multiple-outline.svg | 1 + .../material/clipboard-play-multiple.svg | 1 + .../material/clipboard-play-outline.svg | 1 + .../.icons/material/clipboard-play.svg | 1 + .../material/clipboard-plus-outline.svg | 1 + .../.icons/material/clipboard-plus.svg | 1 + .../material/clipboard-pulse-outline.svg | 1 + .../.icons/material/clipboard-pulse.svg | 1 + .../clipboard-text-multiple-outline.svg | 1 + .../material/clipboard-text-multiple.svg | 1 + .../material/clipboard-text-outline.svg | 1 + .../material/clipboard-text-play-outline.svg | 1 + .../.icons/material/clipboard-text-play.svg | 1 + .../.icons/material/clipboard-text.svg | 1 + docs/material/.icons/material/clipboard.svg | 1 + docs/material/.icons/material/clippy.svg | 1 + .../.icons/material/clock-alert-outline.svg | 1 + docs/material/.icons/material/clock-alert.svg | 1 + .../.icons/material/clock-check-outline.svg | 1 + docs/material/.icons/material/clock-check.svg | 1 + .../.icons/material/clock-digital.svg | 1 + docs/material/.icons/material/clock-end.svg | 1 + docs/material/.icons/material/clock-fast.svg | 1 + docs/material/.icons/material/clock-in.svg | 1 + docs/material/.icons/material/clock-out.svg | 1 + .../.icons/material/clock-outline.svg | 1 + docs/material/.icons/material/clock-start.svg | 1 + docs/material/.icons/material/clock.svg | 1 + .../material/close-box-multiple-outline.svg | 1 + .../.icons/material/close-box-multiple.svg | 1 + .../.icons/material/close-box-outline.svg | 1 + docs/material/.icons/material/close-box.svg | 1 + .../close-circle-multiple-outline.svg | 1 + .../.icons/material/close-circle-multiple.svg | 1 + .../.icons/material/close-circle-outline.svg | 1 + .../material/.icons/material/close-circle.svg | 1 + .../.icons/material/close-network-outline.svg | 1 + .../.icons/material/close-network.svg | 1 + .../.icons/material/close-octagon-outline.svg | 1 + .../.icons/material/close-octagon.svg | 1 + .../.icons/material/close-outline.svg | 1 + docs/material/.icons/material/close-thick.svg | 1 + docs/material/.icons/material/close.svg | 1 + .../material/closed-caption-outline.svg | 1 + .../.icons/material/closed-caption.svg | 1 + docs/material/.icons/material/cloud-alert.svg | 1 + .../material/.icons/material/cloud-braces.svg | 1 + .../.icons/material/cloud-check-outline.svg | 1 + docs/material/.icons/material/cloud-check.svg | 1 + .../material/.icons/material/cloud-circle.svg | 1 + .../material/cloud-download-outline.svg | 1 + .../.icons/material/cloud-download.svg | 1 + .../.icons/material/cloud-lock-outline.svg | 1 + docs/material/.icons/material/cloud-lock.svg | 1 + .../.icons/material/cloud-off-outline.svg | 1 + .../.icons/material/cloud-outline.svg | 1 + .../.icons/material/cloud-print-outline.svg | 1 + docs/material/.icons/material/cloud-print.svg | 1 + .../.icons/material/cloud-question.svg | 1 + .../.icons/material/cloud-refresh.svg | 1 + .../.icons/material/cloud-search-outline.svg | 1 + .../material/.icons/material/cloud-search.svg | 1 + .../.icons/material/cloud-sync-outline.svg | 1 + docs/material/.icons/material/cloud-sync.svg | 1 + docs/material/.icons/material/cloud-tags.svg | 1 + .../.icons/material/cloud-upload-outline.svg | 1 + .../material/.icons/material/cloud-upload.svg | 1 + docs/material/.icons/material/cloud.svg | 1 + docs/material/.icons/material/clover.svg | 1 + docs/material/.icons/material/coach-lamp.svg | 1 + docs/material/.icons/material/coat-rack.svg | 1 + docs/material/.icons/material/code-array.svg | 1 + .../.icons/material/code-braces-box.svg | 1 + docs/material/.icons/material/code-braces.svg | 1 + .../.icons/material/code-brackets.svg | 1 + docs/material/.icons/material/code-equal.svg | 1 + .../material/code-greater-than-or-equal.svg | 1 + .../.icons/material/code-greater-than.svg | 1 + docs/material/.icons/material/code-json.svg | 1 + .../material/code-less-than-or-equal.svg | 1 + .../.icons/material/code-less-than.svg | 1 + .../material/code-not-equal-variant.svg | 1 + .../.icons/material/code-not-equal.svg | 1 + .../.icons/material/code-parentheses-box.svg | 1 + .../.icons/material/code-parentheses.svg | 1 + docs/material/.icons/material/code-string.svg | 1 + .../.icons/material/code-tags-check.svg | 1 + docs/material/.icons/material/code-tags.svg | 1 + docs/material/.icons/material/codepen.svg | 1 + .../material/.icons/material/coffee-maker.svg | 1 + .../.icons/material/coffee-off-outline.svg | 1 + docs/material/.icons/material/coffee-off.svg | 1 + .../.icons/material/coffee-outline.svg | 1 + .../.icons/material/coffee-to-go-outline.svg | 1 + .../material/.icons/material/coffee-to-go.svg | 1 + docs/material/.icons/material/coffee.svg | 1 + docs/material/.icons/material/coffin.svg | 1 + docs/material/.icons/material/cog-box.svg | 1 + .../.icons/material/cog-clockwise.svg | 1 + .../.icons/material/cog-counterclockwise.svg | 1 + .../.icons/material/cog-off-outline.svg | 1 + docs/material/.icons/material/cog-off.svg | 1 + docs/material/.icons/material/cog-outline.svg | 1 + .../.icons/material/cog-transfer-outline.svg | 1 + .../material/.icons/material/cog-transfer.svg | 1 + docs/material/.icons/material/cog.svg | 1 + docs/material/.icons/material/cogs.svg | 1 + docs/material/.icons/material/collage.svg | 1 + .../.icons/material/collapse-all-outline.svg | 1 + .../material/.icons/material/collapse-all.svg | 1 + .../material/.icons/material/color-helper.svg | 1 + .../.icons/material/comma-box-outline.svg | 1 + docs/material/.icons/material/comma-box.svg | 1 + .../.icons/material/comma-circle-outline.svg | 1 + .../material/.icons/material/comma-circle.svg | 1 + docs/material/.icons/material/comma.svg | 1 + .../material/comment-account-outline.svg | 1 + .../.icons/material/comment-account.svg | 1 + .../.icons/material/comment-alert-outline.svg | 1 + .../.icons/material/comment-alert.svg | 1 + .../material/comment-arrow-left-outline.svg | 1 + .../.icons/material/comment-arrow-left.svg | 1 + .../material/comment-arrow-right-outline.svg | 1 + .../.icons/material/comment-arrow-right.svg | 1 + .../.icons/material/comment-check-outline.svg | 1 + .../.icons/material/comment-check.svg | 1 + .../.icons/material/comment-edit-outline.svg | 1 + .../material/.icons/material/comment-edit.svg | 1 + .../.icons/material/comment-eye-outline.svg | 1 + docs/material/.icons/material/comment-eye.svg | 1 + .../material/comment-multiple-outline.svg | 1 + .../.icons/material/comment-multiple.svg | 1 + .../.icons/material/comment-outline.svg | 1 + .../.icons/material/comment-plus-outline.svg | 1 + .../material/.icons/material/comment-plus.svg | 1 + .../material/comment-processing-outline.svg | 1 + .../.icons/material/comment-processing.svg | 1 + .../material/comment-question-outline.svg | 1 + .../.icons/material/comment-question.svg | 1 + .../.icons/material/comment-quote-outline.svg | 1 + .../.icons/material/comment-quote.svg | 1 + .../material/comment-remove-outline.svg | 1 + .../.icons/material/comment-remove.svg | 1 + .../material/comment-search-outline.svg | 1 + .../.icons/material/comment-search.svg | 1 + .../comment-text-multiple-outline.svg | 1 + .../.icons/material/comment-text-multiple.svg | 1 + .../.icons/material/comment-text-outline.svg | 1 + .../material/.icons/material/comment-text.svg | 1 + docs/material/.icons/material/comment.svg | 1 + docs/material/.icons/material/compare.svg | 1 + .../.icons/material/compass-off-outline.svg | 1 + docs/material/.icons/material/compass-off.svg | 1 + .../.icons/material/compass-outline.svg | 1 + .../material/.icons/material/compass-rose.svg | 1 + docs/material/.icons/material/compass.svg | 1 + .../material/.icons/material/concourse-ci.svg | 1 + .../material/.icons/material/console-line.svg | 1 + .../material/console-network-outline.svg | 1 + .../.icons/material/console-network.svg | 1 + docs/material/.icons/material/console.svg | 1 + docs/material/.icons/material/consolidate.svg | 1 + .../contactless-payment-circle-outline.svg | 1 + .../material/contactless-payment-circle.svg | 1 + .../.icons/material/contactless-payment.svg | 1 + .../.icons/material/contacts-outline.svg | 1 + docs/material/.icons/material/contacts.svg | 1 + docs/material/.icons/material/contain-end.svg | 1 + .../.icons/material/contain-start.svg | 1 + docs/material/.icons/material/contain.svg | 1 + .../material/.icons/material/content-copy.svg | 1 + docs/material/.icons/material/content-cut.svg | 1 + .../.icons/material/content-duplicate.svg | 1 + .../.icons/material/content-paste.svg | 1 + .../material/content-save-alert-outline.svg | 1 + .../.icons/material/content-save-alert.svg | 1 + .../material/content-save-all-outline.svg | 1 + .../.icons/material/content-save-all.svg | 1 + .../material/content-save-edit-outline.svg | 1 + .../.icons/material/content-save-edit.svg | 1 + .../material/content-save-move-outline.svg | 1 + .../.icons/material/content-save-move.svg | 1 + .../.icons/material/content-save-outline.svg | 1 + .../content-save-settings-outline.svg | 1 + .../.icons/material/content-save-settings.svg | 1 + .../material/.icons/material/content-save.svg | 1 + .../material/.icons/material/contrast-box.svg | 1 + .../.icons/material/contrast-circle.svg | 1 + docs/material/.icons/material/contrast.svg | 1 + .../material/controller-classic-outline.svg | 1 + .../.icons/material/controller-classic.svg | 1 + docs/material/.icons/material/cookie.svg | 1 + .../.icons/material/coolant-temperature.svg | 1 + docs/material/.icons/material/copyright.svg | 1 + docs/material/.icons/material/cordova.svg | 1 + docs/material/.icons/material/corn-off.svg | 1 + docs/material/.icons/material/corn.svg | 1 + docs/material/.icons/material/counter.svg | 1 + docs/material/.icons/material/cow.svg | 1 + docs/material/.icons/material/cpu-32-bit.svg | 1 + docs/material/.icons/material/cpu-64-bit.svg | 1 + docs/material/.icons/material/crane.svg | 1 + docs/material/.icons/material/creation.svg | 1 + .../.icons/material/creative-commons.svg | 1 + .../material/credit-card-check-outline.svg | 1 + .../.icons/material/credit-card-check.svg | 1 + .../material/credit-card-clock-outline.svg | 1 + .../.icons/material/credit-card-clock.svg | 1 + .../material/credit-card-marker-outline.svg | 1 + .../.icons/material/credit-card-marker.svg | 1 + .../material/credit-card-minus-outline.svg | 1 + .../.icons/material/credit-card-minus.svg | 1 + .../material/credit-card-multiple-outline.svg | 1 + .../.icons/material/credit-card-multiple.svg | 1 + .../material/credit-card-off-outline.svg | 1 + .../.icons/material/credit-card-off.svg | 1 + .../.icons/material/credit-card-outline.svg | 1 + .../material/credit-card-plus-outline.svg | 1 + .../.icons/material/credit-card-plus.svg | 1 + .../material/credit-card-refund-outline.svg | 1 + .../.icons/material/credit-card-refund.svg | 1 + .../material/credit-card-remove-outline.svg | 1 + .../.icons/material/credit-card-remove.svg | 1 + .../material/credit-card-scan-outline.svg | 1 + .../.icons/material/credit-card-scan.svg | 1 + .../material/credit-card-settings-outline.svg | 1 + .../.icons/material/credit-card-settings.svg | 1 + .../credit-card-wireless-off-outline.svg | 1 + .../material/credit-card-wireless-off.svg | 1 + .../material/credit-card-wireless-outline.svg | 1 + .../.icons/material/credit-card-wireless.svg | 1 + docs/material/.icons/material/credit-card.svg | 1 + docs/material/.icons/material/cricket.svg | 1 + docs/material/.icons/material/crop-free.svg | 1 + .../.icons/material/crop-landscape.svg | 1 + .../.icons/material/crop-portrait.svg | 1 + docs/material/.icons/material/crop-rotate.svg | 1 + docs/material/.icons/material/crop-square.svg | 1 + docs/material/.icons/material/crop.svg | 1 + .../.icons/material/crosshairs-gps.svg | 1 + .../.icons/material/crosshairs-off.svg | 1 + .../.icons/material/crosshairs-question.svg | 1 + docs/material/.icons/material/crosshairs.svg | 1 + .../.icons/material/crown-outline.svg | 1 + docs/material/.icons/material/crown.svg | 1 + docs/material/.icons/material/cryengine.svg | 1 + .../material/.icons/material/crystal-ball.svg | 1 + .../material/.icons/material/cube-outline.svg | 1 + docs/material/.icons/material/cube-scan.svg | 1 + docs/material/.icons/material/cube-send.svg | 1 + .../.icons/material/cube-unfolded.svg | 1 + docs/material/.icons/material/cube.svg | 1 + .../.icons/material/cup-off-outline.svg | 1 + docs/material/.icons/material/cup-off.svg | 1 + docs/material/.icons/material/cup-outline.svg | 1 + docs/material/.icons/material/cup-water.svg | 1 + docs/material/.icons/material/cup.svg | 1 + .../.icons/material/cupboard-outline.svg | 1 + docs/material/.icons/material/cupboard.svg | 1 + docs/material/.icons/material/cupcake.svg | 1 + docs/material/.icons/material/curling.svg | 1 + .../material/.icons/material/currency-bdt.svg | 1 + .../material/.icons/material/currency-brl.svg | 1 + .../material/.icons/material/currency-btc.svg | 1 + .../material/.icons/material/currency-cny.svg | 1 + .../material/.icons/material/currency-eth.svg | 1 + .../.icons/material/currency-eur-off.svg | 1 + .../material/.icons/material/currency-eur.svg | 1 + .../material/.icons/material/currency-gbp.svg | 1 + .../material/.icons/material/currency-ils.svg | 1 + .../material/.icons/material/currency-inr.svg | 1 + .../material/.icons/material/currency-jpy.svg | 1 + .../material/.icons/material/currency-krw.svg | 1 + .../material/.icons/material/currency-kzt.svg | 1 + .../material/.icons/material/currency-ngn.svg | 1 + .../material/.icons/material/currency-php.svg | 1 + .../.icons/material/currency-rial.svg | 1 + .../material/.icons/material/currency-rub.svg | 1 + .../.icons/material/currency-sign.svg | 1 + .../material/.icons/material/currency-try.svg | 1 + .../material/.icons/material/currency-twd.svg | 1 + .../material/currency-usd-circle-outline.svg | 1 + .../.icons/material/currency-usd-circle.svg | 1 + .../.icons/material/currency-usd-off.svg | 1 + .../material/.icons/material/currency-usd.svg | 1 + docs/material/.icons/material/current-ac.svg | 1 + docs/material/.icons/material/current-dc.svg | 1 + .../material/cursor-default-click-outline.svg | 1 + .../.icons/material/cursor-default-click.svg | 1 + .../cursor-default-gesture-outline.svg | 1 + .../material/cursor-default-gesture.svg | 1 + .../material/cursor-default-outline.svg | 1 + .../.icons/material/cursor-default.svg | 1 + docs/material/.icons/material/cursor-move.svg | 1 + .../.icons/material/cursor-pointer.svg | 1 + docs/material/.icons/material/cursor-text.svg | 1 + .../.icons/material/database-check.svg | 1 + .../.icons/material/database-edit.svg | 1 + .../.icons/material/database-export.svg | 1 + .../.icons/material/database-import.svg | 1 + .../.icons/material/database-lock.svg | 1 + .../.icons/material/database-marker.svg | 1 + .../.icons/material/database-minus.svg | 1 + .../.icons/material/database-plus.svg | 1 + .../.icons/material/database-refresh.svg | 1 + .../.icons/material/database-remove.svg | 1 + .../.icons/material/database-search.svg | 1 + .../.icons/material/database-settings.svg | 1 + .../.icons/material/database-sync.svg | 1 + docs/material/.icons/material/database.svg | 1 + .../.icons/material/death-star-variant.svg | 1 + docs/material/.icons/material/death-star.svg | 1 + .../.icons/material/deathly-hallows.svg | 1 + docs/material/.icons/material/debian.svg | 1 + .../.icons/material/debug-step-into.svg | 1 + .../.icons/material/debug-step-out.svg | 1 + .../.icons/material/debug-step-over.svg | 1 + .../.icons/material/decagram-outline.svg | 1 + docs/material/.icons/material/decagram.svg | 1 + .../material/decimal-comma-decrease.svg | 1 + .../material/decimal-comma-increase.svg | 1 + .../.icons/material/decimal-comma.svg | 1 + .../.icons/material/decimal-decrease.svg | 1 + .../.icons/material/decimal-increase.svg | 1 + docs/material/.icons/material/decimal.svg | 1 + .../.icons/material/delete-alert-outline.svg | 1 + .../material/.icons/material/delete-alert.svg | 1 + .../.icons/material/delete-circle-outline.svg | 1 + .../.icons/material/delete-circle.svg | 1 + .../.icons/material/delete-empty-outline.svg | 1 + .../material/.icons/material/delete-empty.svg | 1 + .../material/delete-forever-outline.svg | 1 + .../.icons/material/delete-forever.svg | 1 + .../.icons/material/delete-off-outline.svg | 1 + docs/material/.icons/material/delete-off.svg | 1 + .../.icons/material/delete-outline.svg | 1 + .../.icons/material/delete-restore.svg | 1 + .../.icons/material/delete-sweep-outline.svg | 1 + .../material/.icons/material/delete-sweep.svg | 1 + .../.icons/material/delete-variant.svg | 1 + docs/material/.icons/material/delete.svg | 1 + docs/material/.icons/material/delta.svg | 1 + docs/material/.icons/material/desk-lamp.svg | 1 + docs/material/.icons/material/desk.svg | 1 + docs/material/.icons/material/deskphone.svg | 1 + .../.icons/material/desktop-classic.svg | 1 + .../.icons/material/desktop-mac-dashboard.svg | 1 + docs/material/.icons/material/desktop-mac.svg | 1 + .../.icons/material/desktop-tower-monitor.svg | 1 + .../.icons/material/desktop-tower.svg | 1 + docs/material/.icons/material/details.svg | 1 + docs/material/.icons/material/dev-to.svg | 1 + .../.icons/material/developer-board.svg | 1 + docs/material/.icons/material/deviantart.svg | 1 + docs/material/.icons/material/devices.svg | 1 + docs/material/.icons/material/diabetes.svg | 1 + docs/material/.icons/material/dialpad.svg | 1 + .../.icons/material/diameter-outline.svg | 1 + .../.icons/material/diameter-variant.svg | 1 + docs/material/.icons/material/diameter.svg | 1 + .../.icons/material/diamond-outline.svg | 1 + .../.icons/material/diamond-stone.svg | 1 + docs/material/.icons/material/diamond.svg | 1 + .../.icons/material/dice-1-outline.svg | 1 + docs/material/.icons/material/dice-1.svg | 1 + .../.icons/material/dice-2-outline.svg | 1 + docs/material/.icons/material/dice-2.svg | 1 + .../.icons/material/dice-3-outline.svg | 1 + docs/material/.icons/material/dice-3.svg | 1 + .../.icons/material/dice-4-outline.svg | 1 + docs/material/.icons/material/dice-4.svg | 1 + .../.icons/material/dice-5-outline.svg | 1 + docs/material/.icons/material/dice-5.svg | 1 + .../.icons/material/dice-6-outline.svg | 1 + docs/material/.icons/material/dice-6.svg | 1 + .../.icons/material/dice-d10-outline.svg | 1 + docs/material/.icons/material/dice-d10.svg | 1 + .../.icons/material/dice-d12-outline.svg | 1 + docs/material/.icons/material/dice-d12.svg | 1 + .../.icons/material/dice-d20-outline.svg | 1 + docs/material/.icons/material/dice-d20.svg | 1 + .../.icons/material/dice-d4-outline.svg | 1 + docs/material/.icons/material/dice-d4.svg | 1 + .../.icons/material/dice-d6-outline.svg | 1 + docs/material/.icons/material/dice-d6.svg | 1 + .../.icons/material/dice-d8-outline.svg | 1 + docs/material/.icons/material/dice-d8.svg | 1 + .../.icons/material/dice-multiple-outline.svg | 1 + .../.icons/material/dice-multiple.svg | 1 + .../.icons/material/digital-ocean.svg | 1 + docs/material/.icons/material/dip-switch.svg | 1 + .../.icons/material/directions-fork.svg | 1 + docs/material/.icons/material/directions.svg | 1 + docs/material/.icons/material/disc-alert.svg | 1 + docs/material/.icons/material/disc-player.svg | 1 + docs/material/.icons/material/disc.svg | 1 + docs/material/.icons/material/discord.svg | 1 + .../.icons/material/dishwasher-alert.svg | 1 + .../.icons/material/dishwasher-off.svg | 1 + docs/material/.icons/material/dishwasher.svg | 1 + docs/material/.icons/material/disqus.svg | 1 + .../material/distribute-horizontal-center.svg | 1 + .../material/distribute-horizontal-left.svg | 1 + .../material/distribute-horizontal-right.svg | 1 + .../material/distribute-vertical-bottom.svg | 1 + .../material/distribute-vertical-center.svg | 1 + .../material/distribute-vertical-top.svg | 1 + .../.icons/material/diving-flippers.svg | 1 + .../.icons/material/diving-helmet.svg | 1 + .../.icons/material/diving-scuba-flag.svg | 1 + .../material/diving-scuba-tank-multiple.svg | 1 + .../.icons/material/diving-scuba-tank.svg | 1 + .../material/.icons/material/diving-scuba.svg | 1 + .../.icons/material/diving-snorkel.svg | 1 + .../material/.icons/material/division-box.svg | 1 + docs/material/.icons/material/division.svg | 1 + docs/material/.icons/material/dlna.svg | 1 + docs/material/.icons/material/dna.svg | 1 + docs/material/.icons/material/dns-outline.svg | 1 + docs/material/.icons/material/dns.svg | 1 + .../.icons/material/do-not-disturb-off.svg | 1 + .../.icons/material/do-not-disturb.svg | 1 + docs/material/.icons/material/dock-bottom.svg | 1 + docs/material/.icons/material/dock-left.svg | 1 + docs/material/.icons/material/dock-right.svg | 1 + docs/material/.icons/material/dock-window.svg | 1 + docs/material/.icons/material/docker.svg | 1 + docs/material/.icons/material/doctor.svg | 1 + docs/material/.icons/material/dog-service.svg | 1 + docs/material/.icons/material/dog-side.svg | 1 + docs/material/.icons/material/dog.svg | 1 + docs/material/.icons/material/dolby.svg | 1 + docs/material/.icons/material/dolly.svg | 1 + docs/material/.icons/material/domain-off.svg | 1 + docs/material/.icons/material/domain-plus.svg | 1 + .../.icons/material/domain-remove.svg | 1 + docs/material/.icons/material/domain.svg | 1 + docs/material/.icons/material/domino-mask.svg | 1 + docs/material/.icons/material/donkey.svg | 1 + .../.icons/material/door-closed-lock.svg | 1 + docs/material/.icons/material/door-closed.svg | 1 + docs/material/.icons/material/door-open.svg | 1 + docs/material/.icons/material/door.svg | 1 + .../.icons/material/doorbell-video.svg | 1 + docs/material/.icons/material/doorbell.svg | 1 + docs/material/.icons/material/dot-net.svg | 1 + .../dots-horizontal-circle-outline.svg | 1 + .../material/dots-horizontal-circle.svg | 1 + .../.icons/material/dots-horizontal.svg | 1 + .../material/dots-vertical-circle-outline.svg | 1 + .../.icons/material/dots-vertical-circle.svg | 1 + .../.icons/material/dots-vertical.svg | 1 + docs/material/.icons/material/douban.svg | 1 + .../.icons/material/download-lock-outline.svg | 1 + .../.icons/material/download-lock.svg | 1 + .../.icons/material/download-multiple.svg | 1 + .../material/download-network-outline.svg | 1 + .../.icons/material/download-network.svg | 1 + .../.icons/material/download-off-outline.svg | 1 + .../material/.icons/material/download-off.svg | 1 + .../.icons/material/download-outline.svg | 1 + docs/material/.icons/material/download.svg | 1 + .../material/drag-horizontal-variant.svg | 1 + .../.icons/material/drag-horizontal.svg | 1 + .../material/.icons/material/drag-variant.svg | 1 + .../.icons/material/drag-vertical-variant.svg | 1 + .../.icons/material/drag-vertical.svg | 1 + docs/material/.icons/material/drag.svg | 1 + docs/material/.icons/material/drama-masks.svg | 1 + docs/material/.icons/material/draw.svg | 1 + docs/material/.icons/material/drawing-box.svg | 1 + docs/material/.icons/material/drawing.svg | 1 + .../.icons/material/dresser-outline.svg | 1 + docs/material/.icons/material/dresser.svg | 1 + docs/material/.icons/material/drone.svg | 1 + docs/material/.icons/material/dropbox.svg | 1 + docs/material/.icons/material/drupal.svg | 1 + docs/material/.icons/material/duck.svg | 1 + docs/material/.icons/material/dumbbell.svg | 1 + docs/material/.icons/material/dump-truck.svg | 1 + .../.icons/material/ear-hearing-off.svg | 1 + docs/material/.icons/material/ear-hearing.svg | 1 + .../.icons/material/earth-arrow-right.svg | 1 + .../.icons/material/earth-box-minus.svg | 1 + .../.icons/material/earth-box-off.svg | 1 + .../.icons/material/earth-box-plus.svg | 1 + .../.icons/material/earth-box-remove.svg | 1 + docs/material/.icons/material/earth-box.svg | 1 + docs/material/.icons/material/earth-minus.svg | 1 + docs/material/.icons/material/earth-off.svg | 1 + docs/material/.icons/material/earth-plus.svg | 1 + .../material/.icons/material/earth-remove.svg | 1 + docs/material/.icons/material/earth.svg | 1 + docs/material/.icons/material/egg-easter.svg | 1 + .../.icons/material/egg-off-outline.svg | 1 + docs/material/.icons/material/egg-off.svg | 1 + docs/material/.icons/material/egg-outline.svg | 1 + docs/material/.icons/material/egg.svg | 1 + docs/material/.icons/material/eight-track.svg | 1 + .../.icons/material/eject-outline.svg | 1 + docs/material/.icons/material/eject.svg | 1 + .../material/electric-switch-closed.svg | 1 + .../.icons/material/electric-switch.svg | 1 + .../.icons/material/electron-framework.svg | 1 + docs/material/.icons/material/elephant.svg | 1 + .../.icons/material/elevation-decline.svg | 1 + .../.icons/material/elevation-rise.svg | 1 + .../.icons/material/elevator-down.svg | 1 + .../.icons/material/elevator-passenger.svg | 1 + docs/material/.icons/material/elevator-up.svg | 1 + docs/material/.icons/material/elevator.svg | 1 + .../.icons/material/ellipse-outline.svg | 1 + docs/material/.icons/material/ellipse.svg | 1 + .../.icons/material/email-alert-outline.svg | 1 + docs/material/.icons/material/email-alert.svg | 1 + docs/material/.icons/material/email-box.svg | 1 + .../.icons/material/email-check-outline.svg | 1 + docs/material/.icons/material/email-check.svg | 1 + .../.icons/material/email-edit-outline.svg | 1 + docs/material/.icons/material/email-edit.svg | 1 + docs/material/.icons/material/email-lock.svg | 1 + .../.icons/material/email-mark-as-unread.svg | 1 + .../.icons/material/email-minus-outline.svg | 1 + docs/material/.icons/material/email-minus.svg | 1 + .../material/email-multiple-outline.svg | 1 + .../.icons/material/email-multiple.svg | 1 + .../.icons/material/email-newsletter.svg | 1 + .../.icons/material/email-off-outline.svg | 1 + docs/material/.icons/material/email-off.svg | 1 + .../material/email-open-multiple-outline.svg | 1 + .../.icons/material/email-open-multiple.svg | 1 + .../.icons/material/email-open-outline.svg | 1 + docs/material/.icons/material/email-open.svg | 1 + .../.icons/material/email-outline.svg | 1 + .../.icons/material/email-plus-outline.svg | 1 + docs/material/.icons/material/email-plus.svg | 1 + .../.icons/material/email-receive-outline.svg | 1 + .../.icons/material/email-receive.svg | 1 + .../.icons/material/email-search-outline.svg | 1 + .../material/.icons/material/email-search.svg | 1 + .../.icons/material/email-send-outline.svg | 1 + docs/material/.icons/material/email-send.svg | 1 + .../.icons/material/email-sync-outline.svg | 1 + docs/material/.icons/material/email-sync.svg | 1 + .../.icons/material/email-variant.svg | 1 + docs/material/.icons/material/email.svg | 1 + docs/material/.icons/material/ember.svg | 1 + docs/material/.icons/material/emby.svg | 1 + .../material/emoticon-angry-outline.svg | 1 + .../.icons/material/emoticon-angry.svg | 1 + .../material/emoticon-confused-outline.svg | 1 + .../.icons/material/emoticon-confused.svg | 1 + .../.icons/material/emoticon-cool-outline.svg | 1 + .../.icons/material/emoticon-cool.svg | 1 + .../.icons/material/emoticon-cry-outline.svg | 1 + .../material/.icons/material/emoticon-cry.svg | 1 + .../.icons/material/emoticon-dead-outline.svg | 1 + .../.icons/material/emoticon-dead.svg | 1 + .../material/emoticon-devil-outline.svg | 1 + .../.icons/material/emoticon-devil.svg | 1 + .../material/emoticon-excited-outline.svg | 1 + .../.icons/material/emoticon-excited.svg | 1 + .../material/emoticon-frown-outline.svg | 1 + .../.icons/material/emoticon-frown.svg | 1 + .../material/emoticon-happy-outline.svg | 1 + .../.icons/material/emoticon-happy.svg | 1 + .../.icons/material/emoticon-kiss-outline.svg | 1 + .../.icons/material/emoticon-kiss.svg | 1 + .../.icons/material/emoticon-lol-outline.svg | 1 + .../material/.icons/material/emoticon-lol.svg | 1 + .../material/emoticon-neutral-outline.svg | 1 + .../.icons/material/emoticon-neutral.svg | 1 + .../.icons/material/emoticon-outline.svg | 1 + .../.icons/material/emoticon-poop-outline.svg | 1 + .../.icons/material/emoticon-poop.svg | 1 + .../.icons/material/emoticon-sad-outline.svg | 1 + .../material/.icons/material/emoticon-sad.svg | 1 + .../material/emoticon-tongue-outline.svg | 1 + .../.icons/material/emoticon-tongue.svg | 1 + .../.icons/material/emoticon-wink-outline.svg | 1 + .../.icons/material/emoticon-wink.svg | 1 + docs/material/.icons/material/emoticon.svg | 1 + .../.icons/material/engine-off-outline.svg | 1 + docs/material/.icons/material/engine-off.svg | 1 + .../.icons/material/engine-outline.svg | 1 + docs/material/.icons/material/engine.svg | 1 + docs/material/.icons/material/epsilon.svg | 1 + docs/material/.icons/material/equal-box.svg | 1 + docs/material/.icons/material/equal.svg | 1 + .../.icons/material/equalizer-outline.svg | 1 + docs/material/.icons/material/equalizer.svg | 1 + .../.icons/material/eraser-variant.svg | 1 + docs/material/.icons/material/eraser.svg | 1 + .../.icons/material/escalator-box.svg | 1 + .../.icons/material/escalator-down.svg | 1 + .../material/.icons/material/escalator-up.svg | 1 + docs/material/.icons/material/escalator.svg | 1 + docs/material/.icons/material/eslint.svg | 1 + docs/material/.icons/material/et.svg | 1 + docs/material/.icons/material/ethereum.svg | 1 + .../.icons/material/ethernet-cable-off.svg | 1 + .../.icons/material/ethernet-cable.svg | 1 + docs/material/.icons/material/ethernet.svg | 1 + docs/material/.icons/material/ev-station.svg | 1 + docs/material/.icons/material/evernote.svg | 1 + docs/material/.icons/material/excavator.svg | 1 + .../.icons/material/exclamation-thick.svg | 1 + docs/material/.icons/material/exclamation.svg | 1 + docs/material/.icons/material/exit-run.svg | 1 + docs/material/.icons/material/exit-to-app.svg | 1 + .../.icons/material/expand-all-outline.svg | 1 + docs/material/.icons/material/expand-all.svg | 1 + .../material/expansion-card-variant.svg | 1 + .../.icons/material/expansion-card.svg | 1 + .../material/.icons/material/exponent-box.svg | 1 + docs/material/.icons/material/exponent.svg | 1 + .../.icons/material/export-variant.svg | 1 + docs/material/.icons/material/export.svg | 1 + .../.icons/material/eye-check-outline.svg | 1 + docs/material/.icons/material/eye-check.svg | 1 + .../.icons/material/eye-circle-outline.svg | 1 + docs/material/.icons/material/eye-circle.svg | 1 + .../.icons/material/eye-minus-outline.svg | 1 + docs/material/.icons/material/eye-minus.svg | 1 + .../.icons/material/eye-off-outline.svg | 1 + docs/material/.icons/material/eye-off.svg | 1 + docs/material/.icons/material/eye-outline.svg | 1 + .../.icons/material/eye-plus-outline.svg | 1 + docs/material/.icons/material/eye-plus.svg | 1 + .../.icons/material/eye-settings-outline.svg | 1 + .../material/.icons/material/eye-settings.svg | 1 + docs/material/.icons/material/eye.svg | 1 + .../.icons/material/eyedropper-minus.svg | 1 + .../.icons/material/eyedropper-off.svg | 1 + .../.icons/material/eyedropper-plus.svg | 1 + .../.icons/material/eyedropper-remove.svg | 1 + .../.icons/material/eyedropper-variant.svg | 1 + docs/material/.icons/material/eyedropper.svg | 1 + docs/material/.icons/material/face-agent.svg | 1 + .../material/.icons/material/face-outline.svg | 1 + .../.icons/material/face-profile-woman.svg | 1 + .../material/.icons/material/face-profile.svg | 1 + .../.icons/material/face-recognition.svg | 1 + .../.icons/material/face-woman-outline.svg | 1 + docs/material/.icons/material/face-woman.svg | 1 + docs/material/.icons/material/face.svg | 1 + .../.icons/material/facebook-messenger.svg | 1 + .../.icons/material/facebook-workplace.svg | 1 + docs/material/.icons/material/facebook.svg | 1 + docs/material/.icons/material/factory.svg | 1 + docs/material/.icons/material/fan-off.svg | 1 + docs/material/.icons/material/fan.svg | 1 + .../.icons/material/fast-forward-10.svg | 1 + .../.icons/material/fast-forward-30.svg | 1 + .../.icons/material/fast-forward-5.svg | 1 + .../.icons/material/fast-forward-outline.svg | 1 + .../material/.icons/material/fast-forward.svg | 1 + docs/material/.icons/material/fax.svg | 1 + docs/material/.icons/material/feather.svg | 1 + .../material/feature-search-outline.svg | 1 + .../.icons/material/feature-search.svg | 1 + docs/material/.icons/material/fedora.svg | 1 + .../material/.icons/material/ferris-wheel.svg | 1 + docs/material/.icons/material/ferry.svg | 1 + .../.icons/material/file-account-outline.svg | 1 + .../material/.icons/material/file-account.svg | 1 + .../.icons/material/file-alert-outline.svg | 1 + docs/material/.icons/material/file-alert.svg | 1 + .../material/.icons/material/file-cabinet.svg | 1 + .../material/.icons/material/file-cad-box.svg | 1 + docs/material/.icons/material/file-cad.svg | 1 + .../.icons/material/file-cancel-outline.svg | 1 + docs/material/.icons/material/file-cancel.svg | 1 + .../material/file-certificate-outline.svg | 1 + .../.icons/material/file-certificate.svg | 1 + .../.icons/material/file-chart-outline.svg | 1 + docs/material/.icons/material/file-chart.svg | 1 + .../.icons/material/file-check-outline.svg | 1 + docs/material/.icons/material/file-check.svg | 1 + .../.icons/material/file-clock-outline.svg | 1 + docs/material/.icons/material/file-clock.svg | 1 + .../.icons/material/file-cloud-outline.svg | 1 + docs/material/.icons/material/file-cloud.svg | 1 + .../.icons/material/file-code-outline.svg | 1 + docs/material/.icons/material/file-code.svg | 1 + .../.icons/material/file-cog-outline.svg | 1 + docs/material/.icons/material/file-cog.svg | 1 + .../material/.icons/material/file-compare.svg | 1 + .../material/file-delimited-outline.svg | 1 + .../.icons/material/file-delimited.svg | 1 + .../material/file-document-edit-outline.svg | 1 + .../.icons/material/file-document-edit.svg | 1 + .../.icons/material/file-document-outline.svg | 1 + .../.icons/material/file-document.svg | 1 + .../.icons/material/file-download-outline.svg | 1 + .../.icons/material/file-download.svg | 1 + .../.icons/material/file-edit-outline.svg | 1 + docs/material/.icons/material/file-edit.svg | 1 + .../material/file-excel-box-outline.svg | 1 + .../.icons/material/file-excel-box.svg | 1 + .../.icons/material/file-excel-outline.svg | 1 + docs/material/.icons/material/file-excel.svg | 1 + .../.icons/material/file-export-outline.svg | 1 + docs/material/.icons/material/file-export.svg | 1 + .../.icons/material/file-eye-outline.svg | 1 + docs/material/.icons/material/file-eye.svg | 1 + .../.icons/material/file-find-outline.svg | 1 + docs/material/.icons/material/file-find.svg | 1 + docs/material/.icons/material/file-hidden.svg | 1 + .../.icons/material/file-image-outline.svg | 1 + docs/material/.icons/material/file-image.svg | 1 + .../.icons/material/file-import-outline.svg | 1 + docs/material/.icons/material/file-import.svg | 1 + .../.icons/material/file-key-outline.svg | 1 + docs/material/.icons/material/file-key.svg | 1 + .../.icons/material/file-link-outline.svg | 1 + docs/material/.icons/material/file-link.svg | 1 + .../.icons/material/file-lock-outline.svg | 1 + docs/material/.icons/material/file-lock.svg | 1 + .../.icons/material/file-move-outline.svg | 1 + docs/material/.icons/material/file-move.svg | 1 + .../.icons/material/file-multiple-outline.svg | 1 + .../.icons/material/file-multiple.svg | 1 + .../.icons/material/file-music-outline.svg | 1 + docs/material/.icons/material/file-music.svg | 1 + .../material/.icons/material/file-outline.svg | 1 + .../.icons/material/file-pdf-box-outline.svg | 1 + .../material/.icons/material/file-pdf-box.svg | 1 + .../.icons/material/file-pdf-outline.svg | 1 + docs/material/.icons/material/file-pdf.svg | 1 + .../.icons/material/file-percent-outline.svg | 1 + .../material/.icons/material/file-percent.svg | 1 + .../.icons/material/file-phone-outline.svg | 1 + docs/material/.icons/material/file-phone.svg | 1 + .../.icons/material/file-plus-outline.svg | 1 + docs/material/.icons/material/file-plus.svg | 1 + .../material/file-powerpoint-box-outline.svg | 1 + .../.icons/material/file-powerpoint-box.svg | 1 + .../material/file-powerpoint-outline.svg | 1 + .../.icons/material/file-powerpoint.svg | 1 + .../.icons/material/file-presentation-box.svg | 1 + .../.icons/material/file-question-outline.svg | 1 + .../.icons/material/file-question.svg | 1 + .../.icons/material/file-refresh-outline.svg | 1 + .../material/.icons/material/file-refresh.svg | 1 + .../.icons/material/file-remove-outline.svg | 1 + docs/material/.icons/material/file-remove.svg | 1 + .../.icons/material/file-replace-outline.svg | 1 + .../material/.icons/material/file-replace.svg | 1 + .../.icons/material/file-restore-outline.svg | 1 + .../material/.icons/material/file-restore.svg | 1 + .../.icons/material/file-search-outline.svg | 1 + docs/material/.icons/material/file-search.svg | 1 + .../.icons/material/file-send-outline.svg | 1 + docs/material/.icons/material/file-send.svg | 1 + .../.icons/material/file-settings-outline.svg | 1 + .../.icons/material/file-settings.svg | 1 + .../.icons/material/file-star-outline.svg | 1 + docs/material/.icons/material/file-star.svg | 1 + .../.icons/material/file-swap-outline.svg | 1 + docs/material/.icons/material/file-swap.svg | 1 + .../.icons/material/file-sync-outline.svg | 1 + docs/material/.icons/material/file-sync.svg | 1 + .../file-table-box-multiple-outline.svg | 1 + .../material/file-table-box-multiple.svg | 1 + .../material/file-table-box-outline.svg | 1 + .../.icons/material/file-table-box.svg | 1 + .../.icons/material/file-table-outline.svg | 1 + docs/material/.icons/material/file-table.svg | 1 + .../.icons/material/file-tree-outline.svg | 1 + docs/material/.icons/material/file-tree.svg | 1 + .../.icons/material/file-undo-outline.svg | 1 + docs/material/.icons/material/file-undo.svg | 1 + .../.icons/material/file-upload-outline.svg | 1 + docs/material/.icons/material/file-upload.svg | 1 + .../.icons/material/file-video-outline.svg | 1 + docs/material/.icons/material/file-video.svg | 1 + .../.icons/material/file-word-box-outline.svg | 1 + .../.icons/material/file-word-box.svg | 1 + .../.icons/material/file-word-outline.svg | 1 + docs/material/.icons/material/file-word.svg | 1 + docs/material/.icons/material/file.svg | 1 + docs/material/.icons/material/film.svg | 1 + .../material/filmstrip-box-multiple.svg | 1 + .../.icons/material/filmstrip-box.svg | 1 + .../.icons/material/filmstrip-off.svg | 1 + docs/material/.icons/material/filmstrip.svg | 1 + .../.icons/material/filter-menu-outline.svg | 1 + docs/material/.icons/material/filter-menu.svg | 1 + .../.icons/material/filter-minus-outline.svg | 1 + .../material/.icons/material/filter-minus.svg | 1 + .../.icons/material/filter-outline.svg | 1 + .../.icons/material/filter-plus-outline.svg | 1 + docs/material/.icons/material/filter-plus.svg | 1 + .../.icons/material/filter-remove-outline.svg | 1 + .../.icons/material/filter-remove.svg | 1 + .../.icons/material/filter-variant-minus.svg | 1 + .../.icons/material/filter-variant-plus.svg | 1 + .../.icons/material/filter-variant-remove.svg | 1 + .../.icons/material/filter-variant.svg | 1 + docs/material/.icons/material/filter.svg | 1 + docs/material/.icons/material/finance.svg | 1 + .../material/.icons/material/find-replace.svg | 1 + .../.icons/material/fingerprint-off.svg | 1 + docs/material/.icons/material/fingerprint.svg | 1 + .../.icons/material/fire-extinguisher.svg | 1 + .../.icons/material/fire-hydrant-alert.svg | 1 + .../.icons/material/fire-hydrant-off.svg | 1 + .../material/.icons/material/fire-hydrant.svg | 1 + docs/material/.icons/material/fire-truck.svg | 1 + docs/material/.icons/material/fire.svg | 1 + docs/material/.icons/material/firebase.svg | 1 + docs/material/.icons/material/firefox.svg | 1 + .../.icons/material/fireplace-off.svg | 1 + docs/material/.icons/material/fireplace.svg | 1 + docs/material/.icons/material/firework.svg | 1 + docs/material/.icons/material/fish-off.svg | 1 + docs/material/.icons/material/fish.svg | 1 + .../.icons/material/fishbowl-outline.svg | 1 + docs/material/.icons/material/fishbowl.svg | 1 + .../.icons/material/fit-to-page-outline.svg | 1 + docs/material/.icons/material/fit-to-page.svg | 1 + .../.icons/material/flag-checkered.svg | 1 + .../.icons/material/flag-minus-outline.svg | 1 + docs/material/.icons/material/flag-minus.svg | 1 + .../material/.icons/material/flag-outline.svg | 1 + .../.icons/material/flag-plus-outline.svg | 1 + docs/material/.icons/material/flag-plus.svg | 1 + .../.icons/material/flag-remove-outline.svg | 1 + docs/material/.icons/material/flag-remove.svg | 1 + .../.icons/material/flag-triangle.svg | 1 + .../.icons/material/flag-variant-outline.svg | 1 + .../material/.icons/material/flag-variant.svg | 1 + docs/material/.icons/material/flag.svg | 1 + docs/material/.icons/material/flare.svg | 1 + .../.icons/material/flash-alert-outline.svg | 1 + docs/material/.icons/material/flash-alert.svg | 1 + docs/material/.icons/material/flash-auto.svg | 1 + .../material/.icons/material/flash-circle.svg | 1 + docs/material/.icons/material/flash-off.svg | 1 + .../.icons/material/flash-outline.svg | 1 + .../.icons/material/flash-red-eye.svg | 1 + docs/material/.icons/material/flash.svg | 1 + .../.icons/material/flashlight-off.svg | 1 + docs/material/.icons/material/flashlight.svg | 1 + .../material/flask-empty-minus-outline.svg | 1 + .../.icons/material/flask-empty-minus.svg | 1 + .../material/flask-empty-off-outline.svg | 1 + .../.icons/material/flask-empty-off.svg | 1 + .../.icons/material/flask-empty-outline.svg | 1 + .../material/flask-empty-plus-outline.svg | 1 + .../.icons/material/flask-empty-plus.svg | 1 + .../material/flask-empty-remove-outline.svg | 1 + .../.icons/material/flask-empty-remove.svg | 1 + docs/material/.icons/material/flask-empty.svg | 1 + .../.icons/material/flask-minus-outline.svg | 1 + docs/material/.icons/material/flask-minus.svg | 1 + .../.icons/material/flask-off-outline.svg | 1 + docs/material/.icons/material/flask-off.svg | 1 + .../.icons/material/flask-outline.svg | 1 + .../.icons/material/flask-plus-outline.svg | 1 + docs/material/.icons/material/flask-plus.svg | 1 + .../.icons/material/flask-remove-outline.svg | 1 + .../material/.icons/material/flask-remove.svg | 1 + .../flask-round-bottom-empty-outline.svg | 1 + .../material/flask-round-bottom-empty.svg | 1 + .../material/flask-round-bottom-outline.svg | 1 + .../.icons/material/flask-round-bottom.svg | 1 + docs/material/.icons/material/flask.svg | 1 + .../material/.icons/material/fleur-de-lis.svg | 1 + .../.icons/material/flip-horizontal.svg | 1 + .../material/.icons/material/flip-to-back.svg | 1 + .../.icons/material/flip-to-front.svg | 1 + .../.icons/material/flip-vertical.svg | 1 + .../.icons/material/floor-lamp-dual.svg | 1 + .../.icons/material/floor-lamp-variant.svg | 1 + docs/material/.icons/material/floor-lamp.svg | 1 + docs/material/.icons/material/floor-plan.svg | 1 + .../.icons/material/floppy-variant.svg | 1 + docs/material/.icons/material/floppy.svg | 1 + .../.icons/material/flower-outline.svg | 1 + .../material/.icons/material/flower-poppy.svg | 1 + .../.icons/material/flower-tulip-outline.svg | 1 + .../material/.icons/material/flower-tulip.svg | 1 + docs/material/.icons/material/flower.svg | 1 + docs/material/.icons/material/focus-auto.svg | 1 + .../material/focus-field-horizontal.svg | 1 + .../.icons/material/focus-field-vertical.svg | 1 + docs/material/.icons/material/focus-field.svg | 1 + .../material/folder-account-outline.svg | 1 + .../.icons/material/folder-account.svg | 1 + .../.icons/material/folder-alert-outline.svg | 1 + .../material/.icons/material/folder-alert.svg | 1 + .../.icons/material/folder-clock-outline.svg | 1 + .../material/.icons/material/folder-clock.svg | 1 + .../.icons/material/folder-cog-outline.svg | 1 + docs/material/.icons/material/folder-cog.svg | 1 + .../material/folder-download-outline.svg | 1 + .../.icons/material/folder-download.svg | 1 + .../.icons/material/folder-edit-outline.svg | 1 + docs/material/.icons/material/folder-edit.svg | 1 + .../.icons/material/folder-google-drive.svg | 1 + .../.icons/material/folder-heart-outline.svg | 1 + .../material/.icons/material/folder-heart.svg | 1 + .../.icons/material/folder-home-outline.svg | 1 + docs/material/.icons/material/folder-home.svg | 1 + .../material/.icons/material/folder-image.svg | 1 + .../material/folder-information-outline.svg | 1 + .../.icons/material/folder-information.svg | 1 + .../material/folder-key-network-outline.svg | 1 + .../.icons/material/folder-key-network.svg | 1 + .../.icons/material/folder-key-outline.svg | 1 + docs/material/.icons/material/folder-key.svg | 1 + .../.icons/material/folder-lock-open.svg | 1 + docs/material/.icons/material/folder-lock.svg | 1 + .../.icons/material/folder-marker-outline.svg | 1 + .../.icons/material/folder-marker.svg | 1 + .../.icons/material/folder-move-outline.svg | 1 + docs/material/.icons/material/folder-move.svg | 1 + .../.icons/material/folder-multiple-image.svg | 1 + .../material/folder-multiple-outline.svg | 1 + .../.icons/material/folder-multiple.svg | 1 + .../.icons/material/folder-music-outline.svg | 1 + .../material/.icons/material/folder-music.svg | 1 + .../material/folder-network-outline.svg | 1 + .../.icons/material/folder-network.svg | 1 + .../.icons/material/folder-open-outline.svg | 1 + docs/material/.icons/material/folder-open.svg | 1 + .../.icons/material/folder-outline.svg | 1 + .../.icons/material/folder-plus-outline.svg | 1 + docs/material/.icons/material/folder-plus.svg | 1 + .../.icons/material/folder-pound-outline.svg | 1 + .../material/.icons/material/folder-pound.svg | 1 + .../material/folder-refresh-outline.svg | 1 + .../.icons/material/folder-refresh.svg | 1 + .../.icons/material/folder-remove-outline.svg | 1 + .../.icons/material/folder-remove.svg | 1 + .../.icons/material/folder-search-outline.svg | 1 + .../.icons/material/folder-search.svg | 1 + .../material/folder-settings-outline.svg | 1 + .../.icons/material/folder-settings.svg | 1 + .../material/folder-star-multiple-outline.svg | 1 + .../.icons/material/folder-star-multiple.svg | 1 + .../.icons/material/folder-star-outline.svg | 1 + docs/material/.icons/material/folder-star.svg | 1 + .../.icons/material/folder-swap-outline.svg | 1 + docs/material/.icons/material/folder-swap.svg | 1 + .../.icons/material/folder-sync-outline.svg | 1 + docs/material/.icons/material/folder-sync.svg | 1 + .../.icons/material/folder-table-outline.svg | 1 + .../material/.icons/material/folder-table.svg | 1 + .../.icons/material/folder-text-outline.svg | 1 + docs/material/.icons/material/folder-text.svg | 1 + .../.icons/material/folder-upload-outline.svg | 1 + .../.icons/material/folder-upload.svg | 1 + .../.icons/material/folder-zip-outline.svg | 1 + docs/material/.icons/material/folder-zip.svg | 1 + docs/material/.icons/material/folder.svg | 1 + .../material/.icons/material/font-awesome.svg | 1 + .../.icons/material/food-apple-outline.svg | 1 + docs/material/.icons/material/food-apple.svg | 1 + .../.icons/material/food-croissant.svg | 1 + .../.icons/material/food-fork-drink.svg | 1 + docs/material/.icons/material/food-off.svg | 1 + .../.icons/material/food-variant-off.svg | 1 + .../material/.icons/material/food-variant.svg | 1 + docs/material/.icons/material/food.svg | 1 + docs/material/.icons/material/foot-print.svg | 1 + .../.icons/material/football-australian.svg | 1 + .../.icons/material/football-helmet.svg | 1 + docs/material/.icons/material/football.svg | 1 + docs/material/.icons/material/forklift.svg | 1 + .../.icons/material/form-dropdown.svg | 1 + docs/material/.icons/material/form-select.svg | 1 + .../.icons/material/form-textarea.svg | 1 + .../.icons/material/form-textbox-lock.svg | 1 + .../.icons/material/form-textbox-password.svg | 1 + .../material/.icons/material/form-textbox.svg | 1 + .../.icons/material/format-align-bottom.svg | 1 + .../.icons/material/format-align-center.svg | 1 + .../.icons/material/format-align-justify.svg | 1 + .../.icons/material/format-align-left.svg | 1 + .../.icons/material/format-align-middle.svg | 1 + .../.icons/material/format-align-right.svg | 1 + .../.icons/material/format-align-top.svg | 1 + .../material/format-annotation-minus.svg | 1 + .../material/format-annotation-plus.svg | 1 + docs/material/.icons/material/format-bold.svg | 1 + .../material/.icons/material/format-clear.svg | 1 + .../.icons/material/format-color-fill.svg | 1 + .../material/format-color-highlight.svg | 1 + .../material/format-color-marker-cancel.svg | 1 + .../.icons/material/format-color-text.svg | 1 + .../.icons/material/format-columns.svg | 1 + .../.icons/material/format-float-center.svg | 1 + .../.icons/material/format-float-left.svg | 1 + .../.icons/material/format-float-none.svg | 1 + .../.icons/material/format-float-right.svg | 1 + .../material/format-font-size-decrease.svg | 1 + .../material/format-font-size-increase.svg | 1 + docs/material/.icons/material/format-font.svg | 1 + .../.icons/material/format-header-1.svg | 1 + .../.icons/material/format-header-2.svg | 1 + .../.icons/material/format-header-3.svg | 1 + .../.icons/material/format-header-4.svg | 1 + .../.icons/material/format-header-5.svg | 1 + .../.icons/material/format-header-6.svg | 1 + .../material/format-header-decrease.svg | 1 + .../.icons/material/format-header-equal.svg | 1 + .../material/format-header-increase.svg | 1 + .../.icons/material/format-header-pound.svg | 1 + .../format-horizontal-align-center.svg | 1 + .../material/format-horizontal-align-left.svg | 1 + .../format-horizontal-align-right.svg | 1 + .../material/format-indent-decrease.svg | 1 + .../material/format-indent-increase.svg | 1 + .../.icons/material/format-italic.svg | 1 + .../material/format-letter-case-lower.svg | 1 + .../material/format-letter-case-upper.svg | 1 + .../.icons/material/format-letter-case.svg | 1 + .../material/format-letter-ends-with.svg | 1 + .../.icons/material/format-letter-matches.svg | 1 + .../material/format-letter-starts-with.svg | 1 + .../.icons/material/format-line-spacing.svg | 1 + .../.icons/material/format-line-style.svg | 1 + .../.icons/material/format-line-weight.svg | 1 + .../material/format-list-bulleted-square.svg | 1 + .../format-list-bulleted-triangle.svg | 1 + .../material/format-list-bulleted-type.svg | 1 + .../.icons/material/format-list-bulleted.svg | 1 + .../.icons/material/format-list-checkbox.svg | 1 + .../.icons/material/format-list-checks.svg | 1 + .../material/format-list-numbered-rtl.svg | 1 + .../.icons/material/format-list-numbered.svg | 1 + .../.icons/material/format-list-text.svg | 1 + .../.icons/material/format-overline.svg | 1 + .../.icons/material/format-page-break.svg | 1 + .../material/.icons/material/format-paint.svg | 1 + .../.icons/material/format-paragraph.svg | 1 + .../.icons/material/format-pilcrow.svg | 1 + .../material/format-quote-close-outline.svg | 1 + .../.icons/material/format-quote-close.svg | 1 + .../material/format-quote-open-outline.svg | 1 + .../.icons/material/format-quote-open.svg | 1 + .../.icons/material/format-rotate-90.svg | 1 + .../.icons/material/format-section.svg | 1 + docs/material/.icons/material/format-size.svg | 1 + .../material/format-strikethrough-variant.svg | 1 + .../.icons/material/format-strikethrough.svg | 1 + .../.icons/material/format-subscript.svg | 1 + .../.icons/material/format-superscript.svg | 1 + .../format-text-rotation-angle-down.svg | 1 + .../format-text-rotation-angle-up.svg | 1 + .../format-text-rotation-down-vertical.svg | 1 + .../material/format-text-rotation-down.svg | 1 + .../material/format-text-rotation-none.svg | 1 + .../material/format-text-rotation-up.svg | 1 + .../format-text-rotation-vertical.svg | 1 + .../.icons/material/format-text-variant.svg | 1 + .../material/format-text-wrapping-clip.svg | 1 + .../format-text-wrapping-overflow.svg | 1 + .../material/format-text-wrapping-wrap.svg | 1 + docs/material/.icons/material/format-text.svg | 1 + .../.icons/material/format-textbox.svg | 1 + .../material/format-textdirection-l-to-r.svg | 1 + .../material/format-textdirection-r-to-l.svg | 1 + .../material/.icons/material/format-title.svg | 1 + .../.icons/material/format-underline.svg | 1 + .../material/format-vertical-align-bottom.svg | 1 + .../material/format-vertical-align-center.svg | 1 + .../material/format-vertical-align-top.svg | 1 + .../.icons/material/format-wrap-inline.svg | 1 + .../.icons/material/format-wrap-square.svg | 1 + .../.icons/material/format-wrap-tight.svg | 1 + .../material/format-wrap-top-bottom.svg | 1 + .../.icons/material/forum-outline.svg | 1 + docs/material/.icons/material/forum.svg | 1 + docs/material/.icons/material/forward.svg | 1 + .../.icons/material/forwardburger.svg | 1 + .../.icons/material/fountain-pen-tip.svg | 1 + .../material/.icons/material/fountain-pen.svg | 1 + docs/material/.icons/material/fountain.svg | 1 + docs/material/.icons/material/freebsd.svg | 1 + .../material/frequently-asked-questions.svg | 1 + .../.icons/material/fridge-alert-outline.svg | 1 + .../material/.icons/material/fridge-alert.svg | 1 + .../.icons/material/fridge-bottom.svg | 1 + .../.icons/material/fridge-off-outline.svg | 1 + docs/material/.icons/material/fridge-off.svg | 1 + .../.icons/material/fridge-outline.svg | 1 + docs/material/.icons/material/fridge-top.svg | 1 + docs/material/.icons/material/fridge.svg | 1 + .../.icons/material/fruit-cherries-off.svg | 1 + .../.icons/material/fruit-cherries.svg | 1 + .../.icons/material/fruit-citrus-off.svg | 1 + .../material/.icons/material/fruit-citrus.svg | 1 + .../.icons/material/fruit-grapes-outline.svg | 1 + .../material/.icons/material/fruit-grapes.svg | 1 + .../.icons/material/fruit-pineapple.svg | 1 + .../.icons/material/fruit-watermelon.svg | 1 + docs/material/.icons/material/fuel.svg | 1 + .../.icons/material/fullscreen-exit.svg | 1 + docs/material/.icons/material/fullscreen.svg | 1 + .../.icons/material/function-variant.svg | 1 + docs/material/.icons/material/function.svg | 1 + .../.icons/material/furigana-horizontal.svg | 1 + .../.icons/material/furigana-vertical.svg | 1 + docs/material/.icons/material/fuse-blade.svg | 1 + docs/material/.icons/material/fuse.svg | 1 + .../.icons/material/gamepad-circle-down.svg | 1 + .../.icons/material/gamepad-circle-left.svg | 1 + .../material/gamepad-circle-outline.svg | 1 + .../.icons/material/gamepad-circle-right.svg | 1 + .../.icons/material/gamepad-circle-up.svg | 1 + .../.icons/material/gamepad-circle.svg | 1 + .../material/.icons/material/gamepad-down.svg | 1 + .../material/.icons/material/gamepad-left.svg | 1 + .../.icons/material/gamepad-right.svg | 1 + .../.icons/material/gamepad-round-down.svg | 1 + .../.icons/material/gamepad-round-left.svg | 1 + .../.icons/material/gamepad-round-outline.svg | 1 + .../.icons/material/gamepad-round-right.svg | 1 + .../.icons/material/gamepad-round-up.svg | 1 + .../.icons/material/gamepad-round.svg | 1 + .../material/gamepad-square-outline.svg | 1 + .../.icons/material/gamepad-square.svg | 1 + docs/material/.icons/material/gamepad-up.svg | 1 + .../material/gamepad-variant-outline.svg | 1 + .../.icons/material/gamepad-variant.svg | 1 + docs/material/.icons/material/gamepad.svg | 1 + docs/material/.icons/material/gamma.svg | 1 + .../material/.icons/material/gantry-crane.svg | 1 + .../.icons/material/garage-alert-variant.svg | 1 + .../material/.icons/material/garage-alert.svg | 1 + .../.icons/material/garage-open-variant.svg | 1 + docs/material/.icons/material/garage-open.svg | 1 + .../.icons/material/garage-variant.svg | 1 + docs/material/.icons/material/garage.svg | 1 + .../material/.icons/material/gas-cylinder.svg | 1 + .../material/gas-station-off-outline.svg | 1 + .../.icons/material/gas-station-off.svg | 1 + .../.icons/material/gas-station-outline.svg | 1 + docs/material/.icons/material/gas-station.svg | 1 + docs/material/.icons/material/gate-and.svg | 1 + .../.icons/material/gate-arrow-right.svg | 1 + docs/material/.icons/material/gate-nand.svg | 1 + docs/material/.icons/material/gate-nor.svg | 1 + docs/material/.icons/material/gate-not.svg | 1 + docs/material/.icons/material/gate-open.svg | 1 + docs/material/.icons/material/gate-or.svg | 1 + docs/material/.icons/material/gate-xnor.svg | 1 + docs/material/.icons/material/gate-xor.svg | 1 + docs/material/.icons/material/gate.svg | 1 + docs/material/.icons/material/gatsby.svg | 1 + docs/material/.icons/material/gauge-empty.svg | 1 + docs/material/.icons/material/gauge-full.svg | 1 + docs/material/.icons/material/gauge-low.svg | 1 + docs/material/.icons/material/gauge.svg | 1 + docs/material/.icons/material/gavel.svg | 1 + .../.icons/material/gender-female.svg | 1 + .../material/gender-male-female-variant.svg | 1 + .../.icons/material/gender-male-female.svg | 1 + docs/material/.icons/material/gender-male.svg | 1 + .../.icons/material/gender-non-binary.svg | 1 + .../.icons/material/gender-transgender.svg | 1 + docs/material/.icons/material/gentoo.svg | 1 + .../.icons/material/gesture-double-tap.svg | 1 + .../.icons/material/gesture-pinch.svg | 1 + .../.icons/material/gesture-spread.svg | 1 + .../.icons/material/gesture-swipe-down.svg | 1 + .../material/gesture-swipe-horizontal.svg | 1 + .../.icons/material/gesture-swipe-left.svg | 1 + .../.icons/material/gesture-swipe-right.svg | 1 + .../.icons/material/gesture-swipe-up.svg | 1 + .../material/gesture-swipe-vertical.svg | 1 + .../.icons/material/gesture-swipe.svg | 1 + .../.icons/material/gesture-tap-box.svg | 1 + .../.icons/material/gesture-tap-button.svg | 1 + .../.icons/material/gesture-tap-hold.svg | 1 + docs/material/.icons/material/gesture-tap.svg | 1 + .../material/gesture-two-double-tap.svg | 1 + .../.icons/material/gesture-two-tap.svg | 1 + docs/material/.icons/material/gesture.svg | 1 + docs/material/.icons/material/ghost-off.svg | 1 + docs/material/.icons/material/ghost.svg | 1 + docs/material/.icons/material/gif.svg | 1 + .../material/.icons/material/gift-outline.svg | 1 + docs/material/.icons/material/gift.svg | 1 + docs/material/.icons/material/git.svg | 1 + docs/material/.icons/material/github.svg | 1 + docs/material/.icons/material/gitlab.svg | 1 + .../.icons/material/glass-cocktail.svg | 1 + docs/material/.icons/material/glass-flute.svg | 1 + .../.icons/material/glass-mug-variant.svg | 1 + docs/material/.icons/material/glass-mug.svg | 1 + .../.icons/material/glass-pint-outline.svg | 1 + .../material/.icons/material/glass-stange.svg | 1 + docs/material/.icons/material/glass-tulip.svg | 1 + docs/material/.icons/material/glass-wine.svg | 1 + docs/material/.icons/material/glasses.svg | 1 + docs/material/.icons/material/globe-light.svg | 1 + docs/material/.icons/material/globe-model.svg | 1 + docs/material/.icons/material/gmail.svg | 1 + docs/material/.icons/material/gnome.svg | 1 + .../.icons/material/go-kart-track.svg | 1 + docs/material/.icons/material/go-kart.svg | 1 + docs/material/.icons/material/gog.svg | 1 + docs/material/.icons/material/gold.svg | 1 + docs/material/.icons/material/golf-cart.svg | 1 + docs/material/.icons/material/golf-tee.svg | 1 + docs/material/.icons/material/golf.svg | 1 + docs/material/.icons/material/gondola.svg | 1 + docs/material/.icons/material/goodreads.svg | 1 + docs/material/.icons/material/google-ads.svg | 1 + .../.icons/material/google-analytics.svg | 1 + .../.icons/material/google-assistant.svg | 1 + .../.icons/material/google-cardboard.svg | 1 + .../.icons/material/google-chrome.svg | 1 + .../material/google-circles-communities.svg | 1 + .../material/google-circles-extended.svg | 1 + .../.icons/material/google-circles-group.svg | 1 + .../.icons/material/google-circles.svg | 1 + .../.icons/material/google-classroom.svg | 1 + .../material/.icons/material/google-cloud.svg | 1 + .../.icons/material/google-controller-off.svg | 1 + .../.icons/material/google-controller.svg | 1 + .../.icons/material/google-downasaur.svg | 1 + .../material/.icons/material/google-drive.svg | 1 + .../material/.icons/material/google-earth.svg | 1 + docs/material/.icons/material/google-fit.svg | 1 + .../material/.icons/material/google-glass.svg | 1 + .../.icons/material/google-hangouts.svg | 1 + docs/material/.icons/material/google-home.svg | 1 + docs/material/.icons/material/google-keep.svg | 1 + docs/material/.icons/material/google-lens.svg | 1 + docs/material/.icons/material/google-maps.svg | 1 + .../.icons/material/google-my-business.svg | 1 + .../.icons/material/google-nearby.svg | 1 + .../.icons/material/google-photos.svg | 1 + docs/material/.icons/material/google-play.svg | 1 + docs/material/.icons/material/google-plus.svg | 1 + .../.icons/material/google-podcast.svg | 1 + .../.icons/material/google-spreadsheet.svg | 1 + .../.icons/material/google-street-view.svg | 1 + .../.icons/material/google-translate.svg | 1 + docs/material/.icons/material/google.svg | 1 + docs/material/.icons/material/gradient.svg | 1 + docs/material/.icons/material/grain.svg | 1 + .../.icons/material/graph-outline.svg | 1 + docs/material/.icons/material/graph.svg | 1 + docs/material/.icons/material/graphql.svg | 1 + docs/material/.icons/material/grave-stone.svg | 1 + .../.icons/material/grease-pencil.svg | 1 + .../.icons/material/greater-than-or-equal.svg | 1 + .../material/.icons/material/greater-than.svg | 1 + docs/material/.icons/material/grid-large.svg | 1 + docs/material/.icons/material/grid-off.svg | 1 + docs/material/.icons/material/grid.svg | 1 + .../.icons/material/grill-outline.svg | 1 + docs/material/.icons/material/grill.svg | 1 + docs/material/.icons/material/group.svg | 1 + .../.icons/material/guitar-acoustic.svg | 1 + .../.icons/material/guitar-electric.svg | 1 + .../.icons/material/guitar-pick-outline.svg | 1 + docs/material/.icons/material/guitar-pick.svg | 1 + .../.icons/material/guy-fawkes-mask.svg | 1 + docs/material/.icons/material/hail.svg | 1 + .../.icons/material/hair-dryer-outline.svg | 1 + docs/material/.icons/material/hair-dryer.svg | 1 + docs/material/.icons/material/halloween.svg | 1 + docs/material/.icons/material/hamburger.svg | 1 + .../.icons/material/hammer-screwdriver.svg | 1 + .../.icons/material/hammer-wrench.svg | 1 + docs/material/.icons/material/hammer.svg | 1 + docs/material/.icons/material/hand-heart.svg | 1 + docs/material/.icons/material/hand-left.svg | 1 + docs/material/.icons/material/hand-okay.svg | 1 + .../.icons/material/hand-peace-variant.svg | 1 + docs/material/.icons/material/hand-peace.svg | 1 + .../.icons/material/hand-pointing-down.svg | 1 + .../.icons/material/hand-pointing-left.svg | 1 + .../.icons/material/hand-pointing-right.svg | 1 + .../.icons/material/hand-pointing-up.svg | 1 + docs/material/.icons/material/hand-right.svg | 1 + docs/material/.icons/material/hand-saw.svg | 1 + docs/material/.icons/material/hand-water.svg | 1 + docs/material/.icons/material/hand.svg | 1 + docs/material/.icons/material/handball.svg | 1 + docs/material/.icons/material/handcuffs.svg | 1 + docs/material/.icons/material/handshake.svg | 1 + docs/material/.icons/material/hanger.svg | 1 + docs/material/.icons/material/hard-hat.svg | 1 + .../.icons/material/harddisk-plus.svg | 1 + .../.icons/material/harddisk-remove.svg | 1 + docs/material/.icons/material/harddisk.svg | 1 + docs/material/.icons/material/hat-fedora.svg | 1 + .../.icons/material/hazard-lights.svg | 1 + docs/material/.icons/material/hdr-off.svg | 1 + docs/material/.icons/material/hdr.svg | 1 + .../.icons/material/head-alert-outline.svg | 1 + docs/material/.icons/material/head-alert.svg | 1 + .../.icons/material/head-check-outline.svg | 1 + docs/material/.icons/material/head-check.svg | 1 + .../.icons/material/head-cog-outline.svg | 1 + docs/material/.icons/material/head-cog.svg | 1 + .../material/head-dots-horizontal-outline.svg | 1 + .../.icons/material/head-dots-horizontal.svg | 1 + .../.icons/material/head-flash-outline.svg | 1 + docs/material/.icons/material/head-flash.svg | 1 + .../.icons/material/head-heart-outline.svg | 1 + docs/material/.icons/material/head-heart.svg | 1 + .../material/head-lightbulb-outline.svg | 1 + .../.icons/material/head-lightbulb.svg | 1 + .../.icons/material/head-minus-outline.svg | 1 + docs/material/.icons/material/head-minus.svg | 1 + .../material/.icons/material/head-outline.svg | 1 + .../.icons/material/head-plus-outline.svg | 1 + docs/material/.icons/material/head-plus.svg | 1 + .../.icons/material/head-question-outline.svg | 1 + .../.icons/material/head-question.svg | 1 + .../.icons/material/head-remove-outline.svg | 1 + docs/material/.icons/material/head-remove.svg | 1 + .../material/head-snowflake-outline.svg | 1 + .../.icons/material/head-snowflake.svg | 1 + .../.icons/material/head-sync-outline.svg | 1 + docs/material/.icons/material/head-sync.svg | 1 + docs/material/.icons/material/head.svg | 1 + .../.icons/material/headphones-bluetooth.svg | 1 + .../.icons/material/headphones-box.svg | 1 + .../.icons/material/headphones-off.svg | 1 + .../.icons/material/headphones-settings.svg | 1 + docs/material/.icons/material/headphones.svg | 1 + .../material/.icons/material/headset-dock.svg | 1 + docs/material/.icons/material/headset-off.svg | 1 + docs/material/.icons/material/headset.svg | 1 + .../.icons/material/heart-box-outline.svg | 1 + docs/material/.icons/material/heart-box.svg | 1 + .../.icons/material/heart-broken-outline.svg | 1 + .../material/.icons/material/heart-broken.svg | 1 + .../.icons/material/heart-circle-outline.svg | 1 + .../material/.icons/material/heart-circle.svg | 1 + docs/material/.icons/material/heart-flash.svg | 1 + .../.icons/material/heart-half-full.svg | 1 + .../.icons/material/heart-half-outline.svg | 1 + docs/material/.icons/material/heart-half.svg | 1 + .../material/heart-multiple-outline.svg | 1 + .../.icons/material/heart-multiple.svg | 1 + docs/material/.icons/material/heart-off.svg | 1 + .../.icons/material/heart-outline.svg | 1 + docs/material/.icons/material/heart-pulse.svg | 1 + docs/material/.icons/material/heart.svg | 1 + docs/material/.icons/material/helicopter.svg | 1 + docs/material/.icons/material/help-box.svg | 1 + .../.icons/material/help-circle-outline.svg | 1 + docs/material/.icons/material/help-circle.svg | 1 + .../.icons/material/help-network-outline.svg | 1 + .../material/.icons/material/help-network.svg | 1 + .../.icons/material/help-rhombus-outline.svg | 1 + .../material/.icons/material/help-rhombus.svg | 1 + docs/material/.icons/material/help.svg | 1 + docs/material/.icons/material/hexadecimal.svg | 1 + .../material/hexagon-multiple-outline.svg | 1 + .../.icons/material/hexagon-multiple.svg | 1 + .../.icons/material/hexagon-outline.svg | 1 + .../.icons/material/hexagon-slice-1.svg | 1 + .../.icons/material/hexagon-slice-2.svg | 1 + .../.icons/material/hexagon-slice-3.svg | 1 + .../.icons/material/hexagon-slice-4.svg | 1 + .../.icons/material/hexagon-slice-5.svg | 1 + .../.icons/material/hexagon-slice-6.svg | 1 + docs/material/.icons/material/hexagon.svg | 1 + .../.icons/material/hexagram-outline.svg | 1 + docs/material/.icons/material/hexagram.svg | 1 + .../.icons/material/high-definition-box.svg | 1 + .../.icons/material/high-definition.svg | 1 + docs/material/.icons/material/highway.svg | 1 + docs/material/.icons/material/hiking.svg | 1 + docs/material/.icons/material/hinduism.svg | 1 + docs/material/.icons/material/history.svg | 1 + docs/material/.icons/material/hockey-puck.svg | 1 + .../.icons/material/hockey-sticks.svg | 1 + docs/material/.icons/material/hololens.svg | 1 + .../material/.icons/material/home-account.svg | 1 + docs/material/.icons/material/home-alert.svg | 1 + .../.icons/material/home-analytics.svg | 1 + .../.icons/material/home-assistant.svg | 1 + .../.icons/material/home-automation.svg | 1 + .../.icons/material/home-circle-outline.svg | 1 + docs/material/.icons/material/home-circle.svg | 1 + .../.icons/material/home-city-outline.svg | 1 + docs/material/.icons/material/home-city.svg | 1 + .../.icons/material/home-currency-usd.svg | 1 + .../.icons/material/home-edit-outline.svg | 1 + docs/material/.icons/material/home-edit.svg | 1 + .../.icons/material/home-export-outline.svg | 1 + docs/material/.icons/material/home-flood.svg | 1 + .../material/.icons/material/home-floor-0.svg | 1 + .../material/.icons/material/home-floor-1.svg | 1 + .../material/.icons/material/home-floor-2.svg | 1 + .../material/.icons/material/home-floor-3.svg | 1 + .../material/.icons/material/home-floor-a.svg | 1 + .../material/.icons/material/home-floor-b.svg | 1 + .../material/.icons/material/home-floor-g.svg | 1 + .../material/.icons/material/home-floor-l.svg | 1 + .../.icons/material/home-floor-negative-1.svg | 1 + docs/material/.icons/material/home-group.svg | 1 + docs/material/.icons/material/home-heart.svg | 1 + .../.icons/material/home-import-outline.svg | 1 + .../material/home-lightbulb-outline.svg | 1 + .../.icons/material/home-lightbulb.svg | 1 + .../.icons/material/home-lock-open.svg | 1 + docs/material/.icons/material/home-lock.svg | 1 + .../.icons/material/home-map-marker.svg | 1 + .../.icons/material/home-minus-outline.svg | 1 + docs/material/.icons/material/home-minus.svg | 1 + docs/material/.icons/material/home-modern.svg | 1 + .../material/.icons/material/home-outline.svg | 1 + .../.icons/material/home-plus-outline.svg | 1 + docs/material/.icons/material/home-plus.svg | 1 + .../.icons/material/home-remove-outline.svg | 1 + docs/material/.icons/material/home-remove.svg | 1 + docs/material/.icons/material/home-roof.svg | 1 + .../.icons/material/home-search-outline.svg | 1 + docs/material/.icons/material/home-search.svg | 1 + .../material/home-thermometer-outline.svg | 1 + .../.icons/material/home-thermometer.svg | 1 + .../.icons/material/home-variant-outline.svg | 1 + .../material/.icons/material/home-variant.svg | 1 + docs/material/.icons/material/home.svg | 1 + docs/material/.icons/material/hook-off.svg | 1 + docs/material/.icons/material/hook.svg | 1 + docs/material/.icons/material/hops.svg | 1 + .../material/horizontal-rotate-clockwise.svg | 1 + .../horizontal-rotate-counterclockwise.svg | 1 + docs/material/.icons/material/horseshoe.svg | 1 + .../.icons/material/hospital-box-outline.svg | 1 + .../material/.icons/material/hospital-box.svg | 1 + .../.icons/material/hospital-building.svg | 1 + .../.icons/material/hospital-marker.svg | 1 + docs/material/.icons/material/hospital.svg | 1 + docs/material/.icons/material/hot-tub.svg | 1 + docs/material/.icons/material/hubspot.svg | 1 + docs/material/.icons/material/hulu.svg | 1 + .../material/human-baby-changing-table.svg | 1 + docs/material/.icons/material/human-child.svg | 1 + .../.icons/material/human-female-boy.svg | 1 + .../.icons/material/human-female-female.svg | 1 + .../.icons/material/human-female-girl.svg | 1 + .../material/.icons/material/human-female.svg | 1 + .../.icons/material/human-greeting.svg | 1 + .../.icons/material/human-handsdown.svg | 1 + .../.icons/material/human-handsup.svg | 1 + .../.icons/material/human-male-boy.svg | 1 + .../.icons/material/human-male-child.svg | 1 + .../.icons/material/human-male-female.svg | 1 + .../.icons/material/human-male-girl.svg | 1 + .../material/human-male-height-variant.svg | 1 + .../.icons/material/human-male-height.svg | 1 + .../.icons/material/human-male-male.svg | 1 + docs/material/.icons/material/human-male.svg | 1 + .../.icons/material/human-pregnant.svg | 1 + .../.icons/material/human-wheelchair.svg | 1 + docs/material/.icons/material/human.svg | 1 + .../.icons/material/humble-bundle.svg | 1 + docs/material/.icons/material/hvac.svg | 1 + .../.icons/material/hydraulic-oil-level.svg | 1 + .../material/hydraulic-oil-temperature.svg | 1 + docs/material/.icons/material/hydro-power.svg | 1 + .../.icons/material/ice-cream-off.svg | 1 + docs/material/.icons/material/ice-cream.svg | 1 + docs/material/.icons/material/ice-pop.svg | 1 + docs/material/.icons/material/id-card.svg | 1 + docs/material/.icons/material/identifier.svg | 1 + .../.icons/material/ideogram-cjk-variant.svg | 1 + .../material/.icons/material/ideogram-cjk.svg | 1 + .../.icons/material/iframe-array-outline.svg | 1 + .../material/.icons/material/iframe-array.svg | 1 + .../.icons/material/iframe-braces-outline.svg | 1 + .../.icons/material/iframe-braces.svg | 1 + .../.icons/material/iframe-outline.svg | 1 + .../material/iframe-parentheses-outline.svg | 1 + .../.icons/material/iframe-parentheses.svg | 1 + .../material/iframe-variable-outline.svg | 1 + .../.icons/material/iframe-variable.svg | 1 + docs/material/.icons/material/iframe.svg | 1 + docs/material/.icons/material/image-album.svg | 1 + .../.icons/material/image-area-close.svg | 1 + docs/material/.icons/material/image-area.svg | 1 + .../.icons/material/image-auto-adjust.svg | 1 + .../.icons/material/image-broken-variant.svg | 1 + .../material/.icons/material/image-broken.svg | 1 + .../.icons/material/image-edit-outline.svg | 1 + docs/material/.icons/material/image-edit.svg | 1 + .../material/image-filter-black-white.svg | 1 + ...age-filter-center-focus-strong-outline.svg | 1 + .../image-filter-center-focus-strong.svg | 1 + .../image-filter-center-focus-weak.svg | 1 + .../material/image-filter-center-focus.svg | 1 + .../.icons/material/image-filter-drama.svg | 1 + .../.icons/material/image-filter-frames.svg | 1 + .../.icons/material/image-filter-hdr.svg | 1 + .../.icons/material/image-filter-none.svg | 1 + .../material/image-filter-tilt-shift.svg | 1 + .../.icons/material/image-filter-vintage.svg | 1 + docs/material/.icons/material/image-frame.svg | 1 + docs/material/.icons/material/image-minus.svg | 1 + docs/material/.icons/material/image-move.svg | 1 + .../material/image-multiple-outline.svg | 1 + .../.icons/material/image-multiple.svg | 1 + .../.icons/material/image-off-outline.svg | 1 + docs/material/.icons/material/image-off.svg | 1 + .../.icons/material/image-outline.svg | 1 + docs/material/.icons/material/image-plus.svg | 1 + .../material/.icons/material/image-remove.svg | 1 + .../.icons/material/image-search-outline.svg | 1 + .../material/.icons/material/image-search.svg | 1 + .../material/image-size-select-actual.svg | 1 + .../material/image-size-select-large.svg | 1 + .../material/image-size-select-small.svg | 1 + docs/material/.icons/material/image.svg | 1 + docs/material/.icons/material/import.svg | 1 + .../material/inbox-arrow-down-outline.svg | 1 + .../.icons/material/inbox-arrow-down.svg | 1 + .../material/inbox-arrow-up-outline.svg | 1 + .../.icons/material/inbox-arrow-up.svg | 1 + .../.icons/material/inbox-full-outline.svg | 1 + docs/material/.icons/material/inbox-full.svg | 1 + .../material/inbox-multiple-outline.svg | 1 + .../.icons/material/inbox-multiple.svg | 1 + .../.icons/material/inbox-outline.svg | 1 + docs/material/.icons/material/inbox.svg | 1 + .../.icons/material/incognito-off.svg | 1 + docs/material/.icons/material/incognito.svg | 1 + docs/material/.icons/material/infinity.svg | 1 + .../.icons/material/information-outline.svg | 1 + .../.icons/material/information-variant.svg | 1 + docs/material/.icons/material/information.svg | 1 + docs/material/.icons/material/instagram.svg | 1 + .../.icons/material/instrument-triangle.svg | 1 + .../.icons/material/invert-colors-off.svg | 1 + .../.icons/material/invert-colors.svg | 1 + docs/material/.icons/material/iobroker.svg | 1 + .../.icons/material/ip-network-outline.svg | 1 + docs/material/.icons/material/ip-network.svg | 1 + docs/material/.icons/material/ip.svg | 1 + docs/material/.icons/material/ipod.svg | 1 + docs/material/.icons/material/islam.svg | 1 + docs/material/.icons/material/island.svg | 1 + docs/material/.icons/material/iv-bag.svg | 1 + docs/material/.icons/material/jabber.svg | 1 + docs/material/.icons/material/jeepney.svg | 1 + .../.icons/material/jellyfish-outline.svg | 1 + docs/material/.icons/material/jellyfish.svg | 1 + docs/material/.icons/material/jira.svg | 1 + docs/material/.icons/material/jquery.svg | 1 + docs/material/.icons/material/jsfiddle.svg | 1 + docs/material/.icons/material/judaism.svg | 1 + docs/material/.icons/material/jump-rope.svg | 1 + docs/material/.icons/material/kabaddi.svg | 1 + docs/material/.icons/material/karate.svg | 1 + docs/material/.icons/material/keg.svg | 1 + .../.icons/material/kettle-alert-outline.svg | 1 + .../material/.icons/material/kettle-alert.svg | 1 + .../.icons/material/kettle-off-outline.svg | 1 + docs/material/.icons/material/kettle-off.svg | 1 + .../.icons/material/kettle-outline.svg | 1 + .../.icons/material/kettle-steam-outline.svg | 1 + .../material/.icons/material/kettle-steam.svg | 1 + docs/material/.icons/material/kettle.svg | 1 + docs/material/.icons/material/kettlebell.svg | 1 + .../.icons/material/key-arrow-right.svg | 1 + docs/material/.icons/material/key-change.svg | 1 + docs/material/.icons/material/key-link.svg | 1 + docs/material/.icons/material/key-minus.svg | 1 + docs/material/.icons/material/key-outline.svg | 1 + docs/material/.icons/material/key-plus.svg | 1 + docs/material/.icons/material/key-remove.svg | 1 + docs/material/.icons/material/key-star.svg | 1 + docs/material/.icons/material/key-variant.svg | 1 + .../material/.icons/material/key-wireless.svg | 1 + docs/material/.icons/material/key.svg | 1 + .../.icons/material/keyboard-backspace.svg | 1 + .../.icons/material/keyboard-caps.svg | 1 + .../.icons/material/keyboard-close.svg | 1 + .../material/.icons/material/keyboard-esc.svg | 1 + docs/material/.icons/material/keyboard-f1.svg | 1 + .../material/.icons/material/keyboard-f10.svg | 1 + .../material/.icons/material/keyboard-f11.svg | 1 + .../material/.icons/material/keyboard-f12.svg | 1 + docs/material/.icons/material/keyboard-f2.svg | 1 + docs/material/.icons/material/keyboard-f3.svg | 1 + docs/material/.icons/material/keyboard-f4.svg | 1 + docs/material/.icons/material/keyboard-f5.svg | 1 + docs/material/.icons/material/keyboard-f6.svg | 1 + docs/material/.icons/material/keyboard-f7.svg | 1 + docs/material/.icons/material/keyboard-f8.svg | 1 + docs/material/.icons/material/keyboard-f9.svg | 1 + .../.icons/material/keyboard-off-outline.svg | 1 + .../material/.icons/material/keyboard-off.svg | 1 + .../.icons/material/keyboard-outline.svg | 1 + .../.icons/material/keyboard-return.svg | 1 + .../material/keyboard-settings-outline.svg | 1 + .../.icons/material/keyboard-settings.svg | 1 + .../.icons/material/keyboard-space.svg | 1 + .../material/.icons/material/keyboard-tab.svg | 1 + .../.icons/material/keyboard-variant.svg | 1 + docs/material/.icons/material/keyboard.svg | 1 + docs/material/.icons/material/khanda.svg | 1 + docs/material/.icons/material/kickstarter.svg | 1 + docs/material/.icons/material/klingon.svg | 1 + .../.icons/material/knife-military.svg | 1 + docs/material/.icons/material/knife.svg | 1 + docs/material/.icons/material/kodi.svg | 1 + docs/material/.icons/material/kubernetes.svg | 1 + .../material/label-multiple-outline.svg | 1 + .../.icons/material/label-multiple.svg | 1 + .../.icons/material/label-off-outline.svg | 1 + docs/material/.icons/material/label-off.svg | 1 + .../.icons/material/label-outline.svg | 1 + .../.icons/material/label-percent-outline.svg | 1 + .../.icons/material/label-percent.svg | 1 + .../.icons/material/label-variant-outline.svg | 1 + .../.icons/material/label-variant.svg | 1 + docs/material/.icons/material/label.svg | 1 + docs/material/.icons/material/ladybug.svg | 1 + docs/material/.icons/material/lambda.svg | 1 + docs/material/.icons/material/lamp.svg | 1 + docs/material/.icons/material/lan-check.svg | 1 + docs/material/.icons/material/lan-connect.svg | 1 + .../.icons/material/lan-disconnect.svg | 1 + docs/material/.icons/material/lan-pending.svg | 1 + docs/material/.icons/material/lan.svg | 1 + docs/material/.icons/material/language-c.svg | 1 + .../material/.icons/material/language-cpp.svg | 1 + .../.icons/material/language-csharp.svg | 1 + .../.icons/material/language-css3.svg | 1 + .../.icons/material/language-fortran.svg | 1 + docs/material/.icons/material/language-go.svg | 1 + .../.icons/material/language-haskell.svg | 1 + .../.icons/material/language-html5.svg | 1 + .../.icons/material/language-java.svg | 1 + .../.icons/material/language-javascript.svg | 1 + .../.icons/material/language-kotlin.svg | 1 + .../material/.icons/material/language-lua.svg | 1 + .../material/language-markdown-outline.svg | 1 + .../.icons/material/language-markdown.svg | 1 + .../material/.icons/material/language-php.svg | 1 + .../.icons/material/language-python.svg | 1 + docs/material/.icons/material/language-r.svg | 1 + .../material/language-ruby-on-rails.svg | 1 + .../.icons/material/language-ruby.svg | 1 + .../.icons/material/language-swift.svg | 1 + .../.icons/material/language-typescript.svg | 1 + .../.icons/material/language-xaml.svg | 1 + .../.icons/material/laptop-chromebook.svg | 1 + docs/material/.icons/material/laptop-mac.svg | 1 + docs/material/.icons/material/laptop-off.svg | 1 + .../.icons/material/laptop-windows.svg | 1 + docs/material/.icons/material/laptop.svg | 1 + docs/material/.icons/material/laravel.svg | 1 + docs/material/.icons/material/lasso.svg | 1 + docs/material/.icons/material/lastpass.svg | 1 + docs/material/.icons/material/latitude.svg | 1 + docs/material/.icons/material/launch.svg | 1 + docs/material/.icons/material/lava-lamp.svg | 1 + .../material/.icons/material/layers-minus.svg | 1 + .../.icons/material/layers-off-outline.svg | 1 + docs/material/.icons/material/layers-off.svg | 1 + .../.icons/material/layers-outline.svg | 1 + docs/material/.icons/material/layers-plus.svg | 1 + .../.icons/material/layers-remove.svg | 1 + .../.icons/material/layers-search-outline.svg | 1 + .../.icons/material/layers-search.svg | 1 + .../.icons/material/layers-triple-outline.svg | 1 + .../.icons/material/layers-triple.svg | 1 + docs/material/.icons/material/layers.svg | 1 + docs/material/.icons/material/lead-pencil.svg | 1 + .../.icons/material/leaf-maple-off.svg | 1 + docs/material/.icons/material/leaf-maple.svg | 1 + docs/material/.icons/material/leaf-off.svg | 1 + docs/material/.icons/material/leaf.svg | 1 + docs/material/.icons/material/leak-off.svg | 1 + docs/material/.icons/material/leak.svg | 1 + docs/material/.icons/material/led-off.svg | 1 + docs/material/.icons/material/led-on.svg | 1 + docs/material/.icons/material/led-outline.svg | 1 + .../.icons/material/led-strip-variant.svg | 1 + docs/material/.icons/material/led-strip.svg | 1 + .../.icons/material/led-variant-off.svg | 1 + .../.icons/material/led-variant-on.svg | 1 + .../.icons/material/led-variant-outline.svg | 1 + docs/material/.icons/material/leek.svg | 1 + .../.icons/material/less-than-or-equal.svg | 1 + docs/material/.icons/material/less-than.svg | 1 + .../.icons/material/library-shelves.svg | 1 + docs/material/.icons/material/library.svg | 1 + docs/material/.icons/material/license.svg | 1 + docs/material/.icons/material/lifebuoy.svg | 1 + .../material/.icons/material/light-switch.svg | 1 + .../.icons/material/lightbulb-cfl-off.svg | 1 + .../material/lightbulb-cfl-spiral-off.svg | 1 + .../.icons/material/lightbulb-cfl-spiral.svg | 1 + .../.icons/material/lightbulb-cfl.svg | 1 + .../material/lightbulb-group-off-outline.svg | 1 + .../.icons/material/lightbulb-group-off.svg | 1 + .../material/lightbulb-group-outline.svg | 1 + .../.icons/material/lightbulb-group.svg | 1 + .../lightbulb-multiple-off-outline.svg | 1 + .../material/lightbulb-multiple-off.svg | 1 + .../material/lightbulb-multiple-outline.svg | 1 + .../.icons/material/lightbulb-multiple.svg | 1 + .../.icons/material/lightbulb-off-outline.svg | 1 + .../.icons/material/lightbulb-off.svg | 1 + .../.icons/material/lightbulb-on-outline.svg | 1 + .../material/.icons/material/lightbulb-on.svg | 1 + .../.icons/material/lightbulb-outline.svg | 1 + docs/material/.icons/material/lightbulb.svg | 1 + .../.icons/material/lighthouse-on.svg | 1 + docs/material/.icons/material/lighthouse.svg | 1 + .../material/lightning-bolt-outline.svg | 1 + .../.icons/material/lightning-bolt.svg | 1 + .../.icons/material/link-box-outline.svg | 1 + .../material/link-box-variant-outline.svg | 1 + .../.icons/material/link-box-variant.svg | 1 + docs/material/.icons/material/link-box.svg | 1 + docs/material/.icons/material/link-lock.svg | 1 + docs/material/.icons/material/link-off.svg | 1 + docs/material/.icons/material/link-plus.svg | 1 + .../.icons/material/link-variant-minus.svg | 1 + .../.icons/material/link-variant-off.svg | 1 + .../.icons/material/link-variant-plus.svg | 1 + .../.icons/material/link-variant-remove.svg | 1 + .../material/.icons/material/link-variant.svg | 1 + docs/material/.icons/material/link.svg | 1 + docs/material/.icons/material/linkedin.svg | 1 + docs/material/.icons/material/linux-mint.svg | 1 + docs/material/.icons/material/linux.svg | 1 + docs/material/.icons/material/lipstick.svg | 1 + docs/material/.icons/material/litecoin.svg | 1 + docs/material/.icons/material/loading.svg | 1 + .../.icons/material/location-enter.svg | 1 + .../.icons/material/location-exit.svg | 1 + docs/material/.icons/material/lock-alert.svg | 1 + docs/material/.icons/material/lock-check.svg | 1 + docs/material/.icons/material/lock-clock.svg | 1 + .../.icons/material/lock-open-alert.svg | 1 + .../.icons/material/lock-open-check.svg | 1 + .../.icons/material/lock-open-outline.svg | 1 + .../material/lock-open-variant-outline.svg | 1 + .../.icons/material/lock-open-variant.svg | 1 + docs/material/.icons/material/lock-open.svg | 1 + .../material/.icons/material/lock-outline.svg | 1 + .../material/.icons/material/lock-pattern.svg | 1 + docs/material/.icons/material/lock-plus.svg | 1 + .../.icons/material/lock-question.svg | 1 + docs/material/.icons/material/lock-reset.svg | 1 + docs/material/.icons/material/lock-smart.svg | 1 + docs/material/.icons/material/lock.svg | 1 + .../.icons/material/locker-multiple.svg | 1 + docs/material/.icons/material/locker.svg | 1 + .../.icons/material/login-variant.svg | 1 + docs/material/.icons/material/login.svg | 1 + .../.icons/material/logout-variant.svg | 1 + docs/material/.icons/material/logout.svg | 1 + docs/material/.icons/material/longitude.svg | 1 + docs/material/.icons/material/looks.svg | 1 + docs/material/.icons/material/loupe.svg | 1 + docs/material/.icons/material/lumx.svg | 1 + docs/material/.icons/material/lungs.svg | 1 + docs/material/.icons/material/magnet-on.svg | 1 + docs/material/.icons/material/magnet.svg | 1 + .../.icons/material/magnify-close.svg | 1 + .../.icons/material/magnify-minus-cursor.svg | 1 + .../.icons/material/magnify-minus-outline.svg | 1 + .../.icons/material/magnify-minus.svg | 1 + .../.icons/material/magnify-plus-cursor.svg | 1 + .../.icons/material/magnify-plus-outline.svg | 1 + .../material/.icons/material/magnify-plus.svg | 1 + .../.icons/material/magnify-remove-cursor.svg | 1 + .../material/magnify-remove-outline.svg | 1 + .../material/.icons/material/magnify-scan.svg | 1 + docs/material/.icons/material/magnify.svg | 1 + docs/material/.icons/material/mail.svg | 1 + .../.icons/material/mailbox-open-outline.svg | 1 + .../material/mailbox-open-up-outline.svg | 1 + .../.icons/material/mailbox-open-up.svg | 1 + .../material/.icons/material/mailbox-open.svg | 1 + .../.icons/material/mailbox-outline.svg | 1 + .../.icons/material/mailbox-up-outline.svg | 1 + docs/material/.icons/material/mailbox-up.svg | 1 + docs/material/.icons/material/mailbox.svg | 1 + .../.icons/material/map-check-outline.svg | 1 + docs/material/.icons/material/map-check.svg | 1 + .../.icons/material/map-clock-outline.svg | 1 + docs/material/.icons/material/map-clock.svg | 1 + docs/material/.icons/material/map-legend.svg | 1 + .../material/map-marker-alert-outline.svg | 1 + .../.icons/material/map-marker-alert.svg | 1 + .../material/map-marker-check-outline.svg | 1 + .../.icons/material/map-marker-check.svg | 1 + .../.icons/material/map-marker-circle.svg | 1 + .../.icons/material/map-marker-distance.svg | 1 + .../.icons/material/map-marker-down.svg | 1 + .../material/map-marker-left-outline.svg | 1 + .../.icons/material/map-marker-left.svg | 1 + .../material/map-marker-minus-outline.svg | 1 + .../.icons/material/map-marker-minus.svg | 1 + .../material/map-marker-multiple-outline.svg | 1 + .../.icons/material/map-marker-multiple.svg | 1 + .../material/map-marker-off-outline.svg | 1 + .../.icons/material/map-marker-off.svg | 1 + .../.icons/material/map-marker-outline.svg | 1 + .../.icons/material/map-marker-path.svg | 1 + .../material/map-marker-plus-outline.svg | 1 + .../.icons/material/map-marker-plus.svg | 1 + .../material/map-marker-question-outline.svg | 1 + .../.icons/material/map-marker-question.svg | 1 + .../material/map-marker-radius-outline.svg | 1 + .../.icons/material/map-marker-radius.svg | 1 + .../material/map-marker-remove-outline.svg | 1 + .../material/map-marker-remove-variant.svg | 1 + .../.icons/material/map-marker-remove.svg | 1 + .../material/map-marker-right-outline.svg | 1 + .../.icons/material/map-marker-right.svg | 1 + .../.icons/material/map-marker-up.svg | 1 + docs/material/.icons/material/map-marker.svg | 1 + docs/material/.icons/material/map-minus.svg | 1 + docs/material/.icons/material/map-outline.svg | 1 + docs/material/.icons/material/map-plus.svg | 1 + .../.icons/material/map-search-outline.svg | 1 + docs/material/.icons/material/map-search.svg | 1 + docs/material/.icons/material/map.svg | 1 + docs/material/.icons/material/mapbox.svg | 1 + docs/material/.icons/material/margin.svg | 1 + .../.icons/material/marker-cancel.svg | 1 + .../material/.icons/material/marker-check.svg | 1 + docs/material/.icons/material/marker.svg | 1 + docs/material/.icons/material/mastodon.svg | 1 + .../.icons/material/material-design.svg | 1 + docs/material/.icons/material/material-ui.svg | 1 + .../material/.icons/material/math-compass.svg | 1 + docs/material/.icons/material/math-cos.svg | 1 + .../.icons/material/math-integral-box.svg | 1 + .../.icons/material/math-integral.svg | 1 + docs/material/.icons/material/math-log.svg | 1 + .../.icons/material/math-norm-box.svg | 1 + docs/material/.icons/material/math-norm.svg | 1 + docs/material/.icons/material/math-sin.svg | 1 + docs/material/.icons/material/math-tan.svg | 1 + docs/material/.icons/material/matrix.svg | 1 + .../.icons/material/medal-outline.svg | 1 + docs/material/.icons/material/medal.svg | 1 + docs/material/.icons/material/medical-bag.svg | 1 + docs/material/.icons/material/meditation.svg | 1 + docs/material/.icons/material/memory.svg | 1 + .../.icons/material/menu-down-outline.svg | 1 + docs/material/.icons/material/menu-down.svg | 1 + .../.icons/material/menu-left-outline.svg | 1 + docs/material/.icons/material/menu-left.svg | 1 + docs/material/.icons/material/menu-open.svg | 1 + .../.icons/material/menu-right-outline.svg | 1 + docs/material/.icons/material/menu-right.svg | 1 + .../.icons/material/menu-swap-outline.svg | 1 + docs/material/.icons/material/menu-swap.svg | 1 + .../.icons/material/menu-up-outline.svg | 1 + docs/material/.icons/material/menu-up.svg | 1 + docs/material/.icons/material/menu.svg | 1 + docs/material/.icons/material/merge.svg | 1 + .../.icons/material/message-alert-outline.svg | 1 + .../.icons/material/message-alert.svg | 1 + .../material/message-arrow-left-outline.svg | 1 + .../.icons/material/message-arrow-left.svg | 1 + .../material/message-arrow-right-outline.svg | 1 + .../.icons/material/message-arrow-right.svg | 1 + .../.icons/material/message-bulleted-off.svg | 1 + .../.icons/material/message-bulleted.svg | 1 + .../.icons/material/message-cog-outline.svg | 1 + docs/material/.icons/material/message-cog.svg | 1 + .../material/.icons/material/message-draw.svg | 1 + .../.icons/material/message-image-outline.svg | 1 + .../.icons/material/message-image.svg | 1 + .../.icons/material/message-lock-outline.svg | 1 + .../material/.icons/material/message-lock.svg | 1 + .../.icons/material/message-minus-outline.svg | 1 + .../.icons/material/message-minus.svg | 1 + .../.icons/material/message-outline.svg | 1 + .../.icons/material/message-plus-outline.svg | 1 + .../material/.icons/material/message-plus.svg | 1 + .../material/message-processing-outline.svg | 1 + .../.icons/material/message-processing.svg | 1 + .../.icons/material/message-reply-text.svg | 1 + .../.icons/material/message-reply.svg | 1 + .../material/message-settings-outline.svg | 1 + .../.icons/material/message-settings.svg | 1 + .../material/message-text-clock-outline.svg | 1 + .../.icons/material/message-text-clock.svg | 1 + .../material/message-text-lock-outline.svg | 1 + .../.icons/material/message-text-lock.svg | 1 + .../.icons/material/message-text-outline.svg | 1 + .../material/.icons/material/message-text.svg | 1 + .../.icons/material/message-video.svg | 1 + docs/material/.icons/material/message.svg | 1 + docs/material/.icons/material/meteor.svg | 1 + .../.icons/material/metronome-tick.svg | 1 + docs/material/.icons/material/metronome.svg | 1 + docs/material/.icons/material/micro-sd.svg | 1 + .../.icons/material/microphone-minus.svg | 1 + .../.icons/material/microphone-off.svg | 1 + .../.icons/material/microphone-outline.svg | 1 + .../.icons/material/microphone-plus.svg | 1 + .../.icons/material/microphone-settings.svg | 1 + .../material/microphone-variant-off.svg | 1 + .../.icons/material/microphone-variant.svg | 1 + docs/material/.icons/material/microphone.svg | 1 + docs/material/.icons/material/microscope.svg | 1 + .../.icons/material/microsoft-access.svg | 1 + .../material/microsoft-azure-devops.svg | 1 + .../.icons/material/microsoft-azure.svg | 1 + .../.icons/material/microsoft-bing.svg | 1 + .../material/microsoft-dynamics-365.svg | 1 + .../.icons/material/microsoft-edge-legacy.svg | 1 + .../.icons/material/microsoft-edge.svg | 1 + .../.icons/material/microsoft-excel.svg | 1 + .../material/microsoft-internet-explorer.svg | 1 + .../.icons/material/microsoft-office.svg | 1 + .../.icons/material/microsoft-onedrive.svg | 1 + .../.icons/material/microsoft-onenote.svg | 1 + .../.icons/material/microsoft-outlook.svg | 1 + .../.icons/material/microsoft-powerpoint.svg | 1 + .../.icons/material/microsoft-sharepoint.svg | 1 + .../.icons/material/microsoft-teams.svg | 1 + .../material/microsoft-visual-studio-code.svg | 1 + .../material/microsoft-visual-studio.svg | 1 + .../material/microsoft-windows-classic.svg | 1 + .../.icons/material/microsoft-windows.svg | 1 + .../.icons/material/microsoft-word.svg | 1 + ...icrosoft-xbox-controller-battery-alert.svg | 1 + ...osoft-xbox-controller-battery-charging.svg | 1 + ...icrosoft-xbox-controller-battery-empty.svg | 1 + ...microsoft-xbox-controller-battery-full.svg | 1 + .../microsoft-xbox-controller-battery-low.svg | 1 + ...crosoft-xbox-controller-battery-medium.svg | 1 + ...rosoft-xbox-controller-battery-unknown.svg | 1 + .../microsoft-xbox-controller-menu.svg | 1 + .../microsoft-xbox-controller-off.svg | 1 + .../microsoft-xbox-controller-view.svg | 1 + .../material/microsoft-xbox-controller.svg | 1 + .../.icons/material/microsoft-xbox.svg | 1 + .../.icons/material/microsoft-yammer.svg | 1 + docs/material/.icons/material/microsoft.svg | 1 + docs/material/.icons/material/microwave.svg | 1 + .../.icons/material/middleware-outline.svg | 1 + docs/material/.icons/material/middleware.svg | 1 + docs/material/.icons/material/midi-port.svg | 1 + docs/material/.icons/material/midi.svg | 1 + docs/material/.icons/material/mine.svg | 1 + docs/material/.icons/material/minecraft.svg | 1 + docs/material/.icons/material/mini-sd.svg | 1 + docs/material/.icons/material/minidisc.svg | 1 + .../material/minus-box-multiple-outline.svg | 1 + .../.icons/material/minus-box-multiple.svg | 1 + .../.icons/material/minus-box-outline.svg | 1 + docs/material/.icons/material/minus-box.svg | 1 + .../minus-circle-multiple-outline.svg | 1 + .../.icons/material/minus-circle-multiple.svg | 1 + .../.icons/material/minus-circle-outline.svg | 1 + .../material/.icons/material/minus-circle.svg | 1 + .../.icons/material/minus-network-outline.svg | 1 + .../.icons/material/minus-network.svg | 1 + docs/material/.icons/material/minus.svg | 1 + docs/material/.icons/material/mirror.svg | 1 + .../.icons/material/mixed-martial-arts.svg | 1 + .../.icons/material/mixed-reality.svg | 1 + docs/material/.icons/material/mixer.svg | 1 + docs/material/.icons/material/molecule-co.svg | 1 + .../material/.icons/material/molecule-co2.svg | 1 + docs/material/.icons/material/molecule.svg | 1 + .../material/monitor-cellphone-star.svg | 1 + .../.icons/material/monitor-cellphone.svg | 1 + .../.icons/material/monitor-clean.svg | 1 + .../.icons/material/monitor-dashboard.svg | 1 + .../material/.icons/material/monitor-edit.svg | 1 + docs/material/.icons/material/monitor-eye.svg | 1 + .../material/.icons/material/monitor-lock.svg | 1 + .../.icons/material/monitor-multiple.svg | 1 + docs/material/.icons/material/monitor-off.svg | 1 + .../.icons/material/monitor-screenshot.svg | 1 + .../.icons/material/monitor-speaker-off.svg | 1 + .../.icons/material/monitor-speaker.svg | 1 + .../material/.icons/material/monitor-star.svg | 1 + docs/material/.icons/material/monitor.svg | 1 + .../.icons/material/moon-first-quarter.svg | 1 + docs/material/.icons/material/moon-full.svg | 1 + .../.icons/material/moon-last-quarter.svg | 1 + docs/material/.icons/material/moon-new.svg | 1 + .../.icons/material/moon-waning-crescent.svg | 1 + .../.icons/material/moon-waning-gibbous.svg | 1 + .../.icons/material/moon-waxing-crescent.svg | 1 + .../.icons/material/moon-waxing-gibbous.svg | 1 + docs/material/.icons/material/moped.svg | 1 + docs/material/.icons/material/more.svg | 1 + .../material/.icons/material/mother-heart.svg | 1 + .../material/.icons/material/mother-nurse.svg | 1 + .../.icons/material/motion-sensor.svg | 1 + docs/material/.icons/material/motorbike.svg | 1 + .../.icons/material/mouse-bluetooth.svg | 1 + docs/material/.icons/material/mouse-off.svg | 1 + .../.icons/material/mouse-variant-off.svg | 1 + .../.icons/material/mouse-variant.svg | 1 + docs/material/.icons/material/mouse.svg | 1 + .../.icons/material/move-resize-variant.svg | 1 + docs/material/.icons/material/move-resize.svg | 1 + .../.icons/material/movie-edit-outline.svg | 1 + docs/material/.icons/material/movie-edit.svg | 1 + .../.icons/material/movie-filter-outline.svg | 1 + .../material/.icons/material/movie-filter.svg | 1 + .../.icons/material/movie-open-outline.svg | 1 + docs/material/.icons/material/movie-open.svg | 1 + .../.icons/material/movie-outline.svg | 1 + docs/material/.icons/material/movie-roll.svg | 1 + .../.icons/material/movie-search-outline.svg | 1 + .../material/.icons/material/movie-search.svg | 1 + docs/material/.icons/material/movie.svg | 1 + docs/material/.icons/material/muffin.svg | 1 + .../.icons/material/multiplication-box.svg | 1 + .../.icons/material/multiplication.svg | 1 + .../.icons/material/mushroom-off-outline.svg | 1 + .../material/.icons/material/mushroom-off.svg | 1 + .../.icons/material/mushroom-outline.svg | 1 + docs/material/.icons/material/mushroom.svg | 1 + .../material/music-accidental-double-flat.svg | 1 + .../music-accidental-double-sharp.svg | 1 + .../.icons/material/music-accidental-flat.svg | 1 + .../material/music-accidental-natural.svg | 1 + .../material/music-accidental-sharp.svg | 1 + .../material/music-box-multiple-outline.svg | 1 + .../.icons/material/music-box-multiple.svg | 1 + .../.icons/material/music-box-outline.svg | 1 + docs/material/.icons/material/music-box.svg | 1 + .../.icons/material/music-circle-outline.svg | 1 + .../material/.icons/material/music-circle.svg | 1 + .../.icons/material/music-clef-alto.svg | 1 + .../.icons/material/music-clef-bass.svg | 1 + .../.icons/material/music-clef-treble.svg | 1 + .../material/music-note-bluetooth-off.svg | 1 + .../.icons/material/music-note-bluetooth.svg | 1 + .../material/music-note-eighth-dotted.svg | 1 + .../.icons/material/music-note-eighth.svg | 1 + .../material/music-note-half-dotted.svg | 1 + .../.icons/material/music-note-half.svg | 1 + .../material/music-note-off-outline.svg | 1 + .../.icons/material/music-note-off.svg | 1 + .../.icons/material/music-note-outline.svg | 1 + .../.icons/material/music-note-plus.svg | 1 + .../material/music-note-quarter-dotted.svg | 1 + .../.icons/material/music-note-quarter.svg | 1 + .../material/music-note-sixteenth-dotted.svg | 1 + .../.icons/material/music-note-sixteenth.svg | 1 + .../material/music-note-whole-dotted.svg | 1 + .../.icons/material/music-note-whole.svg | 1 + docs/material/.icons/material/music-note.svg | 1 + docs/material/.icons/material/music-off.svg | 1 + .../.icons/material/music-rest-eighth.svg | 1 + .../.icons/material/music-rest-half.svg | 1 + .../.icons/material/music-rest-quarter.svg | 1 + .../.icons/material/music-rest-sixteenth.svg | 1 + .../.icons/material/music-rest-whole.svg | 1 + docs/material/.icons/material/music.svg | 1 + docs/material/.icons/material/nail.svg | 1 + docs/material/.icons/material/nas.svg | 1 + .../material/.icons/material/nativescript.svg | 1 + .../.icons/material/nature-people.svg | 1 + docs/material/.icons/material/nature.svg | 1 + docs/material/.icons/material/navigation.svg | 1 + docs/material/.icons/material/near-me.svg | 1 + docs/material/.icons/material/necklace.svg | 1 + docs/material/.icons/material/needle.svg | 1 + docs/material/.icons/material/netflix.svg | 1 + .../.icons/material/network-off-outline.svg | 1 + docs/material/.icons/material/network-off.svg | 1 + .../.icons/material/network-outline.svg | 1 + .../material/network-strength-1-alert.svg | 1 + .../.icons/material/network-strength-1.svg | 1 + .../material/network-strength-2-alert.svg | 1 + .../.icons/material/network-strength-2.svg | 1 + .../material/network-strength-3-alert.svg | 1 + .../.icons/material/network-strength-3.svg | 1 + .../material/network-strength-4-alert.svg | 1 + .../.icons/material/network-strength-4.svg | 1 + .../material/network-strength-off-outline.svg | 1 + .../.icons/material/network-strength-off.svg | 1 + .../material/network-strength-outline.svg | 1 + docs/material/.icons/material/network.svg | 1 + docs/material/.icons/material/new-box.svg | 1 + .../.icons/material/newspaper-minus.svg | 1 + .../.icons/material/newspaper-plus.svg | 1 + .../newspaper-variant-multiple-outline.svg | 1 + .../material/newspaper-variant-multiple.svg | 1 + .../material/newspaper-variant-outline.svg | 1 + .../.icons/material/newspaper-variant.svg | 1 + docs/material/.icons/material/newspaper.svg | 1 + .../.icons/material/nfc-search-variant.svg | 1 + docs/material/.icons/material/nfc-tap.svg | 1 + .../.icons/material/nfc-variant-off.svg | 1 + docs/material/.icons/material/nfc-variant.svg | 1 + docs/material/.icons/material/nfc.svg | 1 + docs/material/.icons/material/ninja.svg | 1 + .../.icons/material/nintendo-game-boy.svg | 1 + .../.icons/material/nintendo-switch.svg | 1 + .../material/.icons/material/nintendo-wii.svg | 1 + .../.icons/material/nintendo-wiiu.svg | 1 + docs/material/.icons/material/nix.svg | 1 + docs/material/.icons/material/nodejs.svg | 1 + docs/material/.icons/material/noodles.svg | 1 + .../.icons/material/not-equal-variant.svg | 1 + docs/material/.icons/material/not-equal.svg | 1 + .../.icons/material/note-multiple-outline.svg | 1 + .../.icons/material/note-multiple.svg | 1 + .../material/.icons/material/note-outline.svg | 1 + .../.icons/material/note-plus-outline.svg | 1 + docs/material/.icons/material/note-plus.svg | 1 + .../.icons/material/note-text-outline.svg | 1 + docs/material/.icons/material/note-text.svg | 1 + docs/material/.icons/material/note.svg | 1 + .../.icons/material/notebook-multiple.svg | 1 + .../.icons/material/notebook-outline.svg | 1 + docs/material/.icons/material/notebook.svg | 1 + .../material/notification-clear-all.svg | 1 + docs/material/.icons/material/npm.svg | 1 + docs/material/.icons/material/nuke.svg | 1 + docs/material/.icons/material/null.svg | 1 + .../numeric-0-box-multiple-outline.svg | 1 + .../material/numeric-0-box-multiple.svg | 1 + .../.icons/material/numeric-0-box-outline.svg | 1 + .../.icons/material/numeric-0-box.svg | 1 + .../material/numeric-0-circle-outline.svg | 1 + .../.icons/material/numeric-0-circle.svg | 1 + docs/material/.icons/material/numeric-0.svg | 1 + .../numeric-1-box-multiple-outline.svg | 1 + .../material/numeric-1-box-multiple.svg | 1 + .../.icons/material/numeric-1-box-outline.svg | 1 + .../.icons/material/numeric-1-box.svg | 1 + .../material/numeric-1-circle-outline.svg | 1 + .../.icons/material/numeric-1-circle.svg | 1 + docs/material/.icons/material/numeric-1.svg | 1 + .../numeric-10-box-multiple-outline.svg | 1 + .../material/numeric-10-box-multiple.svg | 1 + .../material/numeric-10-box-outline.svg | 1 + .../.icons/material/numeric-10-box.svg | 1 + .../material/numeric-10-circle-outline.svg | 1 + .../.icons/material/numeric-10-circle.svg | 1 + docs/material/.icons/material/numeric-10.svg | 1 + .../numeric-2-box-multiple-outline.svg | 1 + .../material/numeric-2-box-multiple.svg | 1 + .../.icons/material/numeric-2-box-outline.svg | 1 + .../.icons/material/numeric-2-box.svg | 1 + .../material/numeric-2-circle-outline.svg | 1 + .../.icons/material/numeric-2-circle.svg | 1 + docs/material/.icons/material/numeric-2.svg | 1 + .../numeric-3-box-multiple-outline.svg | 1 + .../material/numeric-3-box-multiple.svg | 1 + .../.icons/material/numeric-3-box-outline.svg | 1 + .../.icons/material/numeric-3-box.svg | 1 + .../material/numeric-3-circle-outline.svg | 1 + .../.icons/material/numeric-3-circle.svg | 1 + docs/material/.icons/material/numeric-3.svg | 1 + .../numeric-4-box-multiple-outline.svg | 1 + .../material/numeric-4-box-multiple.svg | 1 + .../.icons/material/numeric-4-box-outline.svg | 1 + .../.icons/material/numeric-4-box.svg | 1 + .../material/numeric-4-circle-outline.svg | 1 + .../.icons/material/numeric-4-circle.svg | 1 + docs/material/.icons/material/numeric-4.svg | 1 + .../numeric-5-box-multiple-outline.svg | 1 + .../material/numeric-5-box-multiple.svg | 1 + .../.icons/material/numeric-5-box-outline.svg | 1 + .../.icons/material/numeric-5-box.svg | 1 + .../material/numeric-5-circle-outline.svg | 1 + .../.icons/material/numeric-5-circle.svg | 1 + docs/material/.icons/material/numeric-5.svg | 1 + .../numeric-6-box-multiple-outline.svg | 1 + .../material/numeric-6-box-multiple.svg | 1 + .../.icons/material/numeric-6-box-outline.svg | 1 + .../.icons/material/numeric-6-box.svg | 1 + .../material/numeric-6-circle-outline.svg | 1 + .../.icons/material/numeric-6-circle.svg | 1 + docs/material/.icons/material/numeric-6.svg | 1 + .../numeric-7-box-multiple-outline.svg | 1 + .../material/numeric-7-box-multiple.svg | 1 + .../.icons/material/numeric-7-box-outline.svg | 1 + .../.icons/material/numeric-7-box.svg | 1 + .../material/numeric-7-circle-outline.svg | 1 + .../.icons/material/numeric-7-circle.svg | 1 + docs/material/.icons/material/numeric-7.svg | 1 + .../numeric-8-box-multiple-outline.svg | 1 + .../material/numeric-8-box-multiple.svg | 1 + .../.icons/material/numeric-8-box-outline.svg | 1 + .../.icons/material/numeric-8-box.svg | 1 + .../material/numeric-8-circle-outline.svg | 1 + .../.icons/material/numeric-8-circle.svg | 1 + docs/material/.icons/material/numeric-8.svg | 1 + .../numeric-9-box-multiple-outline.svg | 1 + .../material/numeric-9-box-multiple.svg | 1 + .../.icons/material/numeric-9-box-outline.svg | 1 + .../.icons/material/numeric-9-box.svg | 1 + .../material/numeric-9-circle-outline.svg | 1 + .../.icons/material/numeric-9-circle.svg | 1 + .../numeric-9-plus-box-multiple-outline.svg | 1 + .../material/numeric-9-plus-box-multiple.svg | 1 + .../material/numeric-9-plus-box-outline.svg | 1 + .../.icons/material/numeric-9-plus-box.svg | 1 + .../numeric-9-plus-circle-outline.svg | 1 + .../.icons/material/numeric-9-plus-circle.svg | 1 + .../.icons/material/numeric-9-plus.svg | 1 + docs/material/.icons/material/numeric-9.svg | 1 + .../.icons/material/numeric-negative-1.svg | 1 + docs/material/.icons/material/numeric.svg | 1 + docs/material/.icons/material/nut.svg | 1 + docs/material/.icons/material/nutrition.svg | 1 + docs/material/.icons/material/nuxt.svg | 1 + docs/material/.icons/material/oar.svg | 1 + docs/material/.icons/material/ocarina.svg | 1 + docs/material/.icons/material/oci.svg | 1 + docs/material/.icons/material/ocr.svg | 1 + .../.icons/material/octagon-outline.svg | 1 + docs/material/.icons/material/octagon.svg | 1 + .../.icons/material/octagram-outline.svg | 1 + docs/material/.icons/material/octagram.svg | 1 + .../.icons/material/odnoklassniki.svg | 1 + docs/material/.icons/material/offer.svg | 1 + .../.icons/material/office-building.svg | 1 + docs/material/.icons/material/oil-lamp.svg | 1 + docs/material/.icons/material/oil-level.svg | 1 + .../.icons/material/oil-temperature.svg | 1 + docs/material/.icons/material/oil.svg | 1 + docs/material/.icons/material/omega.svg | 1 + docs/material/.icons/material/one-up.svg | 1 + docs/material/.icons/material/onepassword.svg | 1 + docs/material/.icons/material/opacity.svg | 1 + docs/material/.icons/material/open-in-app.svg | 1 + docs/material/.icons/material/open-in-new.svg | 1 + .../material/open-source-initiative.svg | 1 + docs/material/.icons/material/openid.svg | 1 + docs/material/.icons/material/opera.svg | 1 + docs/material/.icons/material/orbit.svg | 1 + .../material/order-alphabetical-ascending.svg | 1 + .../order-alphabetical-descending.svg | 1 + .../material/order-bool-ascending-variant.svg | 1 + .../.icons/material/order-bool-ascending.svg | 1 + .../order-bool-descending-variant.svg | 1 + .../.icons/material/order-bool-descending.svg | 1 + .../material/order-numeric-ascending.svg | 1 + .../material/order-numeric-descending.svg | 1 + docs/material/.icons/material/origin.svg | 1 + .../.icons/material/ornament-variant.svg | 1 + docs/material/.icons/material/ornament.svg | 1 + .../material/.icons/material/outdoor-lamp.svg | 1 + docs/material/.icons/material/overscan.svg | 1 + docs/material/.icons/material/owl.svg | 1 + docs/material/.icons/material/pac-man.svg | 1 + .../material/.icons/material/package-down.svg | 1 + docs/material/.icons/material/package-up.svg | 1 + .../material/package-variant-closed.svg | 1 + .../.icons/material/package-variant.svg | 1 + docs/material/.icons/material/package.svg | 1 + docs/material/.icons/material/page-first.svg | 1 + docs/material/.icons/material/page-last.svg | 1 + .../.icons/material/page-layout-body.svg | 1 + .../.icons/material/page-layout-footer.svg | 1 + .../material/page-layout-header-footer.svg | 1 + .../.icons/material/page-layout-header.svg | 1 + .../material/page-layout-sidebar-left.svg | 1 + .../material/page-layout-sidebar-right.svg | 1 + .../.icons/material/page-next-outline.svg | 1 + docs/material/.icons/material/page-next.svg | 1 + .../.icons/material/page-previous-outline.svg | 1 + .../.icons/material/page-previous.svg | 1 + docs/material/.icons/material/pail.svg | 1 + .../.icons/material/palette-advanced.svg | 1 + .../.icons/material/palette-outline.svg | 1 + .../material/palette-swatch-outline.svg | 1 + .../.icons/material/palette-swatch.svg | 1 + docs/material/.icons/material/palette.svg | 1 + docs/material/.icons/material/palm-tree.svg | 1 + .../.icons/material/pan-bottom-left.svg | 1 + .../.icons/material/pan-bottom-right.svg | 1 + docs/material/.icons/material/pan-down.svg | 1 + .../.icons/material/pan-horizontal.svg | 1 + docs/material/.icons/material/pan-left.svg | 1 + docs/material/.icons/material/pan-right.svg | 1 + .../material/.icons/material/pan-top-left.svg | 1 + .../.icons/material/pan-top-right.svg | 1 + docs/material/.icons/material/pan-up.svg | 1 + .../material/.icons/material/pan-vertical.svg | 1 + docs/material/.icons/material/pan.svg | 1 + docs/material/.icons/material/panda.svg | 1 + docs/material/.icons/material/pandora.svg | 1 + .../.icons/material/panorama-fisheye.svg | 1 + .../.icons/material/panorama-horizontal.svg | 1 + .../.icons/material/panorama-vertical.svg | 1 + .../.icons/material/panorama-wide-angle.svg | 1 + docs/material/.icons/material/panorama.svg | 1 + .../.icons/material/paper-cut-vertical.svg | 1 + .../.icons/material/paper-roll-outline.svg | 1 + docs/material/.icons/material/paper-roll.svg | 1 + docs/material/.icons/material/paperclip.svg | 1 + .../.icons/material/parachute-outline.svg | 1 + docs/material/.icons/material/parachute.svg | 1 + docs/material/.icons/material/parking.svg | 1 + .../material/.icons/material/party-popper.svg | 1 + .../.icons/material/passport-biometric.svg | 1 + docs/material/.icons/material/passport.svg | 1 + docs/material/.icons/material/pasta.svg | 1 + .../material/.icons/material/patio-heater.svg | 1 + docs/material/.icons/material/patreon.svg | 1 + .../.icons/material/pause-circle-outline.svg | 1 + .../material/.icons/material/pause-circle.svg | 1 + .../.icons/material/pause-octagon-outline.svg | 1 + .../.icons/material/pause-octagon.svg | 1 + docs/material/.icons/material/pause.svg | 1 + docs/material/.icons/material/paw-off.svg | 1 + docs/material/.icons/material/paw.svg | 1 + docs/material/.icons/material/pdf-box.svg | 1 + docs/material/.icons/material/peace.svg | 1 + .../.icons/material/peanut-off-outline.svg | 1 + docs/material/.icons/material/peanut-off.svg | 1 + .../.icons/material/peanut-outline.svg | 1 + docs/material/.icons/material/peanut.svg | 1 + docs/material/.icons/material/pen-lock.svg | 1 + docs/material/.icons/material/pen-minus.svg | 1 + docs/material/.icons/material/pen-off.svg | 1 + docs/material/.icons/material/pen-plus.svg | 1 + docs/material/.icons/material/pen-remove.svg | 1 + docs/material/.icons/material/pen.svg | 1 + .../material/pencil-box-multiple-outline.svg | 1 + .../.icons/material/pencil-box-multiple.svg | 1 + .../.icons/material/pencil-box-outline.svg | 1 + docs/material/.icons/material/pencil-box.svg | 1 + .../.icons/material/pencil-circle-outline.svg | 1 + .../.icons/material/pencil-circle.svg | 1 + .../.icons/material/pencil-lock-outline.svg | 1 + docs/material/.icons/material/pencil-lock.svg | 1 + .../.icons/material/pencil-minus-outline.svg | 1 + .../material/.icons/material/pencil-minus.svg | 1 + .../.icons/material/pencil-off-outline.svg | 1 + docs/material/.icons/material/pencil-off.svg | 1 + .../.icons/material/pencil-outline.svg | 1 + .../.icons/material/pencil-plus-outline.svg | 1 + docs/material/.icons/material/pencil-plus.svg | 1 + .../.icons/material/pencil-remove-outline.svg | 1 + .../.icons/material/pencil-remove.svg | 1 + .../material/.icons/material/pencil-ruler.svg | 1 + docs/material/.icons/material/pencil.svg | 1 + docs/material/.icons/material/penguin.svg | 1 + .../.icons/material/pentagon-outline.svg | 1 + docs/material/.icons/material/pentagon.svg | 1 + .../.icons/material/percent-outline.svg | 1 + docs/material/.icons/material/percent.svg | 1 + .../.icons/material/periodic-table.svg | 1 + .../.icons/material/perspective-less.svg | 1 + .../.icons/material/perspective-more.svg | 1 + docs/material/.icons/material/pharmacy.svg | 1 + .../.icons/material/phone-alert-outline.svg | 1 + docs/material/.icons/material/phone-alert.svg | 1 + .../material/phone-bluetooth-outline.svg | 1 + .../.icons/material/phone-bluetooth.svg | 1 + .../.icons/material/phone-cancel-outline.svg | 1 + .../material/.icons/material/phone-cancel.svg | 1 + .../.icons/material/phone-check-outline.svg | 1 + docs/material/.icons/material/phone-check.svg | 1 + .../.icons/material/phone-classic-off.svg | 1 + .../.icons/material/phone-classic.svg | 1 + .../.icons/material/phone-forward-outline.svg | 1 + .../.icons/material/phone-forward.svg | 1 + .../.icons/material/phone-hangup-outline.svg | 1 + .../material/.icons/material/phone-hangup.svg | 1 + .../.icons/material/phone-in-talk-outline.svg | 1 + .../.icons/material/phone-in-talk.svg | 1 + .../material/phone-incoming-outline.svg | 1 + .../.icons/material/phone-incoming.svg | 1 + .../.icons/material/phone-lock-outline.svg | 1 + docs/material/.icons/material/phone-lock.svg | 1 + .../.icons/material/phone-log-outline.svg | 1 + docs/material/.icons/material/phone-log.svg | 1 + .../.icons/material/phone-message-outline.svg | 1 + .../.icons/material/phone-message.svg | 1 + .../.icons/material/phone-minus-outline.svg | 1 + docs/material/.icons/material/phone-minus.svg | 1 + .../.icons/material/phone-missed-outline.svg | 1 + .../material/.icons/material/phone-missed.svg | 1 + .../.icons/material/phone-off-outline.svg | 1 + docs/material/.icons/material/phone-off.svg | 1 + .../material/phone-outgoing-outline.svg | 1 + .../.icons/material/phone-outgoing.svg | 1 + .../.icons/material/phone-outline.svg | 1 + .../.icons/material/phone-paused-outline.svg | 1 + .../material/.icons/material/phone-paused.svg | 1 + .../.icons/material/phone-plus-outline.svg | 1 + docs/material/.icons/material/phone-plus.svg | 1 + .../.icons/material/phone-return-outline.svg | 1 + .../material/.icons/material/phone-return.svg | 1 + .../.icons/material/phone-ring-outline.svg | 1 + docs/material/.icons/material/phone-ring.svg | 1 + .../material/phone-rotate-landscape.svg | 1 + .../.icons/material/phone-rotate-portrait.svg | 1 + .../material/phone-settings-outline.svg | 1 + .../.icons/material/phone-settings.svg | 1 + docs/material/.icons/material/phone-voip.svg | 1 + docs/material/.icons/material/phone.svg | 1 + docs/material/.icons/material/pi-box.svg | 1 + docs/material/.icons/material/pi-hole.svg | 1 + docs/material/.icons/material/pi.svg | 1 + docs/material/.icons/material/piano.svg | 1 + docs/material/.icons/material/pickaxe.svg | 1 + ...icture-in-picture-bottom-right-outline.svg | 1 + .../picture-in-picture-bottom-right.svg | 1 + .../picture-in-picture-top-right-outline.svg | 1 + .../material/picture-in-picture-top-right.svg | 1 + docs/material/.icons/material/pier-crane.svg | 1 + docs/material/.icons/material/pier.svg | 1 + docs/material/.icons/material/pig-variant.svg | 1 + docs/material/.icons/material/pig.svg | 1 + docs/material/.icons/material/piggy-bank.svg | 1 + docs/material/.icons/material/pill.svg | 1 + docs/material/.icons/material/pillar.svg | 1 + .../.icons/material/pin-off-outline.svg | 1 + docs/material/.icons/material/pin-off.svg | 1 + docs/material/.icons/material/pin-outline.svg | 1 + docs/material/.icons/material/pin.svg | 1 + .../.icons/material/pine-tree-box.svg | 1 + docs/material/.icons/material/pine-tree.svg | 1 + docs/material/.icons/material/pinterest.svg | 1 + .../.icons/material/pinwheel-outline.svg | 1 + docs/material/.icons/material/pinwheel.svg | 1 + .../.icons/material/pipe-disconnected.svg | 1 + docs/material/.icons/material/pipe-leak.svg | 1 + docs/material/.icons/material/pipe-wrench.svg | 1 + docs/material/.icons/material/pipe.svg | 1 + docs/material/.icons/material/pirate.svg | 1 + docs/material/.icons/material/pistol.svg | 1 + docs/material/.icons/material/piston.svg | 1 + docs/material/.icons/material/pizza.svg | 1 + .../material/play-box-multiple-outline.svg | 1 + .../.icons/material/play-box-multiple.svg | 1 + .../.icons/material/play-box-outline.svg | 1 + docs/material/.icons/material/play-box.svg | 1 + .../.icons/material/play-circle-outline.svg | 1 + docs/material/.icons/material/play-circle.svg | 1 + .../.icons/material/play-network-outline.svg | 1 + .../material/.icons/material/play-network.svg | 1 + .../material/.icons/material/play-outline.svg | 1 + docs/material/.icons/material/play-pause.svg | 1 + .../material/play-protected-content.svg | 1 + docs/material/.icons/material/play-speed.svg | 1 + docs/material/.icons/material/play.svg | 1 + .../.icons/material/playlist-check.svg | 1 + .../.icons/material/playlist-edit.svg | 1 + .../.icons/material/playlist-minus.svg | 1 + .../material/playlist-music-outline.svg | 1 + .../.icons/material/playlist-music.svg | 1 + .../.icons/material/playlist-play.svg | 1 + .../.icons/material/playlist-plus.svg | 1 + .../.icons/material/playlist-remove.svg | 1 + .../.icons/material/playlist-star.svg | 1 + docs/material/.icons/material/plex.svg | 1 + .../material/plus-box-multiple-outline.svg | 1 + .../.icons/material/plus-box-multiple.svg | 1 + .../.icons/material/plus-box-outline.svg | 1 + docs/material/.icons/material/plus-box.svg | 1 + .../material/plus-circle-multiple-outline.svg | 1 + .../.icons/material/plus-circle-multiple.svg | 1 + .../.icons/material/plus-circle-outline.svg | 1 + docs/material/.icons/material/plus-circle.svg | 1 + .../.icons/material/plus-minus-box.svg | 1 + docs/material/.icons/material/plus-minus.svg | 1 + .../.icons/material/plus-network-outline.svg | 1 + .../material/.icons/material/plus-network.svg | 1 + docs/material/.icons/material/plus-one.svg | 1 + .../material/.icons/material/plus-outline.svg | 1 + docs/material/.icons/material/plus-thick.svg | 1 + docs/material/.icons/material/plus.svg | 1 + docs/material/.icons/material/podcast.svg | 1 + .../.icons/material/podium-bronze.svg | 1 + docs/material/.icons/material/podium-gold.svg | 1 + .../.icons/material/podium-silver.svg | 1 + docs/material/.icons/material/podium.svg | 1 + .../.icons/material/point-of-sale.svg | 1 + docs/material/.icons/material/pokeball.svg | 1 + docs/material/.icons/material/pokemon-go.svg | 1 + docs/material/.icons/material/poker-chip.svg | 1 + docs/material/.icons/material/polaroid.svg | 1 + .../.icons/material/police-badge-outline.svg | 1 + .../material/.icons/material/police-badge.svg | 1 + .../.icons/material/poll-box-outline.svg | 1 + docs/material/.icons/material/poll-box.svg | 1 + docs/material/.icons/material/poll.svg | 1 + docs/material/.icons/material/polymer.svg | 1 + docs/material/.icons/material/pool.svg | 1 + docs/material/.icons/material/popcorn.svg | 1 + .../material/.icons/material/post-outline.svg | 1 + docs/material/.icons/material/post.svg | 1 + .../.icons/material/postage-stamp.svg | 1 + .../.icons/material/pot-mix-outline.svg | 1 + docs/material/.icons/material/pot-mix.svg | 1 + docs/material/.icons/material/pot-outline.svg | 1 + .../.icons/material/pot-steam-outline.svg | 1 + docs/material/.icons/material/pot-steam.svg | 1 + docs/material/.icons/material/pot.svg | 1 + .../.icons/material/pound-box-outline.svg | 1 + docs/material/.icons/material/pound-box.svg | 1 + docs/material/.icons/material/pound.svg | 1 + docs/material/.icons/material/power-cycle.svg | 1 + docs/material/.icons/material/power-off.svg | 1 + docs/material/.icons/material/power-on.svg | 1 + .../.icons/material/power-plug-off.svg | 1 + docs/material/.icons/material/power-plug.svg | 1 + .../.icons/material/power-settings.svg | 1 + docs/material/.icons/material/power-sleep.svg | 1 + .../.icons/material/power-socket-au.svg | 1 + .../.icons/material/power-socket-de.svg | 1 + .../.icons/material/power-socket-eu.svg | 1 + .../.icons/material/power-socket-fr.svg | 1 + .../.icons/material/power-socket-jp.svg | 1 + .../.icons/material/power-socket-uk.svg | 1 + .../.icons/material/power-socket-us.svg | 1 + .../material/.icons/material/power-socket.svg | 1 + .../.icons/material/power-standby.svg | 1 + docs/material/.icons/material/power.svg | 1 + docs/material/.icons/material/powershell.svg | 1 + .../material/.icons/material/prescription.svg | 1 + .../.icons/material/presentation-play.svg | 1 + .../material/.icons/material/presentation.svg | 1 + .../printer-3d-nozzle-alert-outline.svg | 1 + .../material/printer-3d-nozzle-alert.svg | 1 + .../material/printer-3d-nozzle-outline.svg | 1 + .../.icons/material/printer-3d-nozzle.svg | 1 + docs/material/.icons/material/printer-3d.svg | 1 + .../.icons/material/printer-alert.svg | 1 + .../.icons/material/printer-check.svg | 1 + docs/material/.icons/material/printer-off.svg | 1 + docs/material/.icons/material/printer-pos.svg | 1 + .../.icons/material/printer-settings.svg | 1 + .../.icons/material/printer-wireless.svg | 1 + docs/material/.icons/material/printer.svg | 1 + .../.icons/material/priority-high.svg | 1 + .../material/.icons/material/priority-low.svg | 1 + .../.icons/material/professional-hexagon.svg | 1 + .../.icons/material/progress-alert.svg | 1 + .../.icons/material/progress-check.svg | 1 + .../.icons/material/progress-clock.svg | 1 + .../.icons/material/progress-close.svg | 1 + .../.icons/material/progress-download.svg | 1 + .../.icons/material/progress-upload.svg | 1 + .../.icons/material/progress-wrench.svg | 1 + .../.icons/material/projector-screen.svg | 1 + docs/material/.icons/material/projector.svg | 1 + .../.icons/material/propane-tank-outline.svg | 1 + .../material/.icons/material/propane-tank.svg | 1 + docs/material/.icons/material/protocol.svg | 1 + docs/material/.icons/material/publish.svg | 1 + docs/material/.icons/material/pulse.svg | 1 + docs/material/.icons/material/pump.svg | 1 + docs/material/.icons/material/pumpkin.svg | 1 + .../.icons/material/purse-outline.svg | 1 + docs/material/.icons/material/purse.svg | 1 + .../.icons/material/puzzle-outline.svg | 1 + docs/material/.icons/material/puzzle.svg | 1 + docs/material/.icons/material/qi.svg | 1 + docs/material/.icons/material/qqchat.svg | 1 + docs/material/.icons/material/qrcode-edit.svg | 1 + .../material/.icons/material/qrcode-minus.svg | 1 + docs/material/.icons/material/qrcode-plus.svg | 1 + .../.icons/material/qrcode-remove.svg | 1 + docs/material/.icons/material/qrcode-scan.svg | 1 + docs/material/.icons/material/qrcode.svg | 1 + docs/material/.icons/material/quadcopter.svg | 1 + .../material/.icons/material/quality-high.svg | 1 + docs/material/.icons/material/quality-low.svg | 1 + .../.icons/material/quality-medium.svg | 1 + docs/material/.icons/material/quora.svg | 1 + docs/material/.icons/material/rabbit.svg | 1 + .../.icons/material/racing-helmet.svg | 1 + docs/material/.icons/material/racquetball.svg | 1 + docs/material/.icons/material/radar.svg | 1 + .../.icons/material/radiator-disabled.svg | 1 + .../material/.icons/material/radiator-off.svg | 1 + docs/material/.icons/material/radiator.svg | 1 + docs/material/.icons/material/radio-am.svg | 1 + docs/material/.icons/material/radio-fm.svg | 1 + .../.icons/material/radio-handheld.svg | 1 + docs/material/.icons/material/radio-off.svg | 1 + docs/material/.icons/material/radio-tower.svg | 1 + docs/material/.icons/material/radio.svg | 1 + .../.icons/material/radioactive-off.svg | 1 + docs/material/.icons/material/radioactive.svg | 1 + .../.icons/material/radiobox-blank.svg | 1 + .../.icons/material/radiobox-marked.svg | 1 + .../.icons/material/radius-outline.svg | 1 + docs/material/.icons/material/radius.svg | 1 + .../.icons/material/railroad-light.svg | 1 + .../material/.icons/material/raspberry-pi.svg | 1 + .../.icons/material/ray-end-arrow.svg | 1 + docs/material/.icons/material/ray-end.svg | 1 + .../.icons/material/ray-start-arrow.svg | 1 + .../.icons/material/ray-start-end.svg | 1 + docs/material/.icons/material/ray-start.svg | 1 + docs/material/.icons/material/ray-vertex.svg | 1 + docs/material/.icons/material/react.svg | 1 + docs/material/.icons/material/read.svg | 1 + docs/material/.icons/material/receipt.svg | 1 + .../.icons/material/record-circle-outline.svg | 1 + .../.icons/material/record-circle.svg | 1 + .../.icons/material/record-player.svg | 1 + docs/material/.icons/material/record-rec.svg | 1 + docs/material/.icons/material/record.svg | 1 + .../.icons/material/rectangle-outline.svg | 1 + docs/material/.icons/material/rectangle.svg | 1 + .../.icons/material/recycle-variant.svg | 1 + docs/material/.icons/material/recycle.svg | 1 + docs/material/.icons/material/reddit.svg | 1 + docs/material/.icons/material/redhat.svg | 1 + .../material/.icons/material/redo-variant.svg | 1 + docs/material/.icons/material/redo.svg | 1 + .../.icons/material/reflect-horizontal.svg | 1 + .../.icons/material/reflect-vertical.svg | 1 + .../.icons/material/refresh-circle.svg | 1 + docs/material/.icons/material/refresh.svg | 1 + docs/material/.icons/material/regex.svg | 1 + .../.icons/material/registered-trademark.svg | 1 + .../.icons/material/relative-scale.svg | 1 + .../material/.icons/material/reload-alert.svg | 1 + docs/material/.icons/material/reload.svg | 1 + docs/material/.icons/material/reminder.svg | 1 + .../.icons/material/remote-desktop.svg | 1 + docs/material/.icons/material/remote-off.svg | 1 + .../.icons/material/remote-tv-off.svg | 1 + docs/material/.icons/material/remote-tv.svg | 1 + docs/material/.icons/material/remote.svg | 1 + docs/material/.icons/material/rename-box.svg | 1 + .../.icons/material/reorder-horizontal.svg | 1 + .../.icons/material/reorder-vertical.svg | 1 + docs/material/.icons/material/repeat-off.svg | 1 + docs/material/.icons/material/repeat-once.svg | 1 + docs/material/.icons/material/repeat.svg | 1 + docs/material/.icons/material/replay.svg | 1 + .../.icons/material/reply-all-outline.svg | 1 + docs/material/.icons/material/reply-all.svg | 1 + .../material/.icons/material/reply-circle.svg | 1 + .../.icons/material/reply-outline.svg | 1 + docs/material/.icons/material/reply.svg | 1 + .../material/.icons/material/reproduction.svg | 1 + .../.icons/material/resistor-nodes.svg | 1 + docs/material/.icons/material/resistor.svg | 1 + .../.icons/material/resize-bottom-right.svg | 1 + docs/material/.icons/material/resize.svg | 1 + docs/material/.icons/material/responsive.svg | 1 + .../.icons/material/restart-alert.svg | 1 + docs/material/.icons/material/restart-off.svg | 1 + docs/material/.icons/material/restart.svg | 1 + .../.icons/material/restore-alert.svg | 1 + docs/material/.icons/material/restore.svg | 1 + docs/material/.icons/material/rewind-10.svg | 1 + docs/material/.icons/material/rewind-30.svg | 1 + docs/material/.icons/material/rewind-5.svg | 1 + .../.icons/material/rewind-outline.svg | 1 + docs/material/.icons/material/rewind.svg | 1 + .../.icons/material/rhombus-medium.svg | 1 + .../.icons/material/rhombus-outline.svg | 1 + .../.icons/material/rhombus-split.svg | 1 + docs/material/.icons/material/rhombus.svg | 1 + docs/material/.icons/material/ribbon.svg | 1 + docs/material/.icons/material/rice.svg | 1 + docs/material/.icons/material/ring.svg | 1 + docs/material/.icons/material/rivet.svg | 1 + .../material/.icons/material/road-variant.svg | 1 + docs/material/.icons/material/road.svg | 1 + docs/material/.icons/material/robber.svg | 1 + .../.icons/material/robot-industrial.svg | 1 + .../.icons/material/robot-mower-outline.svg | 1 + docs/material/.icons/material/robot-mower.svg | 1 + .../.icons/material/robot-vacuum-variant.svg | 1 + .../material/.icons/material/robot-vacuum.svg | 1 + docs/material/.icons/material/robot.svg | 1 + .../.icons/material/rocket-outline.svg | 1 + docs/material/.icons/material/rocket.svg | 1 + docs/material/.icons/material/rodent.svg | 1 + .../.icons/material/roller-skate-off.svg | 1 + .../material/.icons/material/roller-skate.svg | 1 + .../.icons/material/rollerblade-off.svg | 1 + docs/material/.icons/material/rollerblade.svg | 1 + docs/material/.icons/material/rollupjs.svg | 1 + .../.icons/material/roman-numeral-1.svg | 1 + .../.icons/material/roman-numeral-10.svg | 1 + .../.icons/material/roman-numeral-2.svg | 1 + .../.icons/material/roman-numeral-3.svg | 1 + .../.icons/material/roman-numeral-4.svg | 1 + .../.icons/material/roman-numeral-5.svg | 1 + .../.icons/material/roman-numeral-6.svg | 1 + .../.icons/material/roman-numeral-7.svg | 1 + .../.icons/material/roman-numeral-8.svg | 1 + .../.icons/material/roman-numeral-9.svg | 1 + .../.icons/material/room-service-outline.svg | 1 + .../material/.icons/material/room-service.svg | 1 + .../.icons/material/rotate-3d-variant.svg | 1 + docs/material/.icons/material/rotate-3d.svg | 1 + .../.icons/material/rotate-left-variant.svg | 1 + docs/material/.icons/material/rotate-left.svg | 1 + .../material/.icons/material/rotate-orbit.svg | 1 + .../.icons/material/rotate-right-variant.svg | 1 + .../material/.icons/material/rotate-right.svg | 1 + .../.icons/material/rounded-corner.svg | 1 + .../.icons/material/router-network.svg | 1 + .../material/router-wireless-settings.svg | 1 + .../.icons/material/router-wireless.svg | 1 + docs/material/.icons/material/router.svg | 1 + .../material/.icons/material/routes-clock.svg | 1 + docs/material/.icons/material/routes.svg | 1 + docs/material/.icons/material/rowing.svg | 1 + docs/material/.icons/material/rss-box.svg | 1 + docs/material/.icons/material/rss-off.svg | 1 + docs/material/.icons/material/rss.svg | 1 + docs/material/.icons/material/rugby.svg | 1 + .../.icons/material/ruler-square-compass.svg | 1 + .../material/.icons/material/ruler-square.svg | 1 + docs/material/.icons/material/ruler.svg | 1 + docs/material/.icons/material/run-fast.svg | 1 + docs/material/.icons/material/run.svg | 1 + docs/material/.icons/material/rv-truck.svg | 1 + .../material/.icons/material/sack-percent.svg | 1 + docs/material/.icons/material/sack.svg | 1 + .../.icons/material/safe-square-outline.svg | 1 + docs/material/.icons/material/safe-square.svg | 1 + docs/material/.icons/material/safe.svg | 1 + .../.icons/material/safety-goggles.svg | 1 + docs/material/.icons/material/sail-boat.svg | 1 + docs/material/.icons/material/sale.svg | 1 + docs/material/.icons/material/salesforce.svg | 1 + docs/material/.icons/material/sass.svg | 1 + .../.icons/material/satellite-uplink.svg | 1 + .../.icons/material/satellite-variant.svg | 1 + docs/material/.icons/material/satellite.svg | 1 + docs/material/.icons/material/sausage.svg | 1 + docs/material/.icons/material/saw-blade.svg | 1 + docs/material/.icons/material/saxophone.svg | 1 + .../.icons/material/scale-balance.svg | 1 + .../.icons/material/scale-bathroom.svg | 1 + docs/material/.icons/material/scale-off.svg | 1 + docs/material/.icons/material/scale.svg | 1 + docs/material/.icons/material/scan-helper.svg | 1 + docs/material/.icons/material/scanner-off.svg | 1 + docs/material/.icons/material/scanner.svg | 1 + .../.icons/material/scatter-plot-outline.svg | 1 + .../material/.icons/material/scatter-plot.svg | 1 + .../.icons/material/school-outline.svg | 1 + docs/material/.icons/material/school.svg | 1 + .../.icons/material/scissors-cutting.svg | 1 + docs/material/.icons/material/scooter.svg | 1 + .../.icons/material/scoreboard-outline.svg | 1 + docs/material/.icons/material/scoreboard.svg | 1 + .../.icons/material/screen-rotation-lock.svg | 1 + .../.icons/material/screen-rotation.svg | 1 + .../.icons/material/screw-flat-top.svg | 1 + docs/material/.icons/material/screw-lag.svg | 1 + .../material/screw-machine-flat-top.svg | 1 + .../material/screw-machine-round-top.svg | 1 + .../.icons/material/screw-round-top.svg | 1 + docs/material/.icons/material/screwdriver.svg | 1 + .../.icons/material/script-outline.svg | 1 + .../.icons/material/script-text-outline.svg | 1 + docs/material/.icons/material/script-text.svg | 1 + docs/material/.icons/material/script.svg | 1 + docs/material/.icons/material/sd.svg | 1 + .../material/.icons/material/seal-variant.svg | 1 + docs/material/.icons/material/seal.svg | 1 + docs/material/.icons/material/search-web.svg | 1 + .../.icons/material/seat-flat-angled.svg | 1 + docs/material/.icons/material/seat-flat.svg | 1 + .../.icons/material/seat-individual-suite.svg | 1 + .../.icons/material/seat-legroom-extra.svg | 1 + .../.icons/material/seat-legroom-normal.svg | 1 + .../.icons/material/seat-legroom-reduced.svg | 1 + .../material/.icons/material/seat-outline.svg | 1 + .../.icons/material/seat-passenger.svg | 1 + .../.icons/material/seat-recline-extra.svg | 1 + .../.icons/material/seat-recline-normal.svg | 1 + docs/material/.icons/material/seat.svg | 1 + docs/material/.icons/material/seatbelt.svg | 1 + .../.icons/material/security-network.svg | 1 + docs/material/.icons/material/security.svg | 1 + .../.icons/material/seed-off-outline.svg | 1 + docs/material/.icons/material/seed-off.svg | 1 + .../material/.icons/material/seed-outline.svg | 1 + docs/material/.icons/material/seed.svg | 1 + docs/material/.icons/material/segment.svg | 1 + docs/material/.icons/material/select-all.svg | 1 + .../material/.icons/material/select-color.svg | 1 + .../.icons/material/select-compare.svg | 1 + docs/material/.icons/material/select-drag.svg | 1 + .../material/.icons/material/select-group.svg | 1 + .../.icons/material/select-inverse.svg | 1 + .../.icons/material/select-marker.svg | 1 + .../material/select-multiple-marker.svg | 1 + .../.icons/material/select-multiple.svg | 1 + docs/material/.icons/material/select-off.svg | 1 + .../material/.icons/material/select-place.svg | 1 + .../.icons/material/select-search.svg | 1 + docs/material/.icons/material/select.svg | 1 + .../.icons/material/selection-drag.svg | 1 + .../selection-ellipse-arrow-inside.svg | 1 + .../.icons/material/selection-ellipse.svg | 1 + .../.icons/material/selection-marker.svg | 1 + .../material/selection-multiple-marker.svg | 1 + .../.icons/material/selection-multiple.svg | 1 + .../.icons/material/selection-off.svg | 1 + .../.icons/material/selection-search.svg | 1 + docs/material/.icons/material/selection.svg | 1 + .../material/.icons/material/semantic-web.svg | 1 + .../.icons/material/send-check-outline.svg | 1 + docs/material/.icons/material/send-check.svg | 1 + .../.icons/material/send-circle-outline.svg | 1 + docs/material/.icons/material/send-circle.svg | 1 + .../.icons/material/send-clock-outline.svg | 1 + docs/material/.icons/material/send-clock.svg | 1 + .../.icons/material/send-lock-outline.svg | 1 + docs/material/.icons/material/send-lock.svg | 1 + .../material/.icons/material/send-outline.svg | 1 + docs/material/.icons/material/send.svg | 1 + docs/material/.icons/material/serial-port.svg | 1 + .../material/.icons/material/server-minus.svg | 1 + .../.icons/material/server-network-off.svg | 1 + .../.icons/material/server-network.svg | 1 + docs/material/.icons/material/server-off.svg | 1 + docs/material/.icons/material/server-plus.svg | 1 + .../.icons/material/server-remove.svg | 1 + .../.icons/material/server-security.svg | 1 + docs/material/.icons/material/server.svg | 1 + docs/material/.icons/material/set-all.svg | 1 + .../.icons/material/set-center-right.svg | 1 + docs/material/.icons/material/set-center.svg | 1 + .../.icons/material/set-left-center.svg | 1 + .../.icons/material/set-left-right.svg | 1 + docs/material/.icons/material/set-left.svg | 1 + docs/material/.icons/material/set-none.svg | 1 + docs/material/.icons/material/set-right.svg | 1 + docs/material/.icons/material/set-top-box.svg | 1 + .../.icons/material/settings-helper.svg | 1 + .../.icons/material/shaker-outline.svg | 1 + docs/material/.icons/material/shaker.svg | 1 + .../.icons/material/shape-circle-plus.svg | 1 + .../.icons/material/shape-outline.svg | 1 + .../.icons/material/shape-oval-plus.svg | 1 + docs/material/.icons/material/shape-plus.svg | 1 + .../.icons/material/shape-polygon-plus.svg | 1 + .../.icons/material/shape-rectangle-plus.svg | 1 + .../.icons/material/shape-square-plus.svg | 1 + docs/material/.icons/material/shape.svg | 1 + .../.icons/material/share-all-outline.svg | 1 + docs/material/.icons/material/share-all.svg | 1 + .../material/.icons/material/share-circle.svg | 1 + .../.icons/material/share-off-outline.svg | 1 + docs/material/.icons/material/share-off.svg | 1 + .../.icons/material/share-outline.svg | 1 + .../.icons/material/share-variant.svg | 1 + docs/material/.icons/material/share.svg | 1 + docs/material/.icons/material/sheep.svg | 1 + .../material/shield-account-outline.svg | 1 + .../.icons/material/shield-account.svg | 1 + .../material/shield-airplane-outline.svg | 1 + .../.icons/material/shield-airplane.svg | 1 + .../.icons/material/shield-alert-outline.svg | 1 + .../material/.icons/material/shield-alert.svg | 1 + .../.icons/material/shield-bug-outline.svg | 1 + docs/material/.icons/material/shield-bug.svg | 1 + docs/material/.icons/material/shield-car.svg | 1 + .../.icons/material/shield-check-outline.svg | 1 + .../material/.icons/material/shield-check.svg | 1 + .../.icons/material/shield-cross-outline.svg | 1 + .../material/.icons/material/shield-cross.svg | 1 + .../.icons/material/shield-edit-outline.svg | 1 + docs/material/.icons/material/shield-edit.svg | 1 + .../.icons/material/shield-half-full.svg | 1 + docs/material/.icons/material/shield-half.svg | 1 + .../.icons/material/shield-home-outline.svg | 1 + docs/material/.icons/material/shield-home.svg | 1 + .../.icons/material/shield-key-outline.svg | 1 + docs/material/.icons/material/shield-key.svg | 1 + .../material/shield-link-variant-outline.svg | 1 + .../.icons/material/shield-link-variant.svg | 1 + .../.icons/material/shield-lock-outline.svg | 1 + docs/material/.icons/material/shield-lock.svg | 1 + .../.icons/material/shield-off-outline.svg | 1 + docs/material/.icons/material/shield-off.svg | 1 + .../.icons/material/shield-outline.svg | 1 + .../.icons/material/shield-plus-outline.svg | 1 + docs/material/.icons/material/shield-plus.svg | 1 + .../material/shield-refresh-outline.svg | 1 + .../.icons/material/shield-refresh.svg | 1 + .../.icons/material/shield-remove-outline.svg | 1 + .../.icons/material/shield-remove.svg | 1 + .../.icons/material/shield-search.svg | 1 + .../.icons/material/shield-star-outline.svg | 1 + docs/material/.icons/material/shield-star.svg | 1 + .../.icons/material/shield-sun-outline.svg | 1 + docs/material/.icons/material/shield-sun.svg | 1 + .../.icons/material/shield-sync-outline.svg | 1 + docs/material/.icons/material/shield-sync.svg | 1 + docs/material/.icons/material/shield.svg | 1 + docs/material/.icons/material/ship-wheel.svg | 1 + docs/material/.icons/material/shoe-formal.svg | 1 + docs/material/.icons/material/shoe-heel.svg | 1 + docs/material/.icons/material/shoe-print.svg | 1 + .../.icons/material/shopping-music.svg | 1 + .../.icons/material/shopping-outline.svg | 1 + .../.icons/material/shopping-search.svg | 1 + docs/material/.icons/material/shopping.svg | 1 + docs/material/.icons/material/shovel-off.svg | 1 + docs/material/.icons/material/shovel.svg | 1 + docs/material/.icons/material/shower-head.svg | 1 + docs/material/.icons/material/shower.svg | 1 + docs/material/.icons/material/shredder.svg | 1 + .../.icons/material/shuffle-disabled.svg | 1 + .../.icons/material/shuffle-variant.svg | 1 + docs/material/.icons/material/shuffle.svg | 1 + docs/material/.icons/material/shuriken.svg | 1 + docs/material/.icons/material/sigma-lower.svg | 1 + docs/material/.icons/material/sigma.svg | 1 + .../material/.icons/material/sign-caution.svg | 1 + .../.icons/material/sign-direction-minus.svg | 1 + .../.icons/material/sign-direction-plus.svg | 1 + .../.icons/material/sign-direction-remove.svg | 1 + .../.icons/material/sign-direction.svg | 1 + .../.icons/material/sign-real-estate.svg | 1 + docs/material/.icons/material/sign-text.svg | 1 + docs/material/.icons/material/signal-2g.svg | 1 + docs/material/.icons/material/signal-3g.svg | 1 + docs/material/.icons/material/signal-4g.svg | 1 + docs/material/.icons/material/signal-5g.svg | 1 + .../.icons/material/signal-cellular-1.svg | 1 + .../.icons/material/signal-cellular-2.svg | 1 + .../.icons/material/signal-cellular-3.svg | 1 + .../material/signal-cellular-outline.svg | 1 + .../material/signal-distance-variant.svg | 1 + .../.icons/material/signal-hspa-plus.svg | 1 + docs/material/.icons/material/signal-hspa.svg | 1 + docs/material/.icons/material/signal-off.svg | 1 + .../.icons/material/signal-variant.svg | 1 + docs/material/.icons/material/signal.svg | 1 + .../.icons/material/signature-freehand.svg | 1 + .../.icons/material/signature-image.svg | 1 + .../.icons/material/signature-text.svg | 1 + docs/material/.icons/material/signature.svg | 1 + docs/material/.icons/material/silo.svg | 1 + .../.icons/material/silverware-clean.svg | 1 + .../.icons/material/silverware-fork-knife.svg | 1 + .../.icons/material/silverware-fork.svg | 1 + .../.icons/material/silverware-spoon.svg | 1 + .../.icons/material/silverware-variant.svg | 1 + docs/material/.icons/material/silverware.svg | 1 + docs/material/.icons/material/sim-alert.svg | 1 + docs/material/.icons/material/sim-off.svg | 1 + docs/material/.icons/material/sim.svg | 1 + .../material/.icons/material/simple-icons.svg | 1 + docs/material/.icons/material/sina-weibo.svg | 1 + docs/material/.icons/material/sitemap.svg | 1 + docs/material/.icons/material/size-l.svg | 1 + docs/material/.icons/material/size-m.svg | 1 + docs/material/.icons/material/size-s.svg | 1 + docs/material/.icons/material/size-xl.svg | 1 + docs/material/.icons/material/size-xs.svg | 1 + docs/material/.icons/material/size-xxl.svg | 1 + docs/material/.icons/material/size-xxs.svg | 1 + docs/material/.icons/material/size-xxxl.svg | 1 + docs/material/.icons/material/skate.svg | 1 + docs/material/.icons/material/skew-less.svg | 1 + docs/material/.icons/material/skew-more.svg | 1 + .../.icons/material/ski-cross-country.svg | 1 + docs/material/.icons/material/ski-water.svg | 1 + docs/material/.icons/material/ski.svg | 1 + .../.icons/material/skip-backward-outline.svg | 1 + .../.icons/material/skip-backward.svg | 1 + .../.icons/material/skip-forward-outline.svg | 1 + .../material/.icons/material/skip-forward.svg | 1 + .../material/skip-next-circle-outline.svg | 1 + .../.icons/material/skip-next-circle.svg | 1 + .../.icons/material/skip-next-outline.svg | 1 + docs/material/.icons/material/skip-next.svg | 1 + .../material/skip-previous-circle-outline.svg | 1 + .../.icons/material/skip-previous-circle.svg | 1 + .../.icons/material/skip-previous-outline.svg | 1 + .../.icons/material/skip-previous.svg | 1 + .../material/skull-crossbones-outline.svg | 1 + .../.icons/material/skull-crossbones.svg | 1 + .../.icons/material/skull-outline.svg | 1 + docs/material/.icons/material/skull.svg | 1 + .../.icons/material/skype-business.svg | 1 + docs/material/.icons/material/skype.svg | 1 + docs/material/.icons/material/slack.svg | 1 + .../.icons/material/slash-forward-box.svg | 1 + .../.icons/material/slash-forward.svg | 1 + docs/material/.icons/material/sleep-off.svg | 1 + docs/material/.icons/material/sleep.svg | 1 + .../.icons/material/slope-downhill.svg | 1 + .../material/.icons/material/slope-uphill.svg | 1 + .../.icons/material/slot-machine-outline.svg | 1 + .../material/.icons/material/slot-machine.svg | 1 + .../.icons/material/smart-card-outline.svg | 1 + .../material/smart-card-reader-outline.svg | 1 + .../.icons/material/smart-card-reader.svg | 1 + docs/material/.icons/material/smart-card.svg | 1 + docs/material/.icons/material/smog.svg | 1 + .../.icons/material/smoke-detector.svg | 1 + docs/material/.icons/material/smoking-off.svg | 1 + .../material/.icons/material/smoking-pipe.svg | 1 + docs/material/.icons/material/smoking.svg | 1 + docs/material/.icons/material/snapchat.svg | 1 + docs/material/.icons/material/snowboard.svg | 1 + .../.icons/material/snowflake-alert.svg | 1 + .../.icons/material/snowflake-melt.svg | 1 + .../.icons/material/snowflake-variant.svg | 1 + docs/material/.icons/material/snowflake.svg | 1 + docs/material/.icons/material/snowman.svg | 1 + .../material/.icons/material/soccer-field.svg | 1 + docs/material/.icons/material/soccer.svg | 1 + docs/material/.icons/material/sofa.svg | 1 + .../.icons/material/solar-panel-large.svg | 1 + docs/material/.icons/material/solar-panel.svg | 1 + docs/material/.icons/material/solar-power.svg | 1 + .../.icons/material/soldering-iron.svg | 1 + docs/material/.icons/material/solid.svg | 1 + .../.icons/material/sony-playstation.svg | 1 + .../sort-alphabetical-ascending-variant.svg | 1 + .../material/sort-alphabetical-ascending.svg | 1 + .../sort-alphabetical-descending-variant.svg | 1 + .../material/sort-alphabetical-descending.svg | 1 + .../material/sort-alphabetical-variant.svg | 1 + .../.icons/material/sort-ascending.svg | 1 + .../material/sort-bool-ascending-variant.svg | 1 + .../.icons/material/sort-bool-ascending.svg | 1 + .../material/sort-bool-descending-variant.svg | 1 + .../.icons/material/sort-bool-descending.svg | 1 + .../.icons/material/sort-descending.svg | 1 + .../sort-numeric-ascending-variant.svg | 1 + .../material/sort-numeric-ascending.svg | 1 + .../sort-numeric-descending-variant.svg | 1 + .../material/sort-numeric-descending.svg | 1 + .../.icons/material/sort-numeric-variant.svg | 1 + .../.icons/material/sort-reverse-variant.svg | 1 + .../material/sort-variant-lock-open.svg | 1 + .../.icons/material/sort-variant-lock.svg | 1 + .../.icons/material/sort-variant-remove.svg | 1 + .../material/.icons/material/sort-variant.svg | 1 + docs/material/.icons/material/sort.svg | 1 + docs/material/.icons/material/soundcloud.svg | 1 + .../.icons/material/source-branch.svg | 1 + .../material/source-commit-end-local.svg | 1 + .../.icons/material/source-commit-end.svg | 1 + .../.icons/material/source-commit-local.svg | 1 + .../material/source-commit-next-local.svg | 1 + .../source-commit-start-next-local.svg | 1 + .../.icons/material/source-commit-start.svg | 1 + .../.icons/material/source-commit.svg | 1 + docs/material/.icons/material/source-fork.svg | 1 + .../material/.icons/material/source-merge.svg | 1 + docs/material/.icons/material/source-pull.svg | 1 + .../material/source-repository-multiple.svg | 1 + .../.icons/material/source-repository.svg | 1 + .../.icons/material/soy-sauce-off.svg | 1 + docs/material/.icons/material/soy-sauce.svg | 1 + docs/material/.icons/material/spa-outline.svg | 1 + docs/material/.icons/material/spa.svg | 1 + .../.icons/material/space-invaders.svg | 1 + .../.icons/material/space-station.svg | 1 + docs/material/.icons/material/spade.svg | 1 + .../.icons/material/speaker-bluetooth.svg | 1 + .../.icons/material/speaker-multiple.svg | 1 + docs/material/.icons/material/speaker-off.svg | 1 + .../.icons/material/speaker-wireless.svg | 1 + docs/material/.icons/material/speaker.svg | 1 + .../.icons/material/speedometer-medium.svg | 1 + .../.icons/material/speedometer-slow.svg | 1 + docs/material/.icons/material/speedometer.svg | 1 + docs/material/.icons/material/spellcheck.svg | 1 + .../.icons/material/spider-thread.svg | 1 + docs/material/.icons/material/spider-web.svg | 1 + docs/material/.icons/material/spider.svg | 1 + docs/material/.icons/material/spotify.svg | 1 + .../.icons/material/spotlight-beam.svg | 1 + docs/material/.icons/material/spotlight.svg | 1 + .../material/.icons/material/spray-bottle.svg | 1 + docs/material/.icons/material/spray.svg | 1 + .../.icons/material/sprinkler-variant.svg | 1 + docs/material/.icons/material/sprinkler.svg | 1 + .../.icons/material/sprout-outline.svg | 1 + docs/material/.icons/material/sprout.svg | 1 + .../.icons/material/square-edit-outline.svg | 1 + .../.icons/material/square-medium-outline.svg | 1 + .../.icons/material/square-medium.svg | 1 + .../.icons/material/square-off-outline.svg | 1 + docs/material/.icons/material/square-off.svg | 1 + .../.icons/material/square-outline.svg | 1 + .../.icons/material/square-root-box.svg | 1 + docs/material/.icons/material/square-root.svg | 1 + .../material/.icons/material/square-small.svg | 1 + docs/material/.icons/material/square.svg | 1 + docs/material/.icons/material/squeegee.svg | 1 + docs/material/.icons/material/ssh.svg | 1 + .../.icons/material/stack-exchange.svg | 1 + .../.icons/material/stack-overflow.svg | 1 + docs/material/.icons/material/stackpath.svg | 1 + .../.icons/material/stadium-variant.svg | 1 + docs/material/.icons/material/stadium.svg | 1 + docs/material/.icons/material/stairs-box.svg | 1 + docs/material/.icons/material/stairs-down.svg | 1 + docs/material/.icons/material/stairs-up.svg | 1 + docs/material/.icons/material/stairs.svg | 1 + docs/material/.icons/material/stamper.svg | 1 + .../.icons/material/standard-definition.svg | 1 + .../material/star-box-multiple-outline.svg | 1 + .../.icons/material/star-box-multiple.svg | 1 + .../.icons/material/star-box-outline.svg | 1 + docs/material/.icons/material/star-box.svg | 1 + .../.icons/material/star-circle-outline.svg | 1 + docs/material/.icons/material/star-circle.svg | 1 + docs/material/.icons/material/star-face.svg | 1 + .../material/star-four-points-outline.svg | 1 + .../.icons/material/star-four-points.svg | 1 + .../.icons/material/star-half-full.svg | 1 + docs/material/.icons/material/star-half.svg | 1 + docs/material/.icons/material/star-off.svg | 1 + .../material/.icons/material/star-outline.svg | 1 + .../material/star-three-points-outline.svg | 1 + .../.icons/material/star-three-points.svg | 1 + docs/material/.icons/material/star.svg | 1 + .../.icons/material/state-machine.svg | 1 + docs/material/.icons/material/steam.svg | 1 + .../material/.icons/material/steering-off.svg | 1 + docs/material/.icons/material/steering.svg | 1 + .../.icons/material/step-backward-2.svg | 1 + .../.icons/material/step-backward.svg | 1 + .../.icons/material/step-forward-2.svg | 1 + .../material/.icons/material/step-forward.svg | 1 + docs/material/.icons/material/stethoscope.svg | 1 + .../.icons/material/sticker-alert-outline.svg | 1 + .../.icons/material/sticker-alert.svg | 1 + .../.icons/material/sticker-check-outline.svg | 1 + .../.icons/material/sticker-check.svg | 1 + .../material/sticker-circle-outline.svg | 1 + .../.icons/material/sticker-emoji.svg | 1 + .../.icons/material/sticker-minus-outline.svg | 1 + .../.icons/material/sticker-minus.svg | 1 + .../.icons/material/sticker-outline.svg | 1 + .../.icons/material/sticker-plus-outline.svg | 1 + .../material/.icons/material/sticker-plus.svg | 1 + .../material/sticker-remove-outline.svg | 1 + .../.icons/material/sticker-remove.svg | 1 + docs/material/.icons/material/sticker.svg | 1 + docs/material/.icons/material/stocking.svg | 1 + docs/material/.icons/material/stomach.svg | 1 + .../.icons/material/stop-circle-outline.svg | 1 + docs/material/.icons/material/stop-circle.svg | 1 + docs/material/.icons/material/stop.svg | 1 + .../.icons/material/store-24-hour.svg | 1 + .../.icons/material/store-outline.svg | 1 + docs/material/.icons/material/store.svg | 1 + .../.icons/material/storefront-outline.svg | 1 + docs/material/.icons/material/storefront.svg | 1 + docs/material/.icons/material/stove.svg | 1 + docs/material/.icons/material/strategy.svg | 1 + .../material/stretch-to-page-outline.svg | 1 + .../.icons/material/stretch-to-page.svg | 1 + .../.icons/material/string-lights-off.svg | 1 + .../.icons/material/string-lights.svg | 1 + .../material/subdirectory-arrow-left.svg | 1 + .../material/subdirectory-arrow-right.svg | 1 + .../.icons/material/subtitles-outline.svg | 1 + docs/material/.icons/material/subtitles.svg | 1 + .../.icons/material/subway-alert-variant.svg | 1 + .../.icons/material/subway-variant.svg | 1 + docs/material/.icons/material/subway.svg | 1 + docs/material/.icons/material/summit.svg | 1 + docs/material/.icons/material/sunglasses.svg | 1 + .../.icons/material/surround-sound-2-0.svg | 1 + .../.icons/material/surround-sound-3-1.svg | 1 + .../.icons/material/surround-sound-5-1.svg | 1 + .../.icons/material/surround-sound-7-1.svg | 1 + .../.icons/material/surround-sound.svg | 1 + docs/material/.icons/material/svg.svg | 1 + .../.icons/material/swap-horizontal-bold.svg | 1 + .../swap-horizontal-circle-outline.svg | 1 + .../material/swap-horizontal-circle.svg | 1 + .../material/swap-horizontal-variant.svg | 1 + .../.icons/material/swap-horizontal.svg | 1 + .../.icons/material/swap-vertical-bold.svg | 1 + .../material/swap-vertical-circle-outline.svg | 1 + .../.icons/material/swap-vertical-circle.svg | 1 + .../.icons/material/swap-vertical-variant.svg | 1 + .../.icons/material/swap-vertical.svg | 1 + docs/material/.icons/material/swim.svg | 1 + docs/material/.icons/material/switch.svg | 1 + docs/material/.icons/material/sword-cross.svg | 1 + docs/material/.icons/material/sword.svg | 1 + .../.icons/material/syllabary-hangul.svg | 1 + .../.icons/material/syllabary-hiragana.svg | 1 + .../syllabary-katakana-half-width.svg | 1 + .../.icons/material/syllabary-katakana.svg | 1 + docs/material/.icons/material/symfony.svg | 1 + docs/material/.icons/material/sync-alert.svg | 1 + docs/material/.icons/material/sync-circle.svg | 1 + docs/material/.icons/material/sync-off.svg | 1 + docs/material/.icons/material/sync.svg | 1 + docs/material/.icons/material/tab-minus.svg | 1 + docs/material/.icons/material/tab-plus.svg | 1 + docs/material/.icons/material/tab-remove.svg | 1 + .../.icons/material/tab-unselected.svg | 1 + docs/material/.icons/material/tab.svg | 1 + .../.icons/material/table-account.svg | 1 + docs/material/.icons/material/table-alert.svg | 1 + .../.icons/material/table-arrow-down.svg | 1 + .../.icons/material/table-arrow-left.svg | 1 + .../.icons/material/table-arrow-right.svg | 1 + .../.icons/material/table-arrow-up.svg | 1 + .../material/.icons/material/table-border.svg | 1 + .../material/.icons/material/table-cancel.svg | 1 + docs/material/.icons/material/table-chair.svg | 1 + docs/material/.icons/material/table-check.svg | 1 + docs/material/.icons/material/table-clock.svg | 1 + docs/material/.icons/material/table-cog.svg | 1 + .../material/table-column-plus-after.svg | 1 + .../material/table-column-plus-before.svg | 1 + .../.icons/material/table-column-remove.svg | 1 + .../.icons/material/table-column-width.svg | 1 + .../material/.icons/material/table-column.svg | 1 + docs/material/.icons/material/table-edit.svg | 1 + .../.icons/material/table-eye-off.svg | 1 + docs/material/.icons/material/table-eye.svg | 1 + .../.icons/material/table-furniture.svg | 1 + .../.icons/material/table-headers-eye-off.svg | 1 + .../.icons/material/table-headers-eye.svg | 1 + docs/material/.icons/material/table-heart.svg | 1 + docs/material/.icons/material/table-key.svg | 1 + .../.icons/material/table-large-plus.svg | 1 + .../.icons/material/table-large-remove.svg | 1 + docs/material/.icons/material/table-large.svg | 1 + docs/material/.icons/material/table-lock.svg | 1 + .../.icons/material/table-merge-cells.svg | 1 + docs/material/.icons/material/table-minus.svg | 1 + .../.icons/material/table-multiple.svg | 1 + .../.icons/material/table-network.svg | 1 + .../.icons/material/table-of-contents.svg | 1 + docs/material/.icons/material/table-off.svg | 1 + docs/material/.icons/material/table-plus.svg | 1 + .../.icons/material/table-refresh.svg | 1 + .../material/.icons/material/table-remove.svg | 1 + .../.icons/material/table-row-height.svg | 1 + .../.icons/material/table-row-plus-after.svg | 1 + .../.icons/material/table-row-plus-before.svg | 1 + .../.icons/material/table-row-remove.svg | 1 + docs/material/.icons/material/table-row.svg | 1 + .../material/.icons/material/table-search.svg | 1 + .../.icons/material/table-settings.svg | 1 + docs/material/.icons/material/table-star.svg | 1 + docs/material/.icons/material/table-sync.svg | 1 + .../material/.icons/material/table-tennis.svg | 1 + docs/material/.icons/material/table.svg | 1 + .../.icons/material/tablet-android.svg | 1 + .../.icons/material/tablet-cellphone.svg | 1 + .../.icons/material/tablet-dashboard.svg | 1 + docs/material/.icons/material/tablet-ipad.svg | 1 + docs/material/.icons/material/tablet.svg | 1 + docs/material/.icons/material/taco.svg | 1 + docs/material/.icons/material/tag-faces.svg | 1 + .../.icons/material/tag-heart-outline.svg | 1 + docs/material/.icons/material/tag-heart.svg | 1 + .../.icons/material/tag-minus-outline.svg | 1 + docs/material/.icons/material/tag-minus.svg | 1 + .../.icons/material/tag-multiple-outline.svg | 1 + .../material/.icons/material/tag-multiple.svg | 1 + .../.icons/material/tag-off-outline.svg | 1 + docs/material/.icons/material/tag-off.svg | 1 + docs/material/.icons/material/tag-outline.svg | 1 + .../.icons/material/tag-plus-outline.svg | 1 + docs/material/.icons/material/tag-plus.svg | 1 + .../.icons/material/tag-remove-outline.svg | 1 + docs/material/.icons/material/tag-remove.svg | 1 + .../.icons/material/tag-text-outline.svg | 1 + docs/material/.icons/material/tag-text.svg | 1 + docs/material/.icons/material/tag.svg | 1 + docs/material/.icons/material/tailwind.svg | 1 + docs/material/.icons/material/tank.svg | 1 + .../material/.icons/material/tanker-truck.svg | 1 + .../material/.icons/material/tape-measure.svg | 1 + .../.icons/material/target-account.svg | 1 + .../.icons/material/target-variant.svg | 1 + docs/material/.icons/material/target.svg | 1 + docs/material/.icons/material/taxi.svg | 1 + docs/material/.icons/material/tea-outline.svg | 1 + docs/material/.icons/material/tea.svg | 1 + docs/material/.icons/material/teach.svg | 1 + docs/material/.icons/material/teamviewer.svg | 1 + docs/material/.icons/material/telegram.svg | 1 + docs/material/.icons/material/telescope.svg | 1 + .../material/television-ambient-light.svg | 1 + .../.icons/material/television-box.svg | 1 + .../material/television-classic-off.svg | 1 + .../.icons/material/television-classic.svg | 1 + .../.icons/material/television-clean.svg | 1 + .../.icons/material/television-guide.svg | 1 + .../.icons/material/television-off.svg | 1 + .../.icons/material/television-pause.svg | 1 + .../.icons/material/television-play.svg | 1 + .../.icons/material/television-stop.svg | 1 + docs/material/.icons/material/television.svg | 1 + .../.icons/material/temperature-celsius.svg | 1 + .../material/temperature-fahrenheit.svg | 1 + .../.icons/material/temperature-kelvin.svg | 1 + docs/material/.icons/material/tennis-ball.svg | 1 + docs/material/.icons/material/tennis.svg | 1 + docs/material/.icons/material/tent.svg | 1 + docs/material/.icons/material/terraform.svg | 1 + docs/material/.icons/material/terrain.svg | 1 + .../.icons/material/test-tube-empty.svg | 1 + .../.icons/material/test-tube-off.svg | 1 + docs/material/.icons/material/test-tube.svg | 1 + .../material/text-box-check-outline.svg | 1 + .../.icons/material/text-box-check.svg | 1 + .../material/text-box-minus-outline.svg | 1 + .../.icons/material/text-box-minus.svg | 1 + .../material/text-box-multiple-outline.svg | 1 + .../.icons/material/text-box-multiple.svg | 1 + .../.icons/material/text-box-outline.svg | 1 + .../.icons/material/text-box-plus-outline.svg | 1 + .../.icons/material/text-box-plus.svg | 1 + .../material/text-box-remove-outline.svg | 1 + .../.icons/material/text-box-remove.svg | 1 + .../material/text-box-search-outline.svg | 1 + .../.icons/material/text-box-search.svg | 1 + docs/material/.icons/material/text-box.svg | 1 + .../.icons/material/text-recognition.svg | 1 + docs/material/.icons/material/text-search.svg | 1 + docs/material/.icons/material/text-shadow.svg | 1 + docs/material/.icons/material/text-short.svg | 1 + .../material/.icons/material/text-subject.svg | 1 + .../.icons/material/text-to-speech-off.svg | 1 + .../.icons/material/text-to-speech.svg | 1 + docs/material/.icons/material/text.svg | 1 + docs/material/.icons/material/texture-box.svg | 1 + docs/material/.icons/material/texture.svg | 1 + docs/material/.icons/material/theater.svg | 1 + .../.icons/material/theme-light-dark.svg | 1 + .../.icons/material/thermometer-alert.svg | 1 + .../material/thermometer-chevron-down.svg | 1 + .../material/thermometer-chevron-up.svg | 1 + .../.icons/material/thermometer-high.svg | 1 + .../.icons/material/thermometer-lines.svg | 1 + .../.icons/material/thermometer-low.svg | 1 + .../.icons/material/thermometer-minus.svg | 1 + .../.icons/material/thermometer-plus.svg | 1 + docs/material/.icons/material/thermometer.svg | 1 + .../.icons/material/thermostat-box.svg | 1 + docs/material/.icons/material/thermostat.svg | 1 + .../material/thought-bubble-outline.svg | 1 + .../.icons/material/thought-bubble.svg | 1 + .../.icons/material/thumb-down-outline.svg | 1 + docs/material/.icons/material/thumb-down.svg | 1 + .../.icons/material/thumb-up-outline.svg | 1 + docs/material/.icons/material/thumb-up.svg | 1 + .../.icons/material/thumbs-up-down.svg | 1 + .../.icons/material/ticket-account.svg | 1 + .../material/ticket-confirmation-outline.svg | 1 + .../.icons/material/ticket-confirmation.svg | 1 + .../.icons/material/ticket-outline.svg | 1 + .../.icons/material/ticket-percent.svg | 1 + docs/material/.icons/material/ticket.svg | 1 + docs/material/.icons/material/tie.svg | 1 + docs/material/.icons/material/tilde.svg | 1 + docs/material/.icons/material/timelapse.svg | 1 + .../material/timeline-alert-outline.svg | 1 + .../.icons/material/timeline-alert.svg | 1 + .../material/timeline-clock-outline.svg | 1 + .../.icons/material/timeline-clock.svg | 1 + .../.icons/material/timeline-help-outline.svg | 1 + .../.icons/material/timeline-help.svg | 1 + .../.icons/material/timeline-outline.svg | 1 + .../.icons/material/timeline-plus-outline.svg | 1 + .../.icons/material/timeline-plus.svg | 1 + .../.icons/material/timeline-text-outline.svg | 1 + .../.icons/material/timeline-text.svg | 1 + docs/material/.icons/material/timeline.svg | 1 + docs/material/.icons/material/timer-10.svg | 1 + docs/material/.icons/material/timer-3.svg | 1 + .../.icons/material/timer-off-outline.svg | 1 + docs/material/.icons/material/timer-off.svg | 1 + .../.icons/material/timer-outline.svg | 1 + .../.icons/material/timer-sand-empty.svg | 1 + .../.icons/material/timer-sand-full.svg | 1 + docs/material/.icons/material/timer-sand.svg | 1 + docs/material/.icons/material/timer.svg | 1 + docs/material/.icons/material/timetable.svg | 1 + docs/material/.icons/material/toaster-off.svg | 1 + .../material/.icons/material/toaster-oven.svg | 1 + docs/material/.icons/material/toaster.svg | 1 + .../material/toggle-switch-off-outline.svg | 1 + .../.icons/material/toggle-switch-off.svg | 1 + .../.icons/material/toggle-switch-outline.svg | 1 + .../.icons/material/toggle-switch.svg | 1 + docs/material/.icons/material/toilet.svg | 1 + .../.icons/material/toolbox-outline.svg | 1 + docs/material/.icons/material/toolbox.svg | 1 + docs/material/.icons/material/tools.svg | 1 + .../.icons/material/tooltip-account.svg | 1 + .../.icons/material/tooltip-edit-outline.svg | 1 + .../material/.icons/material/tooltip-edit.svg | 1 + .../.icons/material/tooltip-image-outline.svg | 1 + .../.icons/material/tooltip-image.svg | 1 + .../.icons/material/tooltip-outline.svg | 1 + .../.icons/material/tooltip-plus-outline.svg | 1 + .../material/.icons/material/tooltip-plus.svg | 1 + .../.icons/material/tooltip-text-outline.svg | 1 + .../material/.icons/material/tooltip-text.svg | 1 + docs/material/.icons/material/tooltip.svg | 1 + .../.icons/material/tooth-outline.svg | 1 + docs/material/.icons/material/tooth.svg | 1 + .../.icons/material/toothbrush-electric.svg | 1 + .../.icons/material/toothbrush-paste.svg | 1 + docs/material/.icons/material/toothbrush.svg | 1 + docs/material/.icons/material/tortoise.svg | 1 + docs/material/.icons/material/toslink.svg | 1 + docs/material/.icons/material/tournament.svg | 1 + docs/material/.icons/material/tow-truck.svg | 1 + docs/material/.icons/material/tower-beach.svg | 1 + docs/material/.icons/material/tower-fire.svg | 1 + .../material/toy-brick-marker-outline.svg | 1 + .../.icons/material/toy-brick-marker.svg | 1 + .../material/toy-brick-minus-outline.svg | 1 + .../.icons/material/toy-brick-minus.svg | 1 + .../.icons/material/toy-brick-outline.svg | 1 + .../material/toy-brick-plus-outline.svg | 1 + .../.icons/material/toy-brick-plus.svg | 1 + .../material/toy-brick-remove-outline.svg | 1 + .../.icons/material/toy-brick-remove.svg | 1 + .../material/toy-brick-search-outline.svg | 1 + .../.icons/material/toy-brick-search.svg | 1 + docs/material/.icons/material/toy-brick.svg | 1 + docs/material/.icons/material/track-light.svg | 1 + .../.icons/material/trackpad-lock.svg | 1 + docs/material/.icons/material/trackpad.svg | 1 + docs/material/.icons/material/tractor.svg | 1 + docs/material/.icons/material/trademark.svg | 1 + .../material/.icons/material/traffic-cone.svg | 1 + .../.icons/material/traffic-light.svg | 1 + docs/material/.icons/material/train-car.svg | 1 + .../.icons/material/train-variant.svg | 1 + docs/material/.icons/material/train.svg | 1 + docs/material/.icons/material/tram-side.svg | 1 + docs/material/.icons/material/tram.svg | 1 + .../.icons/material/transcribe-close.svg | 1 + docs/material/.icons/material/transcribe.svg | 1 + .../.icons/material/transfer-down.svg | 1 + .../.icons/material/transfer-left.svg | 1 + .../.icons/material/transfer-right.svg | 1 + docs/material/.icons/material/transfer-up.svg | 1 + docs/material/.icons/material/transfer.svg | 1 + .../material/transit-connection-variant.svg | 1 + .../.icons/material/transit-connection.svg | 1 + .../.icons/material/transit-detour.svg | 1 + .../.icons/material/transit-transfer.svg | 1 + .../.icons/material/transition-masked.svg | 1 + docs/material/.icons/material/transition.svg | 1 + .../.icons/material/translate-off.svg | 1 + docs/material/.icons/material/translate.svg | 1 + .../.icons/material/transmission-tower.svg | 1 + .../.icons/material/trash-can-outline.svg | 1 + docs/material/.icons/material/trash-can.svg | 1 + docs/material/.icons/material/tray-alert.svg | 1 + docs/material/.icons/material/tray-full.svg | 1 + docs/material/.icons/material/tray-minus.svg | 1 + docs/material/.icons/material/tray-plus.svg | 1 + docs/material/.icons/material/tray-remove.svg | 1 + docs/material/.icons/material/tray.svg | 1 + .../.icons/material/treasure-chest.svg | 1 + .../material/.icons/material/tree-outline.svg | 1 + docs/material/.icons/material/tree.svg | 1 + docs/material/.icons/material/trello.svg | 1 + .../.icons/material/trending-down.svg | 1 + .../.icons/material/trending-neutral.svg | 1 + docs/material/.icons/material/trending-up.svg | 1 + .../.icons/material/triangle-outline.svg | 1 + docs/material/.icons/material/triangle.svg | 1 + docs/material/.icons/material/triforce.svg | 1 + .../material/.icons/material/trophy-award.svg | 1 + .../.icons/material/trophy-broken.svg | 1 + .../.icons/material/trophy-outline.svg | 1 + .../material/trophy-variant-outline.svg | 1 + .../.icons/material/trophy-variant.svg | 1 + docs/material/.icons/material/trophy.svg | 1 + .../.icons/material/truck-check-outline.svg | 1 + docs/material/.icons/material/truck-check.svg | 1 + .../material/truck-delivery-outline.svg | 1 + .../.icons/material/truck-delivery.svg | 1 + .../.icons/material/truck-fast-outline.svg | 1 + docs/material/.icons/material/truck-fast.svg | 1 + .../.icons/material/truck-outline.svg | 1 + .../.icons/material/truck-trailer.svg | 1 + docs/material/.icons/material/truck.svg | 1 + docs/material/.icons/material/trumpet.svg | 1 + .../.icons/material/tshirt-crew-outline.svg | 1 + docs/material/.icons/material/tshirt-crew.svg | 1 + .../.icons/material/tshirt-v-outline.svg | 1 + docs/material/.icons/material/tshirt-v.svg | 1 + .../.icons/material/tumble-dryer-alert.svg | 1 + .../.icons/material/tumble-dryer-off.svg | 1 + .../material/.icons/material/tumble-dryer.svg | 1 + .../.icons/material/tune-vertical.svg | 1 + docs/material/.icons/material/tune.svg | 1 + .../.icons/material/turnstile-outline.svg | 1 + docs/material/.icons/material/turnstile.svg | 1 + docs/material/.icons/material/turtle.svg | 1 + docs/material/.icons/material/twitch.svg | 1 + .../.icons/material/twitter-retweet.svg | 1 + docs/material/.icons/material/twitter.svg | 1 + .../material/two-factor-authentication.svg | 1 + docs/material/.icons/material/typewriter.svg | 1 + docs/material/.icons/material/ubisoft.svg | 1 + docs/material/.icons/material/ubuntu.svg | 1 + docs/material/.icons/material/ufo-outline.svg | 1 + docs/material/.icons/material/ufo.svg | 1 + .../.icons/material/ultra-high-definition.svg | 1 + docs/material/.icons/material/umbraco.svg | 1 + .../material/umbrella-closed-outline.svg | 1 + .../material/umbrella-closed-variant.svg | 1 + .../.icons/material/umbrella-closed.svg | 1 + .../.icons/material/umbrella-outline.svg | 1 + docs/material/.icons/material/umbrella.svg | 1 + .../material/.icons/material/undo-variant.svg | 1 + docs/material/.icons/material/undo.svg | 1 + .../material/unfold-less-horizontal.svg | 1 + .../.icons/material/unfold-less-vertical.svg | 1 + .../material/unfold-more-horizontal.svg | 1 + .../.icons/material/unfold-more-vertical.svg | 1 + docs/material/.icons/material/ungroup.svg | 1 + docs/material/.icons/material/unicode.svg | 1 + docs/material/.icons/material/unity.svg | 1 + docs/material/.icons/material/unreal.svg | 1 + docs/material/.icons/material/untappd.svg | 1 + docs/material/.icons/material/update.svg | 1 + .../.icons/material/upload-lock-outline.svg | 1 + docs/material/.icons/material/upload-lock.svg | 1 + .../.icons/material/upload-multiple.svg | 1 + .../material/upload-network-outline.svg | 1 + .../.icons/material/upload-network.svg | 1 + .../.icons/material/upload-off-outline.svg | 1 + docs/material/.icons/material/upload-off.svg | 1 + .../.icons/material/upload-outline.svg | 1 + docs/material/.icons/material/upload.svg | 1 + .../material/usb-flash-drive-outline.svg | 1 + .../.icons/material/usb-flash-drive.svg | 1 + docs/material/.icons/material/usb-port.svg | 1 + docs/material/.icons/material/usb.svg | 1 + .../material/.icons/material/valve-closed.svg | 1 + docs/material/.icons/material/valve-open.svg | 1 + docs/material/.icons/material/valve.svg | 1 + .../.icons/material/van-passenger.svg | 1 + docs/material/.icons/material/van-utility.svg | 1 + docs/material/.icons/material/vanish.svg | 1 + .../material/.icons/material/vanity-light.svg | 1 + .../material/.icons/material/variable-box.svg | 1 + docs/material/.icons/material/variable.svg | 1 + .../.icons/material/vector-arrange-above.svg | 1 + .../.icons/material/vector-arrange-below.svg | 1 + .../.icons/material/vector-bezier.svg | 1 + .../.icons/material/vector-circle-variant.svg | 1 + .../.icons/material/vector-circle.svg | 1 + .../.icons/material/vector-combine.svg | 1 + .../material/.icons/material/vector-curve.svg | 1 + .../.icons/material/vector-difference-ab.svg | 1 + .../.icons/material/vector-difference-ba.svg | 1 + .../.icons/material/vector-difference.svg | 1 + .../.icons/material/vector-ellipse.svg | 1 + .../.icons/material/vector-intersection.svg | 1 + docs/material/.icons/material/vector-line.svg | 1 + docs/material/.icons/material/vector-link.svg | 1 + .../material/.icons/material/vector-point.svg | 1 + .../.icons/material/vector-polygon.svg | 1 + .../.icons/material/vector-polyline-edit.svg | 1 + .../.icons/material/vector-polyline-minus.svg | 1 + .../.icons/material/vector-polyline-plus.svg | 1 + .../material/vector-polyline-remove.svg | 1 + .../.icons/material/vector-polyline.svg | 1 + .../.icons/material/vector-radius.svg | 1 + .../.icons/material/vector-rectangle.svg | 1 + .../.icons/material/vector-selection.svg | 1 + .../.icons/material/vector-square.svg | 1 + .../.icons/material/vector-triangle.svg | 1 + .../material/.icons/material/vector-union.svg | 1 + docs/material/.icons/material/vhs.svg | 1 + docs/material/.icons/material/vibrate-off.svg | 1 + docs/material/.icons/material/vibrate.svg | 1 + .../material/.icons/material/video-3d-off.svg | 1 + .../.icons/material/video-3d-variant.svg | 1 + docs/material/.icons/material/video-3d.svg | 1 + .../material/.icons/material/video-4k-box.svg | 1 + .../.icons/material/video-account.svg | 1 + .../.icons/material/video-box-off.svg | 1 + docs/material/.icons/material/video-box.svg | 1 + .../.icons/material/video-check-outline.svg | 1 + docs/material/.icons/material/video-check.svg | 1 + docs/material/.icons/material/video-image.svg | 1 + .../.icons/material/video-input-antenna.svg | 1 + .../.icons/material/video-input-component.svg | 1 + .../.icons/material/video-input-hdmi.svg | 1 + .../.icons/material/video-input-scart.svg | 1 + .../.icons/material/video-input-svideo.svg | 1 + .../.icons/material/video-minus-outline.svg | 1 + docs/material/.icons/material/video-minus.svg | 1 + .../.icons/material/video-off-outline.svg | 1 + docs/material/.icons/material/video-off.svg | 1 + .../.icons/material/video-outline.svg | 1 + .../.icons/material/video-plus-outline.svg | 1 + docs/material/.icons/material/video-plus.svg | 1 + .../.icons/material/video-stabilization.svg | 1 + .../.icons/material/video-switch-outline.svg | 1 + .../material/.icons/material/video-switch.svg | 1 + .../.icons/material/video-vintage.svg | 1 + .../material/video-wireless-outline.svg | 1 + .../.icons/material/video-wireless.svg | 1 + docs/material/.icons/material/video.svg | 1 + .../.icons/material/view-agenda-outline.svg | 1 + docs/material/.icons/material/view-agenda.svg | 1 + docs/material/.icons/material/view-array.svg | 1 + .../.icons/material/view-carousel.svg | 1 + docs/material/.icons/material/view-column.svg | 1 + docs/material/.icons/material/view-comfy.svg | 1 + .../.icons/material/view-compact-outline.svg | 1 + .../material/.icons/material/view-compact.svg | 1 + .../material/view-dashboard-outline.svg | 1 + .../material/view-dashboard-variant.svg | 1 + .../.icons/material/view-dashboard.svg | 1 + docs/material/.icons/material/view-day.svg | 1 + .../.icons/material/view-grid-outline.svg | 1 + .../material/view-grid-plus-outline.svg | 1 + .../.icons/material/view-grid-plus.svg | 1 + docs/material/.icons/material/view-grid.svg | 1 + .../.icons/material/view-headline.svg | 1 + docs/material/.icons/material/view-list.svg | 1 + docs/material/.icons/material/view-module.svg | 1 + .../.icons/material/view-parallel.svg | 1 + docs/material/.icons/material/view-quilt.svg | 1 + .../.icons/material/view-sequential.svg | 1 + .../.icons/material/view-split-horizontal.svg | 1 + .../.icons/material/view-split-vertical.svg | 1 + docs/material/.icons/material/view-stream.svg | 1 + docs/material/.icons/material/view-week.svg | 1 + docs/material/.icons/material/vimeo.svg | 1 + docs/material/.icons/material/violin.svg | 1 + .../.icons/material/virtual-reality.svg | 1 + .../.icons/material/virus-outline.svg | 1 + docs/material/.icons/material/virus.svg | 1 + docs/material/.icons/material/vk.svg | 1 + docs/material/.icons/material/vlc.svg | 1 + docs/material/.icons/material/voice-off.svg | 1 + docs/material/.icons/material/voicemail.svg | 1 + docs/material/.icons/material/volleyball.svg | 1 + docs/material/.icons/material/volume-high.svg | 1 + docs/material/.icons/material/volume-low.svg | 1 + .../.icons/material/volume-medium.svg | 1 + .../material/.icons/material/volume-minus.svg | 1 + docs/material/.icons/material/volume-mute.svg | 1 + docs/material/.icons/material/volume-off.svg | 1 + docs/material/.icons/material/volume-plus.svg | 1 + .../.icons/material/volume-source.svg | 1 + .../.icons/material/volume-variant-off.svg | 1 + .../.icons/material/volume-vibrate.svg | 1 + .../material/.icons/material/vote-outline.svg | 1 + docs/material/.icons/material/vote.svg | 1 + docs/material/.icons/material/vpn.svg | 1 + docs/material/.icons/material/vuejs.svg | 1 + docs/material/.icons/material/vuetify.svg | 1 + docs/material/.icons/material/walk.svg | 1 + .../material/wall-sconce-flat-variant.svg | 1 + .../.icons/material/wall-sconce-flat.svg | 1 + .../material/wall-sconce-round-variant.svg | 1 + .../.icons/material/wall-sconce-round.svg | 1 + docs/material/.icons/material/wall-sconce.svg | 1 + docs/material/.icons/material/wall.svg | 1 + .../.icons/material/wallet-giftcard.svg | 1 + .../.icons/material/wallet-membership.svg | 1 + .../.icons/material/wallet-outline.svg | 1 + .../.icons/material/wallet-plus-outline.svg | 1 + docs/material/.icons/material/wallet-plus.svg | 1 + .../.icons/material/wallet-travel.svg | 1 + docs/material/.icons/material/wallet.svg | 1 + docs/material/.icons/material/wallpaper.svg | 1 + docs/material/.icons/material/wan.svg | 1 + .../.icons/material/wardrobe-outline.svg | 1 + docs/material/.icons/material/wardrobe.svg | 1 + docs/material/.icons/material/warehouse.svg | 1 + .../.icons/material/washing-machine-alert.svg | 1 + .../.icons/material/washing-machine-off.svg | 1 + .../.icons/material/washing-machine.svg | 1 + .../.icons/material/watch-export-variant.svg | 1 + .../material/.icons/material/watch-export.svg | 1 + .../.icons/material/watch-import-variant.svg | 1 + .../material/.icons/material/watch-import.svg | 1 + .../.icons/material/watch-variant.svg | 1 + .../.icons/material/watch-vibrate-off.svg | 1 + .../.icons/material/watch-vibrate.svg | 1 + docs/material/.icons/material/watch.svg | 1 + .../.icons/material/water-boiler-alert.svg | 1 + .../.icons/material/water-boiler-off.svg | 1 + .../material/.icons/material/water-boiler.svg | 1 + docs/material/.icons/material/water-off.svg | 1 + .../.icons/material/water-outline.svg | 1 + .../.icons/material/water-percent.svg | 1 + docs/material/.icons/material/water-polo.svg | 1 + .../.icons/material/water-pump-off.svg | 1 + docs/material/.icons/material/water-pump.svg | 1 + .../.icons/material/water-well-outline.svg | 1 + docs/material/.icons/material/water-well.svg | 1 + docs/material/.icons/material/water.svg | 1 + docs/material/.icons/material/watermark.svg | 1 + docs/material/.icons/material/wave.svg | 1 + docs/material/.icons/material/waves.svg | 1 + docs/material/.icons/material/waze.svg | 1 + .../.icons/material/weather-cloudy-alert.svg | 1 + .../material/weather-cloudy-arrow-right.svg | 1 + .../.icons/material/weather-cloudy.svg | 1 + docs/material/.icons/material/weather-fog.svg | 1 + .../material/.icons/material/weather-hail.svg | 1 + .../material/.icons/material/weather-hazy.svg | 1 + .../.icons/material/weather-hurricane.svg | 1 + .../material/weather-lightning-rainy.svg | 1 + .../.icons/material/weather-lightning.svg | 1 + .../material/weather-night-partly-cloudy.svg | 1 + .../.icons/material/weather-night.svg | 1 + .../.icons/material/weather-partly-cloudy.svg | 1 + .../material/weather-partly-lightning.svg | 1 + .../.icons/material/weather-partly-rainy.svg | 1 + .../material/weather-partly-snowy-rainy.svg | 1 + .../.icons/material/weather-partly-snowy.svg | 1 + .../.icons/material/weather-pouring.svg | 1 + .../.icons/material/weather-rainy.svg | 1 + .../.icons/material/weather-snowy-heavy.svg | 1 + .../.icons/material/weather-snowy-rainy.svg | 1 + .../.icons/material/weather-snowy.svg | 1 + .../.icons/material/weather-sunny-alert.svg | 1 + .../.icons/material/weather-sunny.svg | 1 + .../.icons/material/weather-sunset-down.svg | 1 + .../.icons/material/weather-sunset-up.svg | 1 + .../.icons/material/weather-sunset.svg | 1 + .../.icons/material/weather-tornado.svg | 1 + .../.icons/material/weather-windy-variant.svg | 1 + .../.icons/material/weather-windy.svg | 1 + docs/material/.icons/material/web-box.svg | 1 + docs/material/.icons/material/web-clock.svg | 1 + docs/material/.icons/material/web.svg | 1 + docs/material/.icons/material/webcam.svg | 1 + docs/material/.icons/material/webhook.svg | 1 + docs/material/.icons/material/webpack.svg | 1 + docs/material/.icons/material/webrtc.svg | 1 + docs/material/.icons/material/wechat.svg | 1 + docs/material/.icons/material/weight-gram.svg | 1 + .../.icons/material/weight-kilogram.svg | 1 + .../.icons/material/weight-lifter.svg | 1 + .../material/.icons/material/weight-pound.svg | 1 + docs/material/.icons/material/weight.svg | 1 + docs/material/.icons/material/whatsapp.svg | 1 + .../material/wheelchair-accessibility.svg | 1 + .../.icons/material/whistle-outline.svg | 1 + docs/material/.icons/material/whistle.svg | 1 + .../.icons/material/white-balance-auto.svg | 1 + .../material/white-balance-incandescent.svg | 1 + .../material/white-balance-iridescent.svg | 1 + .../.icons/material/white-balance-sunny.svg | 1 + .../.icons/material/widgets-outline.svg | 1 + docs/material/.icons/material/widgets.svg | 1 + docs/material/.icons/material/wifi-off.svg | 1 + docs/material/.icons/material/wifi-star.svg | 1 + .../.icons/material/wifi-strength-1-alert.svg | 1 + .../.icons/material/wifi-strength-1-lock.svg | 1 + .../.icons/material/wifi-strength-1.svg | 1 + .../.icons/material/wifi-strength-2-alert.svg | 1 + .../.icons/material/wifi-strength-2-lock.svg | 1 + .../.icons/material/wifi-strength-2.svg | 1 + .../.icons/material/wifi-strength-3-alert.svg | 1 + .../.icons/material/wifi-strength-3-lock.svg | 1 + .../.icons/material/wifi-strength-3.svg | 1 + .../.icons/material/wifi-strength-4-alert.svg | 1 + .../.icons/material/wifi-strength-4-lock.svg | 1 + .../.icons/material/wifi-strength-4.svg | 1 + .../material/wifi-strength-alert-outline.svg | 1 + .../material/wifi-strength-lock-outline.svg | 1 + .../material/wifi-strength-off-outline.svg | 1 + .../.icons/material/wifi-strength-off.svg | 1 + .../.icons/material/wifi-strength-outline.svg | 1 + docs/material/.icons/material/wifi.svg | 1 + docs/material/.icons/material/wikipedia.svg | 1 + .../material/.icons/material/wind-turbine.svg | 1 + .../material/.icons/material/window-close.svg | 1 + .../.icons/material/window-closed-variant.svg | 1 + .../.icons/material/window-closed.svg | 1 + .../.icons/material/window-maximize.svg | 1 + .../.icons/material/window-minimize.svg | 1 + .../.icons/material/window-open-variant.svg | 1 + docs/material/.icons/material/window-open.svg | 1 + .../.icons/material/window-restore.svg | 1 + .../.icons/material/window-shutter-alert.svg | 1 + .../.icons/material/window-shutter-open.svg | 1 + .../.icons/material/window-shutter.svg | 1 + docs/material/.icons/material/wiper-wash.svg | 1 + docs/material/.icons/material/wiper.svg | 1 + docs/material/.icons/material/wordpress.svg | 1 + .../.icons/material/wrap-disabled.svg | 1 + docs/material/.icons/material/wrap.svg | 1 + .../.icons/material/wrench-outline.svg | 1 + docs/material/.icons/material/wrench.svg | 1 + .../.icons/material/xamarin-outline.svg | 1 + docs/material/.icons/material/xamarin.svg | 1 + docs/material/.icons/material/xing.svg | 1 + docs/material/.icons/material/xml.svg | 1 + docs/material/.icons/material/xmpp.svg | 1 + .../material/.icons/material/y-combinator.svg | 1 + docs/material/.icons/material/yahoo.svg | 1 + docs/material/.icons/material/yeast.svg | 1 + docs/material/.icons/material/yin-yang.svg | 1 + docs/material/.icons/material/yoga.svg | 1 + .../.icons/material/youtube-gaming.svg | 1 + .../.icons/material/youtube-studio.svg | 1 + .../.icons/material/youtube-subscription.svg | 1 + docs/material/.icons/material/youtube-tv.svg | 1 + docs/material/.icons/material/youtube.svg | 1 + docs/material/.icons/material/z-wave.svg | 1 + docs/material/.icons/material/zend.svg | 1 + docs/material/.icons/material/zigbee.svg | 1 + .../.icons/material/zip-box-outline.svg | 1 + docs/material/.icons/material/zip-box.svg | 1 + docs/material/.icons/material/zip-disk.svg | 1 + .../.icons/material/zodiac-aquarius.svg | 1 + .../material/.icons/material/zodiac-aries.svg | 1 + .../.icons/material/zodiac-cancer.svg | 1 + .../.icons/material/zodiac-capricorn.svg | 1 + .../.icons/material/zodiac-gemini.svg | 1 + docs/material/.icons/material/zodiac-leo.svg | 1 + .../material/.icons/material/zodiac-libra.svg | 1 + .../.icons/material/zodiac-pisces.svg | 1 + .../.icons/material/zodiac-sagittarius.svg | 1 + .../.icons/material/zodiac-scorpio.svg | 1 + .../.icons/material/zodiac-taurus.svg | 1 + .../material/.icons/material/zodiac-virgo.svg | 1 + docs/material/.icons/octicons/LICENSE | 21 ++ docs/material/.icons/octicons/alert.svg | 1 + docs/material/.icons/octicons/archive.svg | 1 + docs/material/.icons/octicons/arrow-both.svg | 1 + docs/material/.icons/octicons/arrow-down.svg | 1 + docs/material/.icons/octicons/arrow-left.svg | 1 + docs/material/.icons/octicons/arrow-right.svg | 1 + .../.icons/octicons/arrow-small-down.svg | 1 + .../.icons/octicons/arrow-small-left.svg | 1 + .../.icons/octicons/arrow-small-right.svg | 1 + .../.icons/octicons/arrow-small-up.svg | 1 + docs/material/.icons/octicons/arrow-up.svg | 1 + docs/material/.icons/octicons/beaker.svg | 1 + docs/material/.icons/octicons/bell.svg | 1 + docs/material/.icons/octicons/bold.svg | 1 + docs/material/.icons/octicons/book.svg | 1 + docs/material/.icons/octicons/bookmark.svg | 1 + docs/material/.icons/octicons/briefcase.svg | 1 + docs/material/.icons/octicons/broadcast.svg | 1 + docs/material/.icons/octicons/browser.svg | 1 + docs/material/.icons/octicons/bug.svg | 1 + docs/material/.icons/octicons/calendar.svg | 1 + docs/material/.icons/octicons/check.svg | 1 + docs/material/.icons/octicons/checklist.svg | 1 + .../material/.icons/octicons/chevron-down.svg | 1 + .../material/.icons/octicons/chevron-left.svg | 1 + .../.icons/octicons/chevron-right.svg | 1 + docs/material/.icons/octicons/chevron-up.svg | 1 + .../material/.icons/octicons/circle-slash.svg | 1 + .../.icons/octicons/circuit-board.svg | 1 + docs/material/.icons/octicons/clippy.svg | 1 + docs/material/.icons/octicons/clock.svg | 1 + .../.icons/octicons/cloud-download.svg | 1 + .../material/.icons/octicons/cloud-upload.svg | 1 + docs/material/.icons/octicons/code.svg | 1 + .../.icons/octicons/comment-discussion.svg | 1 + docs/material/.icons/octicons/comment.svg | 1 + docs/material/.icons/octicons/credit-card.svg | 1 + docs/material/.icons/octicons/dash.svg | 1 + docs/material/.icons/octicons/dashboard.svg | 1 + docs/material/.icons/octicons/database.svg | 1 + docs/material/.icons/octicons/dependent.svg | 1 + .../.icons/octicons/desktop-download.svg | 1 + .../.icons/octicons/device-camera-video.svg | 1 + .../.icons/octicons/device-camera.svg | 1 + .../.icons/octicons/device-desktop.svg | 1 + .../.icons/octicons/device-mobile.svg | 1 + docs/material/.icons/octicons/diff-added.svg | 1 + .../material/.icons/octicons/diff-ignored.svg | 1 + .../.icons/octicons/diff-modified.svg | 1 + .../material/.icons/octicons/diff-removed.svg | 1 + .../material/.icons/octicons/diff-renamed.svg | 1 + docs/material/.icons/octicons/diff.svg | 1 + docs/material/.icons/octicons/ellipsis.svg | 1 + docs/material/.icons/octicons/eye-closed.svg | 1 + docs/material/.icons/octicons/eye.svg | 1 + docs/material/.icons/octicons/file-binary.svg | 1 + docs/material/.icons/octicons/file-code.svg | 1 + .../.icons/octicons/file-directory.svg | 1 + docs/material/.icons/octicons/file-media.svg | 1 + docs/material/.icons/octicons/file-pdf.svg | 1 + .../.icons/octicons/file-submodule.svg | 1 + .../octicons/file-symlink-directory.svg | 1 + .../.icons/octicons/file-symlink-file.svg | 1 + docs/material/.icons/octicons/file-zip.svg | 1 + docs/material/.icons/octicons/file.svg | 1 + docs/material/.icons/octicons/flame.svg | 1 + docs/material/.icons/octicons/fold-down.svg | 1 + docs/material/.icons/octicons/fold-up.svg | 1 + docs/material/.icons/octicons/fold.svg | 1 + docs/material/.icons/octicons/gear.svg | 1 + docs/material/.icons/octicons/gift.svg | 1 + docs/material/.icons/octicons/gist-secret.svg | 1 + docs/material/.icons/octicons/gist.svg | 1 + docs/material/.icons/octicons/git-branch.svg | 1 + docs/material/.icons/octicons/git-commit.svg | 1 + docs/material/.icons/octicons/git-compare.svg | 1 + docs/material/.icons/octicons/git-merge.svg | 1 + .../.icons/octicons/git-pull-request.svg | 1 + .../.icons/octicons/github-action.svg | 1 + docs/material/.icons/octicons/globe.svg | 1 + docs/material/.icons/octicons/grabber.svg | 1 + docs/material/.icons/octicons/graph.svg | 1 + .../.icons/octicons/heart-outline.svg | 1 + docs/material/.icons/octicons/heart.svg | 1 + docs/material/.icons/octicons/history.svg | 1 + docs/material/.icons/octicons/home.svg | 1 + .../.icons/octicons/horizontal-rule.svg | 1 + docs/material/.icons/octicons/hubot.svg | 1 + docs/material/.icons/octicons/inbox.svg | 1 + docs/material/.icons/octicons/infinity.svg | 1 + docs/material/.icons/octicons/info.svg | 1 + .../.icons/octicons/internal-repo.svg | 1 + .../material/.icons/octicons/issue-closed.svg | 1 + .../material/.icons/octicons/issue-opened.svg | 1 + .../.icons/octicons/issue-reopened.svg | 1 + docs/material/.icons/octicons/italic.svg | 1 + docs/material/.icons/octicons/jersey.svg | 1 + .../.icons/octicons/kebab-horizontal.svg | 1 + .../.icons/octicons/kebab-vertical.svg | 1 + docs/material/.icons/octicons/key.svg | 1 + docs/material/.icons/octicons/keyboard.svg | 1 + docs/material/.icons/octicons/law.svg | 1 + docs/material/.icons/octicons/light-bulb.svg | 1 + .../.icons/octicons/line-arrow-down.svg | 1 + .../.icons/octicons/line-arrow-left.svg | 1 + .../.icons/octicons/line-arrow-right.svg | 1 + .../.icons/octicons/line-arrow-up.svg | 1 + .../.icons/octicons/link-external.svg | 1 + docs/material/.icons/octicons/link.svg | 1 + .../material/.icons/octicons/list-ordered.svg | 1 + .../.icons/octicons/list-unordered.svg | 1 + docs/material/.icons/octicons/location.svg | 1 + docs/material/.icons/octicons/lock.svg | 1 + docs/material/.icons/octicons/logo-gist.svg | 1 + docs/material/.icons/octicons/logo-github.svg | 1 + docs/material/.icons/octicons/mail-read.svg | 1 + docs/material/.icons/octicons/mail.svg | 1 + docs/material/.icons/octicons/mark-github.svg | 1 + docs/material/.icons/octicons/markdown.svg | 1 + docs/material/.icons/octicons/megaphone.svg | 1 + docs/material/.icons/octicons/mention.svg | 1 + docs/material/.icons/octicons/milestone.svg | 1 + docs/material/.icons/octicons/mirror.svg | 1 + .../material/.icons/octicons/mortar-board.svg | 1 + docs/material/.icons/octicons/mute.svg | 1 + docs/material/.icons/octicons/no-newline.svg | 1 + docs/material/.icons/octicons/north-star.svg | 1 + docs/material/.icons/octicons/note.svg | 1 + docs/material/.icons/octicons/octoface.svg | 1 + .../material/.icons/octicons/organization.svg | 1 + docs/material/.icons/octicons/package.svg | 1 + docs/material/.icons/octicons/paintcan.svg | 1 + docs/material/.icons/octicons/pencil.svg | 1 + docs/material/.icons/octicons/person.svg | 1 + docs/material/.icons/octicons/pin.svg | 1 + docs/material/.icons/octicons/play.svg | 1 + docs/material/.icons/octicons/plug.svg | 1 + docs/material/.icons/octicons/plus-small.svg | 1 + docs/material/.icons/octicons/plus.svg | 1 + .../.icons/octicons/primitive-dot-stroke.svg | 1 + .../.icons/octicons/primitive-dot.svg | 1 + .../.icons/octicons/primitive-square.svg | 1 + docs/material/.icons/octicons/project.svg | 1 + docs/material/.icons/octicons/pulse.svg | 1 + docs/material/.icons/octicons/question.svg | 1 + docs/material/.icons/octicons/quote.svg | 1 + docs/material/.icons/octicons/radio-tower.svg | 1 + docs/material/.icons/octicons/reply.svg | 1 + docs/material/.icons/octicons/repo-clone.svg | 1 + .../.icons/octicons/repo-force-push.svg | 1 + docs/material/.icons/octicons/repo-forked.svg | 1 + docs/material/.icons/octicons/repo-pull.svg | 1 + docs/material/.icons/octicons/repo-push.svg | 1 + .../.icons/octicons/repo-template-private.svg | 1 + .../.icons/octicons/repo-template.svg | 1 + docs/material/.icons/octicons/repo.svg | 1 + docs/material/.icons/octicons/report.svg | 1 + .../.icons/octicons/request-changes.svg | 1 + docs/material/.icons/octicons/rocket.svg | 1 + docs/material/.icons/octicons/rss.svg | 1 + docs/material/.icons/octicons/ruby.svg | 1 + docs/material/.icons/octicons/saved.svg | 1 + docs/material/.icons/octicons/screen-full.svg | 1 + .../.icons/octicons/screen-normal.svg | 1 + docs/material/.icons/octicons/search.svg | 1 + docs/material/.icons/octicons/server.svg | 1 + docs/material/.icons/octicons/settings.svg | 1 + .../material/.icons/octicons/shield-check.svg | 1 + docs/material/.icons/octicons/shield-lock.svg | 1 + docs/material/.icons/octicons/shield-x.svg | 1 + docs/material/.icons/octicons/shield.svg | 1 + docs/material/.icons/octicons/sign-in.svg | 1 + docs/material/.icons/octicons/sign-out.svg | 1 + docs/material/.icons/octicons/skip.svg | 1 + docs/material/.icons/octicons/smiley.svg | 1 + docs/material/.icons/octicons/squirrel.svg | 1 + docs/material/.icons/octicons/star.svg | 1 + docs/material/.icons/octicons/stop.svg | 1 + docs/material/.icons/octicons/sync.svg | 1 + docs/material/.icons/octicons/tag.svg | 1 + docs/material/.icons/octicons/tasklist.svg | 1 + docs/material/.icons/octicons/telescope.svg | 1 + docs/material/.icons/octicons/terminal.svg | 1 + docs/material/.icons/octicons/text-size.svg | 1 + docs/material/.icons/octicons/three-bars.svg | 1 + docs/material/.icons/octicons/thumbsdown.svg | 1 + docs/material/.icons/octicons/thumbsup.svg | 1 + docs/material/.icons/octicons/tools.svg | 1 + docs/material/.icons/octicons/trashcan.svg | 1 + .../.icons/octicons/triangle-down.svg | 1 + .../.icons/octicons/triangle-left.svg | 1 + .../.icons/octicons/triangle-right.svg | 1 + docs/material/.icons/octicons/triangle-up.svg | 1 + docs/material/.icons/octicons/unfold.svg | 1 + docs/material/.icons/octicons/unmute.svg | 1 + docs/material/.icons/octicons/unsaved.svg | 1 + docs/material/.icons/octicons/unverified.svg | 1 + docs/material/.icons/octicons/verified.svg | 1 + docs/material/.icons/octicons/versions.svg | 1 + docs/material/.icons/octicons/watch.svg | 1 + .../material/.icons/octicons/workflow-all.svg | 1 + docs/material/.icons/octicons/workflow.svg | 1 + docs/material/.icons/octicons/x.svg | 1 + docs/material/.icons/octicons/zap.svg | 1 + docs/material/404.html | 7 + docs/material/__init__.py | 0 docs/material/assets/images/favicon.png | Bin 0 -> 1870 bytes .../assets/javascripts/bundle.8566d47a.min.js | 2 + .../javascripts/bundle.8566d47a.min.js.map | 1 + .../javascripts/lunr/min/lunr.ar.min.js | 1 + .../javascripts/lunr/min/lunr.da.min.js | 18 ++ .../javascripts/lunr/min/lunr.de.min.js | 18 ++ .../javascripts/lunr/min/lunr.du.min.js | 18 ++ .../javascripts/lunr/min/lunr.es.min.js | 18 ++ .../javascripts/lunr/min/lunr.fi.min.js | 18 ++ .../javascripts/lunr/min/lunr.fr.min.js | 18 ++ .../javascripts/lunr/min/lunr.hu.min.js | 18 ++ .../javascripts/lunr/min/lunr.it.min.js | 18 ++ .../javascripts/lunr/min/lunr.ja.min.js | 1 + .../javascripts/lunr/min/lunr.jp.min.js | 1 + .../javascripts/lunr/min/lunr.multi.min.js | 1 + .../javascripts/lunr/min/lunr.nl.min.js | 18 ++ .../javascripts/lunr/min/lunr.no.min.js | 18 ++ .../javascripts/lunr/min/lunr.pt.min.js | 18 ++ .../javascripts/lunr/min/lunr.ro.min.js | 18 ++ .../javascripts/lunr/min/lunr.ru.min.js | 18 ++ .../lunr/min/lunr.stemmer.support.min.js | 1 + .../javascripts/lunr/min/lunr.sv.min.js | 18 ++ .../javascripts/lunr/min/lunr.tr.min.js | 18 ++ .../javascripts/lunr/min/lunr.vi.min.js | 1 + .../assets/javascripts/lunr/tinyseg.min.js | 1 + .../assets/javascripts/vendor.809e24aa.min.js | 31 ++ .../javascripts/vendor.809e24aa.min.js.map | 1 + .../javascripts/worker/search.f6ebf1dc.min.js | 59 ++++ .../worker/search.f6ebf1dc.min.js.map | 1 + docs/material/assets/manifest.json | 12 + .../assets/stylesheets/main.127eade9.min.css | 3 + .../stylesheets/main.127eade9.min.css.map | 1 + .../stylesheets/palette.c929de0b.min.css | 3 + .../stylesheets/palette.c929de0b.min.css.map | 1 + docs/material/base.html | 213 ++++++++++++++ docs/material/base.html.bak | 215 ++++++++++++++ docs/material/main.html | 4 + docs/material/mkdocs_theme.yml | 68 +++++ docs/material/overrides/home.html | 66 +++++ docs/material/overrides/main.html | 25 ++ docs/material/partials/footer.html | 58 ++++ docs/material/partials/header.html | 44 +++ docs/material/partials/hero.html | 12 + .../partials/integrations/analytics.html | 7 + .../partials/integrations/disqus.html | 12 + docs/material/partials/language.html | 6 + docs/material/partials/language/af.html | 23 ++ docs/material/partials/language/ar.html | 24 ++ docs/material/partials/language/ca.html | 22 ++ docs/material/partials/language/cs.html | 23 ++ docs/material/partials/language/da.html | 23 ++ docs/material/partials/language/de.html | 24 ++ docs/material/partials/language/en.html | 32 ++ docs/material/partials/language/es.html | 28 ++ docs/material/partials/language/et.html | 23 ++ docs/material/partials/language/fa.html | 24 ++ docs/material/partials/language/fi.html | 23 ++ docs/material/partials/language/fr.html | 23 ++ docs/material/partials/language/gl.html | 23 ++ docs/material/partials/language/gr.html | 23 ++ docs/material/partials/language/he.html | 24 ++ docs/material/partials/language/hi.html | 23 ++ docs/material/partials/language/hr.html | 23 ++ docs/material/partials/language/hu.html | 23 ++ docs/material/partials/language/id.html | 23 ++ docs/material/partials/language/it.html | 23 ++ docs/material/partials/language/ja.html | 24 ++ docs/material/partials/language/kr.html | 22 ++ docs/material/partials/language/my.html | 27 ++ docs/material/partials/language/nl.html | 23 ++ docs/material/partials/language/nn.html | 23 ++ docs/material/partials/language/no.html | 23 ++ docs/material/partials/language/pl.html | 23 ++ docs/material/partials/language/pt.html | 23 ++ docs/material/partials/language/ro.html | 23 ++ docs/material/partials/language/ru.html | 23 ++ docs/material/partials/language/sh.html | 22 ++ docs/material/partials/language/si.html | 22 ++ docs/material/partials/language/sk.html | 22 ++ docs/material/partials/language/sr.html | 23 ++ docs/material/partials/language/sv.html | 23 ++ docs/material/partials/language/th.html | 21 ++ docs/material/partials/language/tr.html | 23 ++ docs/material/partials/language/uk.html | 23 ++ docs/material/partials/language/vi.html | 22 ++ docs/material/partials/language/zh-Hant.html | 24 ++ docs/material/partials/language/zh-TW.html | 24 ++ docs/material/partials/language/zh.html | 24 ++ docs/material/partials/logo.html | 9 + docs/material/partials/nav-item.html | 66 +++++ docs/material/partials/nav.html | 23 ++ docs/material/partials/palette.html | 42 +++ docs/material/partials/search.html | 29 ++ docs/material/partials/social.html | 17 ++ docs/material/partials/source-date.html | 15 + docs/material/partials/source-link.html | 14 + docs/material/partials/source.html | 13 + docs/material/partials/tabs-item.html | 34 +++ docs/material/partials/tabs.html | 16 + docs/material/partials/toc-item.html | 17 ++ docs/material/partials/toc.html | 23 ++ docs/mkdocs_en.yml | 273 +++++++++--------- 7048 files changed, 9575 insertions(+), 129 deletions(-) create mode 100644 docs/en_us/index.md create mode 100644 docs/material/.icons/fontawesome/LICENSE.txt create mode 100644 docs/material/.icons/fontawesome/brands/500px.svg create mode 100644 docs/material/.icons/fontawesome/brands/accessible-icon.svg create mode 100644 docs/material/.icons/fontawesome/brands/accusoft.svg create mode 100644 docs/material/.icons/fontawesome/brands/acquisitions-incorporated.svg create mode 100644 docs/material/.icons/fontawesome/brands/adn.svg create mode 100644 docs/material/.icons/fontawesome/brands/adobe.svg create mode 100644 docs/material/.icons/fontawesome/brands/adversal.svg create mode 100644 docs/material/.icons/fontawesome/brands/affiliatetheme.svg create mode 100644 docs/material/.icons/fontawesome/brands/airbnb.svg create mode 100644 docs/material/.icons/fontawesome/brands/algolia.svg create mode 100644 docs/material/.icons/fontawesome/brands/alipay.svg create mode 100644 docs/material/.icons/fontawesome/brands/amazon-pay.svg create mode 100644 docs/material/.icons/fontawesome/brands/amazon.svg create mode 100644 docs/material/.icons/fontawesome/brands/amilia.svg create mode 100644 docs/material/.icons/fontawesome/brands/android.svg create mode 100644 docs/material/.icons/fontawesome/brands/angellist.svg create mode 100644 docs/material/.icons/fontawesome/brands/angrycreative.svg create mode 100644 docs/material/.icons/fontawesome/brands/angular.svg create mode 100644 docs/material/.icons/fontawesome/brands/app-store-ios.svg create mode 100644 docs/material/.icons/fontawesome/brands/app-store.svg create mode 100644 docs/material/.icons/fontawesome/brands/apper.svg create mode 100644 docs/material/.icons/fontawesome/brands/apple-pay.svg create mode 100644 docs/material/.icons/fontawesome/brands/apple.svg create mode 100644 docs/material/.icons/fontawesome/brands/artstation.svg create mode 100644 docs/material/.icons/fontawesome/brands/asymmetrik.svg create mode 100644 docs/material/.icons/fontawesome/brands/atlassian.svg create mode 100644 docs/material/.icons/fontawesome/brands/audible.svg create mode 100644 docs/material/.icons/fontawesome/brands/autoprefixer.svg create mode 100644 docs/material/.icons/fontawesome/brands/avianex.svg create mode 100644 docs/material/.icons/fontawesome/brands/aviato.svg create mode 100644 docs/material/.icons/fontawesome/brands/aws.svg create mode 100644 docs/material/.icons/fontawesome/brands/bandcamp.svg create mode 100644 docs/material/.icons/fontawesome/brands/battle-net.svg create mode 100644 docs/material/.icons/fontawesome/brands/behance-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/behance.svg create mode 100644 docs/material/.icons/fontawesome/brands/bimobject.svg create mode 100644 docs/material/.icons/fontawesome/brands/bitbucket.svg create mode 100644 docs/material/.icons/fontawesome/brands/bitcoin.svg create mode 100644 docs/material/.icons/fontawesome/brands/bity.svg create mode 100644 docs/material/.icons/fontawesome/brands/black-tie.svg create mode 100644 docs/material/.icons/fontawesome/brands/blackberry.svg create mode 100644 docs/material/.icons/fontawesome/brands/blogger-b.svg create mode 100644 docs/material/.icons/fontawesome/brands/blogger.svg create mode 100644 docs/material/.icons/fontawesome/brands/bluetooth-b.svg create mode 100644 docs/material/.icons/fontawesome/brands/bluetooth.svg create mode 100644 docs/material/.icons/fontawesome/brands/bootstrap.svg create mode 100644 docs/material/.icons/fontawesome/brands/btc.svg create mode 100644 docs/material/.icons/fontawesome/brands/buffer.svg create mode 100644 docs/material/.icons/fontawesome/brands/buromobelexperte.svg create mode 100644 docs/material/.icons/fontawesome/brands/buy-n-large.svg create mode 100644 docs/material/.icons/fontawesome/brands/buysellads.svg create mode 100644 docs/material/.icons/fontawesome/brands/canadian-maple-leaf.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-amazon-pay.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-amex.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-apple-pay.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-diners-club.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-discover.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-jcb.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-mastercard.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-paypal.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-stripe.svg create mode 100644 docs/material/.icons/fontawesome/brands/cc-visa.svg create mode 100644 docs/material/.icons/fontawesome/brands/centercode.svg create mode 100644 docs/material/.icons/fontawesome/brands/centos.svg create mode 100644 docs/material/.icons/fontawesome/brands/chrome.svg create mode 100644 docs/material/.icons/fontawesome/brands/chromecast.svg create mode 100644 docs/material/.icons/fontawesome/brands/cloudscale.svg create mode 100644 docs/material/.icons/fontawesome/brands/cloudsmith.svg create mode 100644 docs/material/.icons/fontawesome/brands/cloudversify.svg create mode 100644 docs/material/.icons/fontawesome/brands/codepen.svg create mode 100644 docs/material/.icons/fontawesome/brands/codiepie.svg create mode 100644 docs/material/.icons/fontawesome/brands/confluence.svg create mode 100644 docs/material/.icons/fontawesome/brands/connectdevelop.svg create mode 100644 docs/material/.icons/fontawesome/brands/contao.svg create mode 100644 docs/material/.icons/fontawesome/brands/cotton-bureau.svg create mode 100644 docs/material/.icons/fontawesome/brands/cpanel.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-by.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-nc-eu.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-nc-jp.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-nc.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-nd.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-pd-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-pd.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-remix.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-sa.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-sampling-plus.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-sampling.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-share.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons-zero.svg create mode 100644 docs/material/.icons/fontawesome/brands/creative-commons.svg create mode 100644 docs/material/.icons/fontawesome/brands/critical-role.svg create mode 100644 docs/material/.icons/fontawesome/brands/css3-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/css3.svg create mode 100644 docs/material/.icons/fontawesome/brands/cuttlefish.svg create mode 100644 docs/material/.icons/fontawesome/brands/d-and-d-beyond.svg create mode 100644 docs/material/.icons/fontawesome/brands/d-and-d.svg create mode 100644 docs/material/.icons/fontawesome/brands/dailymotion.svg create mode 100644 docs/material/.icons/fontawesome/brands/dashcube.svg create mode 100644 docs/material/.icons/fontawesome/brands/delicious.svg create mode 100644 docs/material/.icons/fontawesome/brands/deploydog.svg create mode 100644 docs/material/.icons/fontawesome/brands/deskpro.svg create mode 100644 docs/material/.icons/fontawesome/brands/dev.svg create mode 100644 docs/material/.icons/fontawesome/brands/deviantart.svg create mode 100644 docs/material/.icons/fontawesome/brands/dhl.svg create mode 100644 docs/material/.icons/fontawesome/brands/diaspora.svg create mode 100644 docs/material/.icons/fontawesome/brands/digg.svg create mode 100644 docs/material/.icons/fontawesome/brands/digital-ocean.svg create mode 100644 docs/material/.icons/fontawesome/brands/discord.svg create mode 100644 docs/material/.icons/fontawesome/brands/discourse.svg create mode 100644 docs/material/.icons/fontawesome/brands/dochub.svg create mode 100644 docs/material/.icons/fontawesome/brands/docker.svg create mode 100644 docs/material/.icons/fontawesome/brands/draft2digital.svg create mode 100644 docs/material/.icons/fontawesome/brands/dribbble-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/dribbble.svg create mode 100644 docs/material/.icons/fontawesome/brands/dropbox.svg create mode 100644 docs/material/.icons/fontawesome/brands/drupal.svg create mode 100644 docs/material/.icons/fontawesome/brands/dyalog.svg create mode 100644 docs/material/.icons/fontawesome/brands/earlybirds.svg create mode 100644 docs/material/.icons/fontawesome/brands/ebay.svg create mode 100644 docs/material/.icons/fontawesome/brands/edge.svg create mode 100644 docs/material/.icons/fontawesome/brands/elementor.svg create mode 100644 docs/material/.icons/fontawesome/brands/ello.svg create mode 100644 docs/material/.icons/fontawesome/brands/ember.svg create mode 100644 docs/material/.icons/fontawesome/brands/empire.svg create mode 100644 docs/material/.icons/fontawesome/brands/envira.svg create mode 100644 docs/material/.icons/fontawesome/brands/erlang.svg create mode 100644 docs/material/.icons/fontawesome/brands/ethereum.svg create mode 100644 docs/material/.icons/fontawesome/brands/etsy.svg create mode 100644 docs/material/.icons/fontawesome/brands/evernote.svg create mode 100644 docs/material/.icons/fontawesome/brands/expeditedssl.svg create mode 100644 docs/material/.icons/fontawesome/brands/facebook-f.svg create mode 100644 docs/material/.icons/fontawesome/brands/facebook-messenger.svg create mode 100644 docs/material/.icons/fontawesome/brands/facebook-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/facebook.svg create mode 100644 docs/material/.icons/fontawesome/brands/fantasy-flight-games.svg create mode 100644 docs/material/.icons/fontawesome/brands/fedex.svg create mode 100644 docs/material/.icons/fontawesome/brands/fedora.svg create mode 100644 docs/material/.icons/fontawesome/brands/figma.svg create mode 100644 docs/material/.icons/fontawesome/brands/firefox-browser.svg create mode 100644 docs/material/.icons/fontawesome/brands/firefox.svg create mode 100644 docs/material/.icons/fontawesome/brands/first-order-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/first-order.svg create mode 100644 docs/material/.icons/fontawesome/brands/firstdraft.svg create mode 100644 docs/material/.icons/fontawesome/brands/flickr.svg create mode 100644 docs/material/.icons/fontawesome/brands/flipboard.svg create mode 100644 docs/material/.icons/fontawesome/brands/fly.svg create mode 100644 docs/material/.icons/fontawesome/brands/font-awesome-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/font-awesome-flag.svg create mode 100644 docs/material/.icons/fontawesome/brands/font-awesome-logo-full.svg create mode 100644 docs/material/.icons/fontawesome/brands/font-awesome.svg create mode 100644 docs/material/.icons/fontawesome/brands/fonticons-fi.svg create mode 100644 docs/material/.icons/fontawesome/brands/fonticons.svg create mode 100644 docs/material/.icons/fontawesome/brands/fort-awesome-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/fort-awesome.svg create mode 100644 docs/material/.icons/fontawesome/brands/forumbee.svg create mode 100644 docs/material/.icons/fontawesome/brands/foursquare.svg create mode 100644 docs/material/.icons/fontawesome/brands/free-code-camp.svg create mode 100644 docs/material/.icons/fontawesome/brands/freebsd.svg create mode 100644 docs/material/.icons/fontawesome/brands/fulcrum.svg create mode 100644 docs/material/.icons/fontawesome/brands/galactic-republic.svg create mode 100644 docs/material/.icons/fontawesome/brands/galactic-senate.svg create mode 100644 docs/material/.icons/fontawesome/brands/get-pocket.svg create mode 100644 docs/material/.icons/fontawesome/brands/gg-circle.svg create mode 100644 docs/material/.icons/fontawesome/brands/gg.svg create mode 100644 docs/material/.icons/fontawesome/brands/git-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/git-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/git.svg create mode 100644 docs/material/.icons/fontawesome/brands/github-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/github-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/github.svg create mode 100644 docs/material/.icons/fontawesome/brands/gitkraken.svg create mode 100644 docs/material/.icons/fontawesome/brands/gitlab.svg create mode 100644 docs/material/.icons/fontawesome/brands/gitter.svg create mode 100644 docs/material/.icons/fontawesome/brands/glide-g.svg create mode 100644 docs/material/.icons/fontawesome/brands/glide.svg create mode 100644 docs/material/.icons/fontawesome/brands/gofore.svg create mode 100644 docs/material/.icons/fontawesome/brands/goodreads-g.svg create mode 100644 docs/material/.icons/fontawesome/brands/goodreads.svg create mode 100644 docs/material/.icons/fontawesome/brands/google-drive.svg create mode 100644 docs/material/.icons/fontawesome/brands/google-play.svg create mode 100644 docs/material/.icons/fontawesome/brands/google-plus-g.svg create mode 100644 docs/material/.icons/fontawesome/brands/google-plus-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/google-plus.svg create mode 100644 docs/material/.icons/fontawesome/brands/google-wallet.svg create mode 100644 docs/material/.icons/fontawesome/brands/google.svg create mode 100644 docs/material/.icons/fontawesome/brands/gratipay.svg create mode 100644 docs/material/.icons/fontawesome/brands/grav.svg create mode 100644 docs/material/.icons/fontawesome/brands/gripfire.svg create mode 100644 docs/material/.icons/fontawesome/brands/grunt.svg create mode 100644 docs/material/.icons/fontawesome/brands/gulp.svg create mode 100644 docs/material/.icons/fontawesome/brands/hacker-news-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/hacker-news.svg create mode 100644 docs/material/.icons/fontawesome/brands/hackerrank.svg create mode 100644 docs/material/.icons/fontawesome/brands/hips.svg create mode 100644 docs/material/.icons/fontawesome/brands/hire-a-helper.svg create mode 100644 docs/material/.icons/fontawesome/brands/hooli.svg create mode 100644 docs/material/.icons/fontawesome/brands/hornbill.svg create mode 100644 docs/material/.icons/fontawesome/brands/hotjar.svg create mode 100644 docs/material/.icons/fontawesome/brands/houzz.svg create mode 100644 docs/material/.icons/fontawesome/brands/html5.svg create mode 100644 docs/material/.icons/fontawesome/brands/hubspot.svg create mode 100644 docs/material/.icons/fontawesome/brands/ideal.svg create mode 100644 docs/material/.icons/fontawesome/brands/imdb.svg create mode 100644 docs/material/.icons/fontawesome/brands/instagram-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/instagram.svg create mode 100644 docs/material/.icons/fontawesome/brands/intercom.svg create mode 100644 docs/material/.icons/fontawesome/brands/internet-explorer.svg create mode 100644 docs/material/.icons/fontawesome/brands/invision.svg create mode 100644 docs/material/.icons/fontawesome/brands/ioxhost.svg create mode 100644 docs/material/.icons/fontawesome/brands/itch-io.svg create mode 100644 docs/material/.icons/fontawesome/brands/itunes-note.svg create mode 100644 docs/material/.icons/fontawesome/brands/itunes.svg create mode 100644 docs/material/.icons/fontawesome/brands/java.svg create mode 100644 docs/material/.icons/fontawesome/brands/jedi-order.svg create mode 100644 docs/material/.icons/fontawesome/brands/jenkins.svg create mode 100644 docs/material/.icons/fontawesome/brands/jira.svg create mode 100644 docs/material/.icons/fontawesome/brands/joget.svg create mode 100644 docs/material/.icons/fontawesome/brands/joomla.svg create mode 100644 docs/material/.icons/fontawesome/brands/js-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/js.svg create mode 100644 docs/material/.icons/fontawesome/brands/jsfiddle.svg create mode 100644 docs/material/.icons/fontawesome/brands/kaggle.svg create mode 100644 docs/material/.icons/fontawesome/brands/keybase.svg create mode 100644 docs/material/.icons/fontawesome/brands/keycdn.svg create mode 100644 docs/material/.icons/fontawesome/brands/kickstarter-k.svg create mode 100644 docs/material/.icons/fontawesome/brands/kickstarter.svg create mode 100644 docs/material/.icons/fontawesome/brands/korvue.svg create mode 100644 docs/material/.icons/fontawesome/brands/laravel.svg create mode 100644 docs/material/.icons/fontawesome/brands/lastfm-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/lastfm.svg create mode 100644 docs/material/.icons/fontawesome/brands/leanpub.svg create mode 100644 docs/material/.icons/fontawesome/brands/less.svg create mode 100644 docs/material/.icons/fontawesome/brands/line.svg create mode 100644 docs/material/.icons/fontawesome/brands/linkedin-in.svg create mode 100644 docs/material/.icons/fontawesome/brands/linkedin.svg create mode 100644 docs/material/.icons/fontawesome/brands/linode.svg create mode 100644 docs/material/.icons/fontawesome/brands/linux.svg create mode 100644 docs/material/.icons/fontawesome/brands/lyft.svg create mode 100644 docs/material/.icons/fontawesome/brands/magento.svg create mode 100644 docs/material/.icons/fontawesome/brands/mailchimp.svg create mode 100644 docs/material/.icons/fontawesome/brands/mandalorian.svg create mode 100644 docs/material/.icons/fontawesome/brands/markdown.svg create mode 100644 docs/material/.icons/fontawesome/brands/mastodon.svg create mode 100644 docs/material/.icons/fontawesome/brands/maxcdn.svg create mode 100644 docs/material/.icons/fontawesome/brands/mdb.svg create mode 100644 docs/material/.icons/fontawesome/brands/medapps.svg create mode 100644 docs/material/.icons/fontawesome/brands/medium-m.svg create mode 100644 docs/material/.icons/fontawesome/brands/medium.svg create mode 100644 docs/material/.icons/fontawesome/brands/medrt.svg create mode 100644 docs/material/.icons/fontawesome/brands/meetup.svg create mode 100644 docs/material/.icons/fontawesome/brands/megaport.svg create mode 100644 docs/material/.icons/fontawesome/brands/mendeley.svg create mode 100644 docs/material/.icons/fontawesome/brands/microblog.svg create mode 100644 docs/material/.icons/fontawesome/brands/microsoft.svg create mode 100644 docs/material/.icons/fontawesome/brands/mix.svg create mode 100644 docs/material/.icons/fontawesome/brands/mixcloud.svg create mode 100644 docs/material/.icons/fontawesome/brands/mixer.svg create mode 100644 docs/material/.icons/fontawesome/brands/mizuni.svg create mode 100644 docs/material/.icons/fontawesome/brands/modx.svg create mode 100644 docs/material/.icons/fontawesome/brands/monero.svg create mode 100644 docs/material/.icons/fontawesome/brands/napster.svg create mode 100644 docs/material/.icons/fontawesome/brands/neos.svg create mode 100644 docs/material/.icons/fontawesome/brands/nimblr.svg create mode 100644 docs/material/.icons/fontawesome/brands/node-js.svg create mode 100644 docs/material/.icons/fontawesome/brands/node.svg create mode 100644 docs/material/.icons/fontawesome/brands/npm.svg create mode 100644 docs/material/.icons/fontawesome/brands/ns8.svg create mode 100644 docs/material/.icons/fontawesome/brands/nutritionix.svg create mode 100644 docs/material/.icons/fontawesome/brands/odnoklassniki-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/odnoklassniki.svg create mode 100644 docs/material/.icons/fontawesome/brands/old-republic.svg create mode 100644 docs/material/.icons/fontawesome/brands/opencart.svg create mode 100644 docs/material/.icons/fontawesome/brands/openid.svg create mode 100644 docs/material/.icons/fontawesome/brands/opera.svg create mode 100644 docs/material/.icons/fontawesome/brands/optin-monster.svg create mode 100644 docs/material/.icons/fontawesome/brands/orcid.svg create mode 100644 docs/material/.icons/fontawesome/brands/osi.svg create mode 100644 docs/material/.icons/fontawesome/brands/page4.svg create mode 100644 docs/material/.icons/fontawesome/brands/pagelines.svg create mode 100644 docs/material/.icons/fontawesome/brands/palfed.svg create mode 100644 docs/material/.icons/fontawesome/brands/patreon.svg create mode 100644 docs/material/.icons/fontawesome/brands/paypal.svg create mode 100644 docs/material/.icons/fontawesome/brands/penny-arcade.svg create mode 100644 docs/material/.icons/fontawesome/brands/periscope.svg create mode 100644 docs/material/.icons/fontawesome/brands/phabricator.svg create mode 100644 docs/material/.icons/fontawesome/brands/phoenix-framework.svg create mode 100644 docs/material/.icons/fontawesome/brands/phoenix-squadron.svg create mode 100644 docs/material/.icons/fontawesome/brands/php.svg create mode 100644 docs/material/.icons/fontawesome/brands/pied-piper-alt.svg create mode 100644 docs/material/.icons/fontawesome/brands/pied-piper-hat.svg create mode 100644 docs/material/.icons/fontawesome/brands/pied-piper-pp.svg create mode 100644 docs/material/.icons/fontawesome/brands/pied-piper-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/pied-piper.svg create mode 100644 docs/material/.icons/fontawesome/brands/pinterest-p.svg create mode 100644 docs/material/.icons/fontawesome/brands/pinterest-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/pinterest.svg create mode 100644 docs/material/.icons/fontawesome/brands/playstation.svg create mode 100644 docs/material/.icons/fontawesome/brands/product-hunt.svg create mode 100644 docs/material/.icons/fontawesome/brands/pushed.svg create mode 100644 docs/material/.icons/fontawesome/brands/python.svg create mode 100644 docs/material/.icons/fontawesome/brands/qq.svg create mode 100644 docs/material/.icons/fontawesome/brands/quinscape.svg create mode 100644 docs/material/.icons/fontawesome/brands/quora.svg create mode 100644 docs/material/.icons/fontawesome/brands/r-project.svg create mode 100644 docs/material/.icons/fontawesome/brands/raspberry-pi.svg create mode 100644 docs/material/.icons/fontawesome/brands/ravelry.svg create mode 100644 docs/material/.icons/fontawesome/brands/react.svg create mode 100644 docs/material/.icons/fontawesome/brands/reacteurope.svg create mode 100644 docs/material/.icons/fontawesome/brands/readme.svg create mode 100644 docs/material/.icons/fontawesome/brands/rebel.svg create mode 100644 docs/material/.icons/fontawesome/brands/red-river.svg create mode 100644 docs/material/.icons/fontawesome/brands/reddit-alien.svg create mode 100644 docs/material/.icons/fontawesome/brands/reddit-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/reddit.svg create mode 100644 docs/material/.icons/fontawesome/brands/redhat.svg create mode 100644 docs/material/.icons/fontawesome/brands/renren.svg create mode 100644 docs/material/.icons/fontawesome/brands/replyd.svg create mode 100644 docs/material/.icons/fontawesome/brands/researchgate.svg create mode 100644 docs/material/.icons/fontawesome/brands/resolving.svg create mode 100644 docs/material/.icons/fontawesome/brands/rev.svg create mode 100644 docs/material/.icons/fontawesome/brands/rocketchat.svg create mode 100644 docs/material/.icons/fontawesome/brands/rockrms.svg create mode 100644 docs/material/.icons/fontawesome/brands/safari.svg create mode 100644 docs/material/.icons/fontawesome/brands/salesforce.svg create mode 100644 docs/material/.icons/fontawesome/brands/sass.svg create mode 100644 docs/material/.icons/fontawesome/brands/schlix.svg create mode 100644 docs/material/.icons/fontawesome/brands/scribd.svg create mode 100644 docs/material/.icons/fontawesome/brands/searchengin.svg create mode 100644 docs/material/.icons/fontawesome/brands/sellcast.svg create mode 100644 docs/material/.icons/fontawesome/brands/sellsy.svg create mode 100644 docs/material/.icons/fontawesome/brands/servicestack.svg create mode 100644 docs/material/.icons/fontawesome/brands/shirtsinbulk.svg create mode 100644 docs/material/.icons/fontawesome/brands/shopify.svg create mode 100644 docs/material/.icons/fontawesome/brands/shopware.svg create mode 100644 docs/material/.icons/fontawesome/brands/simplybuilt.svg create mode 100644 docs/material/.icons/fontawesome/brands/sistrix.svg create mode 100644 docs/material/.icons/fontawesome/brands/sith.svg create mode 100644 docs/material/.icons/fontawesome/brands/sketch.svg create mode 100644 docs/material/.icons/fontawesome/brands/skyatlas.svg create mode 100644 docs/material/.icons/fontawesome/brands/skype.svg create mode 100644 docs/material/.icons/fontawesome/brands/slack-hash.svg create mode 100644 docs/material/.icons/fontawesome/brands/slack.svg create mode 100644 docs/material/.icons/fontawesome/brands/slideshare.svg create mode 100644 docs/material/.icons/fontawesome/brands/snapchat-ghost.svg create mode 100644 docs/material/.icons/fontawesome/brands/snapchat-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/snapchat.svg create mode 100644 docs/material/.icons/fontawesome/brands/soundcloud.svg create mode 100644 docs/material/.icons/fontawesome/brands/sourcetree.svg create mode 100644 docs/material/.icons/fontawesome/brands/speakap.svg create mode 100644 docs/material/.icons/fontawesome/brands/speaker-deck.svg create mode 100644 docs/material/.icons/fontawesome/brands/spotify.svg create mode 100644 docs/material/.icons/fontawesome/brands/squarespace.svg create mode 100644 docs/material/.icons/fontawesome/brands/stack-exchange.svg create mode 100644 docs/material/.icons/fontawesome/brands/stack-overflow.svg create mode 100644 docs/material/.icons/fontawesome/brands/stackpath.svg create mode 100644 docs/material/.icons/fontawesome/brands/staylinked.svg create mode 100644 docs/material/.icons/fontawesome/brands/steam-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/steam-symbol.svg create mode 100644 docs/material/.icons/fontawesome/brands/steam.svg create mode 100644 docs/material/.icons/fontawesome/brands/sticker-mule.svg create mode 100644 docs/material/.icons/fontawesome/brands/strava.svg create mode 100644 docs/material/.icons/fontawesome/brands/stripe-s.svg create mode 100644 docs/material/.icons/fontawesome/brands/stripe.svg create mode 100644 docs/material/.icons/fontawesome/brands/studiovinari.svg create mode 100644 docs/material/.icons/fontawesome/brands/stumbleupon-circle.svg create mode 100644 docs/material/.icons/fontawesome/brands/stumbleupon.svg create mode 100644 docs/material/.icons/fontawesome/brands/superpowers.svg create mode 100644 docs/material/.icons/fontawesome/brands/supple.svg create mode 100644 docs/material/.icons/fontawesome/brands/suse.svg create mode 100644 docs/material/.icons/fontawesome/brands/swift.svg create mode 100644 docs/material/.icons/fontawesome/brands/symfony.svg create mode 100644 docs/material/.icons/fontawesome/brands/teamspeak.svg create mode 100644 docs/material/.icons/fontawesome/brands/telegram-plane.svg create mode 100644 docs/material/.icons/fontawesome/brands/telegram.svg create mode 100644 docs/material/.icons/fontawesome/brands/tencent-weibo.svg create mode 100644 docs/material/.icons/fontawesome/brands/the-red-yeti.svg create mode 100644 docs/material/.icons/fontawesome/brands/themeco.svg create mode 100644 docs/material/.icons/fontawesome/brands/themeisle.svg create mode 100644 docs/material/.icons/fontawesome/brands/think-peaks.svg create mode 100644 docs/material/.icons/fontawesome/brands/trade-federation.svg create mode 100644 docs/material/.icons/fontawesome/brands/trello.svg create mode 100644 docs/material/.icons/fontawesome/brands/tripadvisor.svg create mode 100644 docs/material/.icons/fontawesome/brands/tumblr-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/tumblr.svg create mode 100644 docs/material/.icons/fontawesome/brands/twitch.svg create mode 100644 docs/material/.icons/fontawesome/brands/twitter-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/twitter.svg create mode 100644 docs/material/.icons/fontawesome/brands/typo3.svg create mode 100644 docs/material/.icons/fontawesome/brands/uber.svg create mode 100644 docs/material/.icons/fontawesome/brands/ubuntu.svg create mode 100644 docs/material/.icons/fontawesome/brands/uikit.svg create mode 100644 docs/material/.icons/fontawesome/brands/umbraco.svg create mode 100644 docs/material/.icons/fontawesome/brands/uniregistry.svg create mode 100644 docs/material/.icons/fontawesome/brands/unity.svg create mode 100644 docs/material/.icons/fontawesome/brands/untappd.svg create mode 100644 docs/material/.icons/fontawesome/brands/ups.svg create mode 100644 docs/material/.icons/fontawesome/brands/usb.svg create mode 100644 docs/material/.icons/fontawesome/brands/usps.svg create mode 100644 docs/material/.icons/fontawesome/brands/ussunnah.svg create mode 100644 docs/material/.icons/fontawesome/brands/vaadin.svg create mode 100644 docs/material/.icons/fontawesome/brands/viacoin.svg create mode 100644 docs/material/.icons/fontawesome/brands/viadeo-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/viadeo.svg create mode 100644 docs/material/.icons/fontawesome/brands/viber.svg create mode 100644 docs/material/.icons/fontawesome/brands/vimeo-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/vimeo-v.svg create mode 100644 docs/material/.icons/fontawesome/brands/vimeo.svg create mode 100644 docs/material/.icons/fontawesome/brands/vine.svg create mode 100644 docs/material/.icons/fontawesome/brands/vk.svg create mode 100644 docs/material/.icons/fontawesome/brands/vnv.svg create mode 100644 docs/material/.icons/fontawesome/brands/vuejs.svg create mode 100644 docs/material/.icons/fontawesome/brands/waze.svg create mode 100644 docs/material/.icons/fontawesome/brands/weebly.svg create mode 100644 docs/material/.icons/fontawesome/brands/weibo.svg create mode 100644 docs/material/.icons/fontawesome/brands/weixin.svg create mode 100644 docs/material/.icons/fontawesome/brands/whatsapp-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/whatsapp.svg create mode 100644 docs/material/.icons/fontawesome/brands/whmcs.svg create mode 100644 docs/material/.icons/fontawesome/brands/wikipedia-w.svg create mode 100644 docs/material/.icons/fontawesome/brands/windows.svg create mode 100644 docs/material/.icons/fontawesome/brands/wix.svg create mode 100644 docs/material/.icons/fontawesome/brands/wizards-of-the-coast.svg create mode 100644 docs/material/.icons/fontawesome/brands/wolf-pack-battalion.svg create mode 100644 docs/material/.icons/fontawesome/brands/wordpress-simple.svg create mode 100644 docs/material/.icons/fontawesome/brands/wordpress.svg create mode 100644 docs/material/.icons/fontawesome/brands/wpbeginner.svg create mode 100644 docs/material/.icons/fontawesome/brands/wpexplorer.svg create mode 100644 docs/material/.icons/fontawesome/brands/wpforms.svg create mode 100644 docs/material/.icons/fontawesome/brands/wpressr.svg create mode 100644 docs/material/.icons/fontawesome/brands/xbox.svg create mode 100644 docs/material/.icons/fontawesome/brands/xing-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/xing.svg create mode 100644 docs/material/.icons/fontawesome/brands/y-combinator.svg create mode 100644 docs/material/.icons/fontawesome/brands/yahoo.svg create mode 100644 docs/material/.icons/fontawesome/brands/yammer.svg create mode 100644 docs/material/.icons/fontawesome/brands/yandex-international.svg create mode 100644 docs/material/.icons/fontawesome/brands/yandex.svg create mode 100644 docs/material/.icons/fontawesome/brands/yarn.svg create mode 100644 docs/material/.icons/fontawesome/brands/yelp.svg create mode 100644 docs/material/.icons/fontawesome/brands/yoast.svg create mode 100644 docs/material/.icons/fontawesome/brands/youtube-square.svg create mode 100644 docs/material/.icons/fontawesome/brands/youtube.svg create mode 100644 docs/material/.icons/fontawesome/brands/zhihu.svg create mode 100644 docs/material/.icons/fontawesome/regular/address-book.svg create mode 100644 docs/material/.icons/fontawesome/regular/address-card.svg create mode 100644 docs/material/.icons/fontawesome/regular/angry.svg create mode 100644 docs/material/.icons/fontawesome/regular/arrow-alt-circle-down.svg create mode 100644 docs/material/.icons/fontawesome/regular/arrow-alt-circle-left.svg create mode 100644 docs/material/.icons/fontawesome/regular/arrow-alt-circle-right.svg create mode 100644 docs/material/.icons/fontawesome/regular/arrow-alt-circle-up.svg create mode 100644 docs/material/.icons/fontawesome/regular/bell-slash.svg create mode 100644 docs/material/.icons/fontawesome/regular/bell.svg create mode 100644 docs/material/.icons/fontawesome/regular/bookmark.svg create mode 100644 docs/material/.icons/fontawesome/regular/building.svg create mode 100644 docs/material/.icons/fontawesome/regular/calendar-alt.svg create mode 100644 docs/material/.icons/fontawesome/regular/calendar-check.svg create mode 100644 docs/material/.icons/fontawesome/regular/calendar-minus.svg create mode 100644 docs/material/.icons/fontawesome/regular/calendar-plus.svg create mode 100644 docs/material/.icons/fontawesome/regular/calendar-times.svg create mode 100644 docs/material/.icons/fontawesome/regular/calendar.svg create mode 100644 docs/material/.icons/fontawesome/regular/caret-square-down.svg create mode 100644 docs/material/.icons/fontawesome/regular/caret-square-left.svg create mode 100644 docs/material/.icons/fontawesome/regular/caret-square-right.svg create mode 100644 docs/material/.icons/fontawesome/regular/caret-square-up.svg create mode 100644 docs/material/.icons/fontawesome/regular/chart-bar.svg create mode 100644 docs/material/.icons/fontawesome/regular/check-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/check-square.svg create mode 100644 docs/material/.icons/fontawesome/regular/circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/clipboard.svg create mode 100644 docs/material/.icons/fontawesome/regular/clock.svg create mode 100644 docs/material/.icons/fontawesome/regular/clone.svg create mode 100644 docs/material/.icons/fontawesome/regular/closed-captioning.svg create mode 100644 docs/material/.icons/fontawesome/regular/comment-alt.svg create mode 100644 docs/material/.icons/fontawesome/regular/comment-dots.svg create mode 100644 docs/material/.icons/fontawesome/regular/comment.svg create mode 100644 docs/material/.icons/fontawesome/regular/comments.svg create mode 100644 docs/material/.icons/fontawesome/regular/compass.svg create mode 100644 docs/material/.icons/fontawesome/regular/copy.svg create mode 100644 docs/material/.icons/fontawesome/regular/copyright.svg create mode 100644 docs/material/.icons/fontawesome/regular/credit-card.svg create mode 100644 docs/material/.icons/fontawesome/regular/dizzy.svg create mode 100644 docs/material/.icons/fontawesome/regular/dot-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/edit.svg create mode 100644 docs/material/.icons/fontawesome/regular/envelope-open.svg create mode 100644 docs/material/.icons/fontawesome/regular/envelope.svg create mode 100644 docs/material/.icons/fontawesome/regular/eye-slash.svg create mode 100644 docs/material/.icons/fontawesome/regular/eye.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-alt.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-archive.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-audio.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-code.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-excel.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-image.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-pdf.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-powerpoint.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-video.svg create mode 100644 docs/material/.icons/fontawesome/regular/file-word.svg create mode 100644 docs/material/.icons/fontawesome/regular/file.svg create mode 100644 docs/material/.icons/fontawesome/regular/flag.svg create mode 100644 docs/material/.icons/fontawesome/regular/flushed.svg create mode 100644 docs/material/.icons/fontawesome/regular/folder-open.svg create mode 100644 docs/material/.icons/fontawesome/regular/folder.svg create mode 100644 docs/material/.icons/fontawesome/regular/font-awesome-logo-full.svg create mode 100644 docs/material/.icons/fontawesome/regular/frown-open.svg create mode 100644 docs/material/.icons/fontawesome/regular/frown.svg create mode 100644 docs/material/.icons/fontawesome/regular/futbol.svg create mode 100644 docs/material/.icons/fontawesome/regular/gem.svg create mode 100644 docs/material/.icons/fontawesome/regular/grimace.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-alt.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-beam-sweat.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-beam.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-hearts.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-squint-tears.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-squint.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-stars.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-tears.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-tongue-squint.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-tongue-wink.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-tongue.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin-wink.svg create mode 100644 docs/material/.icons/fontawesome/regular/grin.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-lizard.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-paper.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-peace.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-point-down.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-point-left.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-point-right.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-point-up.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-pointer.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-rock.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-scissors.svg create mode 100644 docs/material/.icons/fontawesome/regular/hand-spock.svg create mode 100644 docs/material/.icons/fontawesome/regular/handshake.svg create mode 100644 docs/material/.icons/fontawesome/regular/hdd.svg create mode 100644 docs/material/.icons/fontawesome/regular/heart.svg create mode 100644 docs/material/.icons/fontawesome/regular/hospital.svg create mode 100644 docs/material/.icons/fontawesome/regular/hourglass.svg create mode 100644 docs/material/.icons/fontawesome/regular/id-badge.svg create mode 100644 docs/material/.icons/fontawesome/regular/id-card.svg create mode 100644 docs/material/.icons/fontawesome/regular/image.svg create mode 100644 docs/material/.icons/fontawesome/regular/images.svg create mode 100644 docs/material/.icons/fontawesome/regular/keyboard.svg create mode 100644 docs/material/.icons/fontawesome/regular/kiss-beam.svg create mode 100644 docs/material/.icons/fontawesome/regular/kiss-wink-heart.svg create mode 100644 docs/material/.icons/fontawesome/regular/kiss.svg create mode 100644 docs/material/.icons/fontawesome/regular/laugh-beam.svg create mode 100644 docs/material/.icons/fontawesome/regular/laugh-squint.svg create mode 100644 docs/material/.icons/fontawesome/regular/laugh-wink.svg create mode 100644 docs/material/.icons/fontawesome/regular/laugh.svg create mode 100644 docs/material/.icons/fontawesome/regular/lemon.svg create mode 100644 docs/material/.icons/fontawesome/regular/life-ring.svg create mode 100644 docs/material/.icons/fontawesome/regular/lightbulb.svg create mode 100644 docs/material/.icons/fontawesome/regular/list-alt.svg create mode 100644 docs/material/.icons/fontawesome/regular/map.svg create mode 100644 docs/material/.icons/fontawesome/regular/meh-blank.svg create mode 100644 docs/material/.icons/fontawesome/regular/meh-rolling-eyes.svg create mode 100644 docs/material/.icons/fontawesome/regular/meh.svg create mode 100644 docs/material/.icons/fontawesome/regular/minus-square.svg create mode 100644 docs/material/.icons/fontawesome/regular/money-bill-alt.svg create mode 100644 docs/material/.icons/fontawesome/regular/moon.svg create mode 100644 docs/material/.icons/fontawesome/regular/newspaper.svg create mode 100644 docs/material/.icons/fontawesome/regular/object-group.svg create mode 100644 docs/material/.icons/fontawesome/regular/object-ungroup.svg create mode 100644 docs/material/.icons/fontawesome/regular/paper-plane.svg create mode 100644 docs/material/.icons/fontawesome/regular/pause-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/play-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/plus-square.svg create mode 100644 docs/material/.icons/fontawesome/regular/question-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/registered.svg create mode 100644 docs/material/.icons/fontawesome/regular/sad-cry.svg create mode 100644 docs/material/.icons/fontawesome/regular/sad-tear.svg create mode 100644 docs/material/.icons/fontawesome/regular/save.svg create mode 100644 docs/material/.icons/fontawesome/regular/share-square.svg create mode 100644 docs/material/.icons/fontawesome/regular/smile-beam.svg create mode 100644 docs/material/.icons/fontawesome/regular/smile-wink.svg create mode 100644 docs/material/.icons/fontawesome/regular/smile.svg create mode 100644 docs/material/.icons/fontawesome/regular/snowflake.svg create mode 100644 docs/material/.icons/fontawesome/regular/square.svg create mode 100644 docs/material/.icons/fontawesome/regular/star-half.svg create mode 100644 docs/material/.icons/fontawesome/regular/star.svg create mode 100644 docs/material/.icons/fontawesome/regular/sticky-note.svg create mode 100644 docs/material/.icons/fontawesome/regular/stop-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/sun.svg create mode 100644 docs/material/.icons/fontawesome/regular/surprise.svg create mode 100644 docs/material/.icons/fontawesome/regular/thumbs-down.svg create mode 100644 docs/material/.icons/fontawesome/regular/thumbs-up.svg create mode 100644 docs/material/.icons/fontawesome/regular/times-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/tired.svg create mode 100644 docs/material/.icons/fontawesome/regular/trash-alt.svg create mode 100644 docs/material/.icons/fontawesome/regular/user-circle.svg create mode 100644 docs/material/.icons/fontawesome/regular/user.svg create mode 100644 docs/material/.icons/fontawesome/regular/window-close.svg create mode 100644 docs/material/.icons/fontawesome/regular/window-maximize.svg create mode 100644 docs/material/.icons/fontawesome/regular/window-minimize.svg create mode 100644 docs/material/.icons/fontawesome/regular/window-restore.svg create mode 100644 docs/material/.icons/fontawesome/solid/ad.svg create mode 100644 docs/material/.icons/fontawesome/solid/address-book.svg create mode 100644 docs/material/.icons/fontawesome/solid/address-card.svg create mode 100644 docs/material/.icons/fontawesome/solid/adjust.svg create mode 100644 docs/material/.icons/fontawesome/solid/air-freshener.svg create mode 100644 docs/material/.icons/fontawesome/solid/align-center.svg create mode 100644 docs/material/.icons/fontawesome/solid/align-justify.svg create mode 100644 docs/material/.icons/fontawesome/solid/align-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/align-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/allergies.svg create mode 100644 docs/material/.icons/fontawesome/solid/ambulance.svg create mode 100644 docs/material/.icons/fontawesome/solid/american-sign-language-interpreting.svg create mode 100644 docs/material/.icons/fontawesome/solid/anchor.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-double-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-double-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-double-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-double-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/angle-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/angry.svg create mode 100644 docs/material/.icons/fontawesome/solid/ankh.svg create mode 100644 docs/material/.icons/fontawesome/solid/apple-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/archive.svg create mode 100644 docs/material/.icons/fontawesome/solid/archway.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-alt-circle-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-alt-circle-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-alt-circle-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-alt-circle-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-circle-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-circle-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-circle-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-circle-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrow-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrows-alt-h.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrows-alt-v.svg create mode 100644 docs/material/.icons/fontawesome/solid/arrows-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/assistive-listening-systems.svg create mode 100644 docs/material/.icons/fontawesome/solid/asterisk.svg create mode 100644 docs/material/.icons/fontawesome/solid/at.svg create mode 100644 docs/material/.icons/fontawesome/solid/atlas.svg create mode 100644 docs/material/.icons/fontawesome/solid/atom.svg create mode 100644 docs/material/.icons/fontawesome/solid/audio-description.svg create mode 100644 docs/material/.icons/fontawesome/solid/award.svg create mode 100644 docs/material/.icons/fontawesome/solid/baby-carriage.svg create mode 100644 docs/material/.icons/fontawesome/solid/baby.svg create mode 100644 docs/material/.icons/fontawesome/solid/backspace.svg create mode 100644 docs/material/.icons/fontawesome/solid/backward.svg create mode 100644 docs/material/.icons/fontawesome/solid/bacon.svg create mode 100644 docs/material/.icons/fontawesome/solid/bahai.svg create mode 100644 docs/material/.icons/fontawesome/solid/balance-scale-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/balance-scale-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/balance-scale.svg create mode 100644 docs/material/.icons/fontawesome/solid/ban.svg create mode 100644 docs/material/.icons/fontawesome/solid/band-aid.svg create mode 100644 docs/material/.icons/fontawesome/solid/barcode.svg create mode 100644 docs/material/.icons/fontawesome/solid/bars.svg create mode 100644 docs/material/.icons/fontawesome/solid/baseball-ball.svg create mode 100644 docs/material/.icons/fontawesome/solid/basketball-ball.svg create mode 100644 docs/material/.icons/fontawesome/solid/bath.svg create mode 100644 docs/material/.icons/fontawesome/solid/battery-empty.svg create mode 100644 docs/material/.icons/fontawesome/solid/battery-full.svg create mode 100644 docs/material/.icons/fontawesome/solid/battery-half.svg create mode 100644 docs/material/.icons/fontawesome/solid/battery-quarter.svg create mode 100644 docs/material/.icons/fontawesome/solid/battery-three-quarters.svg create mode 100644 docs/material/.icons/fontawesome/solid/bed.svg create mode 100644 docs/material/.icons/fontawesome/solid/beer.svg create mode 100644 docs/material/.icons/fontawesome/solid/bell-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/bell.svg create mode 100644 docs/material/.icons/fontawesome/solid/bezier-curve.svg create mode 100644 docs/material/.icons/fontawesome/solid/bible.svg create mode 100644 docs/material/.icons/fontawesome/solid/bicycle.svg create mode 100644 docs/material/.icons/fontawesome/solid/biking.svg create mode 100644 docs/material/.icons/fontawesome/solid/binoculars.svg create mode 100644 docs/material/.icons/fontawesome/solid/biohazard.svg create mode 100644 docs/material/.icons/fontawesome/solid/birthday-cake.svg create mode 100644 docs/material/.icons/fontawesome/solid/blender-phone.svg create mode 100644 docs/material/.icons/fontawesome/solid/blender.svg create mode 100644 docs/material/.icons/fontawesome/solid/blind.svg create mode 100644 docs/material/.icons/fontawesome/solid/blog.svg create mode 100644 docs/material/.icons/fontawesome/solid/bold.svg create mode 100644 docs/material/.icons/fontawesome/solid/bolt.svg create mode 100644 docs/material/.icons/fontawesome/solid/bomb.svg create mode 100644 docs/material/.icons/fontawesome/solid/bone.svg create mode 100644 docs/material/.icons/fontawesome/solid/bong.svg create mode 100644 docs/material/.icons/fontawesome/solid/book-dead.svg create mode 100644 docs/material/.icons/fontawesome/solid/book-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/book-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/book-reader.svg create mode 100644 docs/material/.icons/fontawesome/solid/book.svg create mode 100644 docs/material/.icons/fontawesome/solid/bookmark.svg create mode 100644 docs/material/.icons/fontawesome/solid/border-all.svg create mode 100644 docs/material/.icons/fontawesome/solid/border-none.svg create mode 100644 docs/material/.icons/fontawesome/solid/border-style.svg create mode 100644 docs/material/.icons/fontawesome/solid/bowling-ball.svg create mode 100644 docs/material/.icons/fontawesome/solid/box-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/box-tissue.svg create mode 100644 docs/material/.icons/fontawesome/solid/box.svg create mode 100644 docs/material/.icons/fontawesome/solid/boxes.svg create mode 100644 docs/material/.icons/fontawesome/solid/braille.svg create mode 100644 docs/material/.icons/fontawesome/solid/brain.svg create mode 100644 docs/material/.icons/fontawesome/solid/bread-slice.svg create mode 100644 docs/material/.icons/fontawesome/solid/briefcase-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/briefcase.svg create mode 100644 docs/material/.icons/fontawesome/solid/broadcast-tower.svg create mode 100644 docs/material/.icons/fontawesome/solid/broom.svg create mode 100644 docs/material/.icons/fontawesome/solid/brush.svg create mode 100644 docs/material/.icons/fontawesome/solid/bug.svg create mode 100644 docs/material/.icons/fontawesome/solid/building.svg create mode 100644 docs/material/.icons/fontawesome/solid/bullhorn.svg create mode 100644 docs/material/.icons/fontawesome/solid/bullseye.svg create mode 100644 docs/material/.icons/fontawesome/solid/burn.svg create mode 100644 docs/material/.icons/fontawesome/solid/bus-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/bus.svg create mode 100644 docs/material/.icons/fontawesome/solid/business-time.svg create mode 100644 docs/material/.icons/fontawesome/solid/calculator.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar-check.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar-day.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar-minus.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar-plus.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar-times.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar-week.svg create mode 100644 docs/material/.icons/fontawesome/solid/calendar.svg create mode 100644 docs/material/.icons/fontawesome/solid/camera-retro.svg create mode 100644 docs/material/.icons/fontawesome/solid/camera.svg create mode 100644 docs/material/.icons/fontawesome/solid/campground.svg create mode 100644 docs/material/.icons/fontawesome/solid/candy-cane.svg create mode 100644 docs/material/.icons/fontawesome/solid/cannabis.svg create mode 100644 docs/material/.icons/fontawesome/solid/capsules.svg create mode 100644 docs/material/.icons/fontawesome/solid/car-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/car-battery.svg create mode 100644 docs/material/.icons/fontawesome/solid/car-crash.svg create mode 100644 docs/material/.icons/fontawesome/solid/car-side.svg create mode 100644 docs/material/.icons/fontawesome/solid/car.svg create mode 100644 docs/material/.icons/fontawesome/solid/caravan.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-square-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-square-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-square-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-square-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/caret-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/carrot.svg create mode 100644 docs/material/.icons/fontawesome/solid/cart-arrow-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/cart-plus.svg create mode 100644 docs/material/.icons/fontawesome/solid/cash-register.svg create mode 100644 docs/material/.icons/fontawesome/solid/cat.svg create mode 100644 docs/material/.icons/fontawesome/solid/certificate.svg create mode 100644 docs/material/.icons/fontawesome/solid/chair.svg create mode 100644 docs/material/.icons/fontawesome/solid/chalkboard-teacher.svg create mode 100644 docs/material/.icons/fontawesome/solid/chalkboard.svg create mode 100644 docs/material/.icons/fontawesome/solid/charging-station.svg create mode 100644 docs/material/.icons/fontawesome/solid/chart-area.svg create mode 100644 docs/material/.icons/fontawesome/solid/chart-bar.svg create mode 100644 docs/material/.icons/fontawesome/solid/chart-line.svg create mode 100644 docs/material/.icons/fontawesome/solid/chart-pie.svg create mode 100644 docs/material/.icons/fontawesome/solid/check-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/check-double.svg create mode 100644 docs/material/.icons/fontawesome/solid/check-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/check.svg create mode 100644 docs/material/.icons/fontawesome/solid/cheese.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess-bishop.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess-board.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess-king.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess-knight.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess-pawn.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess-queen.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess-rook.svg create mode 100644 docs/material/.icons/fontawesome/solid/chess.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-circle-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-circle-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-circle-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-circle-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/chevron-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/child.svg create mode 100644 docs/material/.icons/fontawesome/solid/church.svg create mode 100644 docs/material/.icons/fontawesome/solid/circle-notch.svg create mode 100644 docs/material/.icons/fontawesome/solid/circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/city.svg create mode 100644 docs/material/.icons/fontawesome/solid/clinic-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/clipboard-check.svg create mode 100644 docs/material/.icons/fontawesome/solid/clipboard-list.svg create mode 100644 docs/material/.icons/fontawesome/solid/clipboard.svg create mode 100644 docs/material/.icons/fontawesome/solid/clock.svg create mode 100644 docs/material/.icons/fontawesome/solid/clone.svg create mode 100644 docs/material/.icons/fontawesome/solid/closed-captioning.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-download-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-meatball.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-moon-rain.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-moon.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-rain.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-showers-heavy.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-sun-rain.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-sun.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud-upload-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/cloud.svg create mode 100644 docs/material/.icons/fontawesome/solid/cocktail.svg create mode 100644 docs/material/.icons/fontawesome/solid/code-branch.svg create mode 100644 docs/material/.icons/fontawesome/solid/code.svg create mode 100644 docs/material/.icons/fontawesome/solid/coffee.svg create mode 100644 docs/material/.icons/fontawesome/solid/cog.svg create mode 100644 docs/material/.icons/fontawesome/solid/cogs.svg create mode 100644 docs/material/.icons/fontawesome/solid/coins.svg create mode 100644 docs/material/.icons/fontawesome/solid/columns.svg create mode 100644 docs/material/.icons/fontawesome/solid/comment-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/comment-dollar.svg create mode 100644 docs/material/.icons/fontawesome/solid/comment-dots.svg create mode 100644 docs/material/.icons/fontawesome/solid/comment-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/comment-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/comment.svg create mode 100644 docs/material/.icons/fontawesome/solid/comments-dollar.svg create mode 100644 docs/material/.icons/fontawesome/solid/comments.svg create mode 100644 docs/material/.icons/fontawesome/solid/compact-disc.svg create mode 100644 docs/material/.icons/fontawesome/solid/compass.svg create mode 100644 docs/material/.icons/fontawesome/solid/compress-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/compress-arrows-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/compress.svg create mode 100644 docs/material/.icons/fontawesome/solid/concierge-bell.svg create mode 100644 docs/material/.icons/fontawesome/solid/cookie-bite.svg create mode 100644 docs/material/.icons/fontawesome/solid/cookie.svg create mode 100644 docs/material/.icons/fontawesome/solid/copy.svg create mode 100644 docs/material/.icons/fontawesome/solid/copyright.svg create mode 100644 docs/material/.icons/fontawesome/solid/couch.svg create mode 100644 docs/material/.icons/fontawesome/solid/credit-card.svg create mode 100644 docs/material/.icons/fontawesome/solid/crop-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/crop.svg create mode 100644 docs/material/.icons/fontawesome/solid/cross.svg create mode 100644 docs/material/.icons/fontawesome/solid/crosshairs.svg create mode 100644 docs/material/.icons/fontawesome/solid/crow.svg create mode 100644 docs/material/.icons/fontawesome/solid/crown.svg create mode 100644 docs/material/.icons/fontawesome/solid/crutch.svg create mode 100644 docs/material/.icons/fontawesome/solid/cube.svg create mode 100644 docs/material/.icons/fontawesome/solid/cubes.svg create mode 100644 docs/material/.icons/fontawesome/solid/cut.svg create mode 100644 docs/material/.icons/fontawesome/solid/database.svg create mode 100644 docs/material/.icons/fontawesome/solid/deaf.svg create mode 100644 docs/material/.icons/fontawesome/solid/democrat.svg create mode 100644 docs/material/.icons/fontawesome/solid/desktop.svg create mode 100644 docs/material/.icons/fontawesome/solid/dharmachakra.svg create mode 100644 docs/material/.icons/fontawesome/solid/diagnoses.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-d20.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-d6.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-five.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-four.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-one.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-six.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-three.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice-two.svg create mode 100644 docs/material/.icons/fontawesome/solid/dice.svg create mode 100644 docs/material/.icons/fontawesome/solid/digital-tachograph.svg create mode 100644 docs/material/.icons/fontawesome/solid/directions.svg create mode 100644 docs/material/.icons/fontawesome/solid/disease.svg create mode 100644 docs/material/.icons/fontawesome/solid/divide.svg create mode 100644 docs/material/.icons/fontawesome/solid/dizzy.svg create mode 100644 docs/material/.icons/fontawesome/solid/dna.svg create mode 100644 docs/material/.icons/fontawesome/solid/dog.svg create mode 100644 docs/material/.icons/fontawesome/solid/dollar-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/dolly-flatbed.svg create mode 100644 docs/material/.icons/fontawesome/solid/dolly.svg create mode 100644 docs/material/.icons/fontawesome/solid/donate.svg create mode 100644 docs/material/.icons/fontawesome/solid/door-closed.svg create mode 100644 docs/material/.icons/fontawesome/solid/door-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/dot-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/dove.svg create mode 100644 docs/material/.icons/fontawesome/solid/download.svg create mode 100644 docs/material/.icons/fontawesome/solid/drafting-compass.svg create mode 100644 docs/material/.icons/fontawesome/solid/dragon.svg create mode 100644 docs/material/.icons/fontawesome/solid/draw-polygon.svg create mode 100644 docs/material/.icons/fontawesome/solid/drum-steelpan.svg create mode 100644 docs/material/.icons/fontawesome/solid/drum.svg create mode 100644 docs/material/.icons/fontawesome/solid/drumstick-bite.svg create mode 100644 docs/material/.icons/fontawesome/solid/dumbbell.svg create mode 100644 docs/material/.icons/fontawesome/solid/dumpster-fire.svg create mode 100644 docs/material/.icons/fontawesome/solid/dumpster.svg create mode 100644 docs/material/.icons/fontawesome/solid/dungeon.svg create mode 100644 docs/material/.icons/fontawesome/solid/edit.svg create mode 100644 docs/material/.icons/fontawesome/solid/egg.svg create mode 100644 docs/material/.icons/fontawesome/solid/eject.svg create mode 100644 docs/material/.icons/fontawesome/solid/ellipsis-h.svg create mode 100644 docs/material/.icons/fontawesome/solid/ellipsis-v.svg create mode 100644 docs/material/.icons/fontawesome/solid/envelope-open-text.svg create mode 100644 docs/material/.icons/fontawesome/solid/envelope-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/envelope-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/envelope.svg create mode 100644 docs/material/.icons/fontawesome/solid/equals.svg create mode 100644 docs/material/.icons/fontawesome/solid/eraser.svg create mode 100644 docs/material/.icons/fontawesome/solid/ethernet.svg create mode 100644 docs/material/.icons/fontawesome/solid/euro-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/exchange-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/exclamation-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/exclamation-triangle.svg create mode 100644 docs/material/.icons/fontawesome/solid/exclamation.svg create mode 100644 docs/material/.icons/fontawesome/solid/expand-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/expand-arrows-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/expand.svg create mode 100644 docs/material/.icons/fontawesome/solid/external-link-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/external-link-square-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/eye-dropper.svg create mode 100644 docs/material/.icons/fontawesome/solid/eye-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/eye.svg create mode 100644 docs/material/.icons/fontawesome/solid/fan.svg create mode 100644 docs/material/.icons/fontawesome/solid/fast-backward.svg create mode 100644 docs/material/.icons/fontawesome/solid/fast-forward.svg create mode 100644 docs/material/.icons/fontawesome/solid/faucet.svg create mode 100644 docs/material/.icons/fontawesome/solid/fax.svg create mode 100644 docs/material/.icons/fontawesome/solid/feather-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/feather.svg create mode 100644 docs/material/.icons/fontawesome/solid/female.svg create mode 100644 docs/material/.icons/fontawesome/solid/fighter-jet.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-archive.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-audio.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-code.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-contract.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-csv.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-download.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-excel.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-export.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-image.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-import.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-invoice-dollar.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-invoice.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-medical-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-pdf.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-powerpoint.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-prescription.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-signature.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-upload.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-video.svg create mode 100644 docs/material/.icons/fontawesome/solid/file-word.svg create mode 100644 docs/material/.icons/fontawesome/solid/file.svg create mode 100644 docs/material/.icons/fontawesome/solid/fill-drip.svg create mode 100644 docs/material/.icons/fontawesome/solid/fill.svg create mode 100644 docs/material/.icons/fontawesome/solid/film.svg create mode 100644 docs/material/.icons/fontawesome/solid/filter.svg create mode 100644 docs/material/.icons/fontawesome/solid/fingerprint.svg create mode 100644 docs/material/.icons/fontawesome/solid/fire-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/fire-extinguisher.svg create mode 100644 docs/material/.icons/fontawesome/solid/fire.svg create mode 100644 docs/material/.icons/fontawesome/solid/first-aid.svg create mode 100644 docs/material/.icons/fontawesome/solid/fish.svg create mode 100644 docs/material/.icons/fontawesome/solid/fist-raised.svg create mode 100644 docs/material/.icons/fontawesome/solid/flag-checkered.svg create mode 100644 docs/material/.icons/fontawesome/solid/flag-usa.svg create mode 100644 docs/material/.icons/fontawesome/solid/flag.svg create mode 100644 docs/material/.icons/fontawesome/solid/flask.svg create mode 100644 docs/material/.icons/fontawesome/solid/flushed.svg create mode 100644 docs/material/.icons/fontawesome/solid/folder-minus.svg create mode 100644 docs/material/.icons/fontawesome/solid/folder-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/folder-plus.svg create mode 100644 docs/material/.icons/fontawesome/solid/folder.svg create mode 100644 docs/material/.icons/fontawesome/solid/font-awesome-logo-full.svg create mode 100644 docs/material/.icons/fontawesome/solid/font.svg create mode 100644 docs/material/.icons/fontawesome/solid/football-ball.svg create mode 100644 docs/material/.icons/fontawesome/solid/forward.svg create mode 100644 docs/material/.icons/fontawesome/solid/frog.svg create mode 100644 docs/material/.icons/fontawesome/solid/frown-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/frown.svg create mode 100644 docs/material/.icons/fontawesome/solid/funnel-dollar.svg create mode 100644 docs/material/.icons/fontawesome/solid/futbol.svg create mode 100644 docs/material/.icons/fontawesome/solid/gamepad.svg create mode 100644 docs/material/.icons/fontawesome/solid/gas-pump.svg create mode 100644 docs/material/.icons/fontawesome/solid/gavel.svg create mode 100644 docs/material/.icons/fontawesome/solid/gem.svg create mode 100644 docs/material/.icons/fontawesome/solid/genderless.svg create mode 100644 docs/material/.icons/fontawesome/solid/ghost.svg create mode 100644 docs/material/.icons/fontawesome/solid/gift.svg create mode 100644 docs/material/.icons/fontawesome/solid/gifts.svg create mode 100644 docs/material/.icons/fontawesome/solid/glass-cheers.svg create mode 100644 docs/material/.icons/fontawesome/solid/glass-martini-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/glass-martini.svg create mode 100644 docs/material/.icons/fontawesome/solid/glass-whiskey.svg create mode 100644 docs/material/.icons/fontawesome/solid/glasses.svg create mode 100644 docs/material/.icons/fontawesome/solid/globe-africa.svg create mode 100644 docs/material/.icons/fontawesome/solid/globe-americas.svg create mode 100644 docs/material/.icons/fontawesome/solid/globe-asia.svg create mode 100644 docs/material/.icons/fontawesome/solid/globe-europe.svg create mode 100644 docs/material/.icons/fontawesome/solid/globe.svg create mode 100644 docs/material/.icons/fontawesome/solid/golf-ball.svg create mode 100644 docs/material/.icons/fontawesome/solid/gopuram.svg create mode 100644 docs/material/.icons/fontawesome/solid/graduation-cap.svg create mode 100644 docs/material/.icons/fontawesome/solid/greater-than-equal.svg create mode 100644 docs/material/.icons/fontawesome/solid/greater-than.svg create mode 100644 docs/material/.icons/fontawesome/solid/grimace.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-beam-sweat.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-beam.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-hearts.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-squint-tears.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-squint.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-stars.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-tears.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-tongue-squint.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-tongue-wink.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-tongue.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin-wink.svg create mode 100644 docs/material/.icons/fontawesome/solid/grin.svg create mode 100644 docs/material/.icons/fontawesome/solid/grip-horizontal.svg create mode 100644 docs/material/.icons/fontawesome/solid/grip-lines-vertical.svg create mode 100644 docs/material/.icons/fontawesome/solid/grip-lines.svg create mode 100644 docs/material/.icons/fontawesome/solid/grip-vertical.svg create mode 100644 docs/material/.icons/fontawesome/solid/guitar.svg create mode 100644 docs/material/.icons/fontawesome/solid/h-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/hamburger.svg create mode 100644 docs/material/.icons/fontawesome/solid/hammer.svg create mode 100644 docs/material/.icons/fontawesome/solid/hamsa.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-holding-heart.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-holding-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-holding-usd.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-holding-water.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-holding.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-lizard.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-middle-finger.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-paper.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-peace.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-point-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-point-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-point-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-point-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-pointer.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-rock.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-scissors.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-sparkles.svg create mode 100644 docs/material/.icons/fontawesome/solid/hand-spock.svg create mode 100644 docs/material/.icons/fontawesome/solid/hands-helping.svg create mode 100644 docs/material/.icons/fontawesome/solid/hands-wash.svg create mode 100644 docs/material/.icons/fontawesome/solid/hands.svg create mode 100644 docs/material/.icons/fontawesome/solid/handshake-alt-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/handshake-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/handshake.svg create mode 100644 docs/material/.icons/fontawesome/solid/hanukiah.svg create mode 100644 docs/material/.icons/fontawesome/solid/hard-hat.svg create mode 100644 docs/material/.icons/fontawesome/solid/hashtag.svg create mode 100644 docs/material/.icons/fontawesome/solid/hat-cowboy-side.svg create mode 100644 docs/material/.icons/fontawesome/solid/hat-cowboy.svg create mode 100644 docs/material/.icons/fontawesome/solid/hat-wizard.svg create mode 100644 docs/material/.icons/fontawesome/solid/hdd.svg create mode 100644 docs/material/.icons/fontawesome/solid/head-side-cough-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/head-side-cough.svg create mode 100644 docs/material/.icons/fontawesome/solid/head-side-mask.svg create mode 100644 docs/material/.icons/fontawesome/solid/head-side-virus.svg create mode 100644 docs/material/.icons/fontawesome/solid/heading.svg create mode 100644 docs/material/.icons/fontawesome/solid/headphones-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/headphones.svg create mode 100644 docs/material/.icons/fontawesome/solid/headset.svg create mode 100644 docs/material/.icons/fontawesome/solid/heart-broken.svg create mode 100644 docs/material/.icons/fontawesome/solid/heart.svg create mode 100644 docs/material/.icons/fontawesome/solid/heartbeat.svg create mode 100644 docs/material/.icons/fontawesome/solid/helicopter.svg create mode 100644 docs/material/.icons/fontawesome/solid/highlighter.svg create mode 100644 docs/material/.icons/fontawesome/solid/hiking.svg create mode 100644 docs/material/.icons/fontawesome/solid/hippo.svg create mode 100644 docs/material/.icons/fontawesome/solid/history.svg create mode 100644 docs/material/.icons/fontawesome/solid/hockey-puck.svg create mode 100644 docs/material/.icons/fontawesome/solid/holly-berry.svg create mode 100644 docs/material/.icons/fontawesome/solid/home.svg create mode 100644 docs/material/.icons/fontawesome/solid/horse-head.svg create mode 100644 docs/material/.icons/fontawesome/solid/horse.svg create mode 100644 docs/material/.icons/fontawesome/solid/hospital-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/hospital-symbol.svg create mode 100644 docs/material/.icons/fontawesome/solid/hospital-user.svg create mode 100644 docs/material/.icons/fontawesome/solid/hospital.svg create mode 100644 docs/material/.icons/fontawesome/solid/hot-tub.svg create mode 100644 docs/material/.icons/fontawesome/solid/hotdog.svg create mode 100644 docs/material/.icons/fontawesome/solid/hotel.svg create mode 100644 docs/material/.icons/fontawesome/solid/hourglass-end.svg create mode 100644 docs/material/.icons/fontawesome/solid/hourglass-half.svg create mode 100644 docs/material/.icons/fontawesome/solid/hourglass-start.svg create mode 100644 docs/material/.icons/fontawesome/solid/hourglass.svg create mode 100644 docs/material/.icons/fontawesome/solid/house-damage.svg create mode 100644 docs/material/.icons/fontawesome/solid/house-user.svg create mode 100644 docs/material/.icons/fontawesome/solid/hryvnia.svg create mode 100644 docs/material/.icons/fontawesome/solid/i-cursor.svg create mode 100644 docs/material/.icons/fontawesome/solid/ice-cream.svg create mode 100644 docs/material/.icons/fontawesome/solid/icicles.svg create mode 100644 docs/material/.icons/fontawesome/solid/icons.svg create mode 100644 docs/material/.icons/fontawesome/solid/id-badge.svg create mode 100644 docs/material/.icons/fontawesome/solid/id-card-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/id-card.svg create mode 100644 docs/material/.icons/fontawesome/solid/igloo.svg create mode 100644 docs/material/.icons/fontawesome/solid/image.svg create mode 100644 docs/material/.icons/fontawesome/solid/images.svg create mode 100644 docs/material/.icons/fontawesome/solid/inbox.svg create mode 100644 docs/material/.icons/fontawesome/solid/indent.svg create mode 100644 docs/material/.icons/fontawesome/solid/industry.svg create mode 100644 docs/material/.icons/fontawesome/solid/infinity.svg create mode 100644 docs/material/.icons/fontawesome/solid/info-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/info.svg create mode 100644 docs/material/.icons/fontawesome/solid/italic.svg create mode 100644 docs/material/.icons/fontawesome/solid/jedi.svg create mode 100644 docs/material/.icons/fontawesome/solid/joint.svg create mode 100644 docs/material/.icons/fontawesome/solid/journal-whills.svg create mode 100644 docs/material/.icons/fontawesome/solid/kaaba.svg create mode 100644 docs/material/.icons/fontawesome/solid/key.svg create mode 100644 docs/material/.icons/fontawesome/solid/keyboard.svg create mode 100644 docs/material/.icons/fontawesome/solid/khanda.svg create mode 100644 docs/material/.icons/fontawesome/solid/kiss-beam.svg create mode 100644 docs/material/.icons/fontawesome/solid/kiss-wink-heart.svg create mode 100644 docs/material/.icons/fontawesome/solid/kiss.svg create mode 100644 docs/material/.icons/fontawesome/solid/kiwi-bird.svg create mode 100644 docs/material/.icons/fontawesome/solid/landmark.svg create mode 100644 docs/material/.icons/fontawesome/solid/language.svg create mode 100644 docs/material/.icons/fontawesome/solid/laptop-code.svg create mode 100644 docs/material/.icons/fontawesome/solid/laptop-house.svg create mode 100644 docs/material/.icons/fontawesome/solid/laptop-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/laptop.svg create mode 100644 docs/material/.icons/fontawesome/solid/laugh-beam.svg create mode 100644 docs/material/.icons/fontawesome/solid/laugh-squint.svg create mode 100644 docs/material/.icons/fontawesome/solid/laugh-wink.svg create mode 100644 docs/material/.icons/fontawesome/solid/laugh.svg create mode 100644 docs/material/.icons/fontawesome/solid/layer-group.svg create mode 100644 docs/material/.icons/fontawesome/solid/leaf.svg create mode 100644 docs/material/.icons/fontawesome/solid/lemon.svg create mode 100644 docs/material/.icons/fontawesome/solid/less-than-equal.svg create mode 100644 docs/material/.icons/fontawesome/solid/less-than.svg create mode 100644 docs/material/.icons/fontawesome/solid/level-down-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/level-up-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/life-ring.svg create mode 100644 docs/material/.icons/fontawesome/solid/lightbulb.svg create mode 100644 docs/material/.icons/fontawesome/solid/link.svg create mode 100644 docs/material/.icons/fontawesome/solid/lira-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/list-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/list-ol.svg create mode 100644 docs/material/.icons/fontawesome/solid/list-ul.svg create mode 100644 docs/material/.icons/fontawesome/solid/list.svg create mode 100644 docs/material/.icons/fontawesome/solid/location-arrow.svg create mode 100644 docs/material/.icons/fontawesome/solid/lock-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/lock.svg create mode 100644 docs/material/.icons/fontawesome/solid/long-arrow-alt-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/long-arrow-alt-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/long-arrow-alt-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/long-arrow-alt-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/low-vision.svg create mode 100644 docs/material/.icons/fontawesome/solid/luggage-cart.svg create mode 100644 docs/material/.icons/fontawesome/solid/lungs-virus.svg create mode 100644 docs/material/.icons/fontawesome/solid/lungs.svg create mode 100644 docs/material/.icons/fontawesome/solid/magic.svg create mode 100644 docs/material/.icons/fontawesome/solid/magnet.svg create mode 100644 docs/material/.icons/fontawesome/solid/mail-bulk.svg create mode 100644 docs/material/.icons/fontawesome/solid/male.svg create mode 100644 docs/material/.icons/fontawesome/solid/map-marked-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/map-marked.svg create mode 100644 docs/material/.icons/fontawesome/solid/map-marker-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/map-marker.svg create mode 100644 docs/material/.icons/fontawesome/solid/map-pin.svg create mode 100644 docs/material/.icons/fontawesome/solid/map-signs.svg create mode 100644 docs/material/.icons/fontawesome/solid/map.svg create mode 100644 docs/material/.icons/fontawesome/solid/marker.svg create mode 100644 docs/material/.icons/fontawesome/solid/mars-double.svg create mode 100644 docs/material/.icons/fontawesome/solid/mars-stroke-h.svg create mode 100644 docs/material/.icons/fontawesome/solid/mars-stroke-v.svg create mode 100644 docs/material/.icons/fontawesome/solid/mars-stroke.svg create mode 100644 docs/material/.icons/fontawesome/solid/mars.svg create mode 100644 docs/material/.icons/fontawesome/solid/mask.svg create mode 100644 docs/material/.icons/fontawesome/solid/medal.svg create mode 100644 docs/material/.icons/fontawesome/solid/medkit.svg create mode 100644 docs/material/.icons/fontawesome/solid/meh-blank.svg create mode 100644 docs/material/.icons/fontawesome/solid/meh-rolling-eyes.svg create mode 100644 docs/material/.icons/fontawesome/solid/meh.svg create mode 100644 docs/material/.icons/fontawesome/solid/memory.svg create mode 100644 docs/material/.icons/fontawesome/solid/menorah.svg create mode 100644 docs/material/.icons/fontawesome/solid/mercury.svg create mode 100644 docs/material/.icons/fontawesome/solid/meteor.svg create mode 100644 docs/material/.icons/fontawesome/solid/microchip.svg create mode 100644 docs/material/.icons/fontawesome/solid/microphone-alt-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/microphone-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/microphone-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/microphone.svg create mode 100644 docs/material/.icons/fontawesome/solid/microscope.svg create mode 100644 docs/material/.icons/fontawesome/solid/minus-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/minus-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/minus.svg create mode 100644 docs/material/.icons/fontawesome/solid/mitten.svg create mode 100644 docs/material/.icons/fontawesome/solid/mobile-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/mobile.svg create mode 100644 docs/material/.icons/fontawesome/solid/money-bill-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/money-bill-wave-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/money-bill-wave.svg create mode 100644 docs/material/.icons/fontawesome/solid/money-bill.svg create mode 100644 docs/material/.icons/fontawesome/solid/money-check-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/money-check.svg create mode 100644 docs/material/.icons/fontawesome/solid/monument.svg create mode 100644 docs/material/.icons/fontawesome/solid/moon.svg create mode 100644 docs/material/.icons/fontawesome/solid/mortar-pestle.svg create mode 100644 docs/material/.icons/fontawesome/solid/mosque.svg create mode 100644 docs/material/.icons/fontawesome/solid/motorcycle.svg create mode 100644 docs/material/.icons/fontawesome/solid/mountain.svg create mode 100644 docs/material/.icons/fontawesome/solid/mouse-pointer.svg create mode 100644 docs/material/.icons/fontawesome/solid/mouse.svg create mode 100644 docs/material/.icons/fontawesome/solid/mug-hot.svg create mode 100644 docs/material/.icons/fontawesome/solid/music.svg create mode 100644 docs/material/.icons/fontawesome/solid/network-wired.svg create mode 100644 docs/material/.icons/fontawesome/solid/neuter.svg create mode 100644 docs/material/.icons/fontawesome/solid/newspaper.svg create mode 100644 docs/material/.icons/fontawesome/solid/not-equal.svg create mode 100644 docs/material/.icons/fontawesome/solid/notes-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/object-group.svg create mode 100644 docs/material/.icons/fontawesome/solid/object-ungroup.svg create mode 100644 docs/material/.icons/fontawesome/solid/oil-can.svg create mode 100644 docs/material/.icons/fontawesome/solid/om.svg create mode 100644 docs/material/.icons/fontawesome/solid/otter.svg create mode 100644 docs/material/.icons/fontawesome/solid/outdent.svg create mode 100644 docs/material/.icons/fontawesome/solid/pager.svg create mode 100644 docs/material/.icons/fontawesome/solid/paint-brush.svg create mode 100644 docs/material/.icons/fontawesome/solid/paint-roller.svg create mode 100644 docs/material/.icons/fontawesome/solid/palette.svg create mode 100644 docs/material/.icons/fontawesome/solid/pallet.svg create mode 100644 docs/material/.icons/fontawesome/solid/paper-plane.svg create mode 100644 docs/material/.icons/fontawesome/solid/paperclip.svg create mode 100644 docs/material/.icons/fontawesome/solid/parachute-box.svg create mode 100644 docs/material/.icons/fontawesome/solid/paragraph.svg create mode 100644 docs/material/.icons/fontawesome/solid/parking.svg create mode 100644 docs/material/.icons/fontawesome/solid/passport.svg create mode 100644 docs/material/.icons/fontawesome/solid/pastafarianism.svg create mode 100644 docs/material/.icons/fontawesome/solid/paste.svg create mode 100644 docs/material/.icons/fontawesome/solid/pause-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/pause.svg create mode 100644 docs/material/.icons/fontawesome/solid/paw.svg create mode 100644 docs/material/.icons/fontawesome/solid/peace.svg create mode 100644 docs/material/.icons/fontawesome/solid/pen-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/pen-fancy.svg create mode 100644 docs/material/.icons/fontawesome/solid/pen-nib.svg create mode 100644 docs/material/.icons/fontawesome/solid/pen-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/pen.svg create mode 100644 docs/material/.icons/fontawesome/solid/pencil-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/pencil-ruler.svg create mode 100644 docs/material/.icons/fontawesome/solid/people-arrows.svg create mode 100644 docs/material/.icons/fontawesome/solid/people-carry.svg create mode 100644 docs/material/.icons/fontawesome/solid/pepper-hot.svg create mode 100644 docs/material/.icons/fontawesome/solid/percent.svg create mode 100644 docs/material/.icons/fontawesome/solid/percentage.svg create mode 100644 docs/material/.icons/fontawesome/solid/person-booth.svg create mode 100644 docs/material/.icons/fontawesome/solid/phone-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/phone-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/phone-square-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/phone-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/phone-volume.svg create mode 100644 docs/material/.icons/fontawesome/solid/phone.svg create mode 100644 docs/material/.icons/fontawesome/solid/photo-video.svg create mode 100644 docs/material/.icons/fontawesome/solid/piggy-bank.svg create mode 100644 docs/material/.icons/fontawesome/solid/pills.svg create mode 100644 docs/material/.icons/fontawesome/solid/pizza-slice.svg create mode 100644 docs/material/.icons/fontawesome/solid/place-of-worship.svg create mode 100644 docs/material/.icons/fontawesome/solid/plane-arrival.svg create mode 100644 docs/material/.icons/fontawesome/solid/plane-departure.svg create mode 100644 docs/material/.icons/fontawesome/solid/plane-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/plane.svg create mode 100644 docs/material/.icons/fontawesome/solid/play-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/play.svg create mode 100644 docs/material/.icons/fontawesome/solid/plug.svg create mode 100644 docs/material/.icons/fontawesome/solid/plus-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/plus-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/plus.svg create mode 100644 docs/material/.icons/fontawesome/solid/podcast.svg create mode 100644 docs/material/.icons/fontawesome/solid/poll-h.svg create mode 100644 docs/material/.icons/fontawesome/solid/poll.svg create mode 100644 docs/material/.icons/fontawesome/solid/poo-storm.svg create mode 100644 docs/material/.icons/fontawesome/solid/poo.svg create mode 100644 docs/material/.icons/fontawesome/solid/poop.svg create mode 100644 docs/material/.icons/fontawesome/solid/portrait.svg create mode 100644 docs/material/.icons/fontawesome/solid/pound-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/power-off.svg create mode 100644 docs/material/.icons/fontawesome/solid/pray.svg create mode 100644 docs/material/.icons/fontawesome/solid/praying-hands.svg create mode 100644 docs/material/.icons/fontawesome/solid/prescription-bottle-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/prescription-bottle.svg create mode 100644 docs/material/.icons/fontawesome/solid/prescription.svg create mode 100644 docs/material/.icons/fontawesome/solid/print.svg create mode 100644 docs/material/.icons/fontawesome/solid/procedures.svg create mode 100644 docs/material/.icons/fontawesome/solid/project-diagram.svg create mode 100644 docs/material/.icons/fontawesome/solid/pump-medical.svg create mode 100644 docs/material/.icons/fontawesome/solid/pump-soap.svg create mode 100644 docs/material/.icons/fontawesome/solid/puzzle-piece.svg create mode 100644 docs/material/.icons/fontawesome/solid/qrcode.svg create mode 100644 docs/material/.icons/fontawesome/solid/question-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/question.svg create mode 100644 docs/material/.icons/fontawesome/solid/quidditch.svg create mode 100644 docs/material/.icons/fontawesome/solid/quote-left.svg create mode 100644 docs/material/.icons/fontawesome/solid/quote-right.svg create mode 100644 docs/material/.icons/fontawesome/solid/quran.svg create mode 100644 docs/material/.icons/fontawesome/solid/radiation-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/radiation.svg create mode 100644 docs/material/.icons/fontawesome/solid/rainbow.svg create mode 100644 docs/material/.icons/fontawesome/solid/random.svg create mode 100644 docs/material/.icons/fontawesome/solid/receipt.svg create mode 100644 docs/material/.icons/fontawesome/solid/record-vinyl.svg create mode 100644 docs/material/.icons/fontawesome/solid/recycle.svg create mode 100644 docs/material/.icons/fontawesome/solid/redo-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/redo.svg create mode 100644 docs/material/.icons/fontawesome/solid/registered.svg create mode 100644 docs/material/.icons/fontawesome/solid/remove-format.svg create mode 100644 docs/material/.icons/fontawesome/solid/reply-all.svg create mode 100644 docs/material/.icons/fontawesome/solid/reply.svg create mode 100644 docs/material/.icons/fontawesome/solid/republican.svg create mode 100644 docs/material/.icons/fontawesome/solid/restroom.svg create mode 100644 docs/material/.icons/fontawesome/solid/retweet.svg create mode 100644 docs/material/.icons/fontawesome/solid/ribbon.svg create mode 100644 docs/material/.icons/fontawesome/solid/ring.svg create mode 100644 docs/material/.icons/fontawesome/solid/road.svg create mode 100644 docs/material/.icons/fontawesome/solid/robot.svg create mode 100644 docs/material/.icons/fontawesome/solid/rocket.svg create mode 100644 docs/material/.icons/fontawesome/solid/route.svg create mode 100644 docs/material/.icons/fontawesome/solid/rss-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/rss.svg create mode 100644 docs/material/.icons/fontawesome/solid/ruble-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/ruler-combined.svg create mode 100644 docs/material/.icons/fontawesome/solid/ruler-horizontal.svg create mode 100644 docs/material/.icons/fontawesome/solid/ruler-vertical.svg create mode 100644 docs/material/.icons/fontawesome/solid/ruler.svg create mode 100644 docs/material/.icons/fontawesome/solid/running.svg create mode 100644 docs/material/.icons/fontawesome/solid/rupee-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/sad-cry.svg create mode 100644 docs/material/.icons/fontawesome/solid/sad-tear.svg create mode 100644 docs/material/.icons/fontawesome/solid/satellite-dish.svg create mode 100644 docs/material/.icons/fontawesome/solid/satellite.svg create mode 100644 docs/material/.icons/fontawesome/solid/save.svg create mode 100644 docs/material/.icons/fontawesome/solid/school.svg create mode 100644 docs/material/.icons/fontawesome/solid/screwdriver.svg create mode 100644 docs/material/.icons/fontawesome/solid/scroll.svg create mode 100644 docs/material/.icons/fontawesome/solid/sd-card.svg create mode 100644 docs/material/.icons/fontawesome/solid/search-dollar.svg create mode 100644 docs/material/.icons/fontawesome/solid/search-location.svg create mode 100644 docs/material/.icons/fontawesome/solid/search-minus.svg create mode 100644 docs/material/.icons/fontawesome/solid/search-plus.svg create mode 100644 docs/material/.icons/fontawesome/solid/search.svg create mode 100644 docs/material/.icons/fontawesome/solid/seedling.svg create mode 100644 docs/material/.icons/fontawesome/solid/server.svg create mode 100644 docs/material/.icons/fontawesome/solid/shapes.svg create mode 100644 docs/material/.icons/fontawesome/solid/share-alt-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/share-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/share-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/share.svg create mode 100644 docs/material/.icons/fontawesome/solid/shekel-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/shield-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/shield-virus.svg create mode 100644 docs/material/.icons/fontawesome/solid/ship.svg create mode 100644 docs/material/.icons/fontawesome/solid/shipping-fast.svg create mode 100644 docs/material/.icons/fontawesome/solid/shoe-prints.svg create mode 100644 docs/material/.icons/fontawesome/solid/shopping-bag.svg create mode 100644 docs/material/.icons/fontawesome/solid/shopping-basket.svg create mode 100644 docs/material/.icons/fontawesome/solid/shopping-cart.svg create mode 100644 docs/material/.icons/fontawesome/solid/shower.svg create mode 100644 docs/material/.icons/fontawesome/solid/shuttle-van.svg create mode 100644 docs/material/.icons/fontawesome/solid/sign-in-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sign-language.svg create mode 100644 docs/material/.icons/fontawesome/solid/sign-out-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/signal.svg create mode 100644 docs/material/.icons/fontawesome/solid/signature.svg create mode 100644 docs/material/.icons/fontawesome/solid/sim-card.svg create mode 100644 docs/material/.icons/fontawesome/solid/sitemap.svg create mode 100644 docs/material/.icons/fontawesome/solid/skating.svg create mode 100644 docs/material/.icons/fontawesome/solid/skiing-nordic.svg create mode 100644 docs/material/.icons/fontawesome/solid/skiing.svg create mode 100644 docs/material/.icons/fontawesome/solid/skull-crossbones.svg create mode 100644 docs/material/.icons/fontawesome/solid/skull.svg create mode 100644 docs/material/.icons/fontawesome/solid/slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/sleigh.svg create mode 100644 docs/material/.icons/fontawesome/solid/sliders-h.svg create mode 100644 docs/material/.icons/fontawesome/solid/smile-beam.svg create mode 100644 docs/material/.icons/fontawesome/solid/smile-wink.svg create mode 100644 docs/material/.icons/fontawesome/solid/smile.svg create mode 100644 docs/material/.icons/fontawesome/solid/smog.svg create mode 100644 docs/material/.icons/fontawesome/solid/smoking-ban.svg create mode 100644 docs/material/.icons/fontawesome/solid/smoking.svg create mode 100644 docs/material/.icons/fontawesome/solid/sms.svg create mode 100644 docs/material/.icons/fontawesome/solid/snowboarding.svg create mode 100644 docs/material/.icons/fontawesome/solid/snowflake.svg create mode 100644 docs/material/.icons/fontawesome/solid/snowman.svg create mode 100644 docs/material/.icons/fontawesome/solid/snowplow.svg create mode 100644 docs/material/.icons/fontawesome/solid/soap.svg create mode 100644 docs/material/.icons/fontawesome/solid/socks.svg create mode 100644 docs/material/.icons/fontawesome/solid/solar-panel.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-alpha-down-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-alpha-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-alpha-up-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-alpha-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-amount-down-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-amount-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-amount-up-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-amount-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-numeric-down-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-numeric-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-numeric-up-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-numeric-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/sort.svg create mode 100644 docs/material/.icons/fontawesome/solid/spa.svg create mode 100644 docs/material/.icons/fontawesome/solid/space-shuttle.svg create mode 100644 docs/material/.icons/fontawesome/solid/spell-check.svg create mode 100644 docs/material/.icons/fontawesome/solid/spider.svg create mode 100644 docs/material/.icons/fontawesome/solid/spinner.svg create mode 100644 docs/material/.icons/fontawesome/solid/splotch.svg create mode 100644 docs/material/.icons/fontawesome/solid/spray-can.svg create mode 100644 docs/material/.icons/fontawesome/solid/square-full.svg create mode 100644 docs/material/.icons/fontawesome/solid/square-root-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/square.svg create mode 100644 docs/material/.icons/fontawesome/solid/stamp.svg create mode 100644 docs/material/.icons/fontawesome/solid/star-and-crescent.svg create mode 100644 docs/material/.icons/fontawesome/solid/star-half-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/star-half.svg create mode 100644 docs/material/.icons/fontawesome/solid/star-of-david.svg create mode 100644 docs/material/.icons/fontawesome/solid/star-of-life.svg create mode 100644 docs/material/.icons/fontawesome/solid/star.svg create mode 100644 docs/material/.icons/fontawesome/solid/step-backward.svg create mode 100644 docs/material/.icons/fontawesome/solid/step-forward.svg create mode 100644 docs/material/.icons/fontawesome/solid/stethoscope.svg create mode 100644 docs/material/.icons/fontawesome/solid/sticky-note.svg create mode 100644 docs/material/.icons/fontawesome/solid/stop-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/stop.svg create mode 100644 docs/material/.icons/fontawesome/solid/stopwatch-20.svg create mode 100644 docs/material/.icons/fontawesome/solid/stopwatch.svg create mode 100644 docs/material/.icons/fontawesome/solid/store-alt-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/store-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/store-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/store.svg create mode 100644 docs/material/.icons/fontawesome/solid/stream.svg create mode 100644 docs/material/.icons/fontawesome/solid/street-view.svg create mode 100644 docs/material/.icons/fontawesome/solid/strikethrough.svg create mode 100644 docs/material/.icons/fontawesome/solid/stroopwafel.svg create mode 100644 docs/material/.icons/fontawesome/solid/subscript.svg create mode 100644 docs/material/.icons/fontawesome/solid/subway.svg create mode 100644 docs/material/.icons/fontawesome/solid/suitcase-rolling.svg create mode 100644 docs/material/.icons/fontawesome/solid/suitcase.svg create mode 100644 docs/material/.icons/fontawesome/solid/sun.svg create mode 100644 docs/material/.icons/fontawesome/solid/superscript.svg create mode 100644 docs/material/.icons/fontawesome/solid/surprise.svg create mode 100644 docs/material/.icons/fontawesome/solid/swatchbook.svg create mode 100644 docs/material/.icons/fontawesome/solid/swimmer.svg create mode 100644 docs/material/.icons/fontawesome/solid/swimming-pool.svg create mode 100644 docs/material/.icons/fontawesome/solid/synagogue.svg create mode 100644 docs/material/.icons/fontawesome/solid/sync-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/sync.svg create mode 100644 docs/material/.icons/fontawesome/solid/syringe.svg create mode 100644 docs/material/.icons/fontawesome/solid/table-tennis.svg create mode 100644 docs/material/.icons/fontawesome/solid/table.svg create mode 100644 docs/material/.icons/fontawesome/solid/tablet-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/tablet.svg create mode 100644 docs/material/.icons/fontawesome/solid/tablets.svg create mode 100644 docs/material/.icons/fontawesome/solid/tachometer-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/tag.svg create mode 100644 docs/material/.icons/fontawesome/solid/tags.svg create mode 100644 docs/material/.icons/fontawesome/solid/tape.svg create mode 100644 docs/material/.icons/fontawesome/solid/tasks.svg create mode 100644 docs/material/.icons/fontawesome/solid/taxi.svg create mode 100644 docs/material/.icons/fontawesome/solid/teeth-open.svg create mode 100644 docs/material/.icons/fontawesome/solid/teeth.svg create mode 100644 docs/material/.icons/fontawesome/solid/temperature-high.svg create mode 100644 docs/material/.icons/fontawesome/solid/temperature-low.svg create mode 100644 docs/material/.icons/fontawesome/solid/tenge.svg create mode 100644 docs/material/.icons/fontawesome/solid/terminal.svg create mode 100644 docs/material/.icons/fontawesome/solid/text-height.svg create mode 100644 docs/material/.icons/fontawesome/solid/text-width.svg create mode 100644 docs/material/.icons/fontawesome/solid/th-large.svg create mode 100644 docs/material/.icons/fontawesome/solid/th-list.svg create mode 100644 docs/material/.icons/fontawesome/solid/th.svg create mode 100644 docs/material/.icons/fontawesome/solid/theater-masks.svg create mode 100644 docs/material/.icons/fontawesome/solid/thermometer-empty.svg create mode 100644 docs/material/.icons/fontawesome/solid/thermometer-full.svg create mode 100644 docs/material/.icons/fontawesome/solid/thermometer-half.svg create mode 100644 docs/material/.icons/fontawesome/solid/thermometer-quarter.svg create mode 100644 docs/material/.icons/fontawesome/solid/thermometer-three-quarters.svg create mode 100644 docs/material/.icons/fontawesome/solid/thermometer.svg create mode 100644 docs/material/.icons/fontawesome/solid/thumbs-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/thumbs-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/thumbtack.svg create mode 100644 docs/material/.icons/fontawesome/solid/ticket-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/times-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/times.svg create mode 100644 docs/material/.icons/fontawesome/solid/tint-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/tint.svg create mode 100644 docs/material/.icons/fontawesome/solid/tired.svg create mode 100644 docs/material/.icons/fontawesome/solid/toggle-off.svg create mode 100644 docs/material/.icons/fontawesome/solid/toggle-on.svg create mode 100644 docs/material/.icons/fontawesome/solid/toilet-paper-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/toilet-paper.svg create mode 100644 docs/material/.icons/fontawesome/solid/toilet.svg create mode 100644 docs/material/.icons/fontawesome/solid/toolbox.svg create mode 100644 docs/material/.icons/fontawesome/solid/tools.svg create mode 100644 docs/material/.icons/fontawesome/solid/tooth.svg create mode 100644 docs/material/.icons/fontawesome/solid/torah.svg create mode 100644 docs/material/.icons/fontawesome/solid/torii-gate.svg create mode 100644 docs/material/.icons/fontawesome/solid/tractor.svg create mode 100644 docs/material/.icons/fontawesome/solid/trademark.svg create mode 100644 docs/material/.icons/fontawesome/solid/traffic-light.svg create mode 100644 docs/material/.icons/fontawesome/solid/trailer.svg create mode 100644 docs/material/.icons/fontawesome/solid/train.svg create mode 100644 docs/material/.icons/fontawesome/solid/tram.svg create mode 100644 docs/material/.icons/fontawesome/solid/transgender-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/transgender.svg create mode 100644 docs/material/.icons/fontawesome/solid/trash-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/trash-restore-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/trash-restore.svg create mode 100644 docs/material/.icons/fontawesome/solid/trash.svg create mode 100644 docs/material/.icons/fontawesome/solid/tree.svg create mode 100644 docs/material/.icons/fontawesome/solid/trophy.svg create mode 100644 docs/material/.icons/fontawesome/solid/truck-loading.svg create mode 100644 docs/material/.icons/fontawesome/solid/truck-monster.svg create mode 100644 docs/material/.icons/fontawesome/solid/truck-moving.svg create mode 100644 docs/material/.icons/fontawesome/solid/truck-pickup.svg create mode 100644 docs/material/.icons/fontawesome/solid/truck.svg create mode 100644 docs/material/.icons/fontawesome/solid/tshirt.svg create mode 100644 docs/material/.icons/fontawesome/solid/tty.svg create mode 100644 docs/material/.icons/fontawesome/solid/tv.svg create mode 100644 docs/material/.icons/fontawesome/solid/umbrella-beach.svg create mode 100644 docs/material/.icons/fontawesome/solid/umbrella.svg create mode 100644 docs/material/.icons/fontawesome/solid/underline.svg create mode 100644 docs/material/.icons/fontawesome/solid/undo-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/undo.svg create mode 100644 docs/material/.icons/fontawesome/solid/universal-access.svg create mode 100644 docs/material/.icons/fontawesome/solid/university.svg create mode 100644 docs/material/.icons/fontawesome/solid/unlink.svg create mode 100644 docs/material/.icons/fontawesome/solid/unlock-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/unlock.svg create mode 100644 docs/material/.icons/fontawesome/solid/upload.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-alt-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-astronaut.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-check.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-circle.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-clock.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-cog.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-edit.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-friends.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-graduate.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-injured.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-lock.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-md.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-minus.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-ninja.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-nurse.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-plus.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-secret.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-shield.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-tag.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-tie.svg create mode 100644 docs/material/.icons/fontawesome/solid/user-times.svg create mode 100644 docs/material/.icons/fontawesome/solid/user.svg create mode 100644 docs/material/.icons/fontawesome/solid/users-cog.svg create mode 100644 docs/material/.icons/fontawesome/solid/users.svg create mode 100644 docs/material/.icons/fontawesome/solid/utensil-spoon.svg create mode 100644 docs/material/.icons/fontawesome/solid/utensils.svg create mode 100644 docs/material/.icons/fontawesome/solid/vector-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/venus-double.svg create mode 100644 docs/material/.icons/fontawesome/solid/venus-mars.svg create mode 100644 docs/material/.icons/fontawesome/solid/venus.svg create mode 100644 docs/material/.icons/fontawesome/solid/vial.svg create mode 100644 docs/material/.icons/fontawesome/solid/vials.svg create mode 100644 docs/material/.icons/fontawesome/solid/video-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/video.svg create mode 100644 docs/material/.icons/fontawesome/solid/vihara.svg create mode 100644 docs/material/.icons/fontawesome/solid/virus-slash.svg create mode 100644 docs/material/.icons/fontawesome/solid/virus.svg create mode 100644 docs/material/.icons/fontawesome/solid/viruses.svg create mode 100644 docs/material/.icons/fontawesome/solid/voicemail.svg create mode 100644 docs/material/.icons/fontawesome/solid/volleyball-ball.svg create mode 100644 docs/material/.icons/fontawesome/solid/volume-down.svg create mode 100644 docs/material/.icons/fontawesome/solid/volume-mute.svg create mode 100644 docs/material/.icons/fontawesome/solid/volume-off.svg create mode 100644 docs/material/.icons/fontawesome/solid/volume-up.svg create mode 100644 docs/material/.icons/fontawesome/solid/vote-yea.svg create mode 100644 docs/material/.icons/fontawesome/solid/vr-cardboard.svg create mode 100644 docs/material/.icons/fontawesome/solid/walking.svg create mode 100644 docs/material/.icons/fontawesome/solid/wallet.svg create mode 100644 docs/material/.icons/fontawesome/solid/warehouse.svg create mode 100644 docs/material/.icons/fontawesome/solid/water.svg create mode 100644 docs/material/.icons/fontawesome/solid/wave-square.svg create mode 100644 docs/material/.icons/fontawesome/solid/weight-hanging.svg create mode 100644 docs/material/.icons/fontawesome/solid/weight.svg create mode 100644 docs/material/.icons/fontawesome/solid/wheelchair.svg create mode 100644 docs/material/.icons/fontawesome/solid/wifi.svg create mode 100644 docs/material/.icons/fontawesome/solid/wind.svg create mode 100644 docs/material/.icons/fontawesome/solid/window-close.svg create mode 100644 docs/material/.icons/fontawesome/solid/window-maximize.svg create mode 100644 docs/material/.icons/fontawesome/solid/window-minimize.svg create mode 100644 docs/material/.icons/fontawesome/solid/window-restore.svg create mode 100644 docs/material/.icons/fontawesome/solid/wine-bottle.svg create mode 100644 docs/material/.icons/fontawesome/solid/wine-glass-alt.svg create mode 100644 docs/material/.icons/fontawesome/solid/wine-glass.svg create mode 100644 docs/material/.icons/fontawesome/solid/won-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/wrench.svg create mode 100644 docs/material/.icons/fontawesome/solid/x-ray.svg create mode 100644 docs/material/.icons/fontawesome/solid/yen-sign.svg create mode 100644 docs/material/.icons/fontawesome/solid/yin-yang.svg create mode 100644 docs/material/.icons/logo.svg create mode 100644 docs/material/.icons/material/ab-testing.svg create mode 100644 docs/material/.icons/material/abjad-arabic.svg create mode 100644 docs/material/.icons/material/abjad-hebrew.svg create mode 100644 docs/material/.icons/material/abugida-devanagari.svg create mode 100644 docs/material/.icons/material/abugida-thai.svg create mode 100644 docs/material/.icons/material/access-point-network-off.svg create mode 100644 docs/material/.icons/material/access-point-network.svg create mode 100644 docs/material/.icons/material/access-point.svg create mode 100644 docs/material/.icons/material/account-alert-outline.svg create mode 100644 docs/material/.icons/material/account-alert.svg create mode 100644 docs/material/.icons/material/account-arrow-left-outline.svg create mode 100644 docs/material/.icons/material/account-arrow-left.svg create mode 100644 docs/material/.icons/material/account-arrow-right-outline.svg create mode 100644 docs/material/.icons/material/account-arrow-right.svg create mode 100644 docs/material/.icons/material/account-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/account-box-multiple.svg create mode 100644 docs/material/.icons/material/account-box-outline.svg create mode 100644 docs/material/.icons/material/account-box.svg create mode 100644 docs/material/.icons/material/account-cancel-outline.svg create mode 100644 docs/material/.icons/material/account-cancel.svg create mode 100644 docs/material/.icons/material/account-cash-outline.svg create mode 100644 docs/material/.icons/material/account-cash.svg create mode 100644 docs/material/.icons/material/account-check-outline.svg create mode 100644 docs/material/.icons/material/account-check.svg create mode 100644 docs/material/.icons/material/account-child-circle.svg create mode 100644 docs/material/.icons/material/account-child-outline.svg create mode 100644 docs/material/.icons/material/account-child.svg create mode 100644 docs/material/.icons/material/account-circle-outline.svg create mode 100644 docs/material/.icons/material/account-circle.svg create mode 100644 docs/material/.icons/material/account-clock-outline.svg create mode 100644 docs/material/.icons/material/account-clock.svg create mode 100644 docs/material/.icons/material/account-cog-outline.svg create mode 100644 docs/material/.icons/material/account-cog.svg create mode 100644 docs/material/.icons/material/account-convert-outline.svg create mode 100644 docs/material/.icons/material/account-convert.svg create mode 100644 docs/material/.icons/material/account-cowboy-hat.svg create mode 100644 docs/material/.icons/material/account-details-outline.svg create mode 100644 docs/material/.icons/material/account-details.svg create mode 100644 docs/material/.icons/material/account-edit-outline.svg create mode 100644 docs/material/.icons/material/account-edit.svg create mode 100644 docs/material/.icons/material/account-group-outline.svg create mode 100644 docs/material/.icons/material/account-group.svg create mode 100644 docs/material/.icons/material/account-hard-hat.svg create mode 100644 docs/material/.icons/material/account-heart-outline.svg create mode 100644 docs/material/.icons/material/account-heart.svg create mode 100644 docs/material/.icons/material/account-key-outline.svg create mode 100644 docs/material/.icons/material/account-key.svg create mode 100644 docs/material/.icons/material/account-lock-outline.svg create mode 100644 docs/material/.icons/material/account-lock.svg create mode 100644 docs/material/.icons/material/account-minus-outline.svg create mode 100644 docs/material/.icons/material/account-minus.svg create mode 100644 docs/material/.icons/material/account-multiple-check-outline.svg create mode 100644 docs/material/.icons/material/account-multiple-check.svg create mode 100644 docs/material/.icons/material/account-multiple-minus-outline.svg create mode 100644 docs/material/.icons/material/account-multiple-minus.svg create mode 100644 docs/material/.icons/material/account-multiple-outline.svg create mode 100644 docs/material/.icons/material/account-multiple-plus-outline.svg create mode 100644 docs/material/.icons/material/account-multiple-plus.svg create mode 100644 docs/material/.icons/material/account-multiple-remove-outline.svg create mode 100644 docs/material/.icons/material/account-multiple-remove.svg create mode 100644 docs/material/.icons/material/account-multiple.svg create mode 100644 docs/material/.icons/material/account-music-outline.svg create mode 100644 docs/material/.icons/material/account-music.svg create mode 100644 docs/material/.icons/material/account-network-outline.svg create mode 100644 docs/material/.icons/material/account-network.svg create mode 100644 docs/material/.icons/material/account-off-outline.svg create mode 100644 docs/material/.icons/material/account-off.svg create mode 100644 docs/material/.icons/material/account-outline.svg create mode 100644 docs/material/.icons/material/account-plus-outline.svg create mode 100644 docs/material/.icons/material/account-plus.svg create mode 100644 docs/material/.icons/material/account-question-outline.svg create mode 100644 docs/material/.icons/material/account-question.svg create mode 100644 docs/material/.icons/material/account-remove-outline.svg create mode 100644 docs/material/.icons/material/account-remove.svg create mode 100644 docs/material/.icons/material/account-search-outline.svg create mode 100644 docs/material/.icons/material/account-search.svg create mode 100644 docs/material/.icons/material/account-settings-outline.svg create mode 100644 docs/material/.icons/material/account-settings.svg create mode 100644 docs/material/.icons/material/account-star-outline.svg create mode 100644 docs/material/.icons/material/account-star.svg create mode 100644 docs/material/.icons/material/account-supervisor-circle.svg create mode 100644 docs/material/.icons/material/account-supervisor-outline.svg create mode 100644 docs/material/.icons/material/account-supervisor.svg create mode 100644 docs/material/.icons/material/account-switch-outline.svg create mode 100644 docs/material/.icons/material/account-switch.svg create mode 100644 docs/material/.icons/material/account-tie-outline.svg create mode 100644 docs/material/.icons/material/account-tie-voice-off-outline.svg create mode 100644 docs/material/.icons/material/account-tie-voice-off.svg create mode 100644 docs/material/.icons/material/account-tie-voice-outline.svg create mode 100644 docs/material/.icons/material/account-tie-voice.svg create mode 100644 docs/material/.icons/material/account-tie.svg create mode 100644 docs/material/.icons/material/account-voice.svg create mode 100644 docs/material/.icons/material/account.svg create mode 100644 docs/material/.icons/material/adjust.svg create mode 100644 docs/material/.icons/material/adobe-acrobat.svg create mode 100644 docs/material/.icons/material/adobe.svg create mode 100644 docs/material/.icons/material/air-conditioner.svg create mode 100644 docs/material/.icons/material/air-filter.svg create mode 100644 docs/material/.icons/material/air-horn.svg create mode 100644 docs/material/.icons/material/air-humidifier.svg create mode 100644 docs/material/.icons/material/air-purifier.svg create mode 100644 docs/material/.icons/material/airbag.svg create mode 100644 docs/material/.icons/material/airballoon-outline.svg create mode 100644 docs/material/.icons/material/airballoon.svg create mode 100644 docs/material/.icons/material/airplane-landing.svg create mode 100644 docs/material/.icons/material/airplane-off.svg create mode 100644 docs/material/.icons/material/airplane-takeoff.svg create mode 100644 docs/material/.icons/material/airplane.svg create mode 100644 docs/material/.icons/material/airport.svg create mode 100644 docs/material/.icons/material/alarm-bell.svg create mode 100644 docs/material/.icons/material/alarm-check.svg create mode 100644 docs/material/.icons/material/alarm-light-outline.svg create mode 100644 docs/material/.icons/material/alarm-light.svg create mode 100644 docs/material/.icons/material/alarm-multiple.svg create mode 100644 docs/material/.icons/material/alarm-note-off.svg create mode 100644 docs/material/.icons/material/alarm-note.svg create mode 100644 docs/material/.icons/material/alarm-off.svg create mode 100644 docs/material/.icons/material/alarm-plus.svg create mode 100644 docs/material/.icons/material/alarm-snooze.svg create mode 100644 docs/material/.icons/material/alarm.svg create mode 100644 docs/material/.icons/material/album.svg create mode 100644 docs/material/.icons/material/alert-box-outline.svg create mode 100644 docs/material/.icons/material/alert-box.svg create mode 100644 docs/material/.icons/material/alert-circle-check-outline.svg create mode 100644 docs/material/.icons/material/alert-circle-check.svg create mode 100644 docs/material/.icons/material/alert-circle-outline.svg create mode 100644 docs/material/.icons/material/alert-circle.svg create mode 100644 docs/material/.icons/material/alert-decagram-outline.svg create mode 100644 docs/material/.icons/material/alert-decagram.svg create mode 100644 docs/material/.icons/material/alert-octagon-outline.svg create mode 100644 docs/material/.icons/material/alert-octagon.svg create mode 100644 docs/material/.icons/material/alert-octagram-outline.svg create mode 100644 docs/material/.icons/material/alert-octagram.svg create mode 100644 docs/material/.icons/material/alert-outline.svg create mode 100644 docs/material/.icons/material/alert-rhombus-outline.svg create mode 100644 docs/material/.icons/material/alert-rhombus.svg create mode 100644 docs/material/.icons/material/alert.svg create mode 100644 docs/material/.icons/material/alien-outline.svg create mode 100644 docs/material/.icons/material/alien.svg create mode 100644 docs/material/.icons/material/align-horizontal-center.svg create mode 100644 docs/material/.icons/material/align-horizontal-left.svg create mode 100644 docs/material/.icons/material/align-horizontal-right.svg create mode 100644 docs/material/.icons/material/align-vertical-bottom.svg create mode 100644 docs/material/.icons/material/align-vertical-center.svg create mode 100644 docs/material/.icons/material/align-vertical-top.svg create mode 100644 docs/material/.icons/material/all-inclusive.svg create mode 100644 docs/material/.icons/material/allergy.svg create mode 100644 docs/material/.icons/material/alpha-a-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-a-box.svg create mode 100644 docs/material/.icons/material/alpha-a-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-a-circle.svg create mode 100644 docs/material/.icons/material/alpha-a.svg create mode 100644 docs/material/.icons/material/alpha-b-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-b-box.svg create mode 100644 docs/material/.icons/material/alpha-b-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-b-circle.svg create mode 100644 docs/material/.icons/material/alpha-b.svg create mode 100644 docs/material/.icons/material/alpha-c-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-c-box.svg create mode 100644 docs/material/.icons/material/alpha-c-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-c-circle.svg create mode 100644 docs/material/.icons/material/alpha-c.svg create mode 100644 docs/material/.icons/material/alpha-d-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-d-box.svg create mode 100644 docs/material/.icons/material/alpha-d-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-d-circle.svg create mode 100644 docs/material/.icons/material/alpha-d.svg create mode 100644 docs/material/.icons/material/alpha-e-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-e-box.svg create mode 100644 docs/material/.icons/material/alpha-e-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-e-circle.svg create mode 100644 docs/material/.icons/material/alpha-e.svg create mode 100644 docs/material/.icons/material/alpha-f-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-f-box.svg create mode 100644 docs/material/.icons/material/alpha-f-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-f-circle.svg create mode 100644 docs/material/.icons/material/alpha-f.svg create mode 100644 docs/material/.icons/material/alpha-g-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-g-box.svg create mode 100644 docs/material/.icons/material/alpha-g-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-g-circle.svg create mode 100644 docs/material/.icons/material/alpha-g.svg create mode 100644 docs/material/.icons/material/alpha-h-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-h-box.svg create mode 100644 docs/material/.icons/material/alpha-h-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-h-circle.svg create mode 100644 docs/material/.icons/material/alpha-h.svg create mode 100644 docs/material/.icons/material/alpha-i-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-i-box.svg create mode 100644 docs/material/.icons/material/alpha-i-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-i-circle.svg create mode 100644 docs/material/.icons/material/alpha-i.svg create mode 100644 docs/material/.icons/material/alpha-j-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-j-box.svg create mode 100644 docs/material/.icons/material/alpha-j-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-j-circle.svg create mode 100644 docs/material/.icons/material/alpha-j.svg create mode 100644 docs/material/.icons/material/alpha-k-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-k-box.svg create mode 100644 docs/material/.icons/material/alpha-k-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-k-circle.svg create mode 100644 docs/material/.icons/material/alpha-k.svg create mode 100644 docs/material/.icons/material/alpha-l-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-l-box.svg create mode 100644 docs/material/.icons/material/alpha-l-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-l-circle.svg create mode 100644 docs/material/.icons/material/alpha-l.svg create mode 100644 docs/material/.icons/material/alpha-m-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-m-box.svg create mode 100644 docs/material/.icons/material/alpha-m-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-m-circle.svg create mode 100644 docs/material/.icons/material/alpha-m.svg create mode 100644 docs/material/.icons/material/alpha-n-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-n-box.svg create mode 100644 docs/material/.icons/material/alpha-n-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-n-circle.svg create mode 100644 docs/material/.icons/material/alpha-n.svg create mode 100644 docs/material/.icons/material/alpha-o-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-o-box.svg create mode 100644 docs/material/.icons/material/alpha-o-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-o-circle.svg create mode 100644 docs/material/.icons/material/alpha-o.svg create mode 100644 docs/material/.icons/material/alpha-p-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-p-box.svg create mode 100644 docs/material/.icons/material/alpha-p-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-p-circle.svg create mode 100644 docs/material/.icons/material/alpha-p.svg create mode 100644 docs/material/.icons/material/alpha-q-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-q-box.svg create mode 100644 docs/material/.icons/material/alpha-q-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-q-circle.svg create mode 100644 docs/material/.icons/material/alpha-q.svg create mode 100644 docs/material/.icons/material/alpha-r-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-r-box.svg create mode 100644 docs/material/.icons/material/alpha-r-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-r-circle.svg create mode 100644 docs/material/.icons/material/alpha-r.svg create mode 100644 docs/material/.icons/material/alpha-s-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-s-box.svg create mode 100644 docs/material/.icons/material/alpha-s-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-s-circle.svg create mode 100644 docs/material/.icons/material/alpha-s.svg create mode 100644 docs/material/.icons/material/alpha-t-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-t-box.svg create mode 100644 docs/material/.icons/material/alpha-t-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-t-circle.svg create mode 100644 docs/material/.icons/material/alpha-t.svg create mode 100644 docs/material/.icons/material/alpha-u-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-u-box.svg create mode 100644 docs/material/.icons/material/alpha-u-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-u-circle.svg create mode 100644 docs/material/.icons/material/alpha-u.svg create mode 100644 docs/material/.icons/material/alpha-v-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-v-box.svg create mode 100644 docs/material/.icons/material/alpha-v-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-v-circle.svg create mode 100644 docs/material/.icons/material/alpha-v.svg create mode 100644 docs/material/.icons/material/alpha-w-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-w-box.svg create mode 100644 docs/material/.icons/material/alpha-w-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-w-circle.svg create mode 100644 docs/material/.icons/material/alpha-w.svg create mode 100644 docs/material/.icons/material/alpha-x-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-x-box.svg create mode 100644 docs/material/.icons/material/alpha-x-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-x-circle.svg create mode 100644 docs/material/.icons/material/alpha-x.svg create mode 100644 docs/material/.icons/material/alpha-y-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-y-box.svg create mode 100644 docs/material/.icons/material/alpha-y-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-y-circle.svg create mode 100644 docs/material/.icons/material/alpha-y.svg create mode 100644 docs/material/.icons/material/alpha-z-box-outline.svg create mode 100644 docs/material/.icons/material/alpha-z-box.svg create mode 100644 docs/material/.icons/material/alpha-z-circle-outline.svg create mode 100644 docs/material/.icons/material/alpha-z-circle.svg create mode 100644 docs/material/.icons/material/alpha-z.svg create mode 100644 docs/material/.icons/material/alpha.svg create mode 100644 docs/material/.icons/material/alphabet-aurebesh.svg create mode 100644 docs/material/.icons/material/alphabet-cyrillic.svg create mode 100644 docs/material/.icons/material/alphabet-greek.svg create mode 100644 docs/material/.icons/material/alphabet-latin.svg create mode 100644 docs/material/.icons/material/alphabet-piqad.svg create mode 100644 docs/material/.icons/material/alphabet-tengwar.svg create mode 100644 docs/material/.icons/material/alphabetical-off.svg create mode 100644 docs/material/.icons/material/alphabetical-variant-off.svg create mode 100644 docs/material/.icons/material/alphabetical-variant.svg create mode 100644 docs/material/.icons/material/alphabetical.svg create mode 100644 docs/material/.icons/material/altimeter.svg create mode 100644 docs/material/.icons/material/amazon-alexa.svg create mode 100644 docs/material/.icons/material/amazon.svg create mode 100644 docs/material/.icons/material/ambulance.svg create mode 100644 docs/material/.icons/material/ammunition.svg create mode 100644 docs/material/.icons/material/ampersand.svg create mode 100644 docs/material/.icons/material/amplifier-off.svg create mode 100644 docs/material/.icons/material/amplifier.svg create mode 100644 docs/material/.icons/material/anchor.svg create mode 100644 docs/material/.icons/material/android-auto.svg create mode 100644 docs/material/.icons/material/android-debug-bridge.svg create mode 100644 docs/material/.icons/material/android-messages.svg create mode 100644 docs/material/.icons/material/android-studio.svg create mode 100644 docs/material/.icons/material/android.svg create mode 100644 docs/material/.icons/material/angle-acute.svg create mode 100644 docs/material/.icons/material/angle-obtuse.svg create mode 100644 docs/material/.icons/material/angle-right.svg create mode 100644 docs/material/.icons/material/angular.svg create mode 100644 docs/material/.icons/material/angularjs.svg create mode 100644 docs/material/.icons/material/animation-outline.svg create mode 100644 docs/material/.icons/material/animation-play-outline.svg create mode 100644 docs/material/.icons/material/animation-play.svg create mode 100644 docs/material/.icons/material/animation.svg create mode 100644 docs/material/.icons/material/ansible.svg create mode 100644 docs/material/.icons/material/antenna.svg create mode 100644 docs/material/.icons/material/anvil.svg create mode 100644 docs/material/.icons/material/apache-kafka.svg create mode 100644 docs/material/.icons/material/api-off.svg create mode 100644 docs/material/.icons/material/api.svg create mode 100644 docs/material/.icons/material/apple-airplay.svg create mode 100644 docs/material/.icons/material/apple-finder.svg create mode 100644 docs/material/.icons/material/apple-icloud.svg create mode 100644 docs/material/.icons/material/apple-ios.svg create mode 100644 docs/material/.icons/material/apple-keyboard-caps.svg create mode 100644 docs/material/.icons/material/apple-keyboard-command.svg create mode 100644 docs/material/.icons/material/apple-keyboard-control.svg create mode 100644 docs/material/.icons/material/apple-keyboard-option.svg create mode 100644 docs/material/.icons/material/apple-keyboard-shift.svg create mode 100644 docs/material/.icons/material/apple-safari.svg create mode 100644 docs/material/.icons/material/apple.svg create mode 100644 docs/material/.icons/material/application-export.svg create mode 100644 docs/material/.icons/material/application-import.svg create mode 100644 docs/material/.icons/material/application.svg create mode 100644 docs/material/.icons/material/approximately-equal-box.svg create mode 100644 docs/material/.icons/material/approximately-equal.svg create mode 100644 docs/material/.icons/material/apps-box.svg create mode 100644 docs/material/.icons/material/apps.svg create mode 100644 docs/material/.icons/material/arch.svg create mode 100644 docs/material/.icons/material/archive-arrow-down-outline.svg create mode 100644 docs/material/.icons/material/archive-arrow-down.svg create mode 100644 docs/material/.icons/material/archive-arrow-up-outline.svg create mode 100644 docs/material/.icons/material/archive-arrow-up.svg create mode 100644 docs/material/.icons/material/archive-outline.svg create mode 100644 docs/material/.icons/material/archive.svg create mode 100644 docs/material/.icons/material/arm-flex-outline.svg create mode 100644 docs/material/.icons/material/arm-flex.svg create mode 100644 docs/material/.icons/material/arrange-bring-forward.svg create mode 100644 docs/material/.icons/material/arrange-bring-to-front.svg create mode 100644 docs/material/.icons/material/arrange-send-backward.svg create mode 100644 docs/material/.icons/material/arrange-send-to-back.svg create mode 100644 docs/material/.icons/material/arrow-all.svg create mode 100644 docs/material/.icons/material/arrow-bottom-left-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-bottom-left-thick.svg create mode 100644 docs/material/.icons/material/arrow-bottom-left.svg create mode 100644 docs/material/.icons/material/arrow-bottom-right-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-bottom-right-thick.svg create mode 100644 docs/material/.icons/material/arrow-bottom-right.svg create mode 100644 docs/material/.icons/material/arrow-collapse-all.svg create mode 100644 docs/material/.icons/material/arrow-collapse-down.svg create mode 100644 docs/material/.icons/material/arrow-collapse-horizontal.svg create mode 100644 docs/material/.icons/material/arrow-collapse-left.svg create mode 100644 docs/material/.icons/material/arrow-collapse-right.svg create mode 100644 docs/material/.icons/material/arrow-collapse-up.svg create mode 100644 docs/material/.icons/material/arrow-collapse-vertical.svg create mode 100644 docs/material/.icons/material/arrow-collapse.svg create mode 100644 docs/material/.icons/material/arrow-decision-auto-outline.svg create mode 100644 docs/material/.icons/material/arrow-decision-auto.svg create mode 100644 docs/material/.icons/material/arrow-decision-outline.svg create mode 100644 docs/material/.icons/material/arrow-decision.svg create mode 100644 docs/material/.icons/material/arrow-down-bold-box-outline.svg create mode 100644 docs/material/.icons/material/arrow-down-bold-box.svg create mode 100644 docs/material/.icons/material/arrow-down-bold-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-down-bold-circle.svg create mode 100644 docs/material/.icons/material/arrow-down-bold-hexagon-outline.svg create mode 100644 docs/material/.icons/material/arrow-down-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-down-bold.svg create mode 100644 docs/material/.icons/material/arrow-down-box.svg create mode 100644 docs/material/.icons/material/arrow-down-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-down-circle.svg create mode 100644 docs/material/.icons/material/arrow-down-drop-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-down-drop-circle.svg create mode 100644 docs/material/.icons/material/arrow-down-thick.svg create mode 100644 docs/material/.icons/material/arrow-down.svg create mode 100644 docs/material/.icons/material/arrow-expand-all.svg create mode 100644 docs/material/.icons/material/arrow-expand-down.svg create mode 100644 docs/material/.icons/material/arrow-expand-horizontal.svg create mode 100644 docs/material/.icons/material/arrow-expand-left.svg create mode 100644 docs/material/.icons/material/arrow-expand-right.svg create mode 100644 docs/material/.icons/material/arrow-expand-up.svg create mode 100644 docs/material/.icons/material/arrow-expand-vertical.svg create mode 100644 docs/material/.icons/material/arrow-expand.svg create mode 100644 docs/material/.icons/material/arrow-horizontal-lock.svg create mode 100644 docs/material/.icons/material/arrow-left-bold-box-outline.svg create mode 100644 docs/material/.icons/material/arrow-left-bold-box.svg create mode 100644 docs/material/.icons/material/arrow-left-bold-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-left-bold-circle.svg create mode 100644 docs/material/.icons/material/arrow-left-bold-hexagon-outline.svg create mode 100644 docs/material/.icons/material/arrow-left-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-left-bold.svg create mode 100644 docs/material/.icons/material/arrow-left-box.svg create mode 100644 docs/material/.icons/material/arrow-left-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-left-circle.svg create mode 100644 docs/material/.icons/material/arrow-left-drop-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-left-drop-circle.svg create mode 100644 docs/material/.icons/material/arrow-left-right-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-left-right-bold.svg create mode 100644 docs/material/.icons/material/arrow-left-right.svg create mode 100644 docs/material/.icons/material/arrow-left-thick.svg create mode 100644 docs/material/.icons/material/arrow-left.svg create mode 100644 docs/material/.icons/material/arrow-right-bold-box-outline.svg create mode 100644 docs/material/.icons/material/arrow-right-bold-box.svg create mode 100644 docs/material/.icons/material/arrow-right-bold-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-right-bold-circle.svg create mode 100644 docs/material/.icons/material/arrow-right-bold-hexagon-outline.svg create mode 100644 docs/material/.icons/material/arrow-right-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-right-bold.svg create mode 100644 docs/material/.icons/material/arrow-right-box.svg create mode 100644 docs/material/.icons/material/arrow-right-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-right-circle.svg create mode 100644 docs/material/.icons/material/arrow-right-drop-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-right-drop-circle.svg create mode 100644 docs/material/.icons/material/arrow-right-thick.svg create mode 100644 docs/material/.icons/material/arrow-right.svg create mode 100644 docs/material/.icons/material/arrow-split-horizontal.svg create mode 100644 docs/material/.icons/material/arrow-split-vertical.svg create mode 100644 docs/material/.icons/material/arrow-top-left-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-top-left-bottom-right-bold.svg create mode 100644 docs/material/.icons/material/arrow-top-left-bottom-right.svg create mode 100644 docs/material/.icons/material/arrow-top-left-thick.svg create mode 100644 docs/material/.icons/material/arrow-top-left.svg create mode 100644 docs/material/.icons/material/arrow-top-right-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-top-right-bottom-left-bold.svg create mode 100644 docs/material/.icons/material/arrow-top-right-bottom-left.svg create mode 100644 docs/material/.icons/material/arrow-top-right-thick.svg create mode 100644 docs/material/.icons/material/arrow-top-right.svg create mode 100644 docs/material/.icons/material/arrow-up-bold-box-outline.svg create mode 100644 docs/material/.icons/material/arrow-up-bold-box.svg create mode 100644 docs/material/.icons/material/arrow-up-bold-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-up-bold-circle.svg create mode 100644 docs/material/.icons/material/arrow-up-bold-hexagon-outline.svg create mode 100644 docs/material/.icons/material/arrow-up-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-up-bold.svg create mode 100644 docs/material/.icons/material/arrow-up-box.svg create mode 100644 docs/material/.icons/material/arrow-up-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-up-circle.svg create mode 100644 docs/material/.icons/material/arrow-up-down-bold-outline.svg create mode 100644 docs/material/.icons/material/arrow-up-down-bold.svg create mode 100644 docs/material/.icons/material/arrow-up-down.svg create mode 100644 docs/material/.icons/material/arrow-up-drop-circle-outline.svg create mode 100644 docs/material/.icons/material/arrow-up-drop-circle.svg create mode 100644 docs/material/.icons/material/arrow-up-thick.svg create mode 100644 docs/material/.icons/material/arrow-up.svg create mode 100644 docs/material/.icons/material/arrow-vertical-lock.svg create mode 100644 docs/material/.icons/material/artstation.svg create mode 100644 docs/material/.icons/material/aspect-ratio.svg create mode 100644 docs/material/.icons/material/assistant.svg create mode 100644 docs/material/.icons/material/asterisk.svg create mode 100644 docs/material/.icons/material/at.svg create mode 100644 docs/material/.icons/material/atlassian.svg create mode 100644 docs/material/.icons/material/atm.svg create mode 100644 docs/material/.icons/material/atom-variant.svg create mode 100644 docs/material/.icons/material/atom.svg create mode 100644 docs/material/.icons/material/attachment.svg create mode 100644 docs/material/.icons/material/audio-video-off.svg create mode 100644 docs/material/.icons/material/audio-video.svg create mode 100644 docs/material/.icons/material/augmented-reality.svg create mode 100644 docs/material/.icons/material/auto-download.svg create mode 100644 docs/material/.icons/material/auto-fix.svg create mode 100644 docs/material/.icons/material/auto-upload.svg create mode 100644 docs/material/.icons/material/autorenew.svg create mode 100644 docs/material/.icons/material/av-timer.svg create mode 100644 docs/material/.icons/material/aws.svg create mode 100644 docs/material/.icons/material/axe.svg create mode 100644 docs/material/.icons/material/axis-arrow-info.svg create mode 100644 docs/material/.icons/material/axis-arrow-lock.svg create mode 100644 docs/material/.icons/material/axis-arrow.svg create mode 100644 docs/material/.icons/material/axis-lock.svg create mode 100644 docs/material/.icons/material/axis-x-arrow-lock.svg create mode 100644 docs/material/.icons/material/axis-x-arrow.svg create mode 100644 docs/material/.icons/material/axis-x-rotate-clockwise.svg create mode 100644 docs/material/.icons/material/axis-x-rotate-counterclockwise.svg create mode 100644 docs/material/.icons/material/axis-x-y-arrow-lock.svg create mode 100644 docs/material/.icons/material/axis-y-arrow-lock.svg create mode 100644 docs/material/.icons/material/axis-y-arrow.svg create mode 100644 docs/material/.icons/material/axis-y-rotate-clockwise.svg create mode 100644 docs/material/.icons/material/axis-y-rotate-counterclockwise.svg create mode 100644 docs/material/.icons/material/axis-z-arrow-lock.svg create mode 100644 docs/material/.icons/material/axis-z-arrow.svg create mode 100644 docs/material/.icons/material/axis-z-rotate-clockwise.svg create mode 100644 docs/material/.icons/material/axis-z-rotate-counterclockwise.svg create mode 100644 docs/material/.icons/material/axis.svg create mode 100644 docs/material/.icons/material/babel.svg create mode 100644 docs/material/.icons/material/baby-bottle-outline.svg create mode 100644 docs/material/.icons/material/baby-bottle.svg create mode 100644 docs/material/.icons/material/baby-buggy.svg create mode 100644 docs/material/.icons/material/baby-carriage-off.svg create mode 100644 docs/material/.icons/material/baby-carriage.svg create mode 100644 docs/material/.icons/material/baby-face-outline.svg create mode 100644 docs/material/.icons/material/baby-face.svg create mode 100644 docs/material/.icons/material/baby.svg create mode 100644 docs/material/.icons/material/backburger.svg create mode 100644 docs/material/.icons/material/backspace-outline.svg create mode 100644 docs/material/.icons/material/backspace-reverse-outline.svg create mode 100644 docs/material/.icons/material/backspace-reverse.svg create mode 100644 docs/material/.icons/material/backspace.svg create mode 100644 docs/material/.icons/material/backup-restore.svg create mode 100644 docs/material/.icons/material/bacteria-outline.svg create mode 100644 docs/material/.icons/material/bacteria.svg create mode 100644 docs/material/.icons/material/badge-account-alert-outline.svg create mode 100644 docs/material/.icons/material/badge-account-alert.svg create mode 100644 docs/material/.icons/material/badge-account-horizontal-outline.svg create mode 100644 docs/material/.icons/material/badge-account-horizontal.svg create mode 100644 docs/material/.icons/material/badge-account-outline.svg create mode 100644 docs/material/.icons/material/badge-account.svg create mode 100644 docs/material/.icons/material/badminton.svg create mode 100644 docs/material/.icons/material/bag-carry-on-check.svg create mode 100644 docs/material/.icons/material/bag-carry-on-off.svg create mode 100644 docs/material/.icons/material/bag-carry-on.svg create mode 100644 docs/material/.icons/material/bag-checked.svg create mode 100644 docs/material/.icons/material/bag-personal-off-outline.svg create mode 100644 docs/material/.icons/material/bag-personal-off.svg create mode 100644 docs/material/.icons/material/bag-personal-outline.svg create mode 100644 docs/material/.icons/material/bag-personal.svg create mode 100644 docs/material/.icons/material/baguette.svg create mode 100644 docs/material/.icons/material/balloon.svg create mode 100644 docs/material/.icons/material/ballot-outline.svg create mode 100644 docs/material/.icons/material/ballot-recount-outline.svg create mode 100644 docs/material/.icons/material/ballot-recount.svg create mode 100644 docs/material/.icons/material/ballot.svg create mode 100644 docs/material/.icons/material/bandage.svg create mode 100644 docs/material/.icons/material/bandcamp.svg create mode 100644 docs/material/.icons/material/bank-minus.svg create mode 100644 docs/material/.icons/material/bank-outline.svg create mode 100644 docs/material/.icons/material/bank-plus.svg create mode 100644 docs/material/.icons/material/bank-remove.svg create mode 100644 docs/material/.icons/material/bank-transfer-in.svg create mode 100644 docs/material/.icons/material/bank-transfer-out.svg create mode 100644 docs/material/.icons/material/bank-transfer.svg create mode 100644 docs/material/.icons/material/bank.svg create mode 100644 docs/material/.icons/material/barcode-off.svg create mode 100644 docs/material/.icons/material/barcode-scan.svg create mode 100644 docs/material/.icons/material/barcode.svg create mode 100644 docs/material/.icons/material/barley-off.svg create mode 100644 docs/material/.icons/material/barley.svg create mode 100644 docs/material/.icons/material/barn.svg create mode 100644 docs/material/.icons/material/barrel.svg create mode 100644 docs/material/.icons/material/baseball-bat.svg create mode 100644 docs/material/.icons/material/baseball.svg create mode 100644 docs/material/.icons/material/bash.svg create mode 100644 docs/material/.icons/material/basket-fill.svg create mode 100644 docs/material/.icons/material/basket-outline.svg create mode 100644 docs/material/.icons/material/basket-unfill.svg create mode 100644 docs/material/.icons/material/basket.svg create mode 100644 docs/material/.icons/material/basketball-hoop-outline.svg create mode 100644 docs/material/.icons/material/basketball-hoop.svg create mode 100644 docs/material/.icons/material/basketball.svg create mode 100644 docs/material/.icons/material/bat.svg create mode 100644 docs/material/.icons/material/battery-10-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-10.svg create mode 100644 docs/material/.icons/material/battery-20-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-20.svg create mode 100644 docs/material/.icons/material/battery-30-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-30.svg create mode 100644 docs/material/.icons/material/battery-40-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-40.svg create mode 100644 docs/material/.icons/material/battery-50-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-50.svg create mode 100644 docs/material/.icons/material/battery-60-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-60.svg create mode 100644 docs/material/.icons/material/battery-70-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-70.svg create mode 100644 docs/material/.icons/material/battery-80-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-80.svg create mode 100644 docs/material/.icons/material/battery-90-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-90.svg create mode 100644 docs/material/.icons/material/battery-alert-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-alert-variant-outline.svg create mode 100644 docs/material/.icons/material/battery-alert-variant.svg create mode 100644 docs/material/.icons/material/battery-alert.svg create mode 100644 docs/material/.icons/material/battery-bluetooth-variant.svg create mode 100644 docs/material/.icons/material/battery-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-charging-10.svg create mode 100644 docs/material/.icons/material/battery-charging-100.svg create mode 100644 docs/material/.icons/material/battery-charging-20.svg create mode 100644 docs/material/.icons/material/battery-charging-30.svg create mode 100644 docs/material/.icons/material/battery-charging-40.svg create mode 100644 docs/material/.icons/material/battery-charging-50.svg create mode 100644 docs/material/.icons/material/battery-charging-60.svg create mode 100644 docs/material/.icons/material/battery-charging-70.svg create mode 100644 docs/material/.icons/material/battery-charging-80.svg create mode 100644 docs/material/.icons/material/battery-charging-90.svg create mode 100644 docs/material/.icons/material/battery-charging-high.svg create mode 100644 docs/material/.icons/material/battery-charging-low.svg create mode 100644 docs/material/.icons/material/battery-charging-medium.svg create mode 100644 docs/material/.icons/material/battery-charging-outline.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-10.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-20.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-30.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-40.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-50.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-60.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-70.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-80.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-90.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-alert.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless-outline.svg create mode 100644 docs/material/.icons/material/battery-charging-wireless.svg create mode 100644 docs/material/.icons/material/battery-charging.svg create mode 100644 docs/material/.icons/material/battery-heart-outline.svg create mode 100644 docs/material/.icons/material/battery-heart-variant.svg create mode 100644 docs/material/.icons/material/battery-heart.svg create mode 100644 docs/material/.icons/material/battery-high.svg create mode 100644 docs/material/.icons/material/battery-low.svg create mode 100644 docs/material/.icons/material/battery-medium.svg create mode 100644 docs/material/.icons/material/battery-minus.svg create mode 100644 docs/material/.icons/material/battery-negative.svg create mode 100644 docs/material/.icons/material/battery-off-outline.svg create mode 100644 docs/material/.icons/material/battery-off.svg create mode 100644 docs/material/.icons/material/battery-outline.svg create mode 100644 docs/material/.icons/material/battery-plus.svg create mode 100644 docs/material/.icons/material/battery-positive.svg create mode 100644 docs/material/.icons/material/battery-unknown-bluetooth.svg create mode 100644 docs/material/.icons/material/battery-unknown.svg create mode 100644 docs/material/.icons/material/battery.svg create mode 100644 docs/material/.icons/material/battlenet.svg create mode 100644 docs/material/.icons/material/beach.svg create mode 100644 docs/material/.icons/material/beaker-alert-outline.svg create mode 100644 docs/material/.icons/material/beaker-alert.svg create mode 100644 docs/material/.icons/material/beaker-check-outline.svg create mode 100644 docs/material/.icons/material/beaker-check.svg create mode 100644 docs/material/.icons/material/beaker-minus-outline.svg create mode 100644 docs/material/.icons/material/beaker-minus.svg create mode 100644 docs/material/.icons/material/beaker-outline.svg create mode 100644 docs/material/.icons/material/beaker-plus-outline.svg create mode 100644 docs/material/.icons/material/beaker-plus.svg create mode 100644 docs/material/.icons/material/beaker-question-outline.svg create mode 100644 docs/material/.icons/material/beaker-question.svg create mode 100644 docs/material/.icons/material/beaker-remove-outline.svg create mode 100644 docs/material/.icons/material/beaker-remove.svg create mode 100644 docs/material/.icons/material/beaker.svg create mode 100644 docs/material/.icons/material/bed-double-outline.svg create mode 100644 docs/material/.icons/material/bed-double.svg create mode 100644 docs/material/.icons/material/bed-empty.svg create mode 100644 docs/material/.icons/material/bed-king-outline.svg create mode 100644 docs/material/.icons/material/bed-king.svg create mode 100644 docs/material/.icons/material/bed-outline.svg create mode 100644 docs/material/.icons/material/bed-queen-outline.svg create mode 100644 docs/material/.icons/material/bed-queen.svg create mode 100644 docs/material/.icons/material/bed-single-outline.svg create mode 100644 docs/material/.icons/material/bed-single.svg create mode 100644 docs/material/.icons/material/bed.svg create mode 100644 docs/material/.icons/material/bee-flower.svg create mode 100644 docs/material/.icons/material/bee.svg create mode 100644 docs/material/.icons/material/beehive-off-outline.svg create mode 100644 docs/material/.icons/material/beehive-outline.svg create mode 100644 docs/material/.icons/material/beer-outline.svg create mode 100644 docs/material/.icons/material/beer.svg create mode 100644 docs/material/.icons/material/bell-alert-outline.svg create mode 100644 docs/material/.icons/material/bell-alert.svg create mode 100644 docs/material/.icons/material/bell-cancel-outline.svg create mode 100644 docs/material/.icons/material/bell-cancel.svg create mode 100644 docs/material/.icons/material/bell-check-outline.svg create mode 100644 docs/material/.icons/material/bell-check.svg create mode 100644 docs/material/.icons/material/bell-circle-outline.svg create mode 100644 docs/material/.icons/material/bell-circle.svg create mode 100644 docs/material/.icons/material/bell-minus-outline.svg create mode 100644 docs/material/.icons/material/bell-minus.svg create mode 100644 docs/material/.icons/material/bell-off-outline.svg create mode 100644 docs/material/.icons/material/bell-off.svg create mode 100644 docs/material/.icons/material/bell-outline.svg create mode 100644 docs/material/.icons/material/bell-plus-outline.svg create mode 100644 docs/material/.icons/material/bell-plus.svg create mode 100644 docs/material/.icons/material/bell-remove-outline.svg create mode 100644 docs/material/.icons/material/bell-remove.svg create mode 100644 docs/material/.icons/material/bell-ring-outline.svg create mode 100644 docs/material/.icons/material/bell-ring.svg create mode 100644 docs/material/.icons/material/bell-sleep-outline.svg create mode 100644 docs/material/.icons/material/bell-sleep.svg create mode 100644 docs/material/.icons/material/bell.svg create mode 100644 docs/material/.icons/material/beta.svg create mode 100644 docs/material/.icons/material/betamax.svg create mode 100644 docs/material/.icons/material/biathlon.svg create mode 100644 docs/material/.icons/material/bicycle-basket.svg create mode 100644 docs/material/.icons/material/bicycle.svg create mode 100644 docs/material/.icons/material/bike-fast.svg create mode 100644 docs/material/.icons/material/bike.svg create mode 100644 docs/material/.icons/material/billboard.svg create mode 100644 docs/material/.icons/material/billiards-rack.svg create mode 100644 docs/material/.icons/material/billiards.svg create mode 100644 docs/material/.icons/material/binoculars.svg create mode 100644 docs/material/.icons/material/bio.svg create mode 100644 docs/material/.icons/material/biohazard.svg create mode 100644 docs/material/.icons/material/bitbucket.svg create mode 100644 docs/material/.icons/material/bitcoin.svg create mode 100644 docs/material/.icons/material/black-mesa.svg create mode 100644 docs/material/.icons/material/blender-software.svg create mode 100644 docs/material/.icons/material/blender.svg create mode 100644 docs/material/.icons/material/blinds-open.svg create mode 100644 docs/material/.icons/material/blinds.svg create mode 100644 docs/material/.icons/material/block-helper.svg create mode 100644 docs/material/.icons/material/blogger.svg create mode 100644 docs/material/.icons/material/blood-bag.svg create mode 100644 docs/material/.icons/material/bluetooth-audio.svg create mode 100644 docs/material/.icons/material/bluetooth-connect.svg create mode 100644 docs/material/.icons/material/bluetooth-off.svg create mode 100644 docs/material/.icons/material/bluetooth-settings.svg create mode 100644 docs/material/.icons/material/bluetooth-transfer.svg create mode 100644 docs/material/.icons/material/bluetooth.svg create mode 100644 docs/material/.icons/material/blur-linear.svg create mode 100644 docs/material/.icons/material/blur-off.svg create mode 100644 docs/material/.icons/material/blur-radial.svg create mode 100644 docs/material/.icons/material/blur.svg create mode 100644 docs/material/.icons/material/bolnisi-cross.svg create mode 100644 docs/material/.icons/material/bolt.svg create mode 100644 docs/material/.icons/material/bomb-off.svg create mode 100644 docs/material/.icons/material/bomb.svg create mode 100644 docs/material/.icons/material/bone.svg create mode 100644 docs/material/.icons/material/book-account-outline.svg create mode 100644 docs/material/.icons/material/book-account.svg create mode 100644 docs/material/.icons/material/book-alphabet.svg create mode 100644 docs/material/.icons/material/book-cross.svg create mode 100644 docs/material/.icons/material/book-information-variant.svg create mode 100644 docs/material/.icons/material/book-lock-open.svg create mode 100644 docs/material/.icons/material/book-lock.svg create mode 100644 docs/material/.icons/material/book-minus-multiple-outline.svg create mode 100644 docs/material/.icons/material/book-minus-multiple.svg create mode 100644 docs/material/.icons/material/book-minus.svg create mode 100644 docs/material/.icons/material/book-multiple-outline.svg create mode 100644 docs/material/.icons/material/book-multiple.svg create mode 100644 docs/material/.icons/material/book-music.svg create mode 100644 docs/material/.icons/material/book-open-outline.svg create mode 100644 docs/material/.icons/material/book-open-page-variant.svg create mode 100644 docs/material/.icons/material/book-open-variant.svg create mode 100644 docs/material/.icons/material/book-open.svg create mode 100644 docs/material/.icons/material/book-outline.svg create mode 100644 docs/material/.icons/material/book-play-outline.svg create mode 100644 docs/material/.icons/material/book-play.svg create mode 100644 docs/material/.icons/material/book-plus-multiple-outline.svg create mode 100644 docs/material/.icons/material/book-plus-multiple.svg create mode 100644 docs/material/.icons/material/book-plus.svg create mode 100644 docs/material/.icons/material/book-remove-multiple-outline.svg create mode 100644 docs/material/.icons/material/book-remove-multiple.svg create mode 100644 docs/material/.icons/material/book-remove.svg create mode 100644 docs/material/.icons/material/book-search-outline.svg create mode 100644 docs/material/.icons/material/book-search.svg create mode 100644 docs/material/.icons/material/book-variant-multiple.svg create mode 100644 docs/material/.icons/material/book-variant.svg create mode 100644 docs/material/.icons/material/book.svg create mode 100644 docs/material/.icons/material/bookmark-check-outline.svg create mode 100644 docs/material/.icons/material/bookmark-check.svg create mode 100644 docs/material/.icons/material/bookmark-minus-outline.svg create mode 100644 docs/material/.icons/material/bookmark-minus.svg create mode 100644 docs/material/.icons/material/bookmark-multiple-outline.svg create mode 100644 docs/material/.icons/material/bookmark-multiple.svg create mode 100644 docs/material/.icons/material/bookmark-music-outline.svg create mode 100644 docs/material/.icons/material/bookmark-music.svg create mode 100644 docs/material/.icons/material/bookmark-off-outline.svg create mode 100644 docs/material/.icons/material/bookmark-off.svg create mode 100644 docs/material/.icons/material/bookmark-outline.svg create mode 100644 docs/material/.icons/material/bookmark-plus-outline.svg create mode 100644 docs/material/.icons/material/bookmark-plus.svg create mode 100644 docs/material/.icons/material/bookmark-remove-outline.svg create mode 100644 docs/material/.icons/material/bookmark-remove.svg create mode 100644 docs/material/.icons/material/bookmark.svg create mode 100644 docs/material/.icons/material/bookshelf.svg create mode 100644 docs/material/.icons/material/boom-gate-alert-outline.svg create mode 100644 docs/material/.icons/material/boom-gate-alert.svg create mode 100644 docs/material/.icons/material/boom-gate-down-outline.svg create mode 100644 docs/material/.icons/material/boom-gate-down.svg create mode 100644 docs/material/.icons/material/boom-gate-outline.svg create mode 100644 docs/material/.icons/material/boom-gate-up-outline.svg create mode 100644 docs/material/.icons/material/boom-gate-up.svg create mode 100644 docs/material/.icons/material/boom-gate.svg create mode 100644 docs/material/.icons/material/boombox.svg create mode 100644 docs/material/.icons/material/boomerang.svg create mode 100644 docs/material/.icons/material/bootstrap.svg create mode 100644 docs/material/.icons/material/border-all-variant.svg create mode 100644 docs/material/.icons/material/border-all.svg create mode 100644 docs/material/.icons/material/border-bottom-variant.svg create mode 100644 docs/material/.icons/material/border-bottom.svg create mode 100644 docs/material/.icons/material/border-color.svg create mode 100644 docs/material/.icons/material/border-horizontal.svg create mode 100644 docs/material/.icons/material/border-inside.svg create mode 100644 docs/material/.icons/material/border-left-variant.svg create mode 100644 docs/material/.icons/material/border-left.svg create mode 100644 docs/material/.icons/material/border-none-variant.svg create mode 100644 docs/material/.icons/material/border-none.svg create mode 100644 docs/material/.icons/material/border-outside.svg create mode 100644 docs/material/.icons/material/border-right-variant.svg create mode 100644 docs/material/.icons/material/border-right.svg create mode 100644 docs/material/.icons/material/border-style.svg create mode 100644 docs/material/.icons/material/border-top-variant.svg create mode 100644 docs/material/.icons/material/border-top.svg create mode 100644 docs/material/.icons/material/border-vertical.svg create mode 100644 docs/material/.icons/material/bottle-soda-classic-outline.svg create mode 100644 docs/material/.icons/material/bottle-soda-classic.svg create mode 100644 docs/material/.icons/material/bottle-soda-outline.svg create mode 100644 docs/material/.icons/material/bottle-soda.svg create mode 100644 docs/material/.icons/material/bottle-tonic-outline.svg create mode 100644 docs/material/.icons/material/bottle-tonic-plus-outline.svg create mode 100644 docs/material/.icons/material/bottle-tonic-plus.svg create mode 100644 docs/material/.icons/material/bottle-tonic-skull-outline.svg create mode 100644 docs/material/.icons/material/bottle-tonic-skull.svg create mode 100644 docs/material/.icons/material/bottle-tonic.svg create mode 100644 docs/material/.icons/material/bottle-wine-outline.svg create mode 100644 docs/material/.icons/material/bottle-wine.svg create mode 100644 docs/material/.icons/material/bow-tie.svg create mode 100644 docs/material/.icons/material/bowl-mix-outline.svg create mode 100644 docs/material/.icons/material/bowl-mix.svg create mode 100644 docs/material/.icons/material/bowl-outline.svg create mode 100644 docs/material/.icons/material/bowl.svg create mode 100644 docs/material/.icons/material/bowling.svg create mode 100644 docs/material/.icons/material/box-cutter-off.svg create mode 100644 docs/material/.icons/material/box-cutter.svg create mode 100644 docs/material/.icons/material/box-shadow.svg create mode 100644 docs/material/.icons/material/box.svg create mode 100644 docs/material/.icons/material/boxing-glove.svg create mode 100644 docs/material/.icons/material/braille.svg create mode 100644 docs/material/.icons/material/brain.svg create mode 100644 docs/material/.icons/material/bread-slice-outline.svg create mode 100644 docs/material/.icons/material/bread-slice.svg create mode 100644 docs/material/.icons/material/bridge.svg create mode 100644 docs/material/.icons/material/briefcase-account-outline.svg create mode 100644 docs/material/.icons/material/briefcase-account.svg create mode 100644 docs/material/.icons/material/briefcase-check-outline.svg create mode 100644 docs/material/.icons/material/briefcase-check.svg create mode 100644 docs/material/.icons/material/briefcase-clock-outline.svg create mode 100644 docs/material/.icons/material/briefcase-clock.svg create mode 100644 docs/material/.icons/material/briefcase-download-outline.svg create mode 100644 docs/material/.icons/material/briefcase-download.svg create mode 100644 docs/material/.icons/material/briefcase-edit-outline.svg create mode 100644 docs/material/.icons/material/briefcase-edit.svg create mode 100644 docs/material/.icons/material/briefcase-minus-outline.svg create mode 100644 docs/material/.icons/material/briefcase-minus.svg create mode 100644 docs/material/.icons/material/briefcase-outline.svg create mode 100644 docs/material/.icons/material/briefcase-plus-outline.svg create mode 100644 docs/material/.icons/material/briefcase-plus.svg create mode 100644 docs/material/.icons/material/briefcase-remove-outline.svg create mode 100644 docs/material/.icons/material/briefcase-remove.svg create mode 100644 docs/material/.icons/material/briefcase-search-outline.svg create mode 100644 docs/material/.icons/material/briefcase-search.svg create mode 100644 docs/material/.icons/material/briefcase-upload-outline.svg create mode 100644 docs/material/.icons/material/briefcase-upload.svg create mode 100644 docs/material/.icons/material/briefcase.svg create mode 100644 docs/material/.icons/material/brightness-1.svg create mode 100644 docs/material/.icons/material/brightness-2.svg create mode 100644 docs/material/.icons/material/brightness-3.svg create mode 100644 docs/material/.icons/material/brightness-4.svg create mode 100644 docs/material/.icons/material/brightness-5.svg create mode 100644 docs/material/.icons/material/brightness-6.svg create mode 100644 docs/material/.icons/material/brightness-7.svg create mode 100644 docs/material/.icons/material/brightness-auto.svg create mode 100644 docs/material/.icons/material/brightness-percent.svg create mode 100644 docs/material/.icons/material/broom.svg create mode 100644 docs/material/.icons/material/brush.svg create mode 100644 docs/material/.icons/material/bucket-outline.svg create mode 100644 docs/material/.icons/material/bucket.svg create mode 100644 docs/material/.icons/material/buddhism.svg create mode 100644 docs/material/.icons/material/buffer.svg create mode 100644 docs/material/.icons/material/buffet.svg create mode 100644 docs/material/.icons/material/bug-check-outline.svg create mode 100644 docs/material/.icons/material/bug-check.svg create mode 100644 docs/material/.icons/material/bug-outline.svg create mode 100644 docs/material/.icons/material/bug.svg create mode 100644 docs/material/.icons/material/bugle.svg create mode 100644 docs/material/.icons/material/bulldozer.svg create mode 100644 docs/material/.icons/material/bullet.svg create mode 100644 docs/material/.icons/material/bulletin-board.svg create mode 100644 docs/material/.icons/material/bullhorn-outline.svg create mode 100644 docs/material/.icons/material/bullhorn.svg create mode 100644 docs/material/.icons/material/bullseye-arrow.svg create mode 100644 docs/material/.icons/material/bullseye.svg create mode 100644 docs/material/.icons/material/bulma.svg create mode 100644 docs/material/.icons/material/bunk-bed-outline.svg create mode 100644 docs/material/.icons/material/bunk-bed.svg create mode 100644 docs/material/.icons/material/bus-alert.svg create mode 100644 docs/material/.icons/material/bus-articulated-end.svg create mode 100644 docs/material/.icons/material/bus-articulated-front.svg create mode 100644 docs/material/.icons/material/bus-clock.svg create mode 100644 docs/material/.icons/material/bus-double-decker.svg create mode 100644 docs/material/.icons/material/bus-marker.svg create mode 100644 docs/material/.icons/material/bus-multiple.svg create mode 100644 docs/material/.icons/material/bus-school.svg create mode 100644 docs/material/.icons/material/bus-side.svg create mode 100644 docs/material/.icons/material/bus-stop-covered.svg create mode 100644 docs/material/.icons/material/bus-stop-uncovered.svg create mode 100644 docs/material/.icons/material/bus-stop.svg create mode 100644 docs/material/.icons/material/bus.svg create mode 100644 docs/material/.icons/material/cable-data.svg create mode 100644 docs/material/.icons/material/cached.svg create mode 100644 docs/material/.icons/material/cactus.svg create mode 100644 docs/material/.icons/material/cake-layered.svg create mode 100644 docs/material/.icons/material/cake-variant.svg create mode 100644 docs/material/.icons/material/cake.svg create mode 100644 docs/material/.icons/material/calculator-variant.svg create mode 100644 docs/material/.icons/material/calculator.svg create mode 100644 docs/material/.icons/material/calendar-account-outline.svg create mode 100644 docs/material/.icons/material/calendar-account.svg create mode 100644 docs/material/.icons/material/calendar-alert.svg create mode 100644 docs/material/.icons/material/calendar-arrow-left.svg create mode 100644 docs/material/.icons/material/calendar-arrow-right.svg create mode 100644 docs/material/.icons/material/calendar-blank-multiple.svg create mode 100644 docs/material/.icons/material/calendar-blank-outline.svg create mode 100644 docs/material/.icons/material/calendar-blank.svg create mode 100644 docs/material/.icons/material/calendar-check-outline.svg create mode 100644 docs/material/.icons/material/calendar-check.svg create mode 100644 docs/material/.icons/material/calendar-clock.svg create mode 100644 docs/material/.icons/material/calendar-edit.svg create mode 100644 docs/material/.icons/material/calendar-export.svg create mode 100644 docs/material/.icons/material/calendar-heart.svg create mode 100644 docs/material/.icons/material/calendar-import.svg create mode 100644 docs/material/.icons/material/calendar-minus.svg create mode 100644 docs/material/.icons/material/calendar-month-outline.svg create mode 100644 docs/material/.icons/material/calendar-month.svg create mode 100644 docs/material/.icons/material/calendar-multiple-check.svg create mode 100644 docs/material/.icons/material/calendar-multiple.svg create mode 100644 docs/material/.icons/material/calendar-multiselect.svg create mode 100644 docs/material/.icons/material/calendar-outline.svg create mode 100644 docs/material/.icons/material/calendar-plus.svg create mode 100644 docs/material/.icons/material/calendar-question.svg create mode 100644 docs/material/.icons/material/calendar-range-outline.svg create mode 100644 docs/material/.icons/material/calendar-range.svg create mode 100644 docs/material/.icons/material/calendar-refresh-outline.svg create mode 100644 docs/material/.icons/material/calendar-refresh.svg create mode 100644 docs/material/.icons/material/calendar-remove-outline.svg create mode 100644 docs/material/.icons/material/calendar-remove.svg create mode 100644 docs/material/.icons/material/calendar-search.svg create mode 100644 docs/material/.icons/material/calendar-star.svg create mode 100644 docs/material/.icons/material/calendar-sync-outline.svg create mode 100644 docs/material/.icons/material/calendar-sync.svg create mode 100644 docs/material/.icons/material/calendar-text-outline.svg create mode 100644 docs/material/.icons/material/calendar-text.svg create mode 100644 docs/material/.icons/material/calendar-today.svg create mode 100644 docs/material/.icons/material/calendar-week-begin.svg create mode 100644 docs/material/.icons/material/calendar-week.svg create mode 100644 docs/material/.icons/material/calendar-weekend-outline.svg create mode 100644 docs/material/.icons/material/calendar-weekend.svg create mode 100644 docs/material/.icons/material/calendar.svg create mode 100644 docs/material/.icons/material/call-made.svg create mode 100644 docs/material/.icons/material/call-merge.svg create mode 100644 docs/material/.icons/material/call-missed.svg create mode 100644 docs/material/.icons/material/call-received.svg create mode 100644 docs/material/.icons/material/call-split.svg create mode 100644 docs/material/.icons/material/camcorder-off.svg create mode 100644 docs/material/.icons/material/camcorder.svg create mode 100644 docs/material/.icons/material/camera-account.svg create mode 100644 docs/material/.icons/material/camera-burst.svg create mode 100644 docs/material/.icons/material/camera-control.svg create mode 100644 docs/material/.icons/material/camera-enhance-outline.svg create mode 100644 docs/material/.icons/material/camera-enhance.svg create mode 100644 docs/material/.icons/material/camera-front-variant.svg create mode 100644 docs/material/.icons/material/camera-front.svg create mode 100644 docs/material/.icons/material/camera-gopro.svg create mode 100644 docs/material/.icons/material/camera-image.svg create mode 100644 docs/material/.icons/material/camera-iris.svg create mode 100644 docs/material/.icons/material/camera-metering-center.svg create mode 100644 docs/material/.icons/material/camera-metering-matrix.svg create mode 100644 docs/material/.icons/material/camera-metering-partial.svg create mode 100644 docs/material/.icons/material/camera-metering-spot.svg create mode 100644 docs/material/.icons/material/camera-off.svg create mode 100644 docs/material/.icons/material/camera-outline.svg create mode 100644 docs/material/.icons/material/camera-party-mode.svg create mode 100644 docs/material/.icons/material/camera-plus-outline.svg create mode 100644 docs/material/.icons/material/camera-plus.svg create mode 100644 docs/material/.icons/material/camera-rear-variant.svg create mode 100644 docs/material/.icons/material/camera-rear.svg create mode 100644 docs/material/.icons/material/camera-retake-outline.svg create mode 100644 docs/material/.icons/material/camera-retake.svg create mode 100644 docs/material/.icons/material/camera-switch-outline.svg create mode 100644 docs/material/.icons/material/camera-switch.svg create mode 100644 docs/material/.icons/material/camera-timer.svg create mode 100644 docs/material/.icons/material/camera-wireless-outline.svg create mode 100644 docs/material/.icons/material/camera-wireless.svg create mode 100644 docs/material/.icons/material/camera.svg create mode 100644 docs/material/.icons/material/campfire.svg create mode 100644 docs/material/.icons/material/cancel.svg create mode 100644 docs/material/.icons/material/candle.svg create mode 100644 docs/material/.icons/material/candycane.svg create mode 100644 docs/material/.icons/material/cannabis.svg create mode 100644 docs/material/.icons/material/caps-lock.svg create mode 100644 docs/material/.icons/material/car-2-plus.svg create mode 100644 docs/material/.icons/material/car-3-plus.svg create mode 100644 docs/material/.icons/material/car-arrow-left.svg create mode 100644 docs/material/.icons/material/car-arrow-right.svg create mode 100644 docs/material/.icons/material/car-back.svg create mode 100644 docs/material/.icons/material/car-battery.svg create mode 100644 docs/material/.icons/material/car-brake-abs.svg create mode 100644 docs/material/.icons/material/car-brake-alert.svg create mode 100644 docs/material/.icons/material/car-brake-hold.svg create mode 100644 docs/material/.icons/material/car-brake-parking.svg create mode 100644 docs/material/.icons/material/car-brake-retarder.svg create mode 100644 docs/material/.icons/material/car-child-seat.svg create mode 100644 docs/material/.icons/material/car-clutch.svg create mode 100644 docs/material/.icons/material/car-cog.svg create mode 100644 docs/material/.icons/material/car-connected.svg create mode 100644 docs/material/.icons/material/car-convertible.svg create mode 100644 docs/material/.icons/material/car-coolant-level.svg create mode 100644 docs/material/.icons/material/car-cruise-control.svg create mode 100644 docs/material/.icons/material/car-defrost-front.svg create mode 100644 docs/material/.icons/material/car-defrost-rear.svg create mode 100644 docs/material/.icons/material/car-door-lock.svg create mode 100644 docs/material/.icons/material/car-door.svg create mode 100644 docs/material/.icons/material/car-electric.svg create mode 100644 docs/material/.icons/material/car-esp.svg create mode 100644 docs/material/.icons/material/car-estate.svg create mode 100644 docs/material/.icons/material/car-hatchback.svg create mode 100644 docs/material/.icons/material/car-info.svg create mode 100644 docs/material/.icons/material/car-key.svg create mode 100644 docs/material/.icons/material/car-light-dimmed.svg create mode 100644 docs/material/.icons/material/car-light-fog.svg create mode 100644 docs/material/.icons/material/car-light-high.svg create mode 100644 docs/material/.icons/material/car-limousine.svg create mode 100644 docs/material/.icons/material/car-multiple.svg create mode 100644 docs/material/.icons/material/car-off.svg create mode 100644 docs/material/.icons/material/car-parking-lights.svg create mode 100644 docs/material/.icons/material/car-pickup.svg create mode 100644 docs/material/.icons/material/car-seat-cooler.svg create mode 100644 docs/material/.icons/material/car-seat-heater.svg create mode 100644 docs/material/.icons/material/car-seat.svg create mode 100644 docs/material/.icons/material/car-settings.svg create mode 100644 docs/material/.icons/material/car-shift-pattern.svg create mode 100644 docs/material/.icons/material/car-side.svg create mode 100644 docs/material/.icons/material/car-sports.svg create mode 100644 docs/material/.icons/material/car-tire-alert.svg create mode 100644 docs/material/.icons/material/car-traction-control.svg create mode 100644 docs/material/.icons/material/car-turbocharger.svg create mode 100644 docs/material/.icons/material/car-wash.svg create mode 100644 docs/material/.icons/material/car-windshield-outline.svg create mode 100644 docs/material/.icons/material/car-windshield.svg create mode 100644 docs/material/.icons/material/car.svg create mode 100644 docs/material/.icons/material/caravan.svg create mode 100644 docs/material/.icons/material/card-account-details-outline.svg create mode 100644 docs/material/.icons/material/card-account-details-star-outline.svg create mode 100644 docs/material/.icons/material/card-account-details-star.svg create mode 100644 docs/material/.icons/material/card-account-details.svg create mode 100644 docs/material/.icons/material/card-account-mail-outline.svg create mode 100644 docs/material/.icons/material/card-account-mail.svg create mode 100644 docs/material/.icons/material/card-account-phone-outline.svg create mode 100644 docs/material/.icons/material/card-account-phone.svg create mode 100644 docs/material/.icons/material/card-bulleted-off-outline.svg create mode 100644 docs/material/.icons/material/card-bulleted-off.svg create mode 100644 docs/material/.icons/material/card-bulleted-outline.svg create mode 100644 docs/material/.icons/material/card-bulleted-settings-outline.svg create mode 100644 docs/material/.icons/material/card-bulleted-settings.svg create mode 100644 docs/material/.icons/material/card-bulleted.svg create mode 100644 docs/material/.icons/material/card-outline.svg create mode 100644 docs/material/.icons/material/card-plus-outline.svg create mode 100644 docs/material/.icons/material/card-plus.svg create mode 100644 docs/material/.icons/material/card-search-outline.svg create mode 100644 docs/material/.icons/material/card-search.svg create mode 100644 docs/material/.icons/material/card-text-outline.svg create mode 100644 docs/material/.icons/material/card-text.svg create mode 100644 docs/material/.icons/material/card.svg create mode 100644 docs/material/.icons/material/cards-club.svg create mode 100644 docs/material/.icons/material/cards-diamond-outline.svg create mode 100644 docs/material/.icons/material/cards-diamond.svg create mode 100644 docs/material/.icons/material/cards-heart.svg create mode 100644 docs/material/.icons/material/cards-outline.svg create mode 100644 docs/material/.icons/material/cards-playing-outline.svg create mode 100644 docs/material/.icons/material/cards-spade.svg create mode 100644 docs/material/.icons/material/cards-variant.svg create mode 100644 docs/material/.icons/material/cards.svg create mode 100644 docs/material/.icons/material/carrot.svg create mode 100644 docs/material/.icons/material/cart-arrow-down.svg create mode 100644 docs/material/.icons/material/cart-arrow-right.svg create mode 100644 docs/material/.icons/material/cart-arrow-up.svg create mode 100644 docs/material/.icons/material/cart-minus.svg create mode 100644 docs/material/.icons/material/cart-off.svg create mode 100644 docs/material/.icons/material/cart-outline.svg create mode 100644 docs/material/.icons/material/cart-plus.svg create mode 100644 docs/material/.icons/material/cart-remove.svg create mode 100644 docs/material/.icons/material/cart.svg create mode 100644 docs/material/.icons/material/case-sensitive-alt.svg create mode 100644 docs/material/.icons/material/cash-100.svg create mode 100644 docs/material/.icons/material/cash-marker.svg create mode 100644 docs/material/.icons/material/cash-minus.svg create mode 100644 docs/material/.icons/material/cash-multiple.svg create mode 100644 docs/material/.icons/material/cash-plus.svg create mode 100644 docs/material/.icons/material/cash-refund.svg create mode 100644 docs/material/.icons/material/cash-register.svg create mode 100644 docs/material/.icons/material/cash-remove.svg create mode 100644 docs/material/.icons/material/cash-usd-outline.svg create mode 100644 docs/material/.icons/material/cash-usd.svg create mode 100644 docs/material/.icons/material/cash.svg create mode 100644 docs/material/.icons/material/cassette.svg create mode 100644 docs/material/.icons/material/cast-audio.svg create mode 100644 docs/material/.icons/material/cast-connected.svg create mode 100644 docs/material/.icons/material/cast-education.svg create mode 100644 docs/material/.icons/material/cast-off.svg create mode 100644 docs/material/.icons/material/cast.svg create mode 100644 docs/material/.icons/material/castle.svg create mode 100644 docs/material/.icons/material/cat.svg create mode 100644 docs/material/.icons/material/cctv.svg create mode 100644 docs/material/.icons/material/ceiling-light.svg create mode 100644 docs/material/.icons/material/cellphone-android.svg create mode 100644 docs/material/.icons/material/cellphone-arrow-down.svg create mode 100644 docs/material/.icons/material/cellphone-basic.svg create mode 100644 docs/material/.icons/material/cellphone-charging.svg create mode 100644 docs/material/.icons/material/cellphone-cog.svg create mode 100644 docs/material/.icons/material/cellphone-dock.svg create mode 100644 docs/material/.icons/material/cellphone-erase.svg create mode 100644 docs/material/.icons/material/cellphone-information.svg create mode 100644 docs/material/.icons/material/cellphone-iphone.svg create mode 100644 docs/material/.icons/material/cellphone-key.svg create mode 100644 docs/material/.icons/material/cellphone-link-off.svg create mode 100644 docs/material/.icons/material/cellphone-link.svg create mode 100644 docs/material/.icons/material/cellphone-lock.svg create mode 100644 docs/material/.icons/material/cellphone-message-off.svg create mode 100644 docs/material/.icons/material/cellphone-message.svg create mode 100644 docs/material/.icons/material/cellphone-nfc-off.svg create mode 100644 docs/material/.icons/material/cellphone-nfc.svg create mode 100644 docs/material/.icons/material/cellphone-off.svg create mode 100644 docs/material/.icons/material/cellphone-play.svg create mode 100644 docs/material/.icons/material/cellphone-screenshot.svg create mode 100644 docs/material/.icons/material/cellphone-settings.svg create mode 100644 docs/material/.icons/material/cellphone-sound.svg create mode 100644 docs/material/.icons/material/cellphone-text.svg create mode 100644 docs/material/.icons/material/cellphone-wireless.svg create mode 100644 docs/material/.icons/material/cellphone.svg create mode 100644 docs/material/.icons/material/celtic-cross.svg create mode 100644 docs/material/.icons/material/centos.svg create mode 100644 docs/material/.icons/material/certificate-outline.svg create mode 100644 docs/material/.icons/material/certificate.svg create mode 100644 docs/material/.icons/material/chair-rolling.svg create mode 100644 docs/material/.icons/material/chair-school.svg create mode 100644 docs/material/.icons/material/charity.svg create mode 100644 docs/material/.icons/material/chart-arc.svg create mode 100644 docs/material/.icons/material/chart-areaspline-variant.svg create mode 100644 docs/material/.icons/material/chart-areaspline.svg create mode 100644 docs/material/.icons/material/chart-bar-stacked.svg create mode 100644 docs/material/.icons/material/chart-bar.svg create mode 100644 docs/material/.icons/material/chart-bell-curve-cumulative.svg create mode 100644 docs/material/.icons/material/chart-bell-curve.svg create mode 100644 docs/material/.icons/material/chart-bubble.svg create mode 100644 docs/material/.icons/material/chart-donut-variant.svg create mode 100644 docs/material/.icons/material/chart-donut.svg create mode 100644 docs/material/.icons/material/chart-gantt.svg create mode 100644 docs/material/.icons/material/chart-histogram.svg create mode 100644 docs/material/.icons/material/chart-line-stacked.svg create mode 100644 docs/material/.icons/material/chart-line-variant.svg create mode 100644 docs/material/.icons/material/chart-line.svg create mode 100644 docs/material/.icons/material/chart-multiline.svg create mode 100644 docs/material/.icons/material/chart-multiple.svg create mode 100644 docs/material/.icons/material/chart-pie.svg create mode 100644 docs/material/.icons/material/chart-ppf.svg create mode 100644 docs/material/.icons/material/chart-sankey-variant.svg create mode 100644 docs/material/.icons/material/chart-sankey.svg create mode 100644 docs/material/.icons/material/chart-scatter-plot-hexbin.svg create mode 100644 docs/material/.icons/material/chart-scatter-plot.svg create mode 100644 docs/material/.icons/material/chart-timeline-variant.svg create mode 100644 docs/material/.icons/material/chart-timeline.svg create mode 100644 docs/material/.icons/material/chart-tree.svg create mode 100644 docs/material/.icons/material/chat-alert-outline.svg create mode 100644 docs/material/.icons/material/chat-alert.svg create mode 100644 docs/material/.icons/material/chat-minus-outline.svg create mode 100644 docs/material/.icons/material/chat-minus.svg create mode 100644 docs/material/.icons/material/chat-outline.svg create mode 100644 docs/material/.icons/material/chat-plus-outline.svg create mode 100644 docs/material/.icons/material/chat-plus.svg create mode 100644 docs/material/.icons/material/chat-processing-outline.svg create mode 100644 docs/material/.icons/material/chat-processing.svg create mode 100644 docs/material/.icons/material/chat-remove-outline.svg create mode 100644 docs/material/.icons/material/chat-remove.svg create mode 100644 docs/material/.icons/material/chat-sleep-outline.svg create mode 100644 docs/material/.icons/material/chat-sleep.svg create mode 100644 docs/material/.icons/material/chat.svg create mode 100644 docs/material/.icons/material/check-all.svg create mode 100644 docs/material/.icons/material/check-bold.svg create mode 100644 docs/material/.icons/material/check-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/check-box-outline.svg create mode 100644 docs/material/.icons/material/check-circle-outline.svg create mode 100644 docs/material/.icons/material/check-circle.svg create mode 100644 docs/material/.icons/material/check-decagram.svg create mode 100644 docs/material/.icons/material/check-network-outline.svg create mode 100644 docs/material/.icons/material/check-network.svg create mode 100644 docs/material/.icons/material/check-outline.svg create mode 100644 docs/material/.icons/material/check-underline-circle-outline.svg create mode 100644 docs/material/.icons/material/check-underline-circle.svg create mode 100644 docs/material/.icons/material/check-underline.svg create mode 100644 docs/material/.icons/material/check.svg create mode 100644 docs/material/.icons/material/checkbook.svg create mode 100644 docs/material/.icons/material/checkbox-blank-circle-outline.svg create mode 100644 docs/material/.icons/material/checkbox-blank-circle.svg create mode 100644 docs/material/.icons/material/checkbox-blank-off-outline.svg create mode 100644 docs/material/.icons/material/checkbox-blank-off.svg create mode 100644 docs/material/.icons/material/checkbox-blank-outline.svg create mode 100644 docs/material/.icons/material/checkbox-blank.svg create mode 100644 docs/material/.icons/material/checkbox-intermediate.svg create mode 100644 docs/material/.icons/material/checkbox-marked-circle-outline.svg create mode 100644 docs/material/.icons/material/checkbox-marked-circle.svg create mode 100644 docs/material/.icons/material/checkbox-marked-outline.svg create mode 100644 docs/material/.icons/material/checkbox-marked.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-blank-circle-outline.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-blank-circle.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-blank-outline.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-blank.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-marked-circle-outline.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-marked-circle.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-marked-outline.svg create mode 100644 docs/material/.icons/material/checkbox-multiple-marked.svg create mode 100644 docs/material/.icons/material/checkerboard-minus.svg create mode 100644 docs/material/.icons/material/checkerboard-plus.svg create mode 100644 docs/material/.icons/material/checkerboard-remove.svg create mode 100644 docs/material/.icons/material/checkerboard.svg create mode 100644 docs/material/.icons/material/cheese-off.svg create mode 100644 docs/material/.icons/material/cheese.svg create mode 100644 docs/material/.icons/material/chef-hat.svg create mode 100644 docs/material/.icons/material/chemical-weapon.svg create mode 100644 docs/material/.icons/material/chess-bishop.svg create mode 100644 docs/material/.icons/material/chess-king.svg create mode 100644 docs/material/.icons/material/chess-knight.svg create mode 100644 docs/material/.icons/material/chess-pawn.svg create mode 100644 docs/material/.icons/material/chess-queen.svg create mode 100644 docs/material/.icons/material/chess-rook.svg create mode 100644 docs/material/.icons/material/chevron-double-down.svg create mode 100644 docs/material/.icons/material/chevron-double-left.svg create mode 100644 docs/material/.icons/material/chevron-double-right.svg create mode 100644 docs/material/.icons/material/chevron-double-up.svg create mode 100644 docs/material/.icons/material/chevron-down-box-outline.svg create mode 100644 docs/material/.icons/material/chevron-down-box.svg create mode 100644 docs/material/.icons/material/chevron-down-circle-outline.svg create mode 100644 docs/material/.icons/material/chevron-down-circle.svg create mode 100644 docs/material/.icons/material/chevron-down.svg create mode 100644 docs/material/.icons/material/chevron-left-box-outline.svg create mode 100644 docs/material/.icons/material/chevron-left-box.svg create mode 100644 docs/material/.icons/material/chevron-left-circle-outline.svg create mode 100644 docs/material/.icons/material/chevron-left-circle.svg create mode 100644 docs/material/.icons/material/chevron-left.svg create mode 100644 docs/material/.icons/material/chevron-right-box-outline.svg create mode 100644 docs/material/.icons/material/chevron-right-box.svg create mode 100644 docs/material/.icons/material/chevron-right-circle-outline.svg create mode 100644 docs/material/.icons/material/chevron-right-circle.svg create mode 100644 docs/material/.icons/material/chevron-right.svg create mode 100644 docs/material/.icons/material/chevron-triple-down.svg create mode 100644 docs/material/.icons/material/chevron-triple-left.svg create mode 100644 docs/material/.icons/material/chevron-triple-right.svg create mode 100644 docs/material/.icons/material/chevron-triple-up.svg create mode 100644 docs/material/.icons/material/chevron-up-box-outline.svg create mode 100644 docs/material/.icons/material/chevron-up-box.svg create mode 100644 docs/material/.icons/material/chevron-up-circle-outline.svg create mode 100644 docs/material/.icons/material/chevron-up-circle.svg create mode 100644 docs/material/.icons/material/chevron-up.svg create mode 100644 docs/material/.icons/material/chili-hot.svg create mode 100644 docs/material/.icons/material/chili-medium.svg create mode 100644 docs/material/.icons/material/chili-mild.svg create mode 100644 docs/material/.icons/material/chip.svg create mode 100644 docs/material/.icons/material/christianity-outline.svg create mode 100644 docs/material/.icons/material/christianity.svg create mode 100644 docs/material/.icons/material/church.svg create mode 100644 docs/material/.icons/material/cigar.svg create mode 100644 docs/material/.icons/material/circle-double.svg create mode 100644 docs/material/.icons/material/circle-edit-outline.svg create mode 100644 docs/material/.icons/material/circle-expand.svg create mode 100644 docs/material/.icons/material/circle-half-full.svg create mode 100644 docs/material/.icons/material/circle-half.svg create mode 100644 docs/material/.icons/material/circle-medium.svg create mode 100644 docs/material/.icons/material/circle-multiple-outline.svg create mode 100644 docs/material/.icons/material/circle-multiple.svg create mode 100644 docs/material/.icons/material/circle-off-outline.svg create mode 100644 docs/material/.icons/material/circle-outline.svg create mode 100644 docs/material/.icons/material/circle-slice-1.svg create mode 100644 docs/material/.icons/material/circle-slice-2.svg create mode 100644 docs/material/.icons/material/circle-slice-3.svg create mode 100644 docs/material/.icons/material/circle-slice-4.svg create mode 100644 docs/material/.icons/material/circle-slice-5.svg create mode 100644 docs/material/.icons/material/circle-slice-6.svg create mode 100644 docs/material/.icons/material/circle-slice-7.svg create mode 100644 docs/material/.icons/material/circle-slice-8.svg create mode 100644 docs/material/.icons/material/circle-small.svg create mode 100644 docs/material/.icons/material/circle.svg create mode 100644 docs/material/.icons/material/circular-saw.svg create mode 100644 docs/material/.icons/material/city-variant-outline.svg create mode 100644 docs/material/.icons/material/city-variant.svg create mode 100644 docs/material/.icons/material/city.svg create mode 100644 docs/material/.icons/material/clipboard-account-outline.svg create mode 100644 docs/material/.icons/material/clipboard-account.svg create mode 100644 docs/material/.icons/material/clipboard-alert-outline.svg create mode 100644 docs/material/.icons/material/clipboard-alert.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-down-outline.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-down.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-left-outline.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-left.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-right-outline.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-right.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-up-outline.svg create mode 100644 docs/material/.icons/material/clipboard-arrow-up.svg create mode 100644 docs/material/.icons/material/clipboard-check-multiple-outline.svg create mode 100644 docs/material/.icons/material/clipboard-check-multiple.svg create mode 100644 docs/material/.icons/material/clipboard-check-outline.svg create mode 100644 docs/material/.icons/material/clipboard-check.svg create mode 100644 docs/material/.icons/material/clipboard-file-outline.svg create mode 100644 docs/material/.icons/material/clipboard-file.svg create mode 100644 docs/material/.icons/material/clipboard-flow-outline.svg create mode 100644 docs/material/.icons/material/clipboard-flow.svg create mode 100644 docs/material/.icons/material/clipboard-list-outline.svg create mode 100644 docs/material/.icons/material/clipboard-list.svg create mode 100644 docs/material/.icons/material/clipboard-multiple-outline.svg create mode 100644 docs/material/.icons/material/clipboard-multiple.svg create mode 100644 docs/material/.icons/material/clipboard-outline.svg create mode 100644 docs/material/.icons/material/clipboard-play-multiple-outline.svg create mode 100644 docs/material/.icons/material/clipboard-play-multiple.svg create mode 100644 docs/material/.icons/material/clipboard-play-outline.svg create mode 100644 docs/material/.icons/material/clipboard-play.svg create mode 100644 docs/material/.icons/material/clipboard-plus-outline.svg create mode 100644 docs/material/.icons/material/clipboard-plus.svg create mode 100644 docs/material/.icons/material/clipboard-pulse-outline.svg create mode 100644 docs/material/.icons/material/clipboard-pulse.svg create mode 100644 docs/material/.icons/material/clipboard-text-multiple-outline.svg create mode 100644 docs/material/.icons/material/clipboard-text-multiple.svg create mode 100644 docs/material/.icons/material/clipboard-text-outline.svg create mode 100644 docs/material/.icons/material/clipboard-text-play-outline.svg create mode 100644 docs/material/.icons/material/clipboard-text-play.svg create mode 100644 docs/material/.icons/material/clipboard-text.svg create mode 100644 docs/material/.icons/material/clipboard.svg create mode 100644 docs/material/.icons/material/clippy.svg create mode 100644 docs/material/.icons/material/clock-alert-outline.svg create mode 100644 docs/material/.icons/material/clock-alert.svg create mode 100644 docs/material/.icons/material/clock-check-outline.svg create mode 100644 docs/material/.icons/material/clock-check.svg create mode 100644 docs/material/.icons/material/clock-digital.svg create mode 100644 docs/material/.icons/material/clock-end.svg create mode 100644 docs/material/.icons/material/clock-fast.svg create mode 100644 docs/material/.icons/material/clock-in.svg create mode 100644 docs/material/.icons/material/clock-out.svg create mode 100644 docs/material/.icons/material/clock-outline.svg create mode 100644 docs/material/.icons/material/clock-start.svg create mode 100644 docs/material/.icons/material/clock.svg create mode 100644 docs/material/.icons/material/close-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/close-box-multiple.svg create mode 100644 docs/material/.icons/material/close-box-outline.svg create mode 100644 docs/material/.icons/material/close-box.svg create mode 100644 docs/material/.icons/material/close-circle-multiple-outline.svg create mode 100644 docs/material/.icons/material/close-circle-multiple.svg create mode 100644 docs/material/.icons/material/close-circle-outline.svg create mode 100644 docs/material/.icons/material/close-circle.svg create mode 100644 docs/material/.icons/material/close-network-outline.svg create mode 100644 docs/material/.icons/material/close-network.svg create mode 100644 docs/material/.icons/material/close-octagon-outline.svg create mode 100644 docs/material/.icons/material/close-octagon.svg create mode 100644 docs/material/.icons/material/close-outline.svg create mode 100644 docs/material/.icons/material/close-thick.svg create mode 100644 docs/material/.icons/material/close.svg create mode 100644 docs/material/.icons/material/closed-caption-outline.svg create mode 100644 docs/material/.icons/material/closed-caption.svg create mode 100644 docs/material/.icons/material/cloud-alert.svg create mode 100644 docs/material/.icons/material/cloud-braces.svg create mode 100644 docs/material/.icons/material/cloud-check-outline.svg create mode 100644 docs/material/.icons/material/cloud-check.svg create mode 100644 docs/material/.icons/material/cloud-circle.svg create mode 100644 docs/material/.icons/material/cloud-download-outline.svg create mode 100644 docs/material/.icons/material/cloud-download.svg create mode 100644 docs/material/.icons/material/cloud-lock-outline.svg create mode 100644 docs/material/.icons/material/cloud-lock.svg create mode 100644 docs/material/.icons/material/cloud-off-outline.svg create mode 100644 docs/material/.icons/material/cloud-outline.svg create mode 100644 docs/material/.icons/material/cloud-print-outline.svg create mode 100644 docs/material/.icons/material/cloud-print.svg create mode 100644 docs/material/.icons/material/cloud-question.svg create mode 100644 docs/material/.icons/material/cloud-refresh.svg create mode 100644 docs/material/.icons/material/cloud-search-outline.svg create mode 100644 docs/material/.icons/material/cloud-search.svg create mode 100644 docs/material/.icons/material/cloud-sync-outline.svg create mode 100644 docs/material/.icons/material/cloud-sync.svg create mode 100644 docs/material/.icons/material/cloud-tags.svg create mode 100644 docs/material/.icons/material/cloud-upload-outline.svg create mode 100644 docs/material/.icons/material/cloud-upload.svg create mode 100644 docs/material/.icons/material/cloud.svg create mode 100644 docs/material/.icons/material/clover.svg create mode 100644 docs/material/.icons/material/coach-lamp.svg create mode 100644 docs/material/.icons/material/coat-rack.svg create mode 100644 docs/material/.icons/material/code-array.svg create mode 100644 docs/material/.icons/material/code-braces-box.svg create mode 100644 docs/material/.icons/material/code-braces.svg create mode 100644 docs/material/.icons/material/code-brackets.svg create mode 100644 docs/material/.icons/material/code-equal.svg create mode 100644 docs/material/.icons/material/code-greater-than-or-equal.svg create mode 100644 docs/material/.icons/material/code-greater-than.svg create mode 100644 docs/material/.icons/material/code-json.svg create mode 100644 docs/material/.icons/material/code-less-than-or-equal.svg create mode 100644 docs/material/.icons/material/code-less-than.svg create mode 100644 docs/material/.icons/material/code-not-equal-variant.svg create mode 100644 docs/material/.icons/material/code-not-equal.svg create mode 100644 docs/material/.icons/material/code-parentheses-box.svg create mode 100644 docs/material/.icons/material/code-parentheses.svg create mode 100644 docs/material/.icons/material/code-string.svg create mode 100644 docs/material/.icons/material/code-tags-check.svg create mode 100644 docs/material/.icons/material/code-tags.svg create mode 100644 docs/material/.icons/material/codepen.svg create mode 100644 docs/material/.icons/material/coffee-maker.svg create mode 100644 docs/material/.icons/material/coffee-off-outline.svg create mode 100644 docs/material/.icons/material/coffee-off.svg create mode 100644 docs/material/.icons/material/coffee-outline.svg create mode 100644 docs/material/.icons/material/coffee-to-go-outline.svg create mode 100644 docs/material/.icons/material/coffee-to-go.svg create mode 100644 docs/material/.icons/material/coffee.svg create mode 100644 docs/material/.icons/material/coffin.svg create mode 100644 docs/material/.icons/material/cog-box.svg create mode 100644 docs/material/.icons/material/cog-clockwise.svg create mode 100644 docs/material/.icons/material/cog-counterclockwise.svg create mode 100644 docs/material/.icons/material/cog-off-outline.svg create mode 100644 docs/material/.icons/material/cog-off.svg create mode 100644 docs/material/.icons/material/cog-outline.svg create mode 100644 docs/material/.icons/material/cog-transfer-outline.svg create mode 100644 docs/material/.icons/material/cog-transfer.svg create mode 100644 docs/material/.icons/material/cog.svg create mode 100644 docs/material/.icons/material/cogs.svg create mode 100644 docs/material/.icons/material/collage.svg create mode 100644 docs/material/.icons/material/collapse-all-outline.svg create mode 100644 docs/material/.icons/material/collapse-all.svg create mode 100644 docs/material/.icons/material/color-helper.svg create mode 100644 docs/material/.icons/material/comma-box-outline.svg create mode 100644 docs/material/.icons/material/comma-box.svg create mode 100644 docs/material/.icons/material/comma-circle-outline.svg create mode 100644 docs/material/.icons/material/comma-circle.svg create mode 100644 docs/material/.icons/material/comma.svg create mode 100644 docs/material/.icons/material/comment-account-outline.svg create mode 100644 docs/material/.icons/material/comment-account.svg create mode 100644 docs/material/.icons/material/comment-alert-outline.svg create mode 100644 docs/material/.icons/material/comment-alert.svg create mode 100644 docs/material/.icons/material/comment-arrow-left-outline.svg create mode 100644 docs/material/.icons/material/comment-arrow-left.svg create mode 100644 docs/material/.icons/material/comment-arrow-right-outline.svg create mode 100644 docs/material/.icons/material/comment-arrow-right.svg create mode 100644 docs/material/.icons/material/comment-check-outline.svg create mode 100644 docs/material/.icons/material/comment-check.svg create mode 100644 docs/material/.icons/material/comment-edit-outline.svg create mode 100644 docs/material/.icons/material/comment-edit.svg create mode 100644 docs/material/.icons/material/comment-eye-outline.svg create mode 100644 docs/material/.icons/material/comment-eye.svg create mode 100644 docs/material/.icons/material/comment-multiple-outline.svg create mode 100644 docs/material/.icons/material/comment-multiple.svg create mode 100644 docs/material/.icons/material/comment-outline.svg create mode 100644 docs/material/.icons/material/comment-plus-outline.svg create mode 100644 docs/material/.icons/material/comment-plus.svg create mode 100644 docs/material/.icons/material/comment-processing-outline.svg create mode 100644 docs/material/.icons/material/comment-processing.svg create mode 100644 docs/material/.icons/material/comment-question-outline.svg create mode 100644 docs/material/.icons/material/comment-question.svg create mode 100644 docs/material/.icons/material/comment-quote-outline.svg create mode 100644 docs/material/.icons/material/comment-quote.svg create mode 100644 docs/material/.icons/material/comment-remove-outline.svg create mode 100644 docs/material/.icons/material/comment-remove.svg create mode 100644 docs/material/.icons/material/comment-search-outline.svg create mode 100644 docs/material/.icons/material/comment-search.svg create mode 100644 docs/material/.icons/material/comment-text-multiple-outline.svg create mode 100644 docs/material/.icons/material/comment-text-multiple.svg create mode 100644 docs/material/.icons/material/comment-text-outline.svg create mode 100644 docs/material/.icons/material/comment-text.svg create mode 100644 docs/material/.icons/material/comment.svg create mode 100644 docs/material/.icons/material/compare.svg create mode 100644 docs/material/.icons/material/compass-off-outline.svg create mode 100644 docs/material/.icons/material/compass-off.svg create mode 100644 docs/material/.icons/material/compass-outline.svg create mode 100644 docs/material/.icons/material/compass-rose.svg create mode 100644 docs/material/.icons/material/compass.svg create mode 100644 docs/material/.icons/material/concourse-ci.svg create mode 100644 docs/material/.icons/material/console-line.svg create mode 100644 docs/material/.icons/material/console-network-outline.svg create mode 100644 docs/material/.icons/material/console-network.svg create mode 100644 docs/material/.icons/material/console.svg create mode 100644 docs/material/.icons/material/consolidate.svg create mode 100644 docs/material/.icons/material/contactless-payment-circle-outline.svg create mode 100644 docs/material/.icons/material/contactless-payment-circle.svg create mode 100644 docs/material/.icons/material/contactless-payment.svg create mode 100644 docs/material/.icons/material/contacts-outline.svg create mode 100644 docs/material/.icons/material/contacts.svg create mode 100644 docs/material/.icons/material/contain-end.svg create mode 100644 docs/material/.icons/material/contain-start.svg create mode 100644 docs/material/.icons/material/contain.svg create mode 100644 docs/material/.icons/material/content-copy.svg create mode 100644 docs/material/.icons/material/content-cut.svg create mode 100644 docs/material/.icons/material/content-duplicate.svg create mode 100644 docs/material/.icons/material/content-paste.svg create mode 100644 docs/material/.icons/material/content-save-alert-outline.svg create mode 100644 docs/material/.icons/material/content-save-alert.svg create mode 100644 docs/material/.icons/material/content-save-all-outline.svg create mode 100644 docs/material/.icons/material/content-save-all.svg create mode 100644 docs/material/.icons/material/content-save-edit-outline.svg create mode 100644 docs/material/.icons/material/content-save-edit.svg create mode 100644 docs/material/.icons/material/content-save-move-outline.svg create mode 100644 docs/material/.icons/material/content-save-move.svg create mode 100644 docs/material/.icons/material/content-save-outline.svg create mode 100644 docs/material/.icons/material/content-save-settings-outline.svg create mode 100644 docs/material/.icons/material/content-save-settings.svg create mode 100644 docs/material/.icons/material/content-save.svg create mode 100644 docs/material/.icons/material/contrast-box.svg create mode 100644 docs/material/.icons/material/contrast-circle.svg create mode 100644 docs/material/.icons/material/contrast.svg create mode 100644 docs/material/.icons/material/controller-classic-outline.svg create mode 100644 docs/material/.icons/material/controller-classic.svg create mode 100644 docs/material/.icons/material/cookie.svg create mode 100644 docs/material/.icons/material/coolant-temperature.svg create mode 100644 docs/material/.icons/material/copyright.svg create mode 100644 docs/material/.icons/material/cordova.svg create mode 100644 docs/material/.icons/material/corn-off.svg create mode 100644 docs/material/.icons/material/corn.svg create mode 100644 docs/material/.icons/material/counter.svg create mode 100644 docs/material/.icons/material/cow.svg create mode 100644 docs/material/.icons/material/cpu-32-bit.svg create mode 100644 docs/material/.icons/material/cpu-64-bit.svg create mode 100644 docs/material/.icons/material/crane.svg create mode 100644 docs/material/.icons/material/creation.svg create mode 100644 docs/material/.icons/material/creative-commons.svg create mode 100644 docs/material/.icons/material/credit-card-check-outline.svg create mode 100644 docs/material/.icons/material/credit-card-check.svg create mode 100644 docs/material/.icons/material/credit-card-clock-outline.svg create mode 100644 docs/material/.icons/material/credit-card-clock.svg create mode 100644 docs/material/.icons/material/credit-card-marker-outline.svg create mode 100644 docs/material/.icons/material/credit-card-marker.svg create mode 100644 docs/material/.icons/material/credit-card-minus-outline.svg create mode 100644 docs/material/.icons/material/credit-card-minus.svg create mode 100644 docs/material/.icons/material/credit-card-multiple-outline.svg create mode 100644 docs/material/.icons/material/credit-card-multiple.svg create mode 100644 docs/material/.icons/material/credit-card-off-outline.svg create mode 100644 docs/material/.icons/material/credit-card-off.svg create mode 100644 docs/material/.icons/material/credit-card-outline.svg create mode 100644 docs/material/.icons/material/credit-card-plus-outline.svg create mode 100644 docs/material/.icons/material/credit-card-plus.svg create mode 100644 docs/material/.icons/material/credit-card-refund-outline.svg create mode 100644 docs/material/.icons/material/credit-card-refund.svg create mode 100644 docs/material/.icons/material/credit-card-remove-outline.svg create mode 100644 docs/material/.icons/material/credit-card-remove.svg create mode 100644 docs/material/.icons/material/credit-card-scan-outline.svg create mode 100644 docs/material/.icons/material/credit-card-scan.svg create mode 100644 docs/material/.icons/material/credit-card-settings-outline.svg create mode 100644 docs/material/.icons/material/credit-card-settings.svg create mode 100644 docs/material/.icons/material/credit-card-wireless-off-outline.svg create mode 100644 docs/material/.icons/material/credit-card-wireless-off.svg create mode 100644 docs/material/.icons/material/credit-card-wireless-outline.svg create mode 100644 docs/material/.icons/material/credit-card-wireless.svg create mode 100644 docs/material/.icons/material/credit-card.svg create mode 100644 docs/material/.icons/material/cricket.svg create mode 100644 docs/material/.icons/material/crop-free.svg create mode 100644 docs/material/.icons/material/crop-landscape.svg create mode 100644 docs/material/.icons/material/crop-portrait.svg create mode 100644 docs/material/.icons/material/crop-rotate.svg create mode 100644 docs/material/.icons/material/crop-square.svg create mode 100644 docs/material/.icons/material/crop.svg create mode 100644 docs/material/.icons/material/crosshairs-gps.svg create mode 100644 docs/material/.icons/material/crosshairs-off.svg create mode 100644 docs/material/.icons/material/crosshairs-question.svg create mode 100644 docs/material/.icons/material/crosshairs.svg create mode 100644 docs/material/.icons/material/crown-outline.svg create mode 100644 docs/material/.icons/material/crown.svg create mode 100644 docs/material/.icons/material/cryengine.svg create mode 100644 docs/material/.icons/material/crystal-ball.svg create mode 100644 docs/material/.icons/material/cube-outline.svg create mode 100644 docs/material/.icons/material/cube-scan.svg create mode 100644 docs/material/.icons/material/cube-send.svg create mode 100644 docs/material/.icons/material/cube-unfolded.svg create mode 100644 docs/material/.icons/material/cube.svg create mode 100644 docs/material/.icons/material/cup-off-outline.svg create mode 100644 docs/material/.icons/material/cup-off.svg create mode 100644 docs/material/.icons/material/cup-outline.svg create mode 100644 docs/material/.icons/material/cup-water.svg create mode 100644 docs/material/.icons/material/cup.svg create mode 100644 docs/material/.icons/material/cupboard-outline.svg create mode 100644 docs/material/.icons/material/cupboard.svg create mode 100644 docs/material/.icons/material/cupcake.svg create mode 100644 docs/material/.icons/material/curling.svg create mode 100644 docs/material/.icons/material/currency-bdt.svg create mode 100644 docs/material/.icons/material/currency-brl.svg create mode 100644 docs/material/.icons/material/currency-btc.svg create mode 100644 docs/material/.icons/material/currency-cny.svg create mode 100644 docs/material/.icons/material/currency-eth.svg create mode 100644 docs/material/.icons/material/currency-eur-off.svg create mode 100644 docs/material/.icons/material/currency-eur.svg create mode 100644 docs/material/.icons/material/currency-gbp.svg create mode 100644 docs/material/.icons/material/currency-ils.svg create mode 100644 docs/material/.icons/material/currency-inr.svg create mode 100644 docs/material/.icons/material/currency-jpy.svg create mode 100644 docs/material/.icons/material/currency-krw.svg create mode 100644 docs/material/.icons/material/currency-kzt.svg create mode 100644 docs/material/.icons/material/currency-ngn.svg create mode 100644 docs/material/.icons/material/currency-php.svg create mode 100644 docs/material/.icons/material/currency-rial.svg create mode 100644 docs/material/.icons/material/currency-rub.svg create mode 100644 docs/material/.icons/material/currency-sign.svg create mode 100644 docs/material/.icons/material/currency-try.svg create mode 100644 docs/material/.icons/material/currency-twd.svg create mode 100644 docs/material/.icons/material/currency-usd-circle-outline.svg create mode 100644 docs/material/.icons/material/currency-usd-circle.svg create mode 100644 docs/material/.icons/material/currency-usd-off.svg create mode 100644 docs/material/.icons/material/currency-usd.svg create mode 100644 docs/material/.icons/material/current-ac.svg create mode 100644 docs/material/.icons/material/current-dc.svg create mode 100644 docs/material/.icons/material/cursor-default-click-outline.svg create mode 100644 docs/material/.icons/material/cursor-default-click.svg create mode 100644 docs/material/.icons/material/cursor-default-gesture-outline.svg create mode 100644 docs/material/.icons/material/cursor-default-gesture.svg create mode 100644 docs/material/.icons/material/cursor-default-outline.svg create mode 100644 docs/material/.icons/material/cursor-default.svg create mode 100644 docs/material/.icons/material/cursor-move.svg create mode 100644 docs/material/.icons/material/cursor-pointer.svg create mode 100644 docs/material/.icons/material/cursor-text.svg create mode 100644 docs/material/.icons/material/database-check.svg create mode 100644 docs/material/.icons/material/database-edit.svg create mode 100644 docs/material/.icons/material/database-export.svg create mode 100644 docs/material/.icons/material/database-import.svg create mode 100644 docs/material/.icons/material/database-lock.svg create mode 100644 docs/material/.icons/material/database-marker.svg create mode 100644 docs/material/.icons/material/database-minus.svg create mode 100644 docs/material/.icons/material/database-plus.svg create mode 100644 docs/material/.icons/material/database-refresh.svg create mode 100644 docs/material/.icons/material/database-remove.svg create mode 100644 docs/material/.icons/material/database-search.svg create mode 100644 docs/material/.icons/material/database-settings.svg create mode 100644 docs/material/.icons/material/database-sync.svg create mode 100644 docs/material/.icons/material/database.svg create mode 100644 docs/material/.icons/material/death-star-variant.svg create mode 100644 docs/material/.icons/material/death-star.svg create mode 100644 docs/material/.icons/material/deathly-hallows.svg create mode 100644 docs/material/.icons/material/debian.svg create mode 100644 docs/material/.icons/material/debug-step-into.svg create mode 100644 docs/material/.icons/material/debug-step-out.svg create mode 100644 docs/material/.icons/material/debug-step-over.svg create mode 100644 docs/material/.icons/material/decagram-outline.svg create mode 100644 docs/material/.icons/material/decagram.svg create mode 100644 docs/material/.icons/material/decimal-comma-decrease.svg create mode 100644 docs/material/.icons/material/decimal-comma-increase.svg create mode 100644 docs/material/.icons/material/decimal-comma.svg create mode 100644 docs/material/.icons/material/decimal-decrease.svg create mode 100644 docs/material/.icons/material/decimal-increase.svg create mode 100644 docs/material/.icons/material/decimal.svg create mode 100644 docs/material/.icons/material/delete-alert-outline.svg create mode 100644 docs/material/.icons/material/delete-alert.svg create mode 100644 docs/material/.icons/material/delete-circle-outline.svg create mode 100644 docs/material/.icons/material/delete-circle.svg create mode 100644 docs/material/.icons/material/delete-empty-outline.svg create mode 100644 docs/material/.icons/material/delete-empty.svg create mode 100644 docs/material/.icons/material/delete-forever-outline.svg create mode 100644 docs/material/.icons/material/delete-forever.svg create mode 100644 docs/material/.icons/material/delete-off-outline.svg create mode 100644 docs/material/.icons/material/delete-off.svg create mode 100644 docs/material/.icons/material/delete-outline.svg create mode 100644 docs/material/.icons/material/delete-restore.svg create mode 100644 docs/material/.icons/material/delete-sweep-outline.svg create mode 100644 docs/material/.icons/material/delete-sweep.svg create mode 100644 docs/material/.icons/material/delete-variant.svg create mode 100644 docs/material/.icons/material/delete.svg create mode 100644 docs/material/.icons/material/delta.svg create mode 100644 docs/material/.icons/material/desk-lamp.svg create mode 100644 docs/material/.icons/material/desk.svg create mode 100644 docs/material/.icons/material/deskphone.svg create mode 100644 docs/material/.icons/material/desktop-classic.svg create mode 100644 docs/material/.icons/material/desktop-mac-dashboard.svg create mode 100644 docs/material/.icons/material/desktop-mac.svg create mode 100644 docs/material/.icons/material/desktop-tower-monitor.svg create mode 100644 docs/material/.icons/material/desktop-tower.svg create mode 100644 docs/material/.icons/material/details.svg create mode 100644 docs/material/.icons/material/dev-to.svg create mode 100644 docs/material/.icons/material/developer-board.svg create mode 100644 docs/material/.icons/material/deviantart.svg create mode 100644 docs/material/.icons/material/devices.svg create mode 100644 docs/material/.icons/material/diabetes.svg create mode 100644 docs/material/.icons/material/dialpad.svg create mode 100644 docs/material/.icons/material/diameter-outline.svg create mode 100644 docs/material/.icons/material/diameter-variant.svg create mode 100644 docs/material/.icons/material/diameter.svg create mode 100644 docs/material/.icons/material/diamond-outline.svg create mode 100644 docs/material/.icons/material/diamond-stone.svg create mode 100644 docs/material/.icons/material/diamond.svg create mode 100644 docs/material/.icons/material/dice-1-outline.svg create mode 100644 docs/material/.icons/material/dice-1.svg create mode 100644 docs/material/.icons/material/dice-2-outline.svg create mode 100644 docs/material/.icons/material/dice-2.svg create mode 100644 docs/material/.icons/material/dice-3-outline.svg create mode 100644 docs/material/.icons/material/dice-3.svg create mode 100644 docs/material/.icons/material/dice-4-outline.svg create mode 100644 docs/material/.icons/material/dice-4.svg create mode 100644 docs/material/.icons/material/dice-5-outline.svg create mode 100644 docs/material/.icons/material/dice-5.svg create mode 100644 docs/material/.icons/material/dice-6-outline.svg create mode 100644 docs/material/.icons/material/dice-6.svg create mode 100644 docs/material/.icons/material/dice-d10-outline.svg create mode 100644 docs/material/.icons/material/dice-d10.svg create mode 100644 docs/material/.icons/material/dice-d12-outline.svg create mode 100644 docs/material/.icons/material/dice-d12.svg create mode 100644 docs/material/.icons/material/dice-d20-outline.svg create mode 100644 docs/material/.icons/material/dice-d20.svg create mode 100644 docs/material/.icons/material/dice-d4-outline.svg create mode 100644 docs/material/.icons/material/dice-d4.svg create mode 100644 docs/material/.icons/material/dice-d6-outline.svg create mode 100644 docs/material/.icons/material/dice-d6.svg create mode 100644 docs/material/.icons/material/dice-d8-outline.svg create mode 100644 docs/material/.icons/material/dice-d8.svg create mode 100644 docs/material/.icons/material/dice-multiple-outline.svg create mode 100644 docs/material/.icons/material/dice-multiple.svg create mode 100644 docs/material/.icons/material/digital-ocean.svg create mode 100644 docs/material/.icons/material/dip-switch.svg create mode 100644 docs/material/.icons/material/directions-fork.svg create mode 100644 docs/material/.icons/material/directions.svg create mode 100644 docs/material/.icons/material/disc-alert.svg create mode 100644 docs/material/.icons/material/disc-player.svg create mode 100644 docs/material/.icons/material/disc.svg create mode 100644 docs/material/.icons/material/discord.svg create mode 100644 docs/material/.icons/material/dishwasher-alert.svg create mode 100644 docs/material/.icons/material/dishwasher-off.svg create mode 100644 docs/material/.icons/material/dishwasher.svg create mode 100644 docs/material/.icons/material/disqus.svg create mode 100644 docs/material/.icons/material/distribute-horizontal-center.svg create mode 100644 docs/material/.icons/material/distribute-horizontal-left.svg create mode 100644 docs/material/.icons/material/distribute-horizontal-right.svg create mode 100644 docs/material/.icons/material/distribute-vertical-bottom.svg create mode 100644 docs/material/.icons/material/distribute-vertical-center.svg create mode 100644 docs/material/.icons/material/distribute-vertical-top.svg create mode 100644 docs/material/.icons/material/diving-flippers.svg create mode 100644 docs/material/.icons/material/diving-helmet.svg create mode 100644 docs/material/.icons/material/diving-scuba-flag.svg create mode 100644 docs/material/.icons/material/diving-scuba-tank-multiple.svg create mode 100644 docs/material/.icons/material/diving-scuba-tank.svg create mode 100644 docs/material/.icons/material/diving-scuba.svg create mode 100644 docs/material/.icons/material/diving-snorkel.svg create mode 100644 docs/material/.icons/material/division-box.svg create mode 100644 docs/material/.icons/material/division.svg create mode 100644 docs/material/.icons/material/dlna.svg create mode 100644 docs/material/.icons/material/dna.svg create mode 100644 docs/material/.icons/material/dns-outline.svg create mode 100644 docs/material/.icons/material/dns.svg create mode 100644 docs/material/.icons/material/do-not-disturb-off.svg create mode 100644 docs/material/.icons/material/do-not-disturb.svg create mode 100644 docs/material/.icons/material/dock-bottom.svg create mode 100644 docs/material/.icons/material/dock-left.svg create mode 100644 docs/material/.icons/material/dock-right.svg create mode 100644 docs/material/.icons/material/dock-window.svg create mode 100644 docs/material/.icons/material/docker.svg create mode 100644 docs/material/.icons/material/doctor.svg create mode 100644 docs/material/.icons/material/dog-service.svg create mode 100644 docs/material/.icons/material/dog-side.svg create mode 100644 docs/material/.icons/material/dog.svg create mode 100644 docs/material/.icons/material/dolby.svg create mode 100644 docs/material/.icons/material/dolly.svg create mode 100644 docs/material/.icons/material/domain-off.svg create mode 100644 docs/material/.icons/material/domain-plus.svg create mode 100644 docs/material/.icons/material/domain-remove.svg create mode 100644 docs/material/.icons/material/domain.svg create mode 100644 docs/material/.icons/material/domino-mask.svg create mode 100644 docs/material/.icons/material/donkey.svg create mode 100644 docs/material/.icons/material/door-closed-lock.svg create mode 100644 docs/material/.icons/material/door-closed.svg create mode 100644 docs/material/.icons/material/door-open.svg create mode 100644 docs/material/.icons/material/door.svg create mode 100644 docs/material/.icons/material/doorbell-video.svg create mode 100644 docs/material/.icons/material/doorbell.svg create mode 100644 docs/material/.icons/material/dot-net.svg create mode 100644 docs/material/.icons/material/dots-horizontal-circle-outline.svg create mode 100644 docs/material/.icons/material/dots-horizontal-circle.svg create mode 100644 docs/material/.icons/material/dots-horizontal.svg create mode 100644 docs/material/.icons/material/dots-vertical-circle-outline.svg create mode 100644 docs/material/.icons/material/dots-vertical-circle.svg create mode 100644 docs/material/.icons/material/dots-vertical.svg create mode 100644 docs/material/.icons/material/douban.svg create mode 100644 docs/material/.icons/material/download-lock-outline.svg create mode 100644 docs/material/.icons/material/download-lock.svg create mode 100644 docs/material/.icons/material/download-multiple.svg create mode 100644 docs/material/.icons/material/download-network-outline.svg create mode 100644 docs/material/.icons/material/download-network.svg create mode 100644 docs/material/.icons/material/download-off-outline.svg create mode 100644 docs/material/.icons/material/download-off.svg create mode 100644 docs/material/.icons/material/download-outline.svg create mode 100644 docs/material/.icons/material/download.svg create mode 100644 docs/material/.icons/material/drag-horizontal-variant.svg create mode 100644 docs/material/.icons/material/drag-horizontal.svg create mode 100644 docs/material/.icons/material/drag-variant.svg create mode 100644 docs/material/.icons/material/drag-vertical-variant.svg create mode 100644 docs/material/.icons/material/drag-vertical.svg create mode 100644 docs/material/.icons/material/drag.svg create mode 100644 docs/material/.icons/material/drama-masks.svg create mode 100644 docs/material/.icons/material/draw.svg create mode 100644 docs/material/.icons/material/drawing-box.svg create mode 100644 docs/material/.icons/material/drawing.svg create mode 100644 docs/material/.icons/material/dresser-outline.svg create mode 100644 docs/material/.icons/material/dresser.svg create mode 100644 docs/material/.icons/material/drone.svg create mode 100644 docs/material/.icons/material/dropbox.svg create mode 100644 docs/material/.icons/material/drupal.svg create mode 100644 docs/material/.icons/material/duck.svg create mode 100644 docs/material/.icons/material/dumbbell.svg create mode 100644 docs/material/.icons/material/dump-truck.svg create mode 100644 docs/material/.icons/material/ear-hearing-off.svg create mode 100644 docs/material/.icons/material/ear-hearing.svg create mode 100644 docs/material/.icons/material/earth-arrow-right.svg create mode 100644 docs/material/.icons/material/earth-box-minus.svg create mode 100644 docs/material/.icons/material/earth-box-off.svg create mode 100644 docs/material/.icons/material/earth-box-plus.svg create mode 100644 docs/material/.icons/material/earth-box-remove.svg create mode 100644 docs/material/.icons/material/earth-box.svg create mode 100644 docs/material/.icons/material/earth-minus.svg create mode 100644 docs/material/.icons/material/earth-off.svg create mode 100644 docs/material/.icons/material/earth-plus.svg create mode 100644 docs/material/.icons/material/earth-remove.svg create mode 100644 docs/material/.icons/material/earth.svg create mode 100644 docs/material/.icons/material/egg-easter.svg create mode 100644 docs/material/.icons/material/egg-off-outline.svg create mode 100644 docs/material/.icons/material/egg-off.svg create mode 100644 docs/material/.icons/material/egg-outline.svg create mode 100644 docs/material/.icons/material/egg.svg create mode 100644 docs/material/.icons/material/eight-track.svg create mode 100644 docs/material/.icons/material/eject-outline.svg create mode 100644 docs/material/.icons/material/eject.svg create mode 100644 docs/material/.icons/material/electric-switch-closed.svg create mode 100644 docs/material/.icons/material/electric-switch.svg create mode 100644 docs/material/.icons/material/electron-framework.svg create mode 100644 docs/material/.icons/material/elephant.svg create mode 100644 docs/material/.icons/material/elevation-decline.svg create mode 100644 docs/material/.icons/material/elevation-rise.svg create mode 100644 docs/material/.icons/material/elevator-down.svg create mode 100644 docs/material/.icons/material/elevator-passenger.svg create mode 100644 docs/material/.icons/material/elevator-up.svg create mode 100644 docs/material/.icons/material/elevator.svg create mode 100644 docs/material/.icons/material/ellipse-outline.svg create mode 100644 docs/material/.icons/material/ellipse.svg create mode 100644 docs/material/.icons/material/email-alert-outline.svg create mode 100644 docs/material/.icons/material/email-alert.svg create mode 100644 docs/material/.icons/material/email-box.svg create mode 100644 docs/material/.icons/material/email-check-outline.svg create mode 100644 docs/material/.icons/material/email-check.svg create mode 100644 docs/material/.icons/material/email-edit-outline.svg create mode 100644 docs/material/.icons/material/email-edit.svg create mode 100644 docs/material/.icons/material/email-lock.svg create mode 100644 docs/material/.icons/material/email-mark-as-unread.svg create mode 100644 docs/material/.icons/material/email-minus-outline.svg create mode 100644 docs/material/.icons/material/email-minus.svg create mode 100644 docs/material/.icons/material/email-multiple-outline.svg create mode 100644 docs/material/.icons/material/email-multiple.svg create mode 100644 docs/material/.icons/material/email-newsletter.svg create mode 100644 docs/material/.icons/material/email-off-outline.svg create mode 100644 docs/material/.icons/material/email-off.svg create mode 100644 docs/material/.icons/material/email-open-multiple-outline.svg create mode 100644 docs/material/.icons/material/email-open-multiple.svg create mode 100644 docs/material/.icons/material/email-open-outline.svg create mode 100644 docs/material/.icons/material/email-open.svg create mode 100644 docs/material/.icons/material/email-outline.svg create mode 100644 docs/material/.icons/material/email-plus-outline.svg create mode 100644 docs/material/.icons/material/email-plus.svg create mode 100644 docs/material/.icons/material/email-receive-outline.svg create mode 100644 docs/material/.icons/material/email-receive.svg create mode 100644 docs/material/.icons/material/email-search-outline.svg create mode 100644 docs/material/.icons/material/email-search.svg create mode 100644 docs/material/.icons/material/email-send-outline.svg create mode 100644 docs/material/.icons/material/email-send.svg create mode 100644 docs/material/.icons/material/email-sync-outline.svg create mode 100644 docs/material/.icons/material/email-sync.svg create mode 100644 docs/material/.icons/material/email-variant.svg create mode 100644 docs/material/.icons/material/email.svg create mode 100644 docs/material/.icons/material/ember.svg create mode 100644 docs/material/.icons/material/emby.svg create mode 100644 docs/material/.icons/material/emoticon-angry-outline.svg create mode 100644 docs/material/.icons/material/emoticon-angry.svg create mode 100644 docs/material/.icons/material/emoticon-confused-outline.svg create mode 100644 docs/material/.icons/material/emoticon-confused.svg create mode 100644 docs/material/.icons/material/emoticon-cool-outline.svg create mode 100644 docs/material/.icons/material/emoticon-cool.svg create mode 100644 docs/material/.icons/material/emoticon-cry-outline.svg create mode 100644 docs/material/.icons/material/emoticon-cry.svg create mode 100644 docs/material/.icons/material/emoticon-dead-outline.svg create mode 100644 docs/material/.icons/material/emoticon-dead.svg create mode 100644 docs/material/.icons/material/emoticon-devil-outline.svg create mode 100644 docs/material/.icons/material/emoticon-devil.svg create mode 100644 docs/material/.icons/material/emoticon-excited-outline.svg create mode 100644 docs/material/.icons/material/emoticon-excited.svg create mode 100644 docs/material/.icons/material/emoticon-frown-outline.svg create mode 100644 docs/material/.icons/material/emoticon-frown.svg create mode 100644 docs/material/.icons/material/emoticon-happy-outline.svg create mode 100644 docs/material/.icons/material/emoticon-happy.svg create mode 100644 docs/material/.icons/material/emoticon-kiss-outline.svg create mode 100644 docs/material/.icons/material/emoticon-kiss.svg create mode 100644 docs/material/.icons/material/emoticon-lol-outline.svg create mode 100644 docs/material/.icons/material/emoticon-lol.svg create mode 100644 docs/material/.icons/material/emoticon-neutral-outline.svg create mode 100644 docs/material/.icons/material/emoticon-neutral.svg create mode 100644 docs/material/.icons/material/emoticon-outline.svg create mode 100644 docs/material/.icons/material/emoticon-poop-outline.svg create mode 100644 docs/material/.icons/material/emoticon-poop.svg create mode 100644 docs/material/.icons/material/emoticon-sad-outline.svg create mode 100644 docs/material/.icons/material/emoticon-sad.svg create mode 100644 docs/material/.icons/material/emoticon-tongue-outline.svg create mode 100644 docs/material/.icons/material/emoticon-tongue.svg create mode 100644 docs/material/.icons/material/emoticon-wink-outline.svg create mode 100644 docs/material/.icons/material/emoticon-wink.svg create mode 100644 docs/material/.icons/material/emoticon.svg create mode 100644 docs/material/.icons/material/engine-off-outline.svg create mode 100644 docs/material/.icons/material/engine-off.svg create mode 100644 docs/material/.icons/material/engine-outline.svg create mode 100644 docs/material/.icons/material/engine.svg create mode 100644 docs/material/.icons/material/epsilon.svg create mode 100644 docs/material/.icons/material/equal-box.svg create mode 100644 docs/material/.icons/material/equal.svg create mode 100644 docs/material/.icons/material/equalizer-outline.svg create mode 100644 docs/material/.icons/material/equalizer.svg create mode 100644 docs/material/.icons/material/eraser-variant.svg create mode 100644 docs/material/.icons/material/eraser.svg create mode 100644 docs/material/.icons/material/escalator-box.svg create mode 100644 docs/material/.icons/material/escalator-down.svg create mode 100644 docs/material/.icons/material/escalator-up.svg create mode 100644 docs/material/.icons/material/escalator.svg create mode 100644 docs/material/.icons/material/eslint.svg create mode 100644 docs/material/.icons/material/et.svg create mode 100644 docs/material/.icons/material/ethereum.svg create mode 100644 docs/material/.icons/material/ethernet-cable-off.svg create mode 100644 docs/material/.icons/material/ethernet-cable.svg create mode 100644 docs/material/.icons/material/ethernet.svg create mode 100644 docs/material/.icons/material/ev-station.svg create mode 100644 docs/material/.icons/material/evernote.svg create mode 100644 docs/material/.icons/material/excavator.svg create mode 100644 docs/material/.icons/material/exclamation-thick.svg create mode 100644 docs/material/.icons/material/exclamation.svg create mode 100644 docs/material/.icons/material/exit-run.svg create mode 100644 docs/material/.icons/material/exit-to-app.svg create mode 100644 docs/material/.icons/material/expand-all-outline.svg create mode 100644 docs/material/.icons/material/expand-all.svg create mode 100644 docs/material/.icons/material/expansion-card-variant.svg create mode 100644 docs/material/.icons/material/expansion-card.svg create mode 100644 docs/material/.icons/material/exponent-box.svg create mode 100644 docs/material/.icons/material/exponent.svg create mode 100644 docs/material/.icons/material/export-variant.svg create mode 100644 docs/material/.icons/material/export.svg create mode 100644 docs/material/.icons/material/eye-check-outline.svg create mode 100644 docs/material/.icons/material/eye-check.svg create mode 100644 docs/material/.icons/material/eye-circle-outline.svg create mode 100644 docs/material/.icons/material/eye-circle.svg create mode 100644 docs/material/.icons/material/eye-minus-outline.svg create mode 100644 docs/material/.icons/material/eye-minus.svg create mode 100644 docs/material/.icons/material/eye-off-outline.svg create mode 100644 docs/material/.icons/material/eye-off.svg create mode 100644 docs/material/.icons/material/eye-outline.svg create mode 100644 docs/material/.icons/material/eye-plus-outline.svg create mode 100644 docs/material/.icons/material/eye-plus.svg create mode 100644 docs/material/.icons/material/eye-settings-outline.svg create mode 100644 docs/material/.icons/material/eye-settings.svg create mode 100644 docs/material/.icons/material/eye.svg create mode 100644 docs/material/.icons/material/eyedropper-minus.svg create mode 100644 docs/material/.icons/material/eyedropper-off.svg create mode 100644 docs/material/.icons/material/eyedropper-plus.svg create mode 100644 docs/material/.icons/material/eyedropper-remove.svg create mode 100644 docs/material/.icons/material/eyedropper-variant.svg create mode 100644 docs/material/.icons/material/eyedropper.svg create mode 100644 docs/material/.icons/material/face-agent.svg create mode 100644 docs/material/.icons/material/face-outline.svg create mode 100644 docs/material/.icons/material/face-profile-woman.svg create mode 100644 docs/material/.icons/material/face-profile.svg create mode 100644 docs/material/.icons/material/face-recognition.svg create mode 100644 docs/material/.icons/material/face-woman-outline.svg create mode 100644 docs/material/.icons/material/face-woman.svg create mode 100644 docs/material/.icons/material/face.svg create mode 100644 docs/material/.icons/material/facebook-messenger.svg create mode 100644 docs/material/.icons/material/facebook-workplace.svg create mode 100644 docs/material/.icons/material/facebook.svg create mode 100644 docs/material/.icons/material/factory.svg create mode 100644 docs/material/.icons/material/fan-off.svg create mode 100644 docs/material/.icons/material/fan.svg create mode 100644 docs/material/.icons/material/fast-forward-10.svg create mode 100644 docs/material/.icons/material/fast-forward-30.svg create mode 100644 docs/material/.icons/material/fast-forward-5.svg create mode 100644 docs/material/.icons/material/fast-forward-outline.svg create mode 100644 docs/material/.icons/material/fast-forward.svg create mode 100644 docs/material/.icons/material/fax.svg create mode 100644 docs/material/.icons/material/feather.svg create mode 100644 docs/material/.icons/material/feature-search-outline.svg create mode 100644 docs/material/.icons/material/feature-search.svg create mode 100644 docs/material/.icons/material/fedora.svg create mode 100644 docs/material/.icons/material/ferris-wheel.svg create mode 100644 docs/material/.icons/material/ferry.svg create mode 100644 docs/material/.icons/material/file-account-outline.svg create mode 100644 docs/material/.icons/material/file-account.svg create mode 100644 docs/material/.icons/material/file-alert-outline.svg create mode 100644 docs/material/.icons/material/file-alert.svg create mode 100644 docs/material/.icons/material/file-cabinet.svg create mode 100644 docs/material/.icons/material/file-cad-box.svg create mode 100644 docs/material/.icons/material/file-cad.svg create mode 100644 docs/material/.icons/material/file-cancel-outline.svg create mode 100644 docs/material/.icons/material/file-cancel.svg create mode 100644 docs/material/.icons/material/file-certificate-outline.svg create mode 100644 docs/material/.icons/material/file-certificate.svg create mode 100644 docs/material/.icons/material/file-chart-outline.svg create mode 100644 docs/material/.icons/material/file-chart.svg create mode 100644 docs/material/.icons/material/file-check-outline.svg create mode 100644 docs/material/.icons/material/file-check.svg create mode 100644 docs/material/.icons/material/file-clock-outline.svg create mode 100644 docs/material/.icons/material/file-clock.svg create mode 100644 docs/material/.icons/material/file-cloud-outline.svg create mode 100644 docs/material/.icons/material/file-cloud.svg create mode 100644 docs/material/.icons/material/file-code-outline.svg create mode 100644 docs/material/.icons/material/file-code.svg create mode 100644 docs/material/.icons/material/file-cog-outline.svg create mode 100644 docs/material/.icons/material/file-cog.svg create mode 100644 docs/material/.icons/material/file-compare.svg create mode 100644 docs/material/.icons/material/file-delimited-outline.svg create mode 100644 docs/material/.icons/material/file-delimited.svg create mode 100644 docs/material/.icons/material/file-document-edit-outline.svg create mode 100644 docs/material/.icons/material/file-document-edit.svg create mode 100644 docs/material/.icons/material/file-document-outline.svg create mode 100644 docs/material/.icons/material/file-document.svg create mode 100644 docs/material/.icons/material/file-download-outline.svg create mode 100644 docs/material/.icons/material/file-download.svg create mode 100644 docs/material/.icons/material/file-edit-outline.svg create mode 100644 docs/material/.icons/material/file-edit.svg create mode 100644 docs/material/.icons/material/file-excel-box-outline.svg create mode 100644 docs/material/.icons/material/file-excel-box.svg create mode 100644 docs/material/.icons/material/file-excel-outline.svg create mode 100644 docs/material/.icons/material/file-excel.svg create mode 100644 docs/material/.icons/material/file-export-outline.svg create mode 100644 docs/material/.icons/material/file-export.svg create mode 100644 docs/material/.icons/material/file-eye-outline.svg create mode 100644 docs/material/.icons/material/file-eye.svg create mode 100644 docs/material/.icons/material/file-find-outline.svg create mode 100644 docs/material/.icons/material/file-find.svg create mode 100644 docs/material/.icons/material/file-hidden.svg create mode 100644 docs/material/.icons/material/file-image-outline.svg create mode 100644 docs/material/.icons/material/file-image.svg create mode 100644 docs/material/.icons/material/file-import-outline.svg create mode 100644 docs/material/.icons/material/file-import.svg create mode 100644 docs/material/.icons/material/file-key-outline.svg create mode 100644 docs/material/.icons/material/file-key.svg create mode 100644 docs/material/.icons/material/file-link-outline.svg create mode 100644 docs/material/.icons/material/file-link.svg create mode 100644 docs/material/.icons/material/file-lock-outline.svg create mode 100644 docs/material/.icons/material/file-lock.svg create mode 100644 docs/material/.icons/material/file-move-outline.svg create mode 100644 docs/material/.icons/material/file-move.svg create mode 100644 docs/material/.icons/material/file-multiple-outline.svg create mode 100644 docs/material/.icons/material/file-multiple.svg create mode 100644 docs/material/.icons/material/file-music-outline.svg create mode 100644 docs/material/.icons/material/file-music.svg create mode 100644 docs/material/.icons/material/file-outline.svg create mode 100644 docs/material/.icons/material/file-pdf-box-outline.svg create mode 100644 docs/material/.icons/material/file-pdf-box.svg create mode 100644 docs/material/.icons/material/file-pdf-outline.svg create mode 100644 docs/material/.icons/material/file-pdf.svg create mode 100644 docs/material/.icons/material/file-percent-outline.svg create mode 100644 docs/material/.icons/material/file-percent.svg create mode 100644 docs/material/.icons/material/file-phone-outline.svg create mode 100644 docs/material/.icons/material/file-phone.svg create mode 100644 docs/material/.icons/material/file-plus-outline.svg create mode 100644 docs/material/.icons/material/file-plus.svg create mode 100644 docs/material/.icons/material/file-powerpoint-box-outline.svg create mode 100644 docs/material/.icons/material/file-powerpoint-box.svg create mode 100644 docs/material/.icons/material/file-powerpoint-outline.svg create mode 100644 docs/material/.icons/material/file-powerpoint.svg create mode 100644 docs/material/.icons/material/file-presentation-box.svg create mode 100644 docs/material/.icons/material/file-question-outline.svg create mode 100644 docs/material/.icons/material/file-question.svg create mode 100644 docs/material/.icons/material/file-refresh-outline.svg create mode 100644 docs/material/.icons/material/file-refresh.svg create mode 100644 docs/material/.icons/material/file-remove-outline.svg create mode 100644 docs/material/.icons/material/file-remove.svg create mode 100644 docs/material/.icons/material/file-replace-outline.svg create mode 100644 docs/material/.icons/material/file-replace.svg create mode 100644 docs/material/.icons/material/file-restore-outline.svg create mode 100644 docs/material/.icons/material/file-restore.svg create mode 100644 docs/material/.icons/material/file-search-outline.svg create mode 100644 docs/material/.icons/material/file-search.svg create mode 100644 docs/material/.icons/material/file-send-outline.svg create mode 100644 docs/material/.icons/material/file-send.svg create mode 100644 docs/material/.icons/material/file-settings-outline.svg create mode 100644 docs/material/.icons/material/file-settings.svg create mode 100644 docs/material/.icons/material/file-star-outline.svg create mode 100644 docs/material/.icons/material/file-star.svg create mode 100644 docs/material/.icons/material/file-swap-outline.svg create mode 100644 docs/material/.icons/material/file-swap.svg create mode 100644 docs/material/.icons/material/file-sync-outline.svg create mode 100644 docs/material/.icons/material/file-sync.svg create mode 100644 docs/material/.icons/material/file-table-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/file-table-box-multiple.svg create mode 100644 docs/material/.icons/material/file-table-box-outline.svg create mode 100644 docs/material/.icons/material/file-table-box.svg create mode 100644 docs/material/.icons/material/file-table-outline.svg create mode 100644 docs/material/.icons/material/file-table.svg create mode 100644 docs/material/.icons/material/file-tree-outline.svg create mode 100644 docs/material/.icons/material/file-tree.svg create mode 100644 docs/material/.icons/material/file-undo-outline.svg create mode 100644 docs/material/.icons/material/file-undo.svg create mode 100644 docs/material/.icons/material/file-upload-outline.svg create mode 100644 docs/material/.icons/material/file-upload.svg create mode 100644 docs/material/.icons/material/file-video-outline.svg create mode 100644 docs/material/.icons/material/file-video.svg create mode 100644 docs/material/.icons/material/file-word-box-outline.svg create mode 100644 docs/material/.icons/material/file-word-box.svg create mode 100644 docs/material/.icons/material/file-word-outline.svg create mode 100644 docs/material/.icons/material/file-word.svg create mode 100644 docs/material/.icons/material/file.svg create mode 100644 docs/material/.icons/material/film.svg create mode 100644 docs/material/.icons/material/filmstrip-box-multiple.svg create mode 100644 docs/material/.icons/material/filmstrip-box.svg create mode 100644 docs/material/.icons/material/filmstrip-off.svg create mode 100644 docs/material/.icons/material/filmstrip.svg create mode 100644 docs/material/.icons/material/filter-menu-outline.svg create mode 100644 docs/material/.icons/material/filter-menu.svg create mode 100644 docs/material/.icons/material/filter-minus-outline.svg create mode 100644 docs/material/.icons/material/filter-minus.svg create mode 100644 docs/material/.icons/material/filter-outline.svg create mode 100644 docs/material/.icons/material/filter-plus-outline.svg create mode 100644 docs/material/.icons/material/filter-plus.svg create mode 100644 docs/material/.icons/material/filter-remove-outline.svg create mode 100644 docs/material/.icons/material/filter-remove.svg create mode 100644 docs/material/.icons/material/filter-variant-minus.svg create mode 100644 docs/material/.icons/material/filter-variant-plus.svg create mode 100644 docs/material/.icons/material/filter-variant-remove.svg create mode 100644 docs/material/.icons/material/filter-variant.svg create mode 100644 docs/material/.icons/material/filter.svg create mode 100644 docs/material/.icons/material/finance.svg create mode 100644 docs/material/.icons/material/find-replace.svg create mode 100644 docs/material/.icons/material/fingerprint-off.svg create mode 100644 docs/material/.icons/material/fingerprint.svg create mode 100644 docs/material/.icons/material/fire-extinguisher.svg create mode 100644 docs/material/.icons/material/fire-hydrant-alert.svg create mode 100644 docs/material/.icons/material/fire-hydrant-off.svg create mode 100644 docs/material/.icons/material/fire-hydrant.svg create mode 100644 docs/material/.icons/material/fire-truck.svg create mode 100644 docs/material/.icons/material/fire.svg create mode 100644 docs/material/.icons/material/firebase.svg create mode 100644 docs/material/.icons/material/firefox.svg create mode 100644 docs/material/.icons/material/fireplace-off.svg create mode 100644 docs/material/.icons/material/fireplace.svg create mode 100644 docs/material/.icons/material/firework.svg create mode 100644 docs/material/.icons/material/fish-off.svg create mode 100644 docs/material/.icons/material/fish.svg create mode 100644 docs/material/.icons/material/fishbowl-outline.svg create mode 100644 docs/material/.icons/material/fishbowl.svg create mode 100644 docs/material/.icons/material/fit-to-page-outline.svg create mode 100644 docs/material/.icons/material/fit-to-page.svg create mode 100644 docs/material/.icons/material/flag-checkered.svg create mode 100644 docs/material/.icons/material/flag-minus-outline.svg create mode 100644 docs/material/.icons/material/flag-minus.svg create mode 100644 docs/material/.icons/material/flag-outline.svg create mode 100644 docs/material/.icons/material/flag-plus-outline.svg create mode 100644 docs/material/.icons/material/flag-plus.svg create mode 100644 docs/material/.icons/material/flag-remove-outline.svg create mode 100644 docs/material/.icons/material/flag-remove.svg create mode 100644 docs/material/.icons/material/flag-triangle.svg create mode 100644 docs/material/.icons/material/flag-variant-outline.svg create mode 100644 docs/material/.icons/material/flag-variant.svg create mode 100644 docs/material/.icons/material/flag.svg create mode 100644 docs/material/.icons/material/flare.svg create mode 100644 docs/material/.icons/material/flash-alert-outline.svg create mode 100644 docs/material/.icons/material/flash-alert.svg create mode 100644 docs/material/.icons/material/flash-auto.svg create mode 100644 docs/material/.icons/material/flash-circle.svg create mode 100644 docs/material/.icons/material/flash-off.svg create mode 100644 docs/material/.icons/material/flash-outline.svg create mode 100644 docs/material/.icons/material/flash-red-eye.svg create mode 100644 docs/material/.icons/material/flash.svg create mode 100644 docs/material/.icons/material/flashlight-off.svg create mode 100644 docs/material/.icons/material/flashlight.svg create mode 100644 docs/material/.icons/material/flask-empty-minus-outline.svg create mode 100644 docs/material/.icons/material/flask-empty-minus.svg create mode 100644 docs/material/.icons/material/flask-empty-off-outline.svg create mode 100644 docs/material/.icons/material/flask-empty-off.svg create mode 100644 docs/material/.icons/material/flask-empty-outline.svg create mode 100644 docs/material/.icons/material/flask-empty-plus-outline.svg create mode 100644 docs/material/.icons/material/flask-empty-plus.svg create mode 100644 docs/material/.icons/material/flask-empty-remove-outline.svg create mode 100644 docs/material/.icons/material/flask-empty-remove.svg create mode 100644 docs/material/.icons/material/flask-empty.svg create mode 100644 docs/material/.icons/material/flask-minus-outline.svg create mode 100644 docs/material/.icons/material/flask-minus.svg create mode 100644 docs/material/.icons/material/flask-off-outline.svg create mode 100644 docs/material/.icons/material/flask-off.svg create mode 100644 docs/material/.icons/material/flask-outline.svg create mode 100644 docs/material/.icons/material/flask-plus-outline.svg create mode 100644 docs/material/.icons/material/flask-plus.svg create mode 100644 docs/material/.icons/material/flask-remove-outline.svg create mode 100644 docs/material/.icons/material/flask-remove.svg create mode 100644 docs/material/.icons/material/flask-round-bottom-empty-outline.svg create mode 100644 docs/material/.icons/material/flask-round-bottom-empty.svg create mode 100644 docs/material/.icons/material/flask-round-bottom-outline.svg create mode 100644 docs/material/.icons/material/flask-round-bottom.svg create mode 100644 docs/material/.icons/material/flask.svg create mode 100644 docs/material/.icons/material/fleur-de-lis.svg create mode 100644 docs/material/.icons/material/flip-horizontal.svg create mode 100644 docs/material/.icons/material/flip-to-back.svg create mode 100644 docs/material/.icons/material/flip-to-front.svg create mode 100644 docs/material/.icons/material/flip-vertical.svg create mode 100644 docs/material/.icons/material/floor-lamp-dual.svg create mode 100644 docs/material/.icons/material/floor-lamp-variant.svg create mode 100644 docs/material/.icons/material/floor-lamp.svg create mode 100644 docs/material/.icons/material/floor-plan.svg create mode 100644 docs/material/.icons/material/floppy-variant.svg create mode 100644 docs/material/.icons/material/floppy.svg create mode 100644 docs/material/.icons/material/flower-outline.svg create mode 100644 docs/material/.icons/material/flower-poppy.svg create mode 100644 docs/material/.icons/material/flower-tulip-outline.svg create mode 100644 docs/material/.icons/material/flower-tulip.svg create mode 100644 docs/material/.icons/material/flower.svg create mode 100644 docs/material/.icons/material/focus-auto.svg create mode 100644 docs/material/.icons/material/focus-field-horizontal.svg create mode 100644 docs/material/.icons/material/focus-field-vertical.svg create mode 100644 docs/material/.icons/material/focus-field.svg create mode 100644 docs/material/.icons/material/folder-account-outline.svg create mode 100644 docs/material/.icons/material/folder-account.svg create mode 100644 docs/material/.icons/material/folder-alert-outline.svg create mode 100644 docs/material/.icons/material/folder-alert.svg create mode 100644 docs/material/.icons/material/folder-clock-outline.svg create mode 100644 docs/material/.icons/material/folder-clock.svg create mode 100644 docs/material/.icons/material/folder-cog-outline.svg create mode 100644 docs/material/.icons/material/folder-cog.svg create mode 100644 docs/material/.icons/material/folder-download-outline.svg create mode 100644 docs/material/.icons/material/folder-download.svg create mode 100644 docs/material/.icons/material/folder-edit-outline.svg create mode 100644 docs/material/.icons/material/folder-edit.svg create mode 100644 docs/material/.icons/material/folder-google-drive.svg create mode 100644 docs/material/.icons/material/folder-heart-outline.svg create mode 100644 docs/material/.icons/material/folder-heart.svg create mode 100644 docs/material/.icons/material/folder-home-outline.svg create mode 100644 docs/material/.icons/material/folder-home.svg create mode 100644 docs/material/.icons/material/folder-image.svg create mode 100644 docs/material/.icons/material/folder-information-outline.svg create mode 100644 docs/material/.icons/material/folder-information.svg create mode 100644 docs/material/.icons/material/folder-key-network-outline.svg create mode 100644 docs/material/.icons/material/folder-key-network.svg create mode 100644 docs/material/.icons/material/folder-key-outline.svg create mode 100644 docs/material/.icons/material/folder-key.svg create mode 100644 docs/material/.icons/material/folder-lock-open.svg create mode 100644 docs/material/.icons/material/folder-lock.svg create mode 100644 docs/material/.icons/material/folder-marker-outline.svg create mode 100644 docs/material/.icons/material/folder-marker.svg create mode 100644 docs/material/.icons/material/folder-move-outline.svg create mode 100644 docs/material/.icons/material/folder-move.svg create mode 100644 docs/material/.icons/material/folder-multiple-image.svg create mode 100644 docs/material/.icons/material/folder-multiple-outline.svg create mode 100644 docs/material/.icons/material/folder-multiple.svg create mode 100644 docs/material/.icons/material/folder-music-outline.svg create mode 100644 docs/material/.icons/material/folder-music.svg create mode 100644 docs/material/.icons/material/folder-network-outline.svg create mode 100644 docs/material/.icons/material/folder-network.svg create mode 100644 docs/material/.icons/material/folder-open-outline.svg create mode 100644 docs/material/.icons/material/folder-open.svg create mode 100644 docs/material/.icons/material/folder-outline.svg create mode 100644 docs/material/.icons/material/folder-plus-outline.svg create mode 100644 docs/material/.icons/material/folder-plus.svg create mode 100644 docs/material/.icons/material/folder-pound-outline.svg create mode 100644 docs/material/.icons/material/folder-pound.svg create mode 100644 docs/material/.icons/material/folder-refresh-outline.svg create mode 100644 docs/material/.icons/material/folder-refresh.svg create mode 100644 docs/material/.icons/material/folder-remove-outline.svg create mode 100644 docs/material/.icons/material/folder-remove.svg create mode 100644 docs/material/.icons/material/folder-search-outline.svg create mode 100644 docs/material/.icons/material/folder-search.svg create mode 100644 docs/material/.icons/material/folder-settings-outline.svg create mode 100644 docs/material/.icons/material/folder-settings.svg create mode 100644 docs/material/.icons/material/folder-star-multiple-outline.svg create mode 100644 docs/material/.icons/material/folder-star-multiple.svg create mode 100644 docs/material/.icons/material/folder-star-outline.svg create mode 100644 docs/material/.icons/material/folder-star.svg create mode 100644 docs/material/.icons/material/folder-swap-outline.svg create mode 100644 docs/material/.icons/material/folder-swap.svg create mode 100644 docs/material/.icons/material/folder-sync-outline.svg create mode 100644 docs/material/.icons/material/folder-sync.svg create mode 100644 docs/material/.icons/material/folder-table-outline.svg create mode 100644 docs/material/.icons/material/folder-table.svg create mode 100644 docs/material/.icons/material/folder-text-outline.svg create mode 100644 docs/material/.icons/material/folder-text.svg create mode 100644 docs/material/.icons/material/folder-upload-outline.svg create mode 100644 docs/material/.icons/material/folder-upload.svg create mode 100644 docs/material/.icons/material/folder-zip-outline.svg create mode 100644 docs/material/.icons/material/folder-zip.svg create mode 100644 docs/material/.icons/material/folder.svg create mode 100644 docs/material/.icons/material/font-awesome.svg create mode 100644 docs/material/.icons/material/food-apple-outline.svg create mode 100644 docs/material/.icons/material/food-apple.svg create mode 100644 docs/material/.icons/material/food-croissant.svg create mode 100644 docs/material/.icons/material/food-fork-drink.svg create mode 100644 docs/material/.icons/material/food-off.svg create mode 100644 docs/material/.icons/material/food-variant-off.svg create mode 100644 docs/material/.icons/material/food-variant.svg create mode 100644 docs/material/.icons/material/food.svg create mode 100644 docs/material/.icons/material/foot-print.svg create mode 100644 docs/material/.icons/material/football-australian.svg create mode 100644 docs/material/.icons/material/football-helmet.svg create mode 100644 docs/material/.icons/material/football.svg create mode 100644 docs/material/.icons/material/forklift.svg create mode 100644 docs/material/.icons/material/form-dropdown.svg create mode 100644 docs/material/.icons/material/form-select.svg create mode 100644 docs/material/.icons/material/form-textarea.svg create mode 100644 docs/material/.icons/material/form-textbox-lock.svg create mode 100644 docs/material/.icons/material/form-textbox-password.svg create mode 100644 docs/material/.icons/material/form-textbox.svg create mode 100644 docs/material/.icons/material/format-align-bottom.svg create mode 100644 docs/material/.icons/material/format-align-center.svg create mode 100644 docs/material/.icons/material/format-align-justify.svg create mode 100644 docs/material/.icons/material/format-align-left.svg create mode 100644 docs/material/.icons/material/format-align-middle.svg create mode 100644 docs/material/.icons/material/format-align-right.svg create mode 100644 docs/material/.icons/material/format-align-top.svg create mode 100644 docs/material/.icons/material/format-annotation-minus.svg create mode 100644 docs/material/.icons/material/format-annotation-plus.svg create mode 100644 docs/material/.icons/material/format-bold.svg create mode 100644 docs/material/.icons/material/format-clear.svg create mode 100644 docs/material/.icons/material/format-color-fill.svg create mode 100644 docs/material/.icons/material/format-color-highlight.svg create mode 100644 docs/material/.icons/material/format-color-marker-cancel.svg create mode 100644 docs/material/.icons/material/format-color-text.svg create mode 100644 docs/material/.icons/material/format-columns.svg create mode 100644 docs/material/.icons/material/format-float-center.svg create mode 100644 docs/material/.icons/material/format-float-left.svg create mode 100644 docs/material/.icons/material/format-float-none.svg create mode 100644 docs/material/.icons/material/format-float-right.svg create mode 100644 docs/material/.icons/material/format-font-size-decrease.svg create mode 100644 docs/material/.icons/material/format-font-size-increase.svg create mode 100644 docs/material/.icons/material/format-font.svg create mode 100644 docs/material/.icons/material/format-header-1.svg create mode 100644 docs/material/.icons/material/format-header-2.svg create mode 100644 docs/material/.icons/material/format-header-3.svg create mode 100644 docs/material/.icons/material/format-header-4.svg create mode 100644 docs/material/.icons/material/format-header-5.svg create mode 100644 docs/material/.icons/material/format-header-6.svg create mode 100644 docs/material/.icons/material/format-header-decrease.svg create mode 100644 docs/material/.icons/material/format-header-equal.svg create mode 100644 docs/material/.icons/material/format-header-increase.svg create mode 100644 docs/material/.icons/material/format-header-pound.svg create mode 100644 docs/material/.icons/material/format-horizontal-align-center.svg create mode 100644 docs/material/.icons/material/format-horizontal-align-left.svg create mode 100644 docs/material/.icons/material/format-horizontal-align-right.svg create mode 100644 docs/material/.icons/material/format-indent-decrease.svg create mode 100644 docs/material/.icons/material/format-indent-increase.svg create mode 100644 docs/material/.icons/material/format-italic.svg create mode 100644 docs/material/.icons/material/format-letter-case-lower.svg create mode 100644 docs/material/.icons/material/format-letter-case-upper.svg create mode 100644 docs/material/.icons/material/format-letter-case.svg create mode 100644 docs/material/.icons/material/format-letter-ends-with.svg create mode 100644 docs/material/.icons/material/format-letter-matches.svg create mode 100644 docs/material/.icons/material/format-letter-starts-with.svg create mode 100644 docs/material/.icons/material/format-line-spacing.svg create mode 100644 docs/material/.icons/material/format-line-style.svg create mode 100644 docs/material/.icons/material/format-line-weight.svg create mode 100644 docs/material/.icons/material/format-list-bulleted-square.svg create mode 100644 docs/material/.icons/material/format-list-bulleted-triangle.svg create mode 100644 docs/material/.icons/material/format-list-bulleted-type.svg create mode 100644 docs/material/.icons/material/format-list-bulleted.svg create mode 100644 docs/material/.icons/material/format-list-checkbox.svg create mode 100644 docs/material/.icons/material/format-list-checks.svg create mode 100644 docs/material/.icons/material/format-list-numbered-rtl.svg create mode 100644 docs/material/.icons/material/format-list-numbered.svg create mode 100644 docs/material/.icons/material/format-list-text.svg create mode 100644 docs/material/.icons/material/format-overline.svg create mode 100644 docs/material/.icons/material/format-page-break.svg create mode 100644 docs/material/.icons/material/format-paint.svg create mode 100644 docs/material/.icons/material/format-paragraph.svg create mode 100644 docs/material/.icons/material/format-pilcrow.svg create mode 100644 docs/material/.icons/material/format-quote-close-outline.svg create mode 100644 docs/material/.icons/material/format-quote-close.svg create mode 100644 docs/material/.icons/material/format-quote-open-outline.svg create mode 100644 docs/material/.icons/material/format-quote-open.svg create mode 100644 docs/material/.icons/material/format-rotate-90.svg create mode 100644 docs/material/.icons/material/format-section.svg create mode 100644 docs/material/.icons/material/format-size.svg create mode 100644 docs/material/.icons/material/format-strikethrough-variant.svg create mode 100644 docs/material/.icons/material/format-strikethrough.svg create mode 100644 docs/material/.icons/material/format-subscript.svg create mode 100644 docs/material/.icons/material/format-superscript.svg create mode 100644 docs/material/.icons/material/format-text-rotation-angle-down.svg create mode 100644 docs/material/.icons/material/format-text-rotation-angle-up.svg create mode 100644 docs/material/.icons/material/format-text-rotation-down-vertical.svg create mode 100644 docs/material/.icons/material/format-text-rotation-down.svg create mode 100644 docs/material/.icons/material/format-text-rotation-none.svg create mode 100644 docs/material/.icons/material/format-text-rotation-up.svg create mode 100644 docs/material/.icons/material/format-text-rotation-vertical.svg create mode 100644 docs/material/.icons/material/format-text-variant.svg create mode 100644 docs/material/.icons/material/format-text-wrapping-clip.svg create mode 100644 docs/material/.icons/material/format-text-wrapping-overflow.svg create mode 100644 docs/material/.icons/material/format-text-wrapping-wrap.svg create mode 100644 docs/material/.icons/material/format-text.svg create mode 100644 docs/material/.icons/material/format-textbox.svg create mode 100644 docs/material/.icons/material/format-textdirection-l-to-r.svg create mode 100644 docs/material/.icons/material/format-textdirection-r-to-l.svg create mode 100644 docs/material/.icons/material/format-title.svg create mode 100644 docs/material/.icons/material/format-underline.svg create mode 100644 docs/material/.icons/material/format-vertical-align-bottom.svg create mode 100644 docs/material/.icons/material/format-vertical-align-center.svg create mode 100644 docs/material/.icons/material/format-vertical-align-top.svg create mode 100644 docs/material/.icons/material/format-wrap-inline.svg create mode 100644 docs/material/.icons/material/format-wrap-square.svg create mode 100644 docs/material/.icons/material/format-wrap-tight.svg create mode 100644 docs/material/.icons/material/format-wrap-top-bottom.svg create mode 100644 docs/material/.icons/material/forum-outline.svg create mode 100644 docs/material/.icons/material/forum.svg create mode 100644 docs/material/.icons/material/forward.svg create mode 100644 docs/material/.icons/material/forwardburger.svg create mode 100644 docs/material/.icons/material/fountain-pen-tip.svg create mode 100644 docs/material/.icons/material/fountain-pen.svg create mode 100644 docs/material/.icons/material/fountain.svg create mode 100644 docs/material/.icons/material/freebsd.svg create mode 100644 docs/material/.icons/material/frequently-asked-questions.svg create mode 100644 docs/material/.icons/material/fridge-alert-outline.svg create mode 100644 docs/material/.icons/material/fridge-alert.svg create mode 100644 docs/material/.icons/material/fridge-bottom.svg create mode 100644 docs/material/.icons/material/fridge-off-outline.svg create mode 100644 docs/material/.icons/material/fridge-off.svg create mode 100644 docs/material/.icons/material/fridge-outline.svg create mode 100644 docs/material/.icons/material/fridge-top.svg create mode 100644 docs/material/.icons/material/fridge.svg create mode 100644 docs/material/.icons/material/fruit-cherries-off.svg create mode 100644 docs/material/.icons/material/fruit-cherries.svg create mode 100644 docs/material/.icons/material/fruit-citrus-off.svg create mode 100644 docs/material/.icons/material/fruit-citrus.svg create mode 100644 docs/material/.icons/material/fruit-grapes-outline.svg create mode 100644 docs/material/.icons/material/fruit-grapes.svg create mode 100644 docs/material/.icons/material/fruit-pineapple.svg create mode 100644 docs/material/.icons/material/fruit-watermelon.svg create mode 100644 docs/material/.icons/material/fuel.svg create mode 100644 docs/material/.icons/material/fullscreen-exit.svg create mode 100644 docs/material/.icons/material/fullscreen.svg create mode 100644 docs/material/.icons/material/function-variant.svg create mode 100644 docs/material/.icons/material/function.svg create mode 100644 docs/material/.icons/material/furigana-horizontal.svg create mode 100644 docs/material/.icons/material/furigana-vertical.svg create mode 100644 docs/material/.icons/material/fuse-blade.svg create mode 100644 docs/material/.icons/material/fuse.svg create mode 100644 docs/material/.icons/material/gamepad-circle-down.svg create mode 100644 docs/material/.icons/material/gamepad-circle-left.svg create mode 100644 docs/material/.icons/material/gamepad-circle-outline.svg create mode 100644 docs/material/.icons/material/gamepad-circle-right.svg create mode 100644 docs/material/.icons/material/gamepad-circle-up.svg create mode 100644 docs/material/.icons/material/gamepad-circle.svg create mode 100644 docs/material/.icons/material/gamepad-down.svg create mode 100644 docs/material/.icons/material/gamepad-left.svg create mode 100644 docs/material/.icons/material/gamepad-right.svg create mode 100644 docs/material/.icons/material/gamepad-round-down.svg create mode 100644 docs/material/.icons/material/gamepad-round-left.svg create mode 100644 docs/material/.icons/material/gamepad-round-outline.svg create mode 100644 docs/material/.icons/material/gamepad-round-right.svg create mode 100644 docs/material/.icons/material/gamepad-round-up.svg create mode 100644 docs/material/.icons/material/gamepad-round.svg create mode 100644 docs/material/.icons/material/gamepad-square-outline.svg create mode 100644 docs/material/.icons/material/gamepad-square.svg create mode 100644 docs/material/.icons/material/gamepad-up.svg create mode 100644 docs/material/.icons/material/gamepad-variant-outline.svg create mode 100644 docs/material/.icons/material/gamepad-variant.svg create mode 100644 docs/material/.icons/material/gamepad.svg create mode 100644 docs/material/.icons/material/gamma.svg create mode 100644 docs/material/.icons/material/gantry-crane.svg create mode 100644 docs/material/.icons/material/garage-alert-variant.svg create mode 100644 docs/material/.icons/material/garage-alert.svg create mode 100644 docs/material/.icons/material/garage-open-variant.svg create mode 100644 docs/material/.icons/material/garage-open.svg create mode 100644 docs/material/.icons/material/garage-variant.svg create mode 100644 docs/material/.icons/material/garage.svg create mode 100644 docs/material/.icons/material/gas-cylinder.svg create mode 100644 docs/material/.icons/material/gas-station-off-outline.svg create mode 100644 docs/material/.icons/material/gas-station-off.svg create mode 100644 docs/material/.icons/material/gas-station-outline.svg create mode 100644 docs/material/.icons/material/gas-station.svg create mode 100644 docs/material/.icons/material/gate-and.svg create mode 100644 docs/material/.icons/material/gate-arrow-right.svg create mode 100644 docs/material/.icons/material/gate-nand.svg create mode 100644 docs/material/.icons/material/gate-nor.svg create mode 100644 docs/material/.icons/material/gate-not.svg create mode 100644 docs/material/.icons/material/gate-open.svg create mode 100644 docs/material/.icons/material/gate-or.svg create mode 100644 docs/material/.icons/material/gate-xnor.svg create mode 100644 docs/material/.icons/material/gate-xor.svg create mode 100644 docs/material/.icons/material/gate.svg create mode 100644 docs/material/.icons/material/gatsby.svg create mode 100644 docs/material/.icons/material/gauge-empty.svg create mode 100644 docs/material/.icons/material/gauge-full.svg create mode 100644 docs/material/.icons/material/gauge-low.svg create mode 100644 docs/material/.icons/material/gauge.svg create mode 100644 docs/material/.icons/material/gavel.svg create mode 100644 docs/material/.icons/material/gender-female.svg create mode 100644 docs/material/.icons/material/gender-male-female-variant.svg create mode 100644 docs/material/.icons/material/gender-male-female.svg create mode 100644 docs/material/.icons/material/gender-male.svg create mode 100644 docs/material/.icons/material/gender-non-binary.svg create mode 100644 docs/material/.icons/material/gender-transgender.svg create mode 100644 docs/material/.icons/material/gentoo.svg create mode 100644 docs/material/.icons/material/gesture-double-tap.svg create mode 100644 docs/material/.icons/material/gesture-pinch.svg create mode 100644 docs/material/.icons/material/gesture-spread.svg create mode 100644 docs/material/.icons/material/gesture-swipe-down.svg create mode 100644 docs/material/.icons/material/gesture-swipe-horizontal.svg create mode 100644 docs/material/.icons/material/gesture-swipe-left.svg create mode 100644 docs/material/.icons/material/gesture-swipe-right.svg create mode 100644 docs/material/.icons/material/gesture-swipe-up.svg create mode 100644 docs/material/.icons/material/gesture-swipe-vertical.svg create mode 100644 docs/material/.icons/material/gesture-swipe.svg create mode 100644 docs/material/.icons/material/gesture-tap-box.svg create mode 100644 docs/material/.icons/material/gesture-tap-button.svg create mode 100644 docs/material/.icons/material/gesture-tap-hold.svg create mode 100644 docs/material/.icons/material/gesture-tap.svg create mode 100644 docs/material/.icons/material/gesture-two-double-tap.svg create mode 100644 docs/material/.icons/material/gesture-two-tap.svg create mode 100644 docs/material/.icons/material/gesture.svg create mode 100644 docs/material/.icons/material/ghost-off.svg create mode 100644 docs/material/.icons/material/ghost.svg create mode 100644 docs/material/.icons/material/gif.svg create mode 100644 docs/material/.icons/material/gift-outline.svg create mode 100644 docs/material/.icons/material/gift.svg create mode 100644 docs/material/.icons/material/git.svg create mode 100644 docs/material/.icons/material/github.svg create mode 100644 docs/material/.icons/material/gitlab.svg create mode 100644 docs/material/.icons/material/glass-cocktail.svg create mode 100644 docs/material/.icons/material/glass-flute.svg create mode 100644 docs/material/.icons/material/glass-mug-variant.svg create mode 100644 docs/material/.icons/material/glass-mug.svg create mode 100644 docs/material/.icons/material/glass-pint-outline.svg create mode 100644 docs/material/.icons/material/glass-stange.svg create mode 100644 docs/material/.icons/material/glass-tulip.svg create mode 100644 docs/material/.icons/material/glass-wine.svg create mode 100644 docs/material/.icons/material/glasses.svg create mode 100644 docs/material/.icons/material/globe-light.svg create mode 100644 docs/material/.icons/material/globe-model.svg create mode 100644 docs/material/.icons/material/gmail.svg create mode 100644 docs/material/.icons/material/gnome.svg create mode 100644 docs/material/.icons/material/go-kart-track.svg create mode 100644 docs/material/.icons/material/go-kart.svg create mode 100644 docs/material/.icons/material/gog.svg create mode 100644 docs/material/.icons/material/gold.svg create mode 100644 docs/material/.icons/material/golf-cart.svg create mode 100644 docs/material/.icons/material/golf-tee.svg create mode 100644 docs/material/.icons/material/golf.svg create mode 100644 docs/material/.icons/material/gondola.svg create mode 100644 docs/material/.icons/material/goodreads.svg create mode 100644 docs/material/.icons/material/google-ads.svg create mode 100644 docs/material/.icons/material/google-analytics.svg create mode 100644 docs/material/.icons/material/google-assistant.svg create mode 100644 docs/material/.icons/material/google-cardboard.svg create mode 100644 docs/material/.icons/material/google-chrome.svg create mode 100644 docs/material/.icons/material/google-circles-communities.svg create mode 100644 docs/material/.icons/material/google-circles-extended.svg create mode 100644 docs/material/.icons/material/google-circles-group.svg create mode 100644 docs/material/.icons/material/google-circles.svg create mode 100644 docs/material/.icons/material/google-classroom.svg create mode 100644 docs/material/.icons/material/google-cloud.svg create mode 100644 docs/material/.icons/material/google-controller-off.svg create mode 100644 docs/material/.icons/material/google-controller.svg create mode 100644 docs/material/.icons/material/google-downasaur.svg create mode 100644 docs/material/.icons/material/google-drive.svg create mode 100644 docs/material/.icons/material/google-earth.svg create mode 100644 docs/material/.icons/material/google-fit.svg create mode 100644 docs/material/.icons/material/google-glass.svg create mode 100644 docs/material/.icons/material/google-hangouts.svg create mode 100644 docs/material/.icons/material/google-home.svg create mode 100644 docs/material/.icons/material/google-keep.svg create mode 100644 docs/material/.icons/material/google-lens.svg create mode 100644 docs/material/.icons/material/google-maps.svg create mode 100644 docs/material/.icons/material/google-my-business.svg create mode 100644 docs/material/.icons/material/google-nearby.svg create mode 100644 docs/material/.icons/material/google-photos.svg create mode 100644 docs/material/.icons/material/google-play.svg create mode 100644 docs/material/.icons/material/google-plus.svg create mode 100644 docs/material/.icons/material/google-podcast.svg create mode 100644 docs/material/.icons/material/google-spreadsheet.svg create mode 100644 docs/material/.icons/material/google-street-view.svg create mode 100644 docs/material/.icons/material/google-translate.svg create mode 100644 docs/material/.icons/material/google.svg create mode 100644 docs/material/.icons/material/gradient.svg create mode 100644 docs/material/.icons/material/grain.svg create mode 100644 docs/material/.icons/material/graph-outline.svg create mode 100644 docs/material/.icons/material/graph.svg create mode 100644 docs/material/.icons/material/graphql.svg create mode 100644 docs/material/.icons/material/grave-stone.svg create mode 100644 docs/material/.icons/material/grease-pencil.svg create mode 100644 docs/material/.icons/material/greater-than-or-equal.svg create mode 100644 docs/material/.icons/material/greater-than.svg create mode 100644 docs/material/.icons/material/grid-large.svg create mode 100644 docs/material/.icons/material/grid-off.svg create mode 100644 docs/material/.icons/material/grid.svg create mode 100644 docs/material/.icons/material/grill-outline.svg create mode 100644 docs/material/.icons/material/grill.svg create mode 100644 docs/material/.icons/material/group.svg create mode 100644 docs/material/.icons/material/guitar-acoustic.svg create mode 100644 docs/material/.icons/material/guitar-electric.svg create mode 100644 docs/material/.icons/material/guitar-pick-outline.svg create mode 100644 docs/material/.icons/material/guitar-pick.svg create mode 100644 docs/material/.icons/material/guy-fawkes-mask.svg create mode 100644 docs/material/.icons/material/hail.svg create mode 100644 docs/material/.icons/material/hair-dryer-outline.svg create mode 100644 docs/material/.icons/material/hair-dryer.svg create mode 100644 docs/material/.icons/material/halloween.svg create mode 100644 docs/material/.icons/material/hamburger.svg create mode 100644 docs/material/.icons/material/hammer-screwdriver.svg create mode 100644 docs/material/.icons/material/hammer-wrench.svg create mode 100644 docs/material/.icons/material/hammer.svg create mode 100644 docs/material/.icons/material/hand-heart.svg create mode 100644 docs/material/.icons/material/hand-left.svg create mode 100644 docs/material/.icons/material/hand-okay.svg create mode 100644 docs/material/.icons/material/hand-peace-variant.svg create mode 100644 docs/material/.icons/material/hand-peace.svg create mode 100644 docs/material/.icons/material/hand-pointing-down.svg create mode 100644 docs/material/.icons/material/hand-pointing-left.svg create mode 100644 docs/material/.icons/material/hand-pointing-right.svg create mode 100644 docs/material/.icons/material/hand-pointing-up.svg create mode 100644 docs/material/.icons/material/hand-right.svg create mode 100644 docs/material/.icons/material/hand-saw.svg create mode 100644 docs/material/.icons/material/hand-water.svg create mode 100644 docs/material/.icons/material/hand.svg create mode 100644 docs/material/.icons/material/handball.svg create mode 100644 docs/material/.icons/material/handcuffs.svg create mode 100644 docs/material/.icons/material/handshake.svg create mode 100644 docs/material/.icons/material/hanger.svg create mode 100644 docs/material/.icons/material/hard-hat.svg create mode 100644 docs/material/.icons/material/harddisk-plus.svg create mode 100644 docs/material/.icons/material/harddisk-remove.svg create mode 100644 docs/material/.icons/material/harddisk.svg create mode 100644 docs/material/.icons/material/hat-fedora.svg create mode 100644 docs/material/.icons/material/hazard-lights.svg create mode 100644 docs/material/.icons/material/hdr-off.svg create mode 100644 docs/material/.icons/material/hdr.svg create mode 100644 docs/material/.icons/material/head-alert-outline.svg create mode 100644 docs/material/.icons/material/head-alert.svg create mode 100644 docs/material/.icons/material/head-check-outline.svg create mode 100644 docs/material/.icons/material/head-check.svg create mode 100644 docs/material/.icons/material/head-cog-outline.svg create mode 100644 docs/material/.icons/material/head-cog.svg create mode 100644 docs/material/.icons/material/head-dots-horizontal-outline.svg create mode 100644 docs/material/.icons/material/head-dots-horizontal.svg create mode 100644 docs/material/.icons/material/head-flash-outline.svg create mode 100644 docs/material/.icons/material/head-flash.svg create mode 100644 docs/material/.icons/material/head-heart-outline.svg create mode 100644 docs/material/.icons/material/head-heart.svg create mode 100644 docs/material/.icons/material/head-lightbulb-outline.svg create mode 100644 docs/material/.icons/material/head-lightbulb.svg create mode 100644 docs/material/.icons/material/head-minus-outline.svg create mode 100644 docs/material/.icons/material/head-minus.svg create mode 100644 docs/material/.icons/material/head-outline.svg create mode 100644 docs/material/.icons/material/head-plus-outline.svg create mode 100644 docs/material/.icons/material/head-plus.svg create mode 100644 docs/material/.icons/material/head-question-outline.svg create mode 100644 docs/material/.icons/material/head-question.svg create mode 100644 docs/material/.icons/material/head-remove-outline.svg create mode 100644 docs/material/.icons/material/head-remove.svg create mode 100644 docs/material/.icons/material/head-snowflake-outline.svg create mode 100644 docs/material/.icons/material/head-snowflake.svg create mode 100644 docs/material/.icons/material/head-sync-outline.svg create mode 100644 docs/material/.icons/material/head-sync.svg create mode 100644 docs/material/.icons/material/head.svg create mode 100644 docs/material/.icons/material/headphones-bluetooth.svg create mode 100644 docs/material/.icons/material/headphones-box.svg create mode 100644 docs/material/.icons/material/headphones-off.svg create mode 100644 docs/material/.icons/material/headphones-settings.svg create mode 100644 docs/material/.icons/material/headphones.svg create mode 100644 docs/material/.icons/material/headset-dock.svg create mode 100644 docs/material/.icons/material/headset-off.svg create mode 100644 docs/material/.icons/material/headset.svg create mode 100644 docs/material/.icons/material/heart-box-outline.svg create mode 100644 docs/material/.icons/material/heart-box.svg create mode 100644 docs/material/.icons/material/heart-broken-outline.svg create mode 100644 docs/material/.icons/material/heart-broken.svg create mode 100644 docs/material/.icons/material/heart-circle-outline.svg create mode 100644 docs/material/.icons/material/heart-circle.svg create mode 100644 docs/material/.icons/material/heart-flash.svg create mode 100644 docs/material/.icons/material/heart-half-full.svg create mode 100644 docs/material/.icons/material/heart-half-outline.svg create mode 100644 docs/material/.icons/material/heart-half.svg create mode 100644 docs/material/.icons/material/heart-multiple-outline.svg create mode 100644 docs/material/.icons/material/heart-multiple.svg create mode 100644 docs/material/.icons/material/heart-off.svg create mode 100644 docs/material/.icons/material/heart-outline.svg create mode 100644 docs/material/.icons/material/heart-pulse.svg create mode 100644 docs/material/.icons/material/heart.svg create mode 100644 docs/material/.icons/material/helicopter.svg create mode 100644 docs/material/.icons/material/help-box.svg create mode 100644 docs/material/.icons/material/help-circle-outline.svg create mode 100644 docs/material/.icons/material/help-circle.svg create mode 100644 docs/material/.icons/material/help-network-outline.svg create mode 100644 docs/material/.icons/material/help-network.svg create mode 100644 docs/material/.icons/material/help-rhombus-outline.svg create mode 100644 docs/material/.icons/material/help-rhombus.svg create mode 100644 docs/material/.icons/material/help.svg create mode 100644 docs/material/.icons/material/hexadecimal.svg create mode 100644 docs/material/.icons/material/hexagon-multiple-outline.svg create mode 100644 docs/material/.icons/material/hexagon-multiple.svg create mode 100644 docs/material/.icons/material/hexagon-outline.svg create mode 100644 docs/material/.icons/material/hexagon-slice-1.svg create mode 100644 docs/material/.icons/material/hexagon-slice-2.svg create mode 100644 docs/material/.icons/material/hexagon-slice-3.svg create mode 100644 docs/material/.icons/material/hexagon-slice-4.svg create mode 100644 docs/material/.icons/material/hexagon-slice-5.svg create mode 100644 docs/material/.icons/material/hexagon-slice-6.svg create mode 100644 docs/material/.icons/material/hexagon.svg create mode 100644 docs/material/.icons/material/hexagram-outline.svg create mode 100644 docs/material/.icons/material/hexagram.svg create mode 100644 docs/material/.icons/material/high-definition-box.svg create mode 100644 docs/material/.icons/material/high-definition.svg create mode 100644 docs/material/.icons/material/highway.svg create mode 100644 docs/material/.icons/material/hiking.svg create mode 100644 docs/material/.icons/material/hinduism.svg create mode 100644 docs/material/.icons/material/history.svg create mode 100644 docs/material/.icons/material/hockey-puck.svg create mode 100644 docs/material/.icons/material/hockey-sticks.svg create mode 100644 docs/material/.icons/material/hololens.svg create mode 100644 docs/material/.icons/material/home-account.svg create mode 100644 docs/material/.icons/material/home-alert.svg create mode 100644 docs/material/.icons/material/home-analytics.svg create mode 100644 docs/material/.icons/material/home-assistant.svg create mode 100644 docs/material/.icons/material/home-automation.svg create mode 100644 docs/material/.icons/material/home-circle-outline.svg create mode 100644 docs/material/.icons/material/home-circle.svg create mode 100644 docs/material/.icons/material/home-city-outline.svg create mode 100644 docs/material/.icons/material/home-city.svg create mode 100644 docs/material/.icons/material/home-currency-usd.svg create mode 100644 docs/material/.icons/material/home-edit-outline.svg create mode 100644 docs/material/.icons/material/home-edit.svg create mode 100644 docs/material/.icons/material/home-export-outline.svg create mode 100644 docs/material/.icons/material/home-flood.svg create mode 100644 docs/material/.icons/material/home-floor-0.svg create mode 100644 docs/material/.icons/material/home-floor-1.svg create mode 100644 docs/material/.icons/material/home-floor-2.svg create mode 100644 docs/material/.icons/material/home-floor-3.svg create mode 100644 docs/material/.icons/material/home-floor-a.svg create mode 100644 docs/material/.icons/material/home-floor-b.svg create mode 100644 docs/material/.icons/material/home-floor-g.svg create mode 100644 docs/material/.icons/material/home-floor-l.svg create mode 100644 docs/material/.icons/material/home-floor-negative-1.svg create mode 100644 docs/material/.icons/material/home-group.svg create mode 100644 docs/material/.icons/material/home-heart.svg create mode 100644 docs/material/.icons/material/home-import-outline.svg create mode 100644 docs/material/.icons/material/home-lightbulb-outline.svg create mode 100644 docs/material/.icons/material/home-lightbulb.svg create mode 100644 docs/material/.icons/material/home-lock-open.svg create mode 100644 docs/material/.icons/material/home-lock.svg create mode 100644 docs/material/.icons/material/home-map-marker.svg create mode 100644 docs/material/.icons/material/home-minus-outline.svg create mode 100644 docs/material/.icons/material/home-minus.svg create mode 100644 docs/material/.icons/material/home-modern.svg create mode 100644 docs/material/.icons/material/home-outline.svg create mode 100644 docs/material/.icons/material/home-plus-outline.svg create mode 100644 docs/material/.icons/material/home-plus.svg create mode 100644 docs/material/.icons/material/home-remove-outline.svg create mode 100644 docs/material/.icons/material/home-remove.svg create mode 100644 docs/material/.icons/material/home-roof.svg create mode 100644 docs/material/.icons/material/home-search-outline.svg create mode 100644 docs/material/.icons/material/home-search.svg create mode 100644 docs/material/.icons/material/home-thermometer-outline.svg create mode 100644 docs/material/.icons/material/home-thermometer.svg create mode 100644 docs/material/.icons/material/home-variant-outline.svg create mode 100644 docs/material/.icons/material/home-variant.svg create mode 100644 docs/material/.icons/material/home.svg create mode 100644 docs/material/.icons/material/hook-off.svg create mode 100644 docs/material/.icons/material/hook.svg create mode 100644 docs/material/.icons/material/hops.svg create mode 100644 docs/material/.icons/material/horizontal-rotate-clockwise.svg create mode 100644 docs/material/.icons/material/horizontal-rotate-counterclockwise.svg create mode 100644 docs/material/.icons/material/horseshoe.svg create mode 100644 docs/material/.icons/material/hospital-box-outline.svg create mode 100644 docs/material/.icons/material/hospital-box.svg create mode 100644 docs/material/.icons/material/hospital-building.svg create mode 100644 docs/material/.icons/material/hospital-marker.svg create mode 100644 docs/material/.icons/material/hospital.svg create mode 100644 docs/material/.icons/material/hot-tub.svg create mode 100644 docs/material/.icons/material/hubspot.svg create mode 100644 docs/material/.icons/material/hulu.svg create mode 100644 docs/material/.icons/material/human-baby-changing-table.svg create mode 100644 docs/material/.icons/material/human-child.svg create mode 100644 docs/material/.icons/material/human-female-boy.svg create mode 100644 docs/material/.icons/material/human-female-female.svg create mode 100644 docs/material/.icons/material/human-female-girl.svg create mode 100644 docs/material/.icons/material/human-female.svg create mode 100644 docs/material/.icons/material/human-greeting.svg create mode 100644 docs/material/.icons/material/human-handsdown.svg create mode 100644 docs/material/.icons/material/human-handsup.svg create mode 100644 docs/material/.icons/material/human-male-boy.svg create mode 100644 docs/material/.icons/material/human-male-child.svg create mode 100644 docs/material/.icons/material/human-male-female.svg create mode 100644 docs/material/.icons/material/human-male-girl.svg create mode 100644 docs/material/.icons/material/human-male-height-variant.svg create mode 100644 docs/material/.icons/material/human-male-height.svg create mode 100644 docs/material/.icons/material/human-male-male.svg create mode 100644 docs/material/.icons/material/human-male.svg create mode 100644 docs/material/.icons/material/human-pregnant.svg create mode 100644 docs/material/.icons/material/human-wheelchair.svg create mode 100644 docs/material/.icons/material/human.svg create mode 100644 docs/material/.icons/material/humble-bundle.svg create mode 100644 docs/material/.icons/material/hvac.svg create mode 100644 docs/material/.icons/material/hydraulic-oil-level.svg create mode 100644 docs/material/.icons/material/hydraulic-oil-temperature.svg create mode 100644 docs/material/.icons/material/hydro-power.svg create mode 100644 docs/material/.icons/material/ice-cream-off.svg create mode 100644 docs/material/.icons/material/ice-cream.svg create mode 100644 docs/material/.icons/material/ice-pop.svg create mode 100644 docs/material/.icons/material/id-card.svg create mode 100644 docs/material/.icons/material/identifier.svg create mode 100644 docs/material/.icons/material/ideogram-cjk-variant.svg create mode 100644 docs/material/.icons/material/ideogram-cjk.svg create mode 100644 docs/material/.icons/material/iframe-array-outline.svg create mode 100644 docs/material/.icons/material/iframe-array.svg create mode 100644 docs/material/.icons/material/iframe-braces-outline.svg create mode 100644 docs/material/.icons/material/iframe-braces.svg create mode 100644 docs/material/.icons/material/iframe-outline.svg create mode 100644 docs/material/.icons/material/iframe-parentheses-outline.svg create mode 100644 docs/material/.icons/material/iframe-parentheses.svg create mode 100644 docs/material/.icons/material/iframe-variable-outline.svg create mode 100644 docs/material/.icons/material/iframe-variable.svg create mode 100644 docs/material/.icons/material/iframe.svg create mode 100644 docs/material/.icons/material/image-album.svg create mode 100644 docs/material/.icons/material/image-area-close.svg create mode 100644 docs/material/.icons/material/image-area.svg create mode 100644 docs/material/.icons/material/image-auto-adjust.svg create mode 100644 docs/material/.icons/material/image-broken-variant.svg create mode 100644 docs/material/.icons/material/image-broken.svg create mode 100644 docs/material/.icons/material/image-edit-outline.svg create mode 100644 docs/material/.icons/material/image-edit.svg create mode 100644 docs/material/.icons/material/image-filter-black-white.svg create mode 100644 docs/material/.icons/material/image-filter-center-focus-strong-outline.svg create mode 100644 docs/material/.icons/material/image-filter-center-focus-strong.svg create mode 100644 docs/material/.icons/material/image-filter-center-focus-weak.svg create mode 100644 docs/material/.icons/material/image-filter-center-focus.svg create mode 100644 docs/material/.icons/material/image-filter-drama.svg create mode 100644 docs/material/.icons/material/image-filter-frames.svg create mode 100644 docs/material/.icons/material/image-filter-hdr.svg create mode 100644 docs/material/.icons/material/image-filter-none.svg create mode 100644 docs/material/.icons/material/image-filter-tilt-shift.svg create mode 100644 docs/material/.icons/material/image-filter-vintage.svg create mode 100644 docs/material/.icons/material/image-frame.svg create mode 100644 docs/material/.icons/material/image-minus.svg create mode 100644 docs/material/.icons/material/image-move.svg create mode 100644 docs/material/.icons/material/image-multiple-outline.svg create mode 100644 docs/material/.icons/material/image-multiple.svg create mode 100644 docs/material/.icons/material/image-off-outline.svg create mode 100644 docs/material/.icons/material/image-off.svg create mode 100644 docs/material/.icons/material/image-outline.svg create mode 100644 docs/material/.icons/material/image-plus.svg create mode 100644 docs/material/.icons/material/image-remove.svg create mode 100644 docs/material/.icons/material/image-search-outline.svg create mode 100644 docs/material/.icons/material/image-search.svg create mode 100644 docs/material/.icons/material/image-size-select-actual.svg create mode 100644 docs/material/.icons/material/image-size-select-large.svg create mode 100644 docs/material/.icons/material/image-size-select-small.svg create mode 100644 docs/material/.icons/material/image.svg create mode 100644 docs/material/.icons/material/import.svg create mode 100644 docs/material/.icons/material/inbox-arrow-down-outline.svg create mode 100644 docs/material/.icons/material/inbox-arrow-down.svg create mode 100644 docs/material/.icons/material/inbox-arrow-up-outline.svg create mode 100644 docs/material/.icons/material/inbox-arrow-up.svg create mode 100644 docs/material/.icons/material/inbox-full-outline.svg create mode 100644 docs/material/.icons/material/inbox-full.svg create mode 100644 docs/material/.icons/material/inbox-multiple-outline.svg create mode 100644 docs/material/.icons/material/inbox-multiple.svg create mode 100644 docs/material/.icons/material/inbox-outline.svg create mode 100644 docs/material/.icons/material/inbox.svg create mode 100644 docs/material/.icons/material/incognito-off.svg create mode 100644 docs/material/.icons/material/incognito.svg create mode 100644 docs/material/.icons/material/infinity.svg create mode 100644 docs/material/.icons/material/information-outline.svg create mode 100644 docs/material/.icons/material/information-variant.svg create mode 100644 docs/material/.icons/material/information.svg create mode 100644 docs/material/.icons/material/instagram.svg create mode 100644 docs/material/.icons/material/instrument-triangle.svg create mode 100644 docs/material/.icons/material/invert-colors-off.svg create mode 100644 docs/material/.icons/material/invert-colors.svg create mode 100644 docs/material/.icons/material/iobroker.svg create mode 100644 docs/material/.icons/material/ip-network-outline.svg create mode 100644 docs/material/.icons/material/ip-network.svg create mode 100644 docs/material/.icons/material/ip.svg create mode 100644 docs/material/.icons/material/ipod.svg create mode 100644 docs/material/.icons/material/islam.svg create mode 100644 docs/material/.icons/material/island.svg create mode 100644 docs/material/.icons/material/iv-bag.svg create mode 100644 docs/material/.icons/material/jabber.svg create mode 100644 docs/material/.icons/material/jeepney.svg create mode 100644 docs/material/.icons/material/jellyfish-outline.svg create mode 100644 docs/material/.icons/material/jellyfish.svg create mode 100644 docs/material/.icons/material/jira.svg create mode 100644 docs/material/.icons/material/jquery.svg create mode 100644 docs/material/.icons/material/jsfiddle.svg create mode 100644 docs/material/.icons/material/judaism.svg create mode 100644 docs/material/.icons/material/jump-rope.svg create mode 100644 docs/material/.icons/material/kabaddi.svg create mode 100644 docs/material/.icons/material/karate.svg create mode 100644 docs/material/.icons/material/keg.svg create mode 100644 docs/material/.icons/material/kettle-alert-outline.svg create mode 100644 docs/material/.icons/material/kettle-alert.svg create mode 100644 docs/material/.icons/material/kettle-off-outline.svg create mode 100644 docs/material/.icons/material/kettle-off.svg create mode 100644 docs/material/.icons/material/kettle-outline.svg create mode 100644 docs/material/.icons/material/kettle-steam-outline.svg create mode 100644 docs/material/.icons/material/kettle-steam.svg create mode 100644 docs/material/.icons/material/kettle.svg create mode 100644 docs/material/.icons/material/kettlebell.svg create mode 100644 docs/material/.icons/material/key-arrow-right.svg create mode 100644 docs/material/.icons/material/key-change.svg create mode 100644 docs/material/.icons/material/key-link.svg create mode 100644 docs/material/.icons/material/key-minus.svg create mode 100644 docs/material/.icons/material/key-outline.svg create mode 100644 docs/material/.icons/material/key-plus.svg create mode 100644 docs/material/.icons/material/key-remove.svg create mode 100644 docs/material/.icons/material/key-star.svg create mode 100644 docs/material/.icons/material/key-variant.svg create mode 100644 docs/material/.icons/material/key-wireless.svg create mode 100644 docs/material/.icons/material/key.svg create mode 100644 docs/material/.icons/material/keyboard-backspace.svg create mode 100644 docs/material/.icons/material/keyboard-caps.svg create mode 100644 docs/material/.icons/material/keyboard-close.svg create mode 100644 docs/material/.icons/material/keyboard-esc.svg create mode 100644 docs/material/.icons/material/keyboard-f1.svg create mode 100644 docs/material/.icons/material/keyboard-f10.svg create mode 100644 docs/material/.icons/material/keyboard-f11.svg create mode 100644 docs/material/.icons/material/keyboard-f12.svg create mode 100644 docs/material/.icons/material/keyboard-f2.svg create mode 100644 docs/material/.icons/material/keyboard-f3.svg create mode 100644 docs/material/.icons/material/keyboard-f4.svg create mode 100644 docs/material/.icons/material/keyboard-f5.svg create mode 100644 docs/material/.icons/material/keyboard-f6.svg create mode 100644 docs/material/.icons/material/keyboard-f7.svg create mode 100644 docs/material/.icons/material/keyboard-f8.svg create mode 100644 docs/material/.icons/material/keyboard-f9.svg create mode 100644 docs/material/.icons/material/keyboard-off-outline.svg create mode 100644 docs/material/.icons/material/keyboard-off.svg create mode 100644 docs/material/.icons/material/keyboard-outline.svg create mode 100644 docs/material/.icons/material/keyboard-return.svg create mode 100644 docs/material/.icons/material/keyboard-settings-outline.svg create mode 100644 docs/material/.icons/material/keyboard-settings.svg create mode 100644 docs/material/.icons/material/keyboard-space.svg create mode 100644 docs/material/.icons/material/keyboard-tab.svg create mode 100644 docs/material/.icons/material/keyboard-variant.svg create mode 100644 docs/material/.icons/material/keyboard.svg create mode 100644 docs/material/.icons/material/khanda.svg create mode 100644 docs/material/.icons/material/kickstarter.svg create mode 100644 docs/material/.icons/material/klingon.svg create mode 100644 docs/material/.icons/material/knife-military.svg create mode 100644 docs/material/.icons/material/knife.svg create mode 100644 docs/material/.icons/material/kodi.svg create mode 100644 docs/material/.icons/material/kubernetes.svg create mode 100644 docs/material/.icons/material/label-multiple-outline.svg create mode 100644 docs/material/.icons/material/label-multiple.svg create mode 100644 docs/material/.icons/material/label-off-outline.svg create mode 100644 docs/material/.icons/material/label-off.svg create mode 100644 docs/material/.icons/material/label-outline.svg create mode 100644 docs/material/.icons/material/label-percent-outline.svg create mode 100644 docs/material/.icons/material/label-percent.svg create mode 100644 docs/material/.icons/material/label-variant-outline.svg create mode 100644 docs/material/.icons/material/label-variant.svg create mode 100644 docs/material/.icons/material/label.svg create mode 100644 docs/material/.icons/material/ladybug.svg create mode 100644 docs/material/.icons/material/lambda.svg create mode 100644 docs/material/.icons/material/lamp.svg create mode 100644 docs/material/.icons/material/lan-check.svg create mode 100644 docs/material/.icons/material/lan-connect.svg create mode 100644 docs/material/.icons/material/lan-disconnect.svg create mode 100644 docs/material/.icons/material/lan-pending.svg create mode 100644 docs/material/.icons/material/lan.svg create mode 100644 docs/material/.icons/material/language-c.svg create mode 100644 docs/material/.icons/material/language-cpp.svg create mode 100644 docs/material/.icons/material/language-csharp.svg create mode 100644 docs/material/.icons/material/language-css3.svg create mode 100644 docs/material/.icons/material/language-fortran.svg create mode 100644 docs/material/.icons/material/language-go.svg create mode 100644 docs/material/.icons/material/language-haskell.svg create mode 100644 docs/material/.icons/material/language-html5.svg create mode 100644 docs/material/.icons/material/language-java.svg create mode 100644 docs/material/.icons/material/language-javascript.svg create mode 100644 docs/material/.icons/material/language-kotlin.svg create mode 100644 docs/material/.icons/material/language-lua.svg create mode 100644 docs/material/.icons/material/language-markdown-outline.svg create mode 100644 docs/material/.icons/material/language-markdown.svg create mode 100644 docs/material/.icons/material/language-php.svg create mode 100644 docs/material/.icons/material/language-python.svg create mode 100644 docs/material/.icons/material/language-r.svg create mode 100644 docs/material/.icons/material/language-ruby-on-rails.svg create mode 100644 docs/material/.icons/material/language-ruby.svg create mode 100644 docs/material/.icons/material/language-swift.svg create mode 100644 docs/material/.icons/material/language-typescript.svg create mode 100644 docs/material/.icons/material/language-xaml.svg create mode 100644 docs/material/.icons/material/laptop-chromebook.svg create mode 100644 docs/material/.icons/material/laptop-mac.svg create mode 100644 docs/material/.icons/material/laptop-off.svg create mode 100644 docs/material/.icons/material/laptop-windows.svg create mode 100644 docs/material/.icons/material/laptop.svg create mode 100644 docs/material/.icons/material/laravel.svg create mode 100644 docs/material/.icons/material/lasso.svg create mode 100644 docs/material/.icons/material/lastpass.svg create mode 100644 docs/material/.icons/material/latitude.svg create mode 100644 docs/material/.icons/material/launch.svg create mode 100644 docs/material/.icons/material/lava-lamp.svg create mode 100644 docs/material/.icons/material/layers-minus.svg create mode 100644 docs/material/.icons/material/layers-off-outline.svg create mode 100644 docs/material/.icons/material/layers-off.svg create mode 100644 docs/material/.icons/material/layers-outline.svg create mode 100644 docs/material/.icons/material/layers-plus.svg create mode 100644 docs/material/.icons/material/layers-remove.svg create mode 100644 docs/material/.icons/material/layers-search-outline.svg create mode 100644 docs/material/.icons/material/layers-search.svg create mode 100644 docs/material/.icons/material/layers-triple-outline.svg create mode 100644 docs/material/.icons/material/layers-triple.svg create mode 100644 docs/material/.icons/material/layers.svg create mode 100644 docs/material/.icons/material/lead-pencil.svg create mode 100644 docs/material/.icons/material/leaf-maple-off.svg create mode 100644 docs/material/.icons/material/leaf-maple.svg create mode 100644 docs/material/.icons/material/leaf-off.svg create mode 100644 docs/material/.icons/material/leaf.svg create mode 100644 docs/material/.icons/material/leak-off.svg create mode 100644 docs/material/.icons/material/leak.svg create mode 100644 docs/material/.icons/material/led-off.svg create mode 100644 docs/material/.icons/material/led-on.svg create mode 100644 docs/material/.icons/material/led-outline.svg create mode 100644 docs/material/.icons/material/led-strip-variant.svg create mode 100644 docs/material/.icons/material/led-strip.svg create mode 100644 docs/material/.icons/material/led-variant-off.svg create mode 100644 docs/material/.icons/material/led-variant-on.svg create mode 100644 docs/material/.icons/material/led-variant-outline.svg create mode 100644 docs/material/.icons/material/leek.svg create mode 100644 docs/material/.icons/material/less-than-or-equal.svg create mode 100644 docs/material/.icons/material/less-than.svg create mode 100644 docs/material/.icons/material/library-shelves.svg create mode 100644 docs/material/.icons/material/library.svg create mode 100644 docs/material/.icons/material/license.svg create mode 100644 docs/material/.icons/material/lifebuoy.svg create mode 100644 docs/material/.icons/material/light-switch.svg create mode 100644 docs/material/.icons/material/lightbulb-cfl-off.svg create mode 100644 docs/material/.icons/material/lightbulb-cfl-spiral-off.svg create mode 100644 docs/material/.icons/material/lightbulb-cfl-spiral.svg create mode 100644 docs/material/.icons/material/lightbulb-cfl.svg create mode 100644 docs/material/.icons/material/lightbulb-group-off-outline.svg create mode 100644 docs/material/.icons/material/lightbulb-group-off.svg create mode 100644 docs/material/.icons/material/lightbulb-group-outline.svg create mode 100644 docs/material/.icons/material/lightbulb-group.svg create mode 100644 docs/material/.icons/material/lightbulb-multiple-off-outline.svg create mode 100644 docs/material/.icons/material/lightbulb-multiple-off.svg create mode 100644 docs/material/.icons/material/lightbulb-multiple-outline.svg create mode 100644 docs/material/.icons/material/lightbulb-multiple.svg create mode 100644 docs/material/.icons/material/lightbulb-off-outline.svg create mode 100644 docs/material/.icons/material/lightbulb-off.svg create mode 100644 docs/material/.icons/material/lightbulb-on-outline.svg create mode 100644 docs/material/.icons/material/lightbulb-on.svg create mode 100644 docs/material/.icons/material/lightbulb-outline.svg create mode 100644 docs/material/.icons/material/lightbulb.svg create mode 100644 docs/material/.icons/material/lighthouse-on.svg create mode 100644 docs/material/.icons/material/lighthouse.svg create mode 100644 docs/material/.icons/material/lightning-bolt-outline.svg create mode 100644 docs/material/.icons/material/lightning-bolt.svg create mode 100644 docs/material/.icons/material/link-box-outline.svg create mode 100644 docs/material/.icons/material/link-box-variant-outline.svg create mode 100644 docs/material/.icons/material/link-box-variant.svg create mode 100644 docs/material/.icons/material/link-box.svg create mode 100644 docs/material/.icons/material/link-lock.svg create mode 100644 docs/material/.icons/material/link-off.svg create mode 100644 docs/material/.icons/material/link-plus.svg create mode 100644 docs/material/.icons/material/link-variant-minus.svg create mode 100644 docs/material/.icons/material/link-variant-off.svg create mode 100644 docs/material/.icons/material/link-variant-plus.svg create mode 100644 docs/material/.icons/material/link-variant-remove.svg create mode 100644 docs/material/.icons/material/link-variant.svg create mode 100644 docs/material/.icons/material/link.svg create mode 100644 docs/material/.icons/material/linkedin.svg create mode 100644 docs/material/.icons/material/linux-mint.svg create mode 100644 docs/material/.icons/material/linux.svg create mode 100644 docs/material/.icons/material/lipstick.svg create mode 100644 docs/material/.icons/material/litecoin.svg create mode 100644 docs/material/.icons/material/loading.svg create mode 100644 docs/material/.icons/material/location-enter.svg create mode 100644 docs/material/.icons/material/location-exit.svg create mode 100644 docs/material/.icons/material/lock-alert.svg create mode 100644 docs/material/.icons/material/lock-check.svg create mode 100644 docs/material/.icons/material/lock-clock.svg create mode 100644 docs/material/.icons/material/lock-open-alert.svg create mode 100644 docs/material/.icons/material/lock-open-check.svg create mode 100644 docs/material/.icons/material/lock-open-outline.svg create mode 100644 docs/material/.icons/material/lock-open-variant-outline.svg create mode 100644 docs/material/.icons/material/lock-open-variant.svg create mode 100644 docs/material/.icons/material/lock-open.svg create mode 100644 docs/material/.icons/material/lock-outline.svg create mode 100644 docs/material/.icons/material/lock-pattern.svg create mode 100644 docs/material/.icons/material/lock-plus.svg create mode 100644 docs/material/.icons/material/lock-question.svg create mode 100644 docs/material/.icons/material/lock-reset.svg create mode 100644 docs/material/.icons/material/lock-smart.svg create mode 100644 docs/material/.icons/material/lock.svg create mode 100644 docs/material/.icons/material/locker-multiple.svg create mode 100644 docs/material/.icons/material/locker.svg create mode 100644 docs/material/.icons/material/login-variant.svg create mode 100644 docs/material/.icons/material/login.svg create mode 100644 docs/material/.icons/material/logout-variant.svg create mode 100644 docs/material/.icons/material/logout.svg create mode 100644 docs/material/.icons/material/longitude.svg create mode 100644 docs/material/.icons/material/looks.svg create mode 100644 docs/material/.icons/material/loupe.svg create mode 100644 docs/material/.icons/material/lumx.svg create mode 100644 docs/material/.icons/material/lungs.svg create mode 100644 docs/material/.icons/material/magnet-on.svg create mode 100644 docs/material/.icons/material/magnet.svg create mode 100644 docs/material/.icons/material/magnify-close.svg create mode 100644 docs/material/.icons/material/magnify-minus-cursor.svg create mode 100644 docs/material/.icons/material/magnify-minus-outline.svg create mode 100644 docs/material/.icons/material/magnify-minus.svg create mode 100644 docs/material/.icons/material/magnify-plus-cursor.svg create mode 100644 docs/material/.icons/material/magnify-plus-outline.svg create mode 100644 docs/material/.icons/material/magnify-plus.svg create mode 100644 docs/material/.icons/material/magnify-remove-cursor.svg create mode 100644 docs/material/.icons/material/magnify-remove-outline.svg create mode 100644 docs/material/.icons/material/magnify-scan.svg create mode 100644 docs/material/.icons/material/magnify.svg create mode 100644 docs/material/.icons/material/mail.svg create mode 100644 docs/material/.icons/material/mailbox-open-outline.svg create mode 100644 docs/material/.icons/material/mailbox-open-up-outline.svg create mode 100644 docs/material/.icons/material/mailbox-open-up.svg create mode 100644 docs/material/.icons/material/mailbox-open.svg create mode 100644 docs/material/.icons/material/mailbox-outline.svg create mode 100644 docs/material/.icons/material/mailbox-up-outline.svg create mode 100644 docs/material/.icons/material/mailbox-up.svg create mode 100644 docs/material/.icons/material/mailbox.svg create mode 100644 docs/material/.icons/material/map-check-outline.svg create mode 100644 docs/material/.icons/material/map-check.svg create mode 100644 docs/material/.icons/material/map-clock-outline.svg create mode 100644 docs/material/.icons/material/map-clock.svg create mode 100644 docs/material/.icons/material/map-legend.svg create mode 100644 docs/material/.icons/material/map-marker-alert-outline.svg create mode 100644 docs/material/.icons/material/map-marker-alert.svg create mode 100644 docs/material/.icons/material/map-marker-check-outline.svg create mode 100644 docs/material/.icons/material/map-marker-check.svg create mode 100644 docs/material/.icons/material/map-marker-circle.svg create mode 100644 docs/material/.icons/material/map-marker-distance.svg create mode 100644 docs/material/.icons/material/map-marker-down.svg create mode 100644 docs/material/.icons/material/map-marker-left-outline.svg create mode 100644 docs/material/.icons/material/map-marker-left.svg create mode 100644 docs/material/.icons/material/map-marker-minus-outline.svg create mode 100644 docs/material/.icons/material/map-marker-minus.svg create mode 100644 docs/material/.icons/material/map-marker-multiple-outline.svg create mode 100644 docs/material/.icons/material/map-marker-multiple.svg create mode 100644 docs/material/.icons/material/map-marker-off-outline.svg create mode 100644 docs/material/.icons/material/map-marker-off.svg create mode 100644 docs/material/.icons/material/map-marker-outline.svg create mode 100644 docs/material/.icons/material/map-marker-path.svg create mode 100644 docs/material/.icons/material/map-marker-plus-outline.svg create mode 100644 docs/material/.icons/material/map-marker-plus.svg create mode 100644 docs/material/.icons/material/map-marker-question-outline.svg create mode 100644 docs/material/.icons/material/map-marker-question.svg create mode 100644 docs/material/.icons/material/map-marker-radius-outline.svg create mode 100644 docs/material/.icons/material/map-marker-radius.svg create mode 100644 docs/material/.icons/material/map-marker-remove-outline.svg create mode 100644 docs/material/.icons/material/map-marker-remove-variant.svg create mode 100644 docs/material/.icons/material/map-marker-remove.svg create mode 100644 docs/material/.icons/material/map-marker-right-outline.svg create mode 100644 docs/material/.icons/material/map-marker-right.svg create mode 100644 docs/material/.icons/material/map-marker-up.svg create mode 100644 docs/material/.icons/material/map-marker.svg create mode 100644 docs/material/.icons/material/map-minus.svg create mode 100644 docs/material/.icons/material/map-outline.svg create mode 100644 docs/material/.icons/material/map-plus.svg create mode 100644 docs/material/.icons/material/map-search-outline.svg create mode 100644 docs/material/.icons/material/map-search.svg create mode 100644 docs/material/.icons/material/map.svg create mode 100644 docs/material/.icons/material/mapbox.svg create mode 100644 docs/material/.icons/material/margin.svg create mode 100644 docs/material/.icons/material/marker-cancel.svg create mode 100644 docs/material/.icons/material/marker-check.svg create mode 100644 docs/material/.icons/material/marker.svg create mode 100644 docs/material/.icons/material/mastodon.svg create mode 100644 docs/material/.icons/material/material-design.svg create mode 100644 docs/material/.icons/material/material-ui.svg create mode 100644 docs/material/.icons/material/math-compass.svg create mode 100644 docs/material/.icons/material/math-cos.svg create mode 100644 docs/material/.icons/material/math-integral-box.svg create mode 100644 docs/material/.icons/material/math-integral.svg create mode 100644 docs/material/.icons/material/math-log.svg create mode 100644 docs/material/.icons/material/math-norm-box.svg create mode 100644 docs/material/.icons/material/math-norm.svg create mode 100644 docs/material/.icons/material/math-sin.svg create mode 100644 docs/material/.icons/material/math-tan.svg create mode 100644 docs/material/.icons/material/matrix.svg create mode 100644 docs/material/.icons/material/medal-outline.svg create mode 100644 docs/material/.icons/material/medal.svg create mode 100644 docs/material/.icons/material/medical-bag.svg create mode 100644 docs/material/.icons/material/meditation.svg create mode 100644 docs/material/.icons/material/memory.svg create mode 100644 docs/material/.icons/material/menu-down-outline.svg create mode 100644 docs/material/.icons/material/menu-down.svg create mode 100644 docs/material/.icons/material/menu-left-outline.svg create mode 100644 docs/material/.icons/material/menu-left.svg create mode 100644 docs/material/.icons/material/menu-open.svg create mode 100644 docs/material/.icons/material/menu-right-outline.svg create mode 100644 docs/material/.icons/material/menu-right.svg create mode 100644 docs/material/.icons/material/menu-swap-outline.svg create mode 100644 docs/material/.icons/material/menu-swap.svg create mode 100644 docs/material/.icons/material/menu-up-outline.svg create mode 100644 docs/material/.icons/material/menu-up.svg create mode 100644 docs/material/.icons/material/menu.svg create mode 100644 docs/material/.icons/material/merge.svg create mode 100644 docs/material/.icons/material/message-alert-outline.svg create mode 100644 docs/material/.icons/material/message-alert.svg create mode 100644 docs/material/.icons/material/message-arrow-left-outline.svg create mode 100644 docs/material/.icons/material/message-arrow-left.svg create mode 100644 docs/material/.icons/material/message-arrow-right-outline.svg create mode 100644 docs/material/.icons/material/message-arrow-right.svg create mode 100644 docs/material/.icons/material/message-bulleted-off.svg create mode 100644 docs/material/.icons/material/message-bulleted.svg create mode 100644 docs/material/.icons/material/message-cog-outline.svg create mode 100644 docs/material/.icons/material/message-cog.svg create mode 100644 docs/material/.icons/material/message-draw.svg create mode 100644 docs/material/.icons/material/message-image-outline.svg create mode 100644 docs/material/.icons/material/message-image.svg create mode 100644 docs/material/.icons/material/message-lock-outline.svg create mode 100644 docs/material/.icons/material/message-lock.svg create mode 100644 docs/material/.icons/material/message-minus-outline.svg create mode 100644 docs/material/.icons/material/message-minus.svg create mode 100644 docs/material/.icons/material/message-outline.svg create mode 100644 docs/material/.icons/material/message-plus-outline.svg create mode 100644 docs/material/.icons/material/message-plus.svg create mode 100644 docs/material/.icons/material/message-processing-outline.svg create mode 100644 docs/material/.icons/material/message-processing.svg create mode 100644 docs/material/.icons/material/message-reply-text.svg create mode 100644 docs/material/.icons/material/message-reply.svg create mode 100644 docs/material/.icons/material/message-settings-outline.svg create mode 100644 docs/material/.icons/material/message-settings.svg create mode 100644 docs/material/.icons/material/message-text-clock-outline.svg create mode 100644 docs/material/.icons/material/message-text-clock.svg create mode 100644 docs/material/.icons/material/message-text-lock-outline.svg create mode 100644 docs/material/.icons/material/message-text-lock.svg create mode 100644 docs/material/.icons/material/message-text-outline.svg create mode 100644 docs/material/.icons/material/message-text.svg create mode 100644 docs/material/.icons/material/message-video.svg create mode 100644 docs/material/.icons/material/message.svg create mode 100644 docs/material/.icons/material/meteor.svg create mode 100644 docs/material/.icons/material/metronome-tick.svg create mode 100644 docs/material/.icons/material/metronome.svg create mode 100644 docs/material/.icons/material/micro-sd.svg create mode 100644 docs/material/.icons/material/microphone-minus.svg create mode 100644 docs/material/.icons/material/microphone-off.svg create mode 100644 docs/material/.icons/material/microphone-outline.svg create mode 100644 docs/material/.icons/material/microphone-plus.svg create mode 100644 docs/material/.icons/material/microphone-settings.svg create mode 100644 docs/material/.icons/material/microphone-variant-off.svg create mode 100644 docs/material/.icons/material/microphone-variant.svg create mode 100644 docs/material/.icons/material/microphone.svg create mode 100644 docs/material/.icons/material/microscope.svg create mode 100644 docs/material/.icons/material/microsoft-access.svg create mode 100644 docs/material/.icons/material/microsoft-azure-devops.svg create mode 100644 docs/material/.icons/material/microsoft-azure.svg create mode 100644 docs/material/.icons/material/microsoft-bing.svg create mode 100644 docs/material/.icons/material/microsoft-dynamics-365.svg create mode 100644 docs/material/.icons/material/microsoft-edge-legacy.svg create mode 100644 docs/material/.icons/material/microsoft-edge.svg create mode 100644 docs/material/.icons/material/microsoft-excel.svg create mode 100644 docs/material/.icons/material/microsoft-internet-explorer.svg create mode 100644 docs/material/.icons/material/microsoft-office.svg create mode 100644 docs/material/.icons/material/microsoft-onedrive.svg create mode 100644 docs/material/.icons/material/microsoft-onenote.svg create mode 100644 docs/material/.icons/material/microsoft-outlook.svg create mode 100644 docs/material/.icons/material/microsoft-powerpoint.svg create mode 100644 docs/material/.icons/material/microsoft-sharepoint.svg create mode 100644 docs/material/.icons/material/microsoft-teams.svg create mode 100644 docs/material/.icons/material/microsoft-visual-studio-code.svg create mode 100644 docs/material/.icons/material/microsoft-visual-studio.svg create mode 100644 docs/material/.icons/material/microsoft-windows-classic.svg create mode 100644 docs/material/.icons/material/microsoft-windows.svg create mode 100644 docs/material/.icons/material/microsoft-word.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-battery-alert.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-battery-charging.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-battery-empty.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-battery-full.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-battery-low.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-battery-medium.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-battery-unknown.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-menu.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-off.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller-view.svg create mode 100644 docs/material/.icons/material/microsoft-xbox-controller.svg create mode 100644 docs/material/.icons/material/microsoft-xbox.svg create mode 100644 docs/material/.icons/material/microsoft-yammer.svg create mode 100644 docs/material/.icons/material/microsoft.svg create mode 100644 docs/material/.icons/material/microwave.svg create mode 100644 docs/material/.icons/material/middleware-outline.svg create mode 100644 docs/material/.icons/material/middleware.svg create mode 100644 docs/material/.icons/material/midi-port.svg create mode 100644 docs/material/.icons/material/midi.svg create mode 100644 docs/material/.icons/material/mine.svg create mode 100644 docs/material/.icons/material/minecraft.svg create mode 100644 docs/material/.icons/material/mini-sd.svg create mode 100644 docs/material/.icons/material/minidisc.svg create mode 100644 docs/material/.icons/material/minus-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/minus-box-multiple.svg create mode 100644 docs/material/.icons/material/minus-box-outline.svg create mode 100644 docs/material/.icons/material/minus-box.svg create mode 100644 docs/material/.icons/material/minus-circle-multiple-outline.svg create mode 100644 docs/material/.icons/material/minus-circle-multiple.svg create mode 100644 docs/material/.icons/material/minus-circle-outline.svg create mode 100644 docs/material/.icons/material/minus-circle.svg create mode 100644 docs/material/.icons/material/minus-network-outline.svg create mode 100644 docs/material/.icons/material/minus-network.svg create mode 100644 docs/material/.icons/material/minus.svg create mode 100644 docs/material/.icons/material/mirror.svg create mode 100644 docs/material/.icons/material/mixed-martial-arts.svg create mode 100644 docs/material/.icons/material/mixed-reality.svg create mode 100644 docs/material/.icons/material/mixer.svg create mode 100644 docs/material/.icons/material/molecule-co.svg create mode 100644 docs/material/.icons/material/molecule-co2.svg create mode 100644 docs/material/.icons/material/molecule.svg create mode 100644 docs/material/.icons/material/monitor-cellphone-star.svg create mode 100644 docs/material/.icons/material/monitor-cellphone.svg create mode 100644 docs/material/.icons/material/monitor-clean.svg create mode 100644 docs/material/.icons/material/monitor-dashboard.svg create mode 100644 docs/material/.icons/material/monitor-edit.svg create mode 100644 docs/material/.icons/material/monitor-eye.svg create mode 100644 docs/material/.icons/material/monitor-lock.svg create mode 100644 docs/material/.icons/material/monitor-multiple.svg create mode 100644 docs/material/.icons/material/monitor-off.svg create mode 100644 docs/material/.icons/material/monitor-screenshot.svg create mode 100644 docs/material/.icons/material/monitor-speaker-off.svg create mode 100644 docs/material/.icons/material/monitor-speaker.svg create mode 100644 docs/material/.icons/material/monitor-star.svg create mode 100644 docs/material/.icons/material/monitor.svg create mode 100644 docs/material/.icons/material/moon-first-quarter.svg create mode 100644 docs/material/.icons/material/moon-full.svg create mode 100644 docs/material/.icons/material/moon-last-quarter.svg create mode 100644 docs/material/.icons/material/moon-new.svg create mode 100644 docs/material/.icons/material/moon-waning-crescent.svg create mode 100644 docs/material/.icons/material/moon-waning-gibbous.svg create mode 100644 docs/material/.icons/material/moon-waxing-crescent.svg create mode 100644 docs/material/.icons/material/moon-waxing-gibbous.svg create mode 100644 docs/material/.icons/material/moped.svg create mode 100644 docs/material/.icons/material/more.svg create mode 100644 docs/material/.icons/material/mother-heart.svg create mode 100644 docs/material/.icons/material/mother-nurse.svg create mode 100644 docs/material/.icons/material/motion-sensor.svg create mode 100644 docs/material/.icons/material/motorbike.svg create mode 100644 docs/material/.icons/material/mouse-bluetooth.svg create mode 100644 docs/material/.icons/material/mouse-off.svg create mode 100644 docs/material/.icons/material/mouse-variant-off.svg create mode 100644 docs/material/.icons/material/mouse-variant.svg create mode 100644 docs/material/.icons/material/mouse.svg create mode 100644 docs/material/.icons/material/move-resize-variant.svg create mode 100644 docs/material/.icons/material/move-resize.svg create mode 100644 docs/material/.icons/material/movie-edit-outline.svg create mode 100644 docs/material/.icons/material/movie-edit.svg create mode 100644 docs/material/.icons/material/movie-filter-outline.svg create mode 100644 docs/material/.icons/material/movie-filter.svg create mode 100644 docs/material/.icons/material/movie-open-outline.svg create mode 100644 docs/material/.icons/material/movie-open.svg create mode 100644 docs/material/.icons/material/movie-outline.svg create mode 100644 docs/material/.icons/material/movie-roll.svg create mode 100644 docs/material/.icons/material/movie-search-outline.svg create mode 100644 docs/material/.icons/material/movie-search.svg create mode 100644 docs/material/.icons/material/movie.svg create mode 100644 docs/material/.icons/material/muffin.svg create mode 100644 docs/material/.icons/material/multiplication-box.svg create mode 100644 docs/material/.icons/material/multiplication.svg create mode 100644 docs/material/.icons/material/mushroom-off-outline.svg create mode 100644 docs/material/.icons/material/mushroom-off.svg create mode 100644 docs/material/.icons/material/mushroom-outline.svg create mode 100644 docs/material/.icons/material/mushroom.svg create mode 100644 docs/material/.icons/material/music-accidental-double-flat.svg create mode 100644 docs/material/.icons/material/music-accidental-double-sharp.svg create mode 100644 docs/material/.icons/material/music-accidental-flat.svg create mode 100644 docs/material/.icons/material/music-accidental-natural.svg create mode 100644 docs/material/.icons/material/music-accidental-sharp.svg create mode 100644 docs/material/.icons/material/music-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/music-box-multiple.svg create mode 100644 docs/material/.icons/material/music-box-outline.svg create mode 100644 docs/material/.icons/material/music-box.svg create mode 100644 docs/material/.icons/material/music-circle-outline.svg create mode 100644 docs/material/.icons/material/music-circle.svg create mode 100644 docs/material/.icons/material/music-clef-alto.svg create mode 100644 docs/material/.icons/material/music-clef-bass.svg create mode 100644 docs/material/.icons/material/music-clef-treble.svg create mode 100644 docs/material/.icons/material/music-note-bluetooth-off.svg create mode 100644 docs/material/.icons/material/music-note-bluetooth.svg create mode 100644 docs/material/.icons/material/music-note-eighth-dotted.svg create mode 100644 docs/material/.icons/material/music-note-eighth.svg create mode 100644 docs/material/.icons/material/music-note-half-dotted.svg create mode 100644 docs/material/.icons/material/music-note-half.svg create mode 100644 docs/material/.icons/material/music-note-off-outline.svg create mode 100644 docs/material/.icons/material/music-note-off.svg create mode 100644 docs/material/.icons/material/music-note-outline.svg create mode 100644 docs/material/.icons/material/music-note-plus.svg create mode 100644 docs/material/.icons/material/music-note-quarter-dotted.svg create mode 100644 docs/material/.icons/material/music-note-quarter.svg create mode 100644 docs/material/.icons/material/music-note-sixteenth-dotted.svg create mode 100644 docs/material/.icons/material/music-note-sixteenth.svg create mode 100644 docs/material/.icons/material/music-note-whole-dotted.svg create mode 100644 docs/material/.icons/material/music-note-whole.svg create mode 100644 docs/material/.icons/material/music-note.svg create mode 100644 docs/material/.icons/material/music-off.svg create mode 100644 docs/material/.icons/material/music-rest-eighth.svg create mode 100644 docs/material/.icons/material/music-rest-half.svg create mode 100644 docs/material/.icons/material/music-rest-quarter.svg create mode 100644 docs/material/.icons/material/music-rest-sixteenth.svg create mode 100644 docs/material/.icons/material/music-rest-whole.svg create mode 100644 docs/material/.icons/material/music.svg create mode 100644 docs/material/.icons/material/nail.svg create mode 100644 docs/material/.icons/material/nas.svg create mode 100644 docs/material/.icons/material/nativescript.svg create mode 100644 docs/material/.icons/material/nature-people.svg create mode 100644 docs/material/.icons/material/nature.svg create mode 100644 docs/material/.icons/material/navigation.svg create mode 100644 docs/material/.icons/material/near-me.svg create mode 100644 docs/material/.icons/material/necklace.svg create mode 100644 docs/material/.icons/material/needle.svg create mode 100644 docs/material/.icons/material/netflix.svg create mode 100644 docs/material/.icons/material/network-off-outline.svg create mode 100644 docs/material/.icons/material/network-off.svg create mode 100644 docs/material/.icons/material/network-outline.svg create mode 100644 docs/material/.icons/material/network-strength-1-alert.svg create mode 100644 docs/material/.icons/material/network-strength-1.svg create mode 100644 docs/material/.icons/material/network-strength-2-alert.svg create mode 100644 docs/material/.icons/material/network-strength-2.svg create mode 100644 docs/material/.icons/material/network-strength-3-alert.svg create mode 100644 docs/material/.icons/material/network-strength-3.svg create mode 100644 docs/material/.icons/material/network-strength-4-alert.svg create mode 100644 docs/material/.icons/material/network-strength-4.svg create mode 100644 docs/material/.icons/material/network-strength-off-outline.svg create mode 100644 docs/material/.icons/material/network-strength-off.svg create mode 100644 docs/material/.icons/material/network-strength-outline.svg create mode 100644 docs/material/.icons/material/network.svg create mode 100644 docs/material/.icons/material/new-box.svg create mode 100644 docs/material/.icons/material/newspaper-minus.svg create mode 100644 docs/material/.icons/material/newspaper-plus.svg create mode 100644 docs/material/.icons/material/newspaper-variant-multiple-outline.svg create mode 100644 docs/material/.icons/material/newspaper-variant-multiple.svg create mode 100644 docs/material/.icons/material/newspaper-variant-outline.svg create mode 100644 docs/material/.icons/material/newspaper-variant.svg create mode 100644 docs/material/.icons/material/newspaper.svg create mode 100644 docs/material/.icons/material/nfc-search-variant.svg create mode 100644 docs/material/.icons/material/nfc-tap.svg create mode 100644 docs/material/.icons/material/nfc-variant-off.svg create mode 100644 docs/material/.icons/material/nfc-variant.svg create mode 100644 docs/material/.icons/material/nfc.svg create mode 100644 docs/material/.icons/material/ninja.svg create mode 100644 docs/material/.icons/material/nintendo-game-boy.svg create mode 100644 docs/material/.icons/material/nintendo-switch.svg create mode 100644 docs/material/.icons/material/nintendo-wii.svg create mode 100644 docs/material/.icons/material/nintendo-wiiu.svg create mode 100644 docs/material/.icons/material/nix.svg create mode 100644 docs/material/.icons/material/nodejs.svg create mode 100644 docs/material/.icons/material/noodles.svg create mode 100644 docs/material/.icons/material/not-equal-variant.svg create mode 100644 docs/material/.icons/material/not-equal.svg create mode 100644 docs/material/.icons/material/note-multiple-outline.svg create mode 100644 docs/material/.icons/material/note-multiple.svg create mode 100644 docs/material/.icons/material/note-outline.svg create mode 100644 docs/material/.icons/material/note-plus-outline.svg create mode 100644 docs/material/.icons/material/note-plus.svg create mode 100644 docs/material/.icons/material/note-text-outline.svg create mode 100644 docs/material/.icons/material/note-text.svg create mode 100644 docs/material/.icons/material/note.svg create mode 100644 docs/material/.icons/material/notebook-multiple.svg create mode 100644 docs/material/.icons/material/notebook-outline.svg create mode 100644 docs/material/.icons/material/notebook.svg create mode 100644 docs/material/.icons/material/notification-clear-all.svg create mode 100644 docs/material/.icons/material/npm.svg create mode 100644 docs/material/.icons/material/nuke.svg create mode 100644 docs/material/.icons/material/null.svg create mode 100644 docs/material/.icons/material/numeric-0-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-0-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-0-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-0-box.svg create mode 100644 docs/material/.icons/material/numeric-0-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-0-circle.svg create mode 100644 docs/material/.icons/material/numeric-0.svg create mode 100644 docs/material/.icons/material/numeric-1-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-1-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-1-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-1-box.svg create mode 100644 docs/material/.icons/material/numeric-1-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-1-circle.svg create mode 100644 docs/material/.icons/material/numeric-1.svg create mode 100644 docs/material/.icons/material/numeric-10-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-10-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-10-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-10-box.svg create mode 100644 docs/material/.icons/material/numeric-10-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-10-circle.svg create mode 100644 docs/material/.icons/material/numeric-10.svg create mode 100644 docs/material/.icons/material/numeric-2-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-2-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-2-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-2-box.svg create mode 100644 docs/material/.icons/material/numeric-2-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-2-circle.svg create mode 100644 docs/material/.icons/material/numeric-2.svg create mode 100644 docs/material/.icons/material/numeric-3-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-3-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-3-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-3-box.svg create mode 100644 docs/material/.icons/material/numeric-3-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-3-circle.svg create mode 100644 docs/material/.icons/material/numeric-3.svg create mode 100644 docs/material/.icons/material/numeric-4-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-4-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-4-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-4-box.svg create mode 100644 docs/material/.icons/material/numeric-4-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-4-circle.svg create mode 100644 docs/material/.icons/material/numeric-4.svg create mode 100644 docs/material/.icons/material/numeric-5-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-5-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-5-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-5-box.svg create mode 100644 docs/material/.icons/material/numeric-5-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-5-circle.svg create mode 100644 docs/material/.icons/material/numeric-5.svg create mode 100644 docs/material/.icons/material/numeric-6-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-6-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-6-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-6-box.svg create mode 100644 docs/material/.icons/material/numeric-6-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-6-circle.svg create mode 100644 docs/material/.icons/material/numeric-6.svg create mode 100644 docs/material/.icons/material/numeric-7-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-7-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-7-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-7-box.svg create mode 100644 docs/material/.icons/material/numeric-7-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-7-circle.svg create mode 100644 docs/material/.icons/material/numeric-7.svg create mode 100644 docs/material/.icons/material/numeric-8-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-8-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-8-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-8-box.svg create mode 100644 docs/material/.icons/material/numeric-8-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-8-circle.svg create mode 100644 docs/material/.icons/material/numeric-8.svg create mode 100644 docs/material/.icons/material/numeric-9-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-9-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-9-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-9-box.svg create mode 100644 docs/material/.icons/material/numeric-9-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-9-circle.svg create mode 100644 docs/material/.icons/material/numeric-9-plus-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/numeric-9-plus-box-multiple.svg create mode 100644 docs/material/.icons/material/numeric-9-plus-box-outline.svg create mode 100644 docs/material/.icons/material/numeric-9-plus-box.svg create mode 100644 docs/material/.icons/material/numeric-9-plus-circle-outline.svg create mode 100644 docs/material/.icons/material/numeric-9-plus-circle.svg create mode 100644 docs/material/.icons/material/numeric-9-plus.svg create mode 100644 docs/material/.icons/material/numeric-9.svg create mode 100644 docs/material/.icons/material/numeric-negative-1.svg create mode 100644 docs/material/.icons/material/numeric.svg create mode 100644 docs/material/.icons/material/nut.svg create mode 100644 docs/material/.icons/material/nutrition.svg create mode 100644 docs/material/.icons/material/nuxt.svg create mode 100644 docs/material/.icons/material/oar.svg create mode 100644 docs/material/.icons/material/ocarina.svg create mode 100644 docs/material/.icons/material/oci.svg create mode 100644 docs/material/.icons/material/ocr.svg create mode 100644 docs/material/.icons/material/octagon-outline.svg create mode 100644 docs/material/.icons/material/octagon.svg create mode 100644 docs/material/.icons/material/octagram-outline.svg create mode 100644 docs/material/.icons/material/octagram.svg create mode 100644 docs/material/.icons/material/odnoklassniki.svg create mode 100644 docs/material/.icons/material/offer.svg create mode 100644 docs/material/.icons/material/office-building.svg create mode 100644 docs/material/.icons/material/oil-lamp.svg create mode 100644 docs/material/.icons/material/oil-level.svg create mode 100644 docs/material/.icons/material/oil-temperature.svg create mode 100644 docs/material/.icons/material/oil.svg create mode 100644 docs/material/.icons/material/omega.svg create mode 100644 docs/material/.icons/material/one-up.svg create mode 100644 docs/material/.icons/material/onepassword.svg create mode 100644 docs/material/.icons/material/opacity.svg create mode 100644 docs/material/.icons/material/open-in-app.svg create mode 100644 docs/material/.icons/material/open-in-new.svg create mode 100644 docs/material/.icons/material/open-source-initiative.svg create mode 100644 docs/material/.icons/material/openid.svg create mode 100644 docs/material/.icons/material/opera.svg create mode 100644 docs/material/.icons/material/orbit.svg create mode 100644 docs/material/.icons/material/order-alphabetical-ascending.svg create mode 100644 docs/material/.icons/material/order-alphabetical-descending.svg create mode 100644 docs/material/.icons/material/order-bool-ascending-variant.svg create mode 100644 docs/material/.icons/material/order-bool-ascending.svg create mode 100644 docs/material/.icons/material/order-bool-descending-variant.svg create mode 100644 docs/material/.icons/material/order-bool-descending.svg create mode 100644 docs/material/.icons/material/order-numeric-ascending.svg create mode 100644 docs/material/.icons/material/order-numeric-descending.svg create mode 100644 docs/material/.icons/material/origin.svg create mode 100644 docs/material/.icons/material/ornament-variant.svg create mode 100644 docs/material/.icons/material/ornament.svg create mode 100644 docs/material/.icons/material/outdoor-lamp.svg create mode 100644 docs/material/.icons/material/overscan.svg create mode 100644 docs/material/.icons/material/owl.svg create mode 100644 docs/material/.icons/material/pac-man.svg create mode 100644 docs/material/.icons/material/package-down.svg create mode 100644 docs/material/.icons/material/package-up.svg create mode 100644 docs/material/.icons/material/package-variant-closed.svg create mode 100644 docs/material/.icons/material/package-variant.svg create mode 100644 docs/material/.icons/material/package.svg create mode 100644 docs/material/.icons/material/page-first.svg create mode 100644 docs/material/.icons/material/page-last.svg create mode 100644 docs/material/.icons/material/page-layout-body.svg create mode 100644 docs/material/.icons/material/page-layout-footer.svg create mode 100644 docs/material/.icons/material/page-layout-header-footer.svg create mode 100644 docs/material/.icons/material/page-layout-header.svg create mode 100644 docs/material/.icons/material/page-layout-sidebar-left.svg create mode 100644 docs/material/.icons/material/page-layout-sidebar-right.svg create mode 100644 docs/material/.icons/material/page-next-outline.svg create mode 100644 docs/material/.icons/material/page-next.svg create mode 100644 docs/material/.icons/material/page-previous-outline.svg create mode 100644 docs/material/.icons/material/page-previous.svg create mode 100644 docs/material/.icons/material/pail.svg create mode 100644 docs/material/.icons/material/palette-advanced.svg create mode 100644 docs/material/.icons/material/palette-outline.svg create mode 100644 docs/material/.icons/material/palette-swatch-outline.svg create mode 100644 docs/material/.icons/material/palette-swatch.svg create mode 100644 docs/material/.icons/material/palette.svg create mode 100644 docs/material/.icons/material/palm-tree.svg create mode 100644 docs/material/.icons/material/pan-bottom-left.svg create mode 100644 docs/material/.icons/material/pan-bottom-right.svg create mode 100644 docs/material/.icons/material/pan-down.svg create mode 100644 docs/material/.icons/material/pan-horizontal.svg create mode 100644 docs/material/.icons/material/pan-left.svg create mode 100644 docs/material/.icons/material/pan-right.svg create mode 100644 docs/material/.icons/material/pan-top-left.svg create mode 100644 docs/material/.icons/material/pan-top-right.svg create mode 100644 docs/material/.icons/material/pan-up.svg create mode 100644 docs/material/.icons/material/pan-vertical.svg create mode 100644 docs/material/.icons/material/pan.svg create mode 100644 docs/material/.icons/material/panda.svg create mode 100644 docs/material/.icons/material/pandora.svg create mode 100644 docs/material/.icons/material/panorama-fisheye.svg create mode 100644 docs/material/.icons/material/panorama-horizontal.svg create mode 100644 docs/material/.icons/material/panorama-vertical.svg create mode 100644 docs/material/.icons/material/panorama-wide-angle.svg create mode 100644 docs/material/.icons/material/panorama.svg create mode 100644 docs/material/.icons/material/paper-cut-vertical.svg create mode 100644 docs/material/.icons/material/paper-roll-outline.svg create mode 100644 docs/material/.icons/material/paper-roll.svg create mode 100644 docs/material/.icons/material/paperclip.svg create mode 100644 docs/material/.icons/material/parachute-outline.svg create mode 100644 docs/material/.icons/material/parachute.svg create mode 100644 docs/material/.icons/material/parking.svg create mode 100644 docs/material/.icons/material/party-popper.svg create mode 100644 docs/material/.icons/material/passport-biometric.svg create mode 100644 docs/material/.icons/material/passport.svg create mode 100644 docs/material/.icons/material/pasta.svg create mode 100644 docs/material/.icons/material/patio-heater.svg create mode 100644 docs/material/.icons/material/patreon.svg create mode 100644 docs/material/.icons/material/pause-circle-outline.svg create mode 100644 docs/material/.icons/material/pause-circle.svg create mode 100644 docs/material/.icons/material/pause-octagon-outline.svg create mode 100644 docs/material/.icons/material/pause-octagon.svg create mode 100644 docs/material/.icons/material/pause.svg create mode 100644 docs/material/.icons/material/paw-off.svg create mode 100644 docs/material/.icons/material/paw.svg create mode 100644 docs/material/.icons/material/pdf-box.svg create mode 100644 docs/material/.icons/material/peace.svg create mode 100644 docs/material/.icons/material/peanut-off-outline.svg create mode 100644 docs/material/.icons/material/peanut-off.svg create mode 100644 docs/material/.icons/material/peanut-outline.svg create mode 100644 docs/material/.icons/material/peanut.svg create mode 100644 docs/material/.icons/material/pen-lock.svg create mode 100644 docs/material/.icons/material/pen-minus.svg create mode 100644 docs/material/.icons/material/pen-off.svg create mode 100644 docs/material/.icons/material/pen-plus.svg create mode 100644 docs/material/.icons/material/pen-remove.svg create mode 100644 docs/material/.icons/material/pen.svg create mode 100644 docs/material/.icons/material/pencil-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/pencil-box-multiple.svg create mode 100644 docs/material/.icons/material/pencil-box-outline.svg create mode 100644 docs/material/.icons/material/pencil-box.svg create mode 100644 docs/material/.icons/material/pencil-circle-outline.svg create mode 100644 docs/material/.icons/material/pencil-circle.svg create mode 100644 docs/material/.icons/material/pencil-lock-outline.svg create mode 100644 docs/material/.icons/material/pencil-lock.svg create mode 100644 docs/material/.icons/material/pencil-minus-outline.svg create mode 100644 docs/material/.icons/material/pencil-minus.svg create mode 100644 docs/material/.icons/material/pencil-off-outline.svg create mode 100644 docs/material/.icons/material/pencil-off.svg create mode 100644 docs/material/.icons/material/pencil-outline.svg create mode 100644 docs/material/.icons/material/pencil-plus-outline.svg create mode 100644 docs/material/.icons/material/pencil-plus.svg create mode 100644 docs/material/.icons/material/pencil-remove-outline.svg create mode 100644 docs/material/.icons/material/pencil-remove.svg create mode 100644 docs/material/.icons/material/pencil-ruler.svg create mode 100644 docs/material/.icons/material/pencil.svg create mode 100644 docs/material/.icons/material/penguin.svg create mode 100644 docs/material/.icons/material/pentagon-outline.svg create mode 100644 docs/material/.icons/material/pentagon.svg create mode 100644 docs/material/.icons/material/percent-outline.svg create mode 100644 docs/material/.icons/material/percent.svg create mode 100644 docs/material/.icons/material/periodic-table.svg create mode 100644 docs/material/.icons/material/perspective-less.svg create mode 100644 docs/material/.icons/material/perspective-more.svg create mode 100644 docs/material/.icons/material/pharmacy.svg create mode 100644 docs/material/.icons/material/phone-alert-outline.svg create mode 100644 docs/material/.icons/material/phone-alert.svg create mode 100644 docs/material/.icons/material/phone-bluetooth-outline.svg create mode 100644 docs/material/.icons/material/phone-bluetooth.svg create mode 100644 docs/material/.icons/material/phone-cancel-outline.svg create mode 100644 docs/material/.icons/material/phone-cancel.svg create mode 100644 docs/material/.icons/material/phone-check-outline.svg create mode 100644 docs/material/.icons/material/phone-check.svg create mode 100644 docs/material/.icons/material/phone-classic-off.svg create mode 100644 docs/material/.icons/material/phone-classic.svg create mode 100644 docs/material/.icons/material/phone-forward-outline.svg create mode 100644 docs/material/.icons/material/phone-forward.svg create mode 100644 docs/material/.icons/material/phone-hangup-outline.svg create mode 100644 docs/material/.icons/material/phone-hangup.svg create mode 100644 docs/material/.icons/material/phone-in-talk-outline.svg create mode 100644 docs/material/.icons/material/phone-in-talk.svg create mode 100644 docs/material/.icons/material/phone-incoming-outline.svg create mode 100644 docs/material/.icons/material/phone-incoming.svg create mode 100644 docs/material/.icons/material/phone-lock-outline.svg create mode 100644 docs/material/.icons/material/phone-lock.svg create mode 100644 docs/material/.icons/material/phone-log-outline.svg create mode 100644 docs/material/.icons/material/phone-log.svg create mode 100644 docs/material/.icons/material/phone-message-outline.svg create mode 100644 docs/material/.icons/material/phone-message.svg create mode 100644 docs/material/.icons/material/phone-minus-outline.svg create mode 100644 docs/material/.icons/material/phone-minus.svg create mode 100644 docs/material/.icons/material/phone-missed-outline.svg create mode 100644 docs/material/.icons/material/phone-missed.svg create mode 100644 docs/material/.icons/material/phone-off-outline.svg create mode 100644 docs/material/.icons/material/phone-off.svg create mode 100644 docs/material/.icons/material/phone-outgoing-outline.svg create mode 100644 docs/material/.icons/material/phone-outgoing.svg create mode 100644 docs/material/.icons/material/phone-outline.svg create mode 100644 docs/material/.icons/material/phone-paused-outline.svg create mode 100644 docs/material/.icons/material/phone-paused.svg create mode 100644 docs/material/.icons/material/phone-plus-outline.svg create mode 100644 docs/material/.icons/material/phone-plus.svg create mode 100644 docs/material/.icons/material/phone-return-outline.svg create mode 100644 docs/material/.icons/material/phone-return.svg create mode 100644 docs/material/.icons/material/phone-ring-outline.svg create mode 100644 docs/material/.icons/material/phone-ring.svg create mode 100644 docs/material/.icons/material/phone-rotate-landscape.svg create mode 100644 docs/material/.icons/material/phone-rotate-portrait.svg create mode 100644 docs/material/.icons/material/phone-settings-outline.svg create mode 100644 docs/material/.icons/material/phone-settings.svg create mode 100644 docs/material/.icons/material/phone-voip.svg create mode 100644 docs/material/.icons/material/phone.svg create mode 100644 docs/material/.icons/material/pi-box.svg create mode 100644 docs/material/.icons/material/pi-hole.svg create mode 100644 docs/material/.icons/material/pi.svg create mode 100644 docs/material/.icons/material/piano.svg create mode 100644 docs/material/.icons/material/pickaxe.svg create mode 100644 docs/material/.icons/material/picture-in-picture-bottom-right-outline.svg create mode 100644 docs/material/.icons/material/picture-in-picture-bottom-right.svg create mode 100644 docs/material/.icons/material/picture-in-picture-top-right-outline.svg create mode 100644 docs/material/.icons/material/picture-in-picture-top-right.svg create mode 100644 docs/material/.icons/material/pier-crane.svg create mode 100644 docs/material/.icons/material/pier.svg create mode 100644 docs/material/.icons/material/pig-variant.svg create mode 100644 docs/material/.icons/material/pig.svg create mode 100644 docs/material/.icons/material/piggy-bank.svg create mode 100644 docs/material/.icons/material/pill.svg create mode 100644 docs/material/.icons/material/pillar.svg create mode 100644 docs/material/.icons/material/pin-off-outline.svg create mode 100644 docs/material/.icons/material/pin-off.svg create mode 100644 docs/material/.icons/material/pin-outline.svg create mode 100644 docs/material/.icons/material/pin.svg create mode 100644 docs/material/.icons/material/pine-tree-box.svg create mode 100644 docs/material/.icons/material/pine-tree.svg create mode 100644 docs/material/.icons/material/pinterest.svg create mode 100644 docs/material/.icons/material/pinwheel-outline.svg create mode 100644 docs/material/.icons/material/pinwheel.svg create mode 100644 docs/material/.icons/material/pipe-disconnected.svg create mode 100644 docs/material/.icons/material/pipe-leak.svg create mode 100644 docs/material/.icons/material/pipe-wrench.svg create mode 100644 docs/material/.icons/material/pipe.svg create mode 100644 docs/material/.icons/material/pirate.svg create mode 100644 docs/material/.icons/material/pistol.svg create mode 100644 docs/material/.icons/material/piston.svg create mode 100644 docs/material/.icons/material/pizza.svg create mode 100644 docs/material/.icons/material/play-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/play-box-multiple.svg create mode 100644 docs/material/.icons/material/play-box-outline.svg create mode 100644 docs/material/.icons/material/play-box.svg create mode 100644 docs/material/.icons/material/play-circle-outline.svg create mode 100644 docs/material/.icons/material/play-circle.svg create mode 100644 docs/material/.icons/material/play-network-outline.svg create mode 100644 docs/material/.icons/material/play-network.svg create mode 100644 docs/material/.icons/material/play-outline.svg create mode 100644 docs/material/.icons/material/play-pause.svg create mode 100644 docs/material/.icons/material/play-protected-content.svg create mode 100644 docs/material/.icons/material/play-speed.svg create mode 100644 docs/material/.icons/material/play.svg create mode 100644 docs/material/.icons/material/playlist-check.svg create mode 100644 docs/material/.icons/material/playlist-edit.svg create mode 100644 docs/material/.icons/material/playlist-minus.svg create mode 100644 docs/material/.icons/material/playlist-music-outline.svg create mode 100644 docs/material/.icons/material/playlist-music.svg create mode 100644 docs/material/.icons/material/playlist-play.svg create mode 100644 docs/material/.icons/material/playlist-plus.svg create mode 100644 docs/material/.icons/material/playlist-remove.svg create mode 100644 docs/material/.icons/material/playlist-star.svg create mode 100644 docs/material/.icons/material/plex.svg create mode 100644 docs/material/.icons/material/plus-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/plus-box-multiple.svg create mode 100644 docs/material/.icons/material/plus-box-outline.svg create mode 100644 docs/material/.icons/material/plus-box.svg create mode 100644 docs/material/.icons/material/plus-circle-multiple-outline.svg create mode 100644 docs/material/.icons/material/plus-circle-multiple.svg create mode 100644 docs/material/.icons/material/plus-circle-outline.svg create mode 100644 docs/material/.icons/material/plus-circle.svg create mode 100644 docs/material/.icons/material/plus-minus-box.svg create mode 100644 docs/material/.icons/material/plus-minus.svg create mode 100644 docs/material/.icons/material/plus-network-outline.svg create mode 100644 docs/material/.icons/material/plus-network.svg create mode 100644 docs/material/.icons/material/plus-one.svg create mode 100644 docs/material/.icons/material/plus-outline.svg create mode 100644 docs/material/.icons/material/plus-thick.svg create mode 100644 docs/material/.icons/material/plus.svg create mode 100644 docs/material/.icons/material/podcast.svg create mode 100644 docs/material/.icons/material/podium-bronze.svg create mode 100644 docs/material/.icons/material/podium-gold.svg create mode 100644 docs/material/.icons/material/podium-silver.svg create mode 100644 docs/material/.icons/material/podium.svg create mode 100644 docs/material/.icons/material/point-of-sale.svg create mode 100644 docs/material/.icons/material/pokeball.svg create mode 100644 docs/material/.icons/material/pokemon-go.svg create mode 100644 docs/material/.icons/material/poker-chip.svg create mode 100644 docs/material/.icons/material/polaroid.svg create mode 100644 docs/material/.icons/material/police-badge-outline.svg create mode 100644 docs/material/.icons/material/police-badge.svg create mode 100644 docs/material/.icons/material/poll-box-outline.svg create mode 100644 docs/material/.icons/material/poll-box.svg create mode 100644 docs/material/.icons/material/poll.svg create mode 100644 docs/material/.icons/material/polymer.svg create mode 100644 docs/material/.icons/material/pool.svg create mode 100644 docs/material/.icons/material/popcorn.svg create mode 100644 docs/material/.icons/material/post-outline.svg create mode 100644 docs/material/.icons/material/post.svg create mode 100644 docs/material/.icons/material/postage-stamp.svg create mode 100644 docs/material/.icons/material/pot-mix-outline.svg create mode 100644 docs/material/.icons/material/pot-mix.svg create mode 100644 docs/material/.icons/material/pot-outline.svg create mode 100644 docs/material/.icons/material/pot-steam-outline.svg create mode 100644 docs/material/.icons/material/pot-steam.svg create mode 100644 docs/material/.icons/material/pot.svg create mode 100644 docs/material/.icons/material/pound-box-outline.svg create mode 100644 docs/material/.icons/material/pound-box.svg create mode 100644 docs/material/.icons/material/pound.svg create mode 100644 docs/material/.icons/material/power-cycle.svg create mode 100644 docs/material/.icons/material/power-off.svg create mode 100644 docs/material/.icons/material/power-on.svg create mode 100644 docs/material/.icons/material/power-plug-off.svg create mode 100644 docs/material/.icons/material/power-plug.svg create mode 100644 docs/material/.icons/material/power-settings.svg create mode 100644 docs/material/.icons/material/power-sleep.svg create mode 100644 docs/material/.icons/material/power-socket-au.svg create mode 100644 docs/material/.icons/material/power-socket-de.svg create mode 100644 docs/material/.icons/material/power-socket-eu.svg create mode 100644 docs/material/.icons/material/power-socket-fr.svg create mode 100644 docs/material/.icons/material/power-socket-jp.svg create mode 100644 docs/material/.icons/material/power-socket-uk.svg create mode 100644 docs/material/.icons/material/power-socket-us.svg create mode 100644 docs/material/.icons/material/power-socket.svg create mode 100644 docs/material/.icons/material/power-standby.svg create mode 100644 docs/material/.icons/material/power.svg create mode 100644 docs/material/.icons/material/powershell.svg create mode 100644 docs/material/.icons/material/prescription.svg create mode 100644 docs/material/.icons/material/presentation-play.svg create mode 100644 docs/material/.icons/material/presentation.svg create mode 100644 docs/material/.icons/material/printer-3d-nozzle-alert-outline.svg create mode 100644 docs/material/.icons/material/printer-3d-nozzle-alert.svg create mode 100644 docs/material/.icons/material/printer-3d-nozzle-outline.svg create mode 100644 docs/material/.icons/material/printer-3d-nozzle.svg create mode 100644 docs/material/.icons/material/printer-3d.svg create mode 100644 docs/material/.icons/material/printer-alert.svg create mode 100644 docs/material/.icons/material/printer-check.svg create mode 100644 docs/material/.icons/material/printer-off.svg create mode 100644 docs/material/.icons/material/printer-pos.svg create mode 100644 docs/material/.icons/material/printer-settings.svg create mode 100644 docs/material/.icons/material/printer-wireless.svg create mode 100644 docs/material/.icons/material/printer.svg create mode 100644 docs/material/.icons/material/priority-high.svg create mode 100644 docs/material/.icons/material/priority-low.svg create mode 100644 docs/material/.icons/material/professional-hexagon.svg create mode 100644 docs/material/.icons/material/progress-alert.svg create mode 100644 docs/material/.icons/material/progress-check.svg create mode 100644 docs/material/.icons/material/progress-clock.svg create mode 100644 docs/material/.icons/material/progress-close.svg create mode 100644 docs/material/.icons/material/progress-download.svg create mode 100644 docs/material/.icons/material/progress-upload.svg create mode 100644 docs/material/.icons/material/progress-wrench.svg create mode 100644 docs/material/.icons/material/projector-screen.svg create mode 100644 docs/material/.icons/material/projector.svg create mode 100644 docs/material/.icons/material/propane-tank-outline.svg create mode 100644 docs/material/.icons/material/propane-tank.svg create mode 100644 docs/material/.icons/material/protocol.svg create mode 100644 docs/material/.icons/material/publish.svg create mode 100644 docs/material/.icons/material/pulse.svg create mode 100644 docs/material/.icons/material/pump.svg create mode 100644 docs/material/.icons/material/pumpkin.svg create mode 100644 docs/material/.icons/material/purse-outline.svg create mode 100644 docs/material/.icons/material/purse.svg create mode 100644 docs/material/.icons/material/puzzle-outline.svg create mode 100644 docs/material/.icons/material/puzzle.svg create mode 100644 docs/material/.icons/material/qi.svg create mode 100644 docs/material/.icons/material/qqchat.svg create mode 100644 docs/material/.icons/material/qrcode-edit.svg create mode 100644 docs/material/.icons/material/qrcode-minus.svg create mode 100644 docs/material/.icons/material/qrcode-plus.svg create mode 100644 docs/material/.icons/material/qrcode-remove.svg create mode 100644 docs/material/.icons/material/qrcode-scan.svg create mode 100644 docs/material/.icons/material/qrcode.svg create mode 100644 docs/material/.icons/material/quadcopter.svg create mode 100644 docs/material/.icons/material/quality-high.svg create mode 100644 docs/material/.icons/material/quality-low.svg create mode 100644 docs/material/.icons/material/quality-medium.svg create mode 100644 docs/material/.icons/material/quora.svg create mode 100644 docs/material/.icons/material/rabbit.svg create mode 100644 docs/material/.icons/material/racing-helmet.svg create mode 100644 docs/material/.icons/material/racquetball.svg create mode 100644 docs/material/.icons/material/radar.svg create mode 100644 docs/material/.icons/material/radiator-disabled.svg create mode 100644 docs/material/.icons/material/radiator-off.svg create mode 100644 docs/material/.icons/material/radiator.svg create mode 100644 docs/material/.icons/material/radio-am.svg create mode 100644 docs/material/.icons/material/radio-fm.svg create mode 100644 docs/material/.icons/material/radio-handheld.svg create mode 100644 docs/material/.icons/material/radio-off.svg create mode 100644 docs/material/.icons/material/radio-tower.svg create mode 100644 docs/material/.icons/material/radio.svg create mode 100644 docs/material/.icons/material/radioactive-off.svg create mode 100644 docs/material/.icons/material/radioactive.svg create mode 100644 docs/material/.icons/material/radiobox-blank.svg create mode 100644 docs/material/.icons/material/radiobox-marked.svg create mode 100644 docs/material/.icons/material/radius-outline.svg create mode 100644 docs/material/.icons/material/radius.svg create mode 100644 docs/material/.icons/material/railroad-light.svg create mode 100644 docs/material/.icons/material/raspberry-pi.svg create mode 100644 docs/material/.icons/material/ray-end-arrow.svg create mode 100644 docs/material/.icons/material/ray-end.svg create mode 100644 docs/material/.icons/material/ray-start-arrow.svg create mode 100644 docs/material/.icons/material/ray-start-end.svg create mode 100644 docs/material/.icons/material/ray-start.svg create mode 100644 docs/material/.icons/material/ray-vertex.svg create mode 100644 docs/material/.icons/material/react.svg create mode 100644 docs/material/.icons/material/read.svg create mode 100644 docs/material/.icons/material/receipt.svg create mode 100644 docs/material/.icons/material/record-circle-outline.svg create mode 100644 docs/material/.icons/material/record-circle.svg create mode 100644 docs/material/.icons/material/record-player.svg create mode 100644 docs/material/.icons/material/record-rec.svg create mode 100644 docs/material/.icons/material/record.svg create mode 100644 docs/material/.icons/material/rectangle-outline.svg create mode 100644 docs/material/.icons/material/rectangle.svg create mode 100644 docs/material/.icons/material/recycle-variant.svg create mode 100644 docs/material/.icons/material/recycle.svg create mode 100644 docs/material/.icons/material/reddit.svg create mode 100644 docs/material/.icons/material/redhat.svg create mode 100644 docs/material/.icons/material/redo-variant.svg create mode 100644 docs/material/.icons/material/redo.svg create mode 100644 docs/material/.icons/material/reflect-horizontal.svg create mode 100644 docs/material/.icons/material/reflect-vertical.svg create mode 100644 docs/material/.icons/material/refresh-circle.svg create mode 100644 docs/material/.icons/material/refresh.svg create mode 100644 docs/material/.icons/material/regex.svg create mode 100644 docs/material/.icons/material/registered-trademark.svg create mode 100644 docs/material/.icons/material/relative-scale.svg create mode 100644 docs/material/.icons/material/reload-alert.svg create mode 100644 docs/material/.icons/material/reload.svg create mode 100644 docs/material/.icons/material/reminder.svg create mode 100644 docs/material/.icons/material/remote-desktop.svg create mode 100644 docs/material/.icons/material/remote-off.svg create mode 100644 docs/material/.icons/material/remote-tv-off.svg create mode 100644 docs/material/.icons/material/remote-tv.svg create mode 100644 docs/material/.icons/material/remote.svg create mode 100644 docs/material/.icons/material/rename-box.svg create mode 100644 docs/material/.icons/material/reorder-horizontal.svg create mode 100644 docs/material/.icons/material/reorder-vertical.svg create mode 100644 docs/material/.icons/material/repeat-off.svg create mode 100644 docs/material/.icons/material/repeat-once.svg create mode 100644 docs/material/.icons/material/repeat.svg create mode 100644 docs/material/.icons/material/replay.svg create mode 100644 docs/material/.icons/material/reply-all-outline.svg create mode 100644 docs/material/.icons/material/reply-all.svg create mode 100644 docs/material/.icons/material/reply-circle.svg create mode 100644 docs/material/.icons/material/reply-outline.svg create mode 100644 docs/material/.icons/material/reply.svg create mode 100644 docs/material/.icons/material/reproduction.svg create mode 100644 docs/material/.icons/material/resistor-nodes.svg create mode 100644 docs/material/.icons/material/resistor.svg create mode 100644 docs/material/.icons/material/resize-bottom-right.svg create mode 100644 docs/material/.icons/material/resize.svg create mode 100644 docs/material/.icons/material/responsive.svg create mode 100644 docs/material/.icons/material/restart-alert.svg create mode 100644 docs/material/.icons/material/restart-off.svg create mode 100644 docs/material/.icons/material/restart.svg create mode 100644 docs/material/.icons/material/restore-alert.svg create mode 100644 docs/material/.icons/material/restore.svg create mode 100644 docs/material/.icons/material/rewind-10.svg create mode 100644 docs/material/.icons/material/rewind-30.svg create mode 100644 docs/material/.icons/material/rewind-5.svg create mode 100644 docs/material/.icons/material/rewind-outline.svg create mode 100644 docs/material/.icons/material/rewind.svg create mode 100644 docs/material/.icons/material/rhombus-medium.svg create mode 100644 docs/material/.icons/material/rhombus-outline.svg create mode 100644 docs/material/.icons/material/rhombus-split.svg create mode 100644 docs/material/.icons/material/rhombus.svg create mode 100644 docs/material/.icons/material/ribbon.svg create mode 100644 docs/material/.icons/material/rice.svg create mode 100644 docs/material/.icons/material/ring.svg create mode 100644 docs/material/.icons/material/rivet.svg create mode 100644 docs/material/.icons/material/road-variant.svg create mode 100644 docs/material/.icons/material/road.svg create mode 100644 docs/material/.icons/material/robber.svg create mode 100644 docs/material/.icons/material/robot-industrial.svg create mode 100644 docs/material/.icons/material/robot-mower-outline.svg create mode 100644 docs/material/.icons/material/robot-mower.svg create mode 100644 docs/material/.icons/material/robot-vacuum-variant.svg create mode 100644 docs/material/.icons/material/robot-vacuum.svg create mode 100644 docs/material/.icons/material/robot.svg create mode 100644 docs/material/.icons/material/rocket-outline.svg create mode 100644 docs/material/.icons/material/rocket.svg create mode 100644 docs/material/.icons/material/rodent.svg create mode 100644 docs/material/.icons/material/roller-skate-off.svg create mode 100644 docs/material/.icons/material/roller-skate.svg create mode 100644 docs/material/.icons/material/rollerblade-off.svg create mode 100644 docs/material/.icons/material/rollerblade.svg create mode 100644 docs/material/.icons/material/rollupjs.svg create mode 100644 docs/material/.icons/material/roman-numeral-1.svg create mode 100644 docs/material/.icons/material/roman-numeral-10.svg create mode 100644 docs/material/.icons/material/roman-numeral-2.svg create mode 100644 docs/material/.icons/material/roman-numeral-3.svg create mode 100644 docs/material/.icons/material/roman-numeral-4.svg create mode 100644 docs/material/.icons/material/roman-numeral-5.svg create mode 100644 docs/material/.icons/material/roman-numeral-6.svg create mode 100644 docs/material/.icons/material/roman-numeral-7.svg create mode 100644 docs/material/.icons/material/roman-numeral-8.svg create mode 100644 docs/material/.icons/material/roman-numeral-9.svg create mode 100644 docs/material/.icons/material/room-service-outline.svg create mode 100644 docs/material/.icons/material/room-service.svg create mode 100644 docs/material/.icons/material/rotate-3d-variant.svg create mode 100644 docs/material/.icons/material/rotate-3d.svg create mode 100644 docs/material/.icons/material/rotate-left-variant.svg create mode 100644 docs/material/.icons/material/rotate-left.svg create mode 100644 docs/material/.icons/material/rotate-orbit.svg create mode 100644 docs/material/.icons/material/rotate-right-variant.svg create mode 100644 docs/material/.icons/material/rotate-right.svg create mode 100644 docs/material/.icons/material/rounded-corner.svg create mode 100644 docs/material/.icons/material/router-network.svg create mode 100644 docs/material/.icons/material/router-wireless-settings.svg create mode 100644 docs/material/.icons/material/router-wireless.svg create mode 100644 docs/material/.icons/material/router.svg create mode 100644 docs/material/.icons/material/routes-clock.svg create mode 100644 docs/material/.icons/material/routes.svg create mode 100644 docs/material/.icons/material/rowing.svg create mode 100644 docs/material/.icons/material/rss-box.svg create mode 100644 docs/material/.icons/material/rss-off.svg create mode 100644 docs/material/.icons/material/rss.svg create mode 100644 docs/material/.icons/material/rugby.svg create mode 100644 docs/material/.icons/material/ruler-square-compass.svg create mode 100644 docs/material/.icons/material/ruler-square.svg create mode 100644 docs/material/.icons/material/ruler.svg create mode 100644 docs/material/.icons/material/run-fast.svg create mode 100644 docs/material/.icons/material/run.svg create mode 100644 docs/material/.icons/material/rv-truck.svg create mode 100644 docs/material/.icons/material/sack-percent.svg create mode 100644 docs/material/.icons/material/sack.svg create mode 100644 docs/material/.icons/material/safe-square-outline.svg create mode 100644 docs/material/.icons/material/safe-square.svg create mode 100644 docs/material/.icons/material/safe.svg create mode 100644 docs/material/.icons/material/safety-goggles.svg create mode 100644 docs/material/.icons/material/sail-boat.svg create mode 100644 docs/material/.icons/material/sale.svg create mode 100644 docs/material/.icons/material/salesforce.svg create mode 100644 docs/material/.icons/material/sass.svg create mode 100644 docs/material/.icons/material/satellite-uplink.svg create mode 100644 docs/material/.icons/material/satellite-variant.svg create mode 100644 docs/material/.icons/material/satellite.svg create mode 100644 docs/material/.icons/material/sausage.svg create mode 100644 docs/material/.icons/material/saw-blade.svg create mode 100644 docs/material/.icons/material/saxophone.svg create mode 100644 docs/material/.icons/material/scale-balance.svg create mode 100644 docs/material/.icons/material/scale-bathroom.svg create mode 100644 docs/material/.icons/material/scale-off.svg create mode 100644 docs/material/.icons/material/scale.svg create mode 100644 docs/material/.icons/material/scan-helper.svg create mode 100644 docs/material/.icons/material/scanner-off.svg create mode 100644 docs/material/.icons/material/scanner.svg create mode 100644 docs/material/.icons/material/scatter-plot-outline.svg create mode 100644 docs/material/.icons/material/scatter-plot.svg create mode 100644 docs/material/.icons/material/school-outline.svg create mode 100644 docs/material/.icons/material/school.svg create mode 100644 docs/material/.icons/material/scissors-cutting.svg create mode 100644 docs/material/.icons/material/scooter.svg create mode 100644 docs/material/.icons/material/scoreboard-outline.svg create mode 100644 docs/material/.icons/material/scoreboard.svg create mode 100644 docs/material/.icons/material/screen-rotation-lock.svg create mode 100644 docs/material/.icons/material/screen-rotation.svg create mode 100644 docs/material/.icons/material/screw-flat-top.svg create mode 100644 docs/material/.icons/material/screw-lag.svg create mode 100644 docs/material/.icons/material/screw-machine-flat-top.svg create mode 100644 docs/material/.icons/material/screw-machine-round-top.svg create mode 100644 docs/material/.icons/material/screw-round-top.svg create mode 100644 docs/material/.icons/material/screwdriver.svg create mode 100644 docs/material/.icons/material/script-outline.svg create mode 100644 docs/material/.icons/material/script-text-outline.svg create mode 100644 docs/material/.icons/material/script-text.svg create mode 100644 docs/material/.icons/material/script.svg create mode 100644 docs/material/.icons/material/sd.svg create mode 100644 docs/material/.icons/material/seal-variant.svg create mode 100644 docs/material/.icons/material/seal.svg create mode 100644 docs/material/.icons/material/search-web.svg create mode 100644 docs/material/.icons/material/seat-flat-angled.svg create mode 100644 docs/material/.icons/material/seat-flat.svg create mode 100644 docs/material/.icons/material/seat-individual-suite.svg create mode 100644 docs/material/.icons/material/seat-legroom-extra.svg create mode 100644 docs/material/.icons/material/seat-legroom-normal.svg create mode 100644 docs/material/.icons/material/seat-legroom-reduced.svg create mode 100644 docs/material/.icons/material/seat-outline.svg create mode 100644 docs/material/.icons/material/seat-passenger.svg create mode 100644 docs/material/.icons/material/seat-recline-extra.svg create mode 100644 docs/material/.icons/material/seat-recline-normal.svg create mode 100644 docs/material/.icons/material/seat.svg create mode 100644 docs/material/.icons/material/seatbelt.svg create mode 100644 docs/material/.icons/material/security-network.svg create mode 100644 docs/material/.icons/material/security.svg create mode 100644 docs/material/.icons/material/seed-off-outline.svg create mode 100644 docs/material/.icons/material/seed-off.svg create mode 100644 docs/material/.icons/material/seed-outline.svg create mode 100644 docs/material/.icons/material/seed.svg create mode 100644 docs/material/.icons/material/segment.svg create mode 100644 docs/material/.icons/material/select-all.svg create mode 100644 docs/material/.icons/material/select-color.svg create mode 100644 docs/material/.icons/material/select-compare.svg create mode 100644 docs/material/.icons/material/select-drag.svg create mode 100644 docs/material/.icons/material/select-group.svg create mode 100644 docs/material/.icons/material/select-inverse.svg create mode 100644 docs/material/.icons/material/select-marker.svg create mode 100644 docs/material/.icons/material/select-multiple-marker.svg create mode 100644 docs/material/.icons/material/select-multiple.svg create mode 100644 docs/material/.icons/material/select-off.svg create mode 100644 docs/material/.icons/material/select-place.svg create mode 100644 docs/material/.icons/material/select-search.svg create mode 100644 docs/material/.icons/material/select.svg create mode 100644 docs/material/.icons/material/selection-drag.svg create mode 100644 docs/material/.icons/material/selection-ellipse-arrow-inside.svg create mode 100644 docs/material/.icons/material/selection-ellipse.svg create mode 100644 docs/material/.icons/material/selection-marker.svg create mode 100644 docs/material/.icons/material/selection-multiple-marker.svg create mode 100644 docs/material/.icons/material/selection-multiple.svg create mode 100644 docs/material/.icons/material/selection-off.svg create mode 100644 docs/material/.icons/material/selection-search.svg create mode 100644 docs/material/.icons/material/selection.svg create mode 100644 docs/material/.icons/material/semantic-web.svg create mode 100644 docs/material/.icons/material/send-check-outline.svg create mode 100644 docs/material/.icons/material/send-check.svg create mode 100644 docs/material/.icons/material/send-circle-outline.svg create mode 100644 docs/material/.icons/material/send-circle.svg create mode 100644 docs/material/.icons/material/send-clock-outline.svg create mode 100644 docs/material/.icons/material/send-clock.svg create mode 100644 docs/material/.icons/material/send-lock-outline.svg create mode 100644 docs/material/.icons/material/send-lock.svg create mode 100644 docs/material/.icons/material/send-outline.svg create mode 100644 docs/material/.icons/material/send.svg create mode 100644 docs/material/.icons/material/serial-port.svg create mode 100644 docs/material/.icons/material/server-minus.svg create mode 100644 docs/material/.icons/material/server-network-off.svg create mode 100644 docs/material/.icons/material/server-network.svg create mode 100644 docs/material/.icons/material/server-off.svg create mode 100644 docs/material/.icons/material/server-plus.svg create mode 100644 docs/material/.icons/material/server-remove.svg create mode 100644 docs/material/.icons/material/server-security.svg create mode 100644 docs/material/.icons/material/server.svg create mode 100644 docs/material/.icons/material/set-all.svg create mode 100644 docs/material/.icons/material/set-center-right.svg create mode 100644 docs/material/.icons/material/set-center.svg create mode 100644 docs/material/.icons/material/set-left-center.svg create mode 100644 docs/material/.icons/material/set-left-right.svg create mode 100644 docs/material/.icons/material/set-left.svg create mode 100644 docs/material/.icons/material/set-none.svg create mode 100644 docs/material/.icons/material/set-right.svg create mode 100644 docs/material/.icons/material/set-top-box.svg create mode 100644 docs/material/.icons/material/settings-helper.svg create mode 100644 docs/material/.icons/material/shaker-outline.svg create mode 100644 docs/material/.icons/material/shaker.svg create mode 100644 docs/material/.icons/material/shape-circle-plus.svg create mode 100644 docs/material/.icons/material/shape-outline.svg create mode 100644 docs/material/.icons/material/shape-oval-plus.svg create mode 100644 docs/material/.icons/material/shape-plus.svg create mode 100644 docs/material/.icons/material/shape-polygon-plus.svg create mode 100644 docs/material/.icons/material/shape-rectangle-plus.svg create mode 100644 docs/material/.icons/material/shape-square-plus.svg create mode 100644 docs/material/.icons/material/shape.svg create mode 100644 docs/material/.icons/material/share-all-outline.svg create mode 100644 docs/material/.icons/material/share-all.svg create mode 100644 docs/material/.icons/material/share-circle.svg create mode 100644 docs/material/.icons/material/share-off-outline.svg create mode 100644 docs/material/.icons/material/share-off.svg create mode 100644 docs/material/.icons/material/share-outline.svg create mode 100644 docs/material/.icons/material/share-variant.svg create mode 100644 docs/material/.icons/material/share.svg create mode 100644 docs/material/.icons/material/sheep.svg create mode 100644 docs/material/.icons/material/shield-account-outline.svg create mode 100644 docs/material/.icons/material/shield-account.svg create mode 100644 docs/material/.icons/material/shield-airplane-outline.svg create mode 100644 docs/material/.icons/material/shield-airplane.svg create mode 100644 docs/material/.icons/material/shield-alert-outline.svg create mode 100644 docs/material/.icons/material/shield-alert.svg create mode 100644 docs/material/.icons/material/shield-bug-outline.svg create mode 100644 docs/material/.icons/material/shield-bug.svg create mode 100644 docs/material/.icons/material/shield-car.svg create mode 100644 docs/material/.icons/material/shield-check-outline.svg create mode 100644 docs/material/.icons/material/shield-check.svg create mode 100644 docs/material/.icons/material/shield-cross-outline.svg create mode 100644 docs/material/.icons/material/shield-cross.svg create mode 100644 docs/material/.icons/material/shield-edit-outline.svg create mode 100644 docs/material/.icons/material/shield-edit.svg create mode 100644 docs/material/.icons/material/shield-half-full.svg create mode 100644 docs/material/.icons/material/shield-half.svg create mode 100644 docs/material/.icons/material/shield-home-outline.svg create mode 100644 docs/material/.icons/material/shield-home.svg create mode 100644 docs/material/.icons/material/shield-key-outline.svg create mode 100644 docs/material/.icons/material/shield-key.svg create mode 100644 docs/material/.icons/material/shield-link-variant-outline.svg create mode 100644 docs/material/.icons/material/shield-link-variant.svg create mode 100644 docs/material/.icons/material/shield-lock-outline.svg create mode 100644 docs/material/.icons/material/shield-lock.svg create mode 100644 docs/material/.icons/material/shield-off-outline.svg create mode 100644 docs/material/.icons/material/shield-off.svg create mode 100644 docs/material/.icons/material/shield-outline.svg create mode 100644 docs/material/.icons/material/shield-plus-outline.svg create mode 100644 docs/material/.icons/material/shield-plus.svg create mode 100644 docs/material/.icons/material/shield-refresh-outline.svg create mode 100644 docs/material/.icons/material/shield-refresh.svg create mode 100644 docs/material/.icons/material/shield-remove-outline.svg create mode 100644 docs/material/.icons/material/shield-remove.svg create mode 100644 docs/material/.icons/material/shield-search.svg create mode 100644 docs/material/.icons/material/shield-star-outline.svg create mode 100644 docs/material/.icons/material/shield-star.svg create mode 100644 docs/material/.icons/material/shield-sun-outline.svg create mode 100644 docs/material/.icons/material/shield-sun.svg create mode 100644 docs/material/.icons/material/shield-sync-outline.svg create mode 100644 docs/material/.icons/material/shield-sync.svg create mode 100644 docs/material/.icons/material/shield.svg create mode 100644 docs/material/.icons/material/ship-wheel.svg create mode 100644 docs/material/.icons/material/shoe-formal.svg create mode 100644 docs/material/.icons/material/shoe-heel.svg create mode 100644 docs/material/.icons/material/shoe-print.svg create mode 100644 docs/material/.icons/material/shopping-music.svg create mode 100644 docs/material/.icons/material/shopping-outline.svg create mode 100644 docs/material/.icons/material/shopping-search.svg create mode 100644 docs/material/.icons/material/shopping.svg create mode 100644 docs/material/.icons/material/shovel-off.svg create mode 100644 docs/material/.icons/material/shovel.svg create mode 100644 docs/material/.icons/material/shower-head.svg create mode 100644 docs/material/.icons/material/shower.svg create mode 100644 docs/material/.icons/material/shredder.svg create mode 100644 docs/material/.icons/material/shuffle-disabled.svg create mode 100644 docs/material/.icons/material/shuffle-variant.svg create mode 100644 docs/material/.icons/material/shuffle.svg create mode 100644 docs/material/.icons/material/shuriken.svg create mode 100644 docs/material/.icons/material/sigma-lower.svg create mode 100644 docs/material/.icons/material/sigma.svg create mode 100644 docs/material/.icons/material/sign-caution.svg create mode 100644 docs/material/.icons/material/sign-direction-minus.svg create mode 100644 docs/material/.icons/material/sign-direction-plus.svg create mode 100644 docs/material/.icons/material/sign-direction-remove.svg create mode 100644 docs/material/.icons/material/sign-direction.svg create mode 100644 docs/material/.icons/material/sign-real-estate.svg create mode 100644 docs/material/.icons/material/sign-text.svg create mode 100644 docs/material/.icons/material/signal-2g.svg create mode 100644 docs/material/.icons/material/signal-3g.svg create mode 100644 docs/material/.icons/material/signal-4g.svg create mode 100644 docs/material/.icons/material/signal-5g.svg create mode 100644 docs/material/.icons/material/signal-cellular-1.svg create mode 100644 docs/material/.icons/material/signal-cellular-2.svg create mode 100644 docs/material/.icons/material/signal-cellular-3.svg create mode 100644 docs/material/.icons/material/signal-cellular-outline.svg create mode 100644 docs/material/.icons/material/signal-distance-variant.svg create mode 100644 docs/material/.icons/material/signal-hspa-plus.svg create mode 100644 docs/material/.icons/material/signal-hspa.svg create mode 100644 docs/material/.icons/material/signal-off.svg create mode 100644 docs/material/.icons/material/signal-variant.svg create mode 100644 docs/material/.icons/material/signal.svg create mode 100644 docs/material/.icons/material/signature-freehand.svg create mode 100644 docs/material/.icons/material/signature-image.svg create mode 100644 docs/material/.icons/material/signature-text.svg create mode 100644 docs/material/.icons/material/signature.svg create mode 100644 docs/material/.icons/material/silo.svg create mode 100644 docs/material/.icons/material/silverware-clean.svg create mode 100644 docs/material/.icons/material/silverware-fork-knife.svg create mode 100644 docs/material/.icons/material/silverware-fork.svg create mode 100644 docs/material/.icons/material/silverware-spoon.svg create mode 100644 docs/material/.icons/material/silverware-variant.svg create mode 100644 docs/material/.icons/material/silverware.svg create mode 100644 docs/material/.icons/material/sim-alert.svg create mode 100644 docs/material/.icons/material/sim-off.svg create mode 100644 docs/material/.icons/material/sim.svg create mode 100644 docs/material/.icons/material/simple-icons.svg create mode 100644 docs/material/.icons/material/sina-weibo.svg create mode 100644 docs/material/.icons/material/sitemap.svg create mode 100644 docs/material/.icons/material/size-l.svg create mode 100644 docs/material/.icons/material/size-m.svg create mode 100644 docs/material/.icons/material/size-s.svg create mode 100644 docs/material/.icons/material/size-xl.svg create mode 100644 docs/material/.icons/material/size-xs.svg create mode 100644 docs/material/.icons/material/size-xxl.svg create mode 100644 docs/material/.icons/material/size-xxs.svg create mode 100644 docs/material/.icons/material/size-xxxl.svg create mode 100644 docs/material/.icons/material/skate.svg create mode 100644 docs/material/.icons/material/skew-less.svg create mode 100644 docs/material/.icons/material/skew-more.svg create mode 100644 docs/material/.icons/material/ski-cross-country.svg create mode 100644 docs/material/.icons/material/ski-water.svg create mode 100644 docs/material/.icons/material/ski.svg create mode 100644 docs/material/.icons/material/skip-backward-outline.svg create mode 100644 docs/material/.icons/material/skip-backward.svg create mode 100644 docs/material/.icons/material/skip-forward-outline.svg create mode 100644 docs/material/.icons/material/skip-forward.svg create mode 100644 docs/material/.icons/material/skip-next-circle-outline.svg create mode 100644 docs/material/.icons/material/skip-next-circle.svg create mode 100644 docs/material/.icons/material/skip-next-outline.svg create mode 100644 docs/material/.icons/material/skip-next.svg create mode 100644 docs/material/.icons/material/skip-previous-circle-outline.svg create mode 100644 docs/material/.icons/material/skip-previous-circle.svg create mode 100644 docs/material/.icons/material/skip-previous-outline.svg create mode 100644 docs/material/.icons/material/skip-previous.svg create mode 100644 docs/material/.icons/material/skull-crossbones-outline.svg create mode 100644 docs/material/.icons/material/skull-crossbones.svg create mode 100644 docs/material/.icons/material/skull-outline.svg create mode 100644 docs/material/.icons/material/skull.svg create mode 100644 docs/material/.icons/material/skype-business.svg create mode 100644 docs/material/.icons/material/skype.svg create mode 100644 docs/material/.icons/material/slack.svg create mode 100644 docs/material/.icons/material/slash-forward-box.svg create mode 100644 docs/material/.icons/material/slash-forward.svg create mode 100644 docs/material/.icons/material/sleep-off.svg create mode 100644 docs/material/.icons/material/sleep.svg create mode 100644 docs/material/.icons/material/slope-downhill.svg create mode 100644 docs/material/.icons/material/slope-uphill.svg create mode 100644 docs/material/.icons/material/slot-machine-outline.svg create mode 100644 docs/material/.icons/material/slot-machine.svg create mode 100644 docs/material/.icons/material/smart-card-outline.svg create mode 100644 docs/material/.icons/material/smart-card-reader-outline.svg create mode 100644 docs/material/.icons/material/smart-card-reader.svg create mode 100644 docs/material/.icons/material/smart-card.svg create mode 100644 docs/material/.icons/material/smog.svg create mode 100644 docs/material/.icons/material/smoke-detector.svg create mode 100644 docs/material/.icons/material/smoking-off.svg create mode 100644 docs/material/.icons/material/smoking-pipe.svg create mode 100644 docs/material/.icons/material/smoking.svg create mode 100644 docs/material/.icons/material/snapchat.svg create mode 100644 docs/material/.icons/material/snowboard.svg create mode 100644 docs/material/.icons/material/snowflake-alert.svg create mode 100644 docs/material/.icons/material/snowflake-melt.svg create mode 100644 docs/material/.icons/material/snowflake-variant.svg create mode 100644 docs/material/.icons/material/snowflake.svg create mode 100644 docs/material/.icons/material/snowman.svg create mode 100644 docs/material/.icons/material/soccer-field.svg create mode 100644 docs/material/.icons/material/soccer.svg create mode 100644 docs/material/.icons/material/sofa.svg create mode 100644 docs/material/.icons/material/solar-panel-large.svg create mode 100644 docs/material/.icons/material/solar-panel.svg create mode 100644 docs/material/.icons/material/solar-power.svg create mode 100644 docs/material/.icons/material/soldering-iron.svg create mode 100644 docs/material/.icons/material/solid.svg create mode 100644 docs/material/.icons/material/sony-playstation.svg create mode 100644 docs/material/.icons/material/sort-alphabetical-ascending-variant.svg create mode 100644 docs/material/.icons/material/sort-alphabetical-ascending.svg create mode 100644 docs/material/.icons/material/sort-alphabetical-descending-variant.svg create mode 100644 docs/material/.icons/material/sort-alphabetical-descending.svg create mode 100644 docs/material/.icons/material/sort-alphabetical-variant.svg create mode 100644 docs/material/.icons/material/sort-ascending.svg create mode 100644 docs/material/.icons/material/sort-bool-ascending-variant.svg create mode 100644 docs/material/.icons/material/sort-bool-ascending.svg create mode 100644 docs/material/.icons/material/sort-bool-descending-variant.svg create mode 100644 docs/material/.icons/material/sort-bool-descending.svg create mode 100644 docs/material/.icons/material/sort-descending.svg create mode 100644 docs/material/.icons/material/sort-numeric-ascending-variant.svg create mode 100644 docs/material/.icons/material/sort-numeric-ascending.svg create mode 100644 docs/material/.icons/material/sort-numeric-descending-variant.svg create mode 100644 docs/material/.icons/material/sort-numeric-descending.svg create mode 100644 docs/material/.icons/material/sort-numeric-variant.svg create mode 100644 docs/material/.icons/material/sort-reverse-variant.svg create mode 100644 docs/material/.icons/material/sort-variant-lock-open.svg create mode 100644 docs/material/.icons/material/sort-variant-lock.svg create mode 100644 docs/material/.icons/material/sort-variant-remove.svg create mode 100644 docs/material/.icons/material/sort-variant.svg create mode 100644 docs/material/.icons/material/sort.svg create mode 100644 docs/material/.icons/material/soundcloud.svg create mode 100644 docs/material/.icons/material/source-branch.svg create mode 100644 docs/material/.icons/material/source-commit-end-local.svg create mode 100644 docs/material/.icons/material/source-commit-end.svg create mode 100644 docs/material/.icons/material/source-commit-local.svg create mode 100644 docs/material/.icons/material/source-commit-next-local.svg create mode 100644 docs/material/.icons/material/source-commit-start-next-local.svg create mode 100644 docs/material/.icons/material/source-commit-start.svg create mode 100644 docs/material/.icons/material/source-commit.svg create mode 100644 docs/material/.icons/material/source-fork.svg create mode 100644 docs/material/.icons/material/source-merge.svg create mode 100644 docs/material/.icons/material/source-pull.svg create mode 100644 docs/material/.icons/material/source-repository-multiple.svg create mode 100644 docs/material/.icons/material/source-repository.svg create mode 100644 docs/material/.icons/material/soy-sauce-off.svg create mode 100644 docs/material/.icons/material/soy-sauce.svg create mode 100644 docs/material/.icons/material/spa-outline.svg create mode 100644 docs/material/.icons/material/spa.svg create mode 100644 docs/material/.icons/material/space-invaders.svg create mode 100644 docs/material/.icons/material/space-station.svg create mode 100644 docs/material/.icons/material/spade.svg create mode 100644 docs/material/.icons/material/speaker-bluetooth.svg create mode 100644 docs/material/.icons/material/speaker-multiple.svg create mode 100644 docs/material/.icons/material/speaker-off.svg create mode 100644 docs/material/.icons/material/speaker-wireless.svg create mode 100644 docs/material/.icons/material/speaker.svg create mode 100644 docs/material/.icons/material/speedometer-medium.svg create mode 100644 docs/material/.icons/material/speedometer-slow.svg create mode 100644 docs/material/.icons/material/speedometer.svg create mode 100644 docs/material/.icons/material/spellcheck.svg create mode 100644 docs/material/.icons/material/spider-thread.svg create mode 100644 docs/material/.icons/material/spider-web.svg create mode 100644 docs/material/.icons/material/spider.svg create mode 100644 docs/material/.icons/material/spotify.svg create mode 100644 docs/material/.icons/material/spotlight-beam.svg create mode 100644 docs/material/.icons/material/spotlight.svg create mode 100644 docs/material/.icons/material/spray-bottle.svg create mode 100644 docs/material/.icons/material/spray.svg create mode 100644 docs/material/.icons/material/sprinkler-variant.svg create mode 100644 docs/material/.icons/material/sprinkler.svg create mode 100644 docs/material/.icons/material/sprout-outline.svg create mode 100644 docs/material/.icons/material/sprout.svg create mode 100644 docs/material/.icons/material/square-edit-outline.svg create mode 100644 docs/material/.icons/material/square-medium-outline.svg create mode 100644 docs/material/.icons/material/square-medium.svg create mode 100644 docs/material/.icons/material/square-off-outline.svg create mode 100644 docs/material/.icons/material/square-off.svg create mode 100644 docs/material/.icons/material/square-outline.svg create mode 100644 docs/material/.icons/material/square-root-box.svg create mode 100644 docs/material/.icons/material/square-root.svg create mode 100644 docs/material/.icons/material/square-small.svg create mode 100644 docs/material/.icons/material/square.svg create mode 100644 docs/material/.icons/material/squeegee.svg create mode 100644 docs/material/.icons/material/ssh.svg create mode 100644 docs/material/.icons/material/stack-exchange.svg create mode 100644 docs/material/.icons/material/stack-overflow.svg create mode 100644 docs/material/.icons/material/stackpath.svg create mode 100644 docs/material/.icons/material/stadium-variant.svg create mode 100644 docs/material/.icons/material/stadium.svg create mode 100644 docs/material/.icons/material/stairs-box.svg create mode 100644 docs/material/.icons/material/stairs-down.svg create mode 100644 docs/material/.icons/material/stairs-up.svg create mode 100644 docs/material/.icons/material/stairs.svg create mode 100644 docs/material/.icons/material/stamper.svg create mode 100644 docs/material/.icons/material/standard-definition.svg create mode 100644 docs/material/.icons/material/star-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/star-box-multiple.svg create mode 100644 docs/material/.icons/material/star-box-outline.svg create mode 100644 docs/material/.icons/material/star-box.svg create mode 100644 docs/material/.icons/material/star-circle-outline.svg create mode 100644 docs/material/.icons/material/star-circle.svg create mode 100644 docs/material/.icons/material/star-face.svg create mode 100644 docs/material/.icons/material/star-four-points-outline.svg create mode 100644 docs/material/.icons/material/star-four-points.svg create mode 100644 docs/material/.icons/material/star-half-full.svg create mode 100644 docs/material/.icons/material/star-half.svg create mode 100644 docs/material/.icons/material/star-off.svg create mode 100644 docs/material/.icons/material/star-outline.svg create mode 100644 docs/material/.icons/material/star-three-points-outline.svg create mode 100644 docs/material/.icons/material/star-three-points.svg create mode 100644 docs/material/.icons/material/star.svg create mode 100644 docs/material/.icons/material/state-machine.svg create mode 100644 docs/material/.icons/material/steam.svg create mode 100644 docs/material/.icons/material/steering-off.svg create mode 100644 docs/material/.icons/material/steering.svg create mode 100644 docs/material/.icons/material/step-backward-2.svg create mode 100644 docs/material/.icons/material/step-backward.svg create mode 100644 docs/material/.icons/material/step-forward-2.svg create mode 100644 docs/material/.icons/material/step-forward.svg create mode 100644 docs/material/.icons/material/stethoscope.svg create mode 100644 docs/material/.icons/material/sticker-alert-outline.svg create mode 100644 docs/material/.icons/material/sticker-alert.svg create mode 100644 docs/material/.icons/material/sticker-check-outline.svg create mode 100644 docs/material/.icons/material/sticker-check.svg create mode 100644 docs/material/.icons/material/sticker-circle-outline.svg create mode 100644 docs/material/.icons/material/sticker-emoji.svg create mode 100644 docs/material/.icons/material/sticker-minus-outline.svg create mode 100644 docs/material/.icons/material/sticker-minus.svg create mode 100644 docs/material/.icons/material/sticker-outline.svg create mode 100644 docs/material/.icons/material/sticker-plus-outline.svg create mode 100644 docs/material/.icons/material/sticker-plus.svg create mode 100644 docs/material/.icons/material/sticker-remove-outline.svg create mode 100644 docs/material/.icons/material/sticker-remove.svg create mode 100644 docs/material/.icons/material/sticker.svg create mode 100644 docs/material/.icons/material/stocking.svg create mode 100644 docs/material/.icons/material/stomach.svg create mode 100644 docs/material/.icons/material/stop-circle-outline.svg create mode 100644 docs/material/.icons/material/stop-circle.svg create mode 100644 docs/material/.icons/material/stop.svg create mode 100644 docs/material/.icons/material/store-24-hour.svg create mode 100644 docs/material/.icons/material/store-outline.svg create mode 100644 docs/material/.icons/material/store.svg create mode 100644 docs/material/.icons/material/storefront-outline.svg create mode 100644 docs/material/.icons/material/storefront.svg create mode 100644 docs/material/.icons/material/stove.svg create mode 100644 docs/material/.icons/material/strategy.svg create mode 100644 docs/material/.icons/material/stretch-to-page-outline.svg create mode 100644 docs/material/.icons/material/stretch-to-page.svg create mode 100644 docs/material/.icons/material/string-lights-off.svg create mode 100644 docs/material/.icons/material/string-lights.svg create mode 100644 docs/material/.icons/material/subdirectory-arrow-left.svg create mode 100644 docs/material/.icons/material/subdirectory-arrow-right.svg create mode 100644 docs/material/.icons/material/subtitles-outline.svg create mode 100644 docs/material/.icons/material/subtitles.svg create mode 100644 docs/material/.icons/material/subway-alert-variant.svg create mode 100644 docs/material/.icons/material/subway-variant.svg create mode 100644 docs/material/.icons/material/subway.svg create mode 100644 docs/material/.icons/material/summit.svg create mode 100644 docs/material/.icons/material/sunglasses.svg create mode 100644 docs/material/.icons/material/surround-sound-2-0.svg create mode 100644 docs/material/.icons/material/surround-sound-3-1.svg create mode 100644 docs/material/.icons/material/surround-sound-5-1.svg create mode 100644 docs/material/.icons/material/surround-sound-7-1.svg create mode 100644 docs/material/.icons/material/surround-sound.svg create mode 100644 docs/material/.icons/material/svg.svg create mode 100644 docs/material/.icons/material/swap-horizontal-bold.svg create mode 100644 docs/material/.icons/material/swap-horizontal-circle-outline.svg create mode 100644 docs/material/.icons/material/swap-horizontal-circle.svg create mode 100644 docs/material/.icons/material/swap-horizontal-variant.svg create mode 100644 docs/material/.icons/material/swap-horizontal.svg create mode 100644 docs/material/.icons/material/swap-vertical-bold.svg create mode 100644 docs/material/.icons/material/swap-vertical-circle-outline.svg create mode 100644 docs/material/.icons/material/swap-vertical-circle.svg create mode 100644 docs/material/.icons/material/swap-vertical-variant.svg create mode 100644 docs/material/.icons/material/swap-vertical.svg create mode 100644 docs/material/.icons/material/swim.svg create mode 100644 docs/material/.icons/material/switch.svg create mode 100644 docs/material/.icons/material/sword-cross.svg create mode 100644 docs/material/.icons/material/sword.svg create mode 100644 docs/material/.icons/material/syllabary-hangul.svg create mode 100644 docs/material/.icons/material/syllabary-hiragana.svg create mode 100644 docs/material/.icons/material/syllabary-katakana-half-width.svg create mode 100644 docs/material/.icons/material/syllabary-katakana.svg create mode 100644 docs/material/.icons/material/symfony.svg create mode 100644 docs/material/.icons/material/sync-alert.svg create mode 100644 docs/material/.icons/material/sync-circle.svg create mode 100644 docs/material/.icons/material/sync-off.svg create mode 100644 docs/material/.icons/material/sync.svg create mode 100644 docs/material/.icons/material/tab-minus.svg create mode 100644 docs/material/.icons/material/tab-plus.svg create mode 100644 docs/material/.icons/material/tab-remove.svg create mode 100644 docs/material/.icons/material/tab-unselected.svg create mode 100644 docs/material/.icons/material/tab.svg create mode 100644 docs/material/.icons/material/table-account.svg create mode 100644 docs/material/.icons/material/table-alert.svg create mode 100644 docs/material/.icons/material/table-arrow-down.svg create mode 100644 docs/material/.icons/material/table-arrow-left.svg create mode 100644 docs/material/.icons/material/table-arrow-right.svg create mode 100644 docs/material/.icons/material/table-arrow-up.svg create mode 100644 docs/material/.icons/material/table-border.svg create mode 100644 docs/material/.icons/material/table-cancel.svg create mode 100644 docs/material/.icons/material/table-chair.svg create mode 100644 docs/material/.icons/material/table-check.svg create mode 100644 docs/material/.icons/material/table-clock.svg create mode 100644 docs/material/.icons/material/table-cog.svg create mode 100644 docs/material/.icons/material/table-column-plus-after.svg create mode 100644 docs/material/.icons/material/table-column-plus-before.svg create mode 100644 docs/material/.icons/material/table-column-remove.svg create mode 100644 docs/material/.icons/material/table-column-width.svg create mode 100644 docs/material/.icons/material/table-column.svg create mode 100644 docs/material/.icons/material/table-edit.svg create mode 100644 docs/material/.icons/material/table-eye-off.svg create mode 100644 docs/material/.icons/material/table-eye.svg create mode 100644 docs/material/.icons/material/table-furniture.svg create mode 100644 docs/material/.icons/material/table-headers-eye-off.svg create mode 100644 docs/material/.icons/material/table-headers-eye.svg create mode 100644 docs/material/.icons/material/table-heart.svg create mode 100644 docs/material/.icons/material/table-key.svg create mode 100644 docs/material/.icons/material/table-large-plus.svg create mode 100644 docs/material/.icons/material/table-large-remove.svg create mode 100644 docs/material/.icons/material/table-large.svg create mode 100644 docs/material/.icons/material/table-lock.svg create mode 100644 docs/material/.icons/material/table-merge-cells.svg create mode 100644 docs/material/.icons/material/table-minus.svg create mode 100644 docs/material/.icons/material/table-multiple.svg create mode 100644 docs/material/.icons/material/table-network.svg create mode 100644 docs/material/.icons/material/table-of-contents.svg create mode 100644 docs/material/.icons/material/table-off.svg create mode 100644 docs/material/.icons/material/table-plus.svg create mode 100644 docs/material/.icons/material/table-refresh.svg create mode 100644 docs/material/.icons/material/table-remove.svg create mode 100644 docs/material/.icons/material/table-row-height.svg create mode 100644 docs/material/.icons/material/table-row-plus-after.svg create mode 100644 docs/material/.icons/material/table-row-plus-before.svg create mode 100644 docs/material/.icons/material/table-row-remove.svg create mode 100644 docs/material/.icons/material/table-row.svg create mode 100644 docs/material/.icons/material/table-search.svg create mode 100644 docs/material/.icons/material/table-settings.svg create mode 100644 docs/material/.icons/material/table-star.svg create mode 100644 docs/material/.icons/material/table-sync.svg create mode 100644 docs/material/.icons/material/table-tennis.svg create mode 100644 docs/material/.icons/material/table.svg create mode 100644 docs/material/.icons/material/tablet-android.svg create mode 100644 docs/material/.icons/material/tablet-cellphone.svg create mode 100644 docs/material/.icons/material/tablet-dashboard.svg create mode 100644 docs/material/.icons/material/tablet-ipad.svg create mode 100644 docs/material/.icons/material/tablet.svg create mode 100644 docs/material/.icons/material/taco.svg create mode 100644 docs/material/.icons/material/tag-faces.svg create mode 100644 docs/material/.icons/material/tag-heart-outline.svg create mode 100644 docs/material/.icons/material/tag-heart.svg create mode 100644 docs/material/.icons/material/tag-minus-outline.svg create mode 100644 docs/material/.icons/material/tag-minus.svg create mode 100644 docs/material/.icons/material/tag-multiple-outline.svg create mode 100644 docs/material/.icons/material/tag-multiple.svg create mode 100644 docs/material/.icons/material/tag-off-outline.svg create mode 100644 docs/material/.icons/material/tag-off.svg create mode 100644 docs/material/.icons/material/tag-outline.svg create mode 100644 docs/material/.icons/material/tag-plus-outline.svg create mode 100644 docs/material/.icons/material/tag-plus.svg create mode 100644 docs/material/.icons/material/tag-remove-outline.svg create mode 100644 docs/material/.icons/material/tag-remove.svg create mode 100644 docs/material/.icons/material/tag-text-outline.svg create mode 100644 docs/material/.icons/material/tag-text.svg create mode 100644 docs/material/.icons/material/tag.svg create mode 100644 docs/material/.icons/material/tailwind.svg create mode 100644 docs/material/.icons/material/tank.svg create mode 100644 docs/material/.icons/material/tanker-truck.svg create mode 100644 docs/material/.icons/material/tape-measure.svg create mode 100644 docs/material/.icons/material/target-account.svg create mode 100644 docs/material/.icons/material/target-variant.svg create mode 100644 docs/material/.icons/material/target.svg create mode 100644 docs/material/.icons/material/taxi.svg create mode 100644 docs/material/.icons/material/tea-outline.svg create mode 100644 docs/material/.icons/material/tea.svg create mode 100644 docs/material/.icons/material/teach.svg create mode 100644 docs/material/.icons/material/teamviewer.svg create mode 100644 docs/material/.icons/material/telegram.svg create mode 100644 docs/material/.icons/material/telescope.svg create mode 100644 docs/material/.icons/material/television-ambient-light.svg create mode 100644 docs/material/.icons/material/television-box.svg create mode 100644 docs/material/.icons/material/television-classic-off.svg create mode 100644 docs/material/.icons/material/television-classic.svg create mode 100644 docs/material/.icons/material/television-clean.svg create mode 100644 docs/material/.icons/material/television-guide.svg create mode 100644 docs/material/.icons/material/television-off.svg create mode 100644 docs/material/.icons/material/television-pause.svg create mode 100644 docs/material/.icons/material/television-play.svg create mode 100644 docs/material/.icons/material/television-stop.svg create mode 100644 docs/material/.icons/material/television.svg create mode 100644 docs/material/.icons/material/temperature-celsius.svg create mode 100644 docs/material/.icons/material/temperature-fahrenheit.svg create mode 100644 docs/material/.icons/material/temperature-kelvin.svg create mode 100644 docs/material/.icons/material/tennis-ball.svg create mode 100644 docs/material/.icons/material/tennis.svg create mode 100644 docs/material/.icons/material/tent.svg create mode 100644 docs/material/.icons/material/terraform.svg create mode 100644 docs/material/.icons/material/terrain.svg create mode 100644 docs/material/.icons/material/test-tube-empty.svg create mode 100644 docs/material/.icons/material/test-tube-off.svg create mode 100644 docs/material/.icons/material/test-tube.svg create mode 100644 docs/material/.icons/material/text-box-check-outline.svg create mode 100644 docs/material/.icons/material/text-box-check.svg create mode 100644 docs/material/.icons/material/text-box-minus-outline.svg create mode 100644 docs/material/.icons/material/text-box-minus.svg create mode 100644 docs/material/.icons/material/text-box-multiple-outline.svg create mode 100644 docs/material/.icons/material/text-box-multiple.svg create mode 100644 docs/material/.icons/material/text-box-outline.svg create mode 100644 docs/material/.icons/material/text-box-plus-outline.svg create mode 100644 docs/material/.icons/material/text-box-plus.svg create mode 100644 docs/material/.icons/material/text-box-remove-outline.svg create mode 100644 docs/material/.icons/material/text-box-remove.svg create mode 100644 docs/material/.icons/material/text-box-search-outline.svg create mode 100644 docs/material/.icons/material/text-box-search.svg create mode 100644 docs/material/.icons/material/text-box.svg create mode 100644 docs/material/.icons/material/text-recognition.svg create mode 100644 docs/material/.icons/material/text-search.svg create mode 100644 docs/material/.icons/material/text-shadow.svg create mode 100644 docs/material/.icons/material/text-short.svg create mode 100644 docs/material/.icons/material/text-subject.svg create mode 100644 docs/material/.icons/material/text-to-speech-off.svg create mode 100644 docs/material/.icons/material/text-to-speech.svg create mode 100644 docs/material/.icons/material/text.svg create mode 100644 docs/material/.icons/material/texture-box.svg create mode 100644 docs/material/.icons/material/texture.svg create mode 100644 docs/material/.icons/material/theater.svg create mode 100644 docs/material/.icons/material/theme-light-dark.svg create mode 100644 docs/material/.icons/material/thermometer-alert.svg create mode 100644 docs/material/.icons/material/thermometer-chevron-down.svg create mode 100644 docs/material/.icons/material/thermometer-chevron-up.svg create mode 100644 docs/material/.icons/material/thermometer-high.svg create mode 100644 docs/material/.icons/material/thermometer-lines.svg create mode 100644 docs/material/.icons/material/thermometer-low.svg create mode 100644 docs/material/.icons/material/thermometer-minus.svg create mode 100644 docs/material/.icons/material/thermometer-plus.svg create mode 100644 docs/material/.icons/material/thermometer.svg create mode 100644 docs/material/.icons/material/thermostat-box.svg create mode 100644 docs/material/.icons/material/thermostat.svg create mode 100644 docs/material/.icons/material/thought-bubble-outline.svg create mode 100644 docs/material/.icons/material/thought-bubble.svg create mode 100644 docs/material/.icons/material/thumb-down-outline.svg create mode 100644 docs/material/.icons/material/thumb-down.svg create mode 100644 docs/material/.icons/material/thumb-up-outline.svg create mode 100644 docs/material/.icons/material/thumb-up.svg create mode 100644 docs/material/.icons/material/thumbs-up-down.svg create mode 100644 docs/material/.icons/material/ticket-account.svg create mode 100644 docs/material/.icons/material/ticket-confirmation-outline.svg create mode 100644 docs/material/.icons/material/ticket-confirmation.svg create mode 100644 docs/material/.icons/material/ticket-outline.svg create mode 100644 docs/material/.icons/material/ticket-percent.svg create mode 100644 docs/material/.icons/material/ticket.svg create mode 100644 docs/material/.icons/material/tie.svg create mode 100644 docs/material/.icons/material/tilde.svg create mode 100644 docs/material/.icons/material/timelapse.svg create mode 100644 docs/material/.icons/material/timeline-alert-outline.svg create mode 100644 docs/material/.icons/material/timeline-alert.svg create mode 100644 docs/material/.icons/material/timeline-clock-outline.svg create mode 100644 docs/material/.icons/material/timeline-clock.svg create mode 100644 docs/material/.icons/material/timeline-help-outline.svg create mode 100644 docs/material/.icons/material/timeline-help.svg create mode 100644 docs/material/.icons/material/timeline-outline.svg create mode 100644 docs/material/.icons/material/timeline-plus-outline.svg create mode 100644 docs/material/.icons/material/timeline-plus.svg create mode 100644 docs/material/.icons/material/timeline-text-outline.svg create mode 100644 docs/material/.icons/material/timeline-text.svg create mode 100644 docs/material/.icons/material/timeline.svg create mode 100644 docs/material/.icons/material/timer-10.svg create mode 100644 docs/material/.icons/material/timer-3.svg create mode 100644 docs/material/.icons/material/timer-off-outline.svg create mode 100644 docs/material/.icons/material/timer-off.svg create mode 100644 docs/material/.icons/material/timer-outline.svg create mode 100644 docs/material/.icons/material/timer-sand-empty.svg create mode 100644 docs/material/.icons/material/timer-sand-full.svg create mode 100644 docs/material/.icons/material/timer-sand.svg create mode 100644 docs/material/.icons/material/timer.svg create mode 100644 docs/material/.icons/material/timetable.svg create mode 100644 docs/material/.icons/material/toaster-off.svg create mode 100644 docs/material/.icons/material/toaster-oven.svg create mode 100644 docs/material/.icons/material/toaster.svg create mode 100644 docs/material/.icons/material/toggle-switch-off-outline.svg create mode 100644 docs/material/.icons/material/toggle-switch-off.svg create mode 100644 docs/material/.icons/material/toggle-switch-outline.svg create mode 100644 docs/material/.icons/material/toggle-switch.svg create mode 100644 docs/material/.icons/material/toilet.svg create mode 100644 docs/material/.icons/material/toolbox-outline.svg create mode 100644 docs/material/.icons/material/toolbox.svg create mode 100644 docs/material/.icons/material/tools.svg create mode 100644 docs/material/.icons/material/tooltip-account.svg create mode 100644 docs/material/.icons/material/tooltip-edit-outline.svg create mode 100644 docs/material/.icons/material/tooltip-edit.svg create mode 100644 docs/material/.icons/material/tooltip-image-outline.svg create mode 100644 docs/material/.icons/material/tooltip-image.svg create mode 100644 docs/material/.icons/material/tooltip-outline.svg create mode 100644 docs/material/.icons/material/tooltip-plus-outline.svg create mode 100644 docs/material/.icons/material/tooltip-plus.svg create mode 100644 docs/material/.icons/material/tooltip-text-outline.svg create mode 100644 docs/material/.icons/material/tooltip-text.svg create mode 100644 docs/material/.icons/material/tooltip.svg create mode 100644 docs/material/.icons/material/tooth-outline.svg create mode 100644 docs/material/.icons/material/tooth.svg create mode 100644 docs/material/.icons/material/toothbrush-electric.svg create mode 100644 docs/material/.icons/material/toothbrush-paste.svg create mode 100644 docs/material/.icons/material/toothbrush.svg create mode 100644 docs/material/.icons/material/tortoise.svg create mode 100644 docs/material/.icons/material/toslink.svg create mode 100644 docs/material/.icons/material/tournament.svg create mode 100644 docs/material/.icons/material/tow-truck.svg create mode 100644 docs/material/.icons/material/tower-beach.svg create mode 100644 docs/material/.icons/material/tower-fire.svg create mode 100644 docs/material/.icons/material/toy-brick-marker-outline.svg create mode 100644 docs/material/.icons/material/toy-brick-marker.svg create mode 100644 docs/material/.icons/material/toy-brick-minus-outline.svg create mode 100644 docs/material/.icons/material/toy-brick-minus.svg create mode 100644 docs/material/.icons/material/toy-brick-outline.svg create mode 100644 docs/material/.icons/material/toy-brick-plus-outline.svg create mode 100644 docs/material/.icons/material/toy-brick-plus.svg create mode 100644 docs/material/.icons/material/toy-brick-remove-outline.svg create mode 100644 docs/material/.icons/material/toy-brick-remove.svg create mode 100644 docs/material/.icons/material/toy-brick-search-outline.svg create mode 100644 docs/material/.icons/material/toy-brick-search.svg create mode 100644 docs/material/.icons/material/toy-brick.svg create mode 100644 docs/material/.icons/material/track-light.svg create mode 100644 docs/material/.icons/material/trackpad-lock.svg create mode 100644 docs/material/.icons/material/trackpad.svg create mode 100644 docs/material/.icons/material/tractor.svg create mode 100644 docs/material/.icons/material/trademark.svg create mode 100644 docs/material/.icons/material/traffic-cone.svg create mode 100644 docs/material/.icons/material/traffic-light.svg create mode 100644 docs/material/.icons/material/train-car.svg create mode 100644 docs/material/.icons/material/train-variant.svg create mode 100644 docs/material/.icons/material/train.svg create mode 100644 docs/material/.icons/material/tram-side.svg create mode 100644 docs/material/.icons/material/tram.svg create mode 100644 docs/material/.icons/material/transcribe-close.svg create mode 100644 docs/material/.icons/material/transcribe.svg create mode 100644 docs/material/.icons/material/transfer-down.svg create mode 100644 docs/material/.icons/material/transfer-left.svg create mode 100644 docs/material/.icons/material/transfer-right.svg create mode 100644 docs/material/.icons/material/transfer-up.svg create mode 100644 docs/material/.icons/material/transfer.svg create mode 100644 docs/material/.icons/material/transit-connection-variant.svg create mode 100644 docs/material/.icons/material/transit-connection.svg create mode 100644 docs/material/.icons/material/transit-detour.svg create mode 100644 docs/material/.icons/material/transit-transfer.svg create mode 100644 docs/material/.icons/material/transition-masked.svg create mode 100644 docs/material/.icons/material/transition.svg create mode 100644 docs/material/.icons/material/translate-off.svg create mode 100644 docs/material/.icons/material/translate.svg create mode 100644 docs/material/.icons/material/transmission-tower.svg create mode 100644 docs/material/.icons/material/trash-can-outline.svg create mode 100644 docs/material/.icons/material/trash-can.svg create mode 100644 docs/material/.icons/material/tray-alert.svg create mode 100644 docs/material/.icons/material/tray-full.svg create mode 100644 docs/material/.icons/material/tray-minus.svg create mode 100644 docs/material/.icons/material/tray-plus.svg create mode 100644 docs/material/.icons/material/tray-remove.svg create mode 100644 docs/material/.icons/material/tray.svg create mode 100644 docs/material/.icons/material/treasure-chest.svg create mode 100644 docs/material/.icons/material/tree-outline.svg create mode 100644 docs/material/.icons/material/tree.svg create mode 100644 docs/material/.icons/material/trello.svg create mode 100644 docs/material/.icons/material/trending-down.svg create mode 100644 docs/material/.icons/material/trending-neutral.svg create mode 100644 docs/material/.icons/material/trending-up.svg create mode 100644 docs/material/.icons/material/triangle-outline.svg create mode 100644 docs/material/.icons/material/triangle.svg create mode 100644 docs/material/.icons/material/triforce.svg create mode 100644 docs/material/.icons/material/trophy-award.svg create mode 100644 docs/material/.icons/material/trophy-broken.svg create mode 100644 docs/material/.icons/material/trophy-outline.svg create mode 100644 docs/material/.icons/material/trophy-variant-outline.svg create mode 100644 docs/material/.icons/material/trophy-variant.svg create mode 100644 docs/material/.icons/material/trophy.svg create mode 100644 docs/material/.icons/material/truck-check-outline.svg create mode 100644 docs/material/.icons/material/truck-check.svg create mode 100644 docs/material/.icons/material/truck-delivery-outline.svg create mode 100644 docs/material/.icons/material/truck-delivery.svg create mode 100644 docs/material/.icons/material/truck-fast-outline.svg create mode 100644 docs/material/.icons/material/truck-fast.svg create mode 100644 docs/material/.icons/material/truck-outline.svg create mode 100644 docs/material/.icons/material/truck-trailer.svg create mode 100644 docs/material/.icons/material/truck.svg create mode 100644 docs/material/.icons/material/trumpet.svg create mode 100644 docs/material/.icons/material/tshirt-crew-outline.svg create mode 100644 docs/material/.icons/material/tshirt-crew.svg create mode 100644 docs/material/.icons/material/tshirt-v-outline.svg create mode 100644 docs/material/.icons/material/tshirt-v.svg create mode 100644 docs/material/.icons/material/tumble-dryer-alert.svg create mode 100644 docs/material/.icons/material/tumble-dryer-off.svg create mode 100644 docs/material/.icons/material/tumble-dryer.svg create mode 100644 docs/material/.icons/material/tune-vertical.svg create mode 100644 docs/material/.icons/material/tune.svg create mode 100644 docs/material/.icons/material/turnstile-outline.svg create mode 100644 docs/material/.icons/material/turnstile.svg create mode 100644 docs/material/.icons/material/turtle.svg create mode 100644 docs/material/.icons/material/twitch.svg create mode 100644 docs/material/.icons/material/twitter-retweet.svg create mode 100644 docs/material/.icons/material/twitter.svg create mode 100644 docs/material/.icons/material/two-factor-authentication.svg create mode 100644 docs/material/.icons/material/typewriter.svg create mode 100644 docs/material/.icons/material/ubisoft.svg create mode 100644 docs/material/.icons/material/ubuntu.svg create mode 100644 docs/material/.icons/material/ufo-outline.svg create mode 100644 docs/material/.icons/material/ufo.svg create mode 100644 docs/material/.icons/material/ultra-high-definition.svg create mode 100644 docs/material/.icons/material/umbraco.svg create mode 100644 docs/material/.icons/material/umbrella-closed-outline.svg create mode 100644 docs/material/.icons/material/umbrella-closed-variant.svg create mode 100644 docs/material/.icons/material/umbrella-closed.svg create mode 100644 docs/material/.icons/material/umbrella-outline.svg create mode 100644 docs/material/.icons/material/umbrella.svg create mode 100644 docs/material/.icons/material/undo-variant.svg create mode 100644 docs/material/.icons/material/undo.svg create mode 100644 docs/material/.icons/material/unfold-less-horizontal.svg create mode 100644 docs/material/.icons/material/unfold-less-vertical.svg create mode 100644 docs/material/.icons/material/unfold-more-horizontal.svg create mode 100644 docs/material/.icons/material/unfold-more-vertical.svg create mode 100644 docs/material/.icons/material/ungroup.svg create mode 100644 docs/material/.icons/material/unicode.svg create mode 100644 docs/material/.icons/material/unity.svg create mode 100644 docs/material/.icons/material/unreal.svg create mode 100644 docs/material/.icons/material/untappd.svg create mode 100644 docs/material/.icons/material/update.svg create mode 100644 docs/material/.icons/material/upload-lock-outline.svg create mode 100644 docs/material/.icons/material/upload-lock.svg create mode 100644 docs/material/.icons/material/upload-multiple.svg create mode 100644 docs/material/.icons/material/upload-network-outline.svg create mode 100644 docs/material/.icons/material/upload-network.svg create mode 100644 docs/material/.icons/material/upload-off-outline.svg create mode 100644 docs/material/.icons/material/upload-off.svg create mode 100644 docs/material/.icons/material/upload-outline.svg create mode 100644 docs/material/.icons/material/upload.svg create mode 100644 docs/material/.icons/material/usb-flash-drive-outline.svg create mode 100644 docs/material/.icons/material/usb-flash-drive.svg create mode 100644 docs/material/.icons/material/usb-port.svg create mode 100644 docs/material/.icons/material/usb.svg create mode 100644 docs/material/.icons/material/valve-closed.svg create mode 100644 docs/material/.icons/material/valve-open.svg create mode 100644 docs/material/.icons/material/valve.svg create mode 100644 docs/material/.icons/material/van-passenger.svg create mode 100644 docs/material/.icons/material/van-utility.svg create mode 100644 docs/material/.icons/material/vanish.svg create mode 100644 docs/material/.icons/material/vanity-light.svg create mode 100644 docs/material/.icons/material/variable-box.svg create mode 100644 docs/material/.icons/material/variable.svg create mode 100644 docs/material/.icons/material/vector-arrange-above.svg create mode 100644 docs/material/.icons/material/vector-arrange-below.svg create mode 100644 docs/material/.icons/material/vector-bezier.svg create mode 100644 docs/material/.icons/material/vector-circle-variant.svg create mode 100644 docs/material/.icons/material/vector-circle.svg create mode 100644 docs/material/.icons/material/vector-combine.svg create mode 100644 docs/material/.icons/material/vector-curve.svg create mode 100644 docs/material/.icons/material/vector-difference-ab.svg create mode 100644 docs/material/.icons/material/vector-difference-ba.svg create mode 100644 docs/material/.icons/material/vector-difference.svg create mode 100644 docs/material/.icons/material/vector-ellipse.svg create mode 100644 docs/material/.icons/material/vector-intersection.svg create mode 100644 docs/material/.icons/material/vector-line.svg create mode 100644 docs/material/.icons/material/vector-link.svg create mode 100644 docs/material/.icons/material/vector-point.svg create mode 100644 docs/material/.icons/material/vector-polygon.svg create mode 100644 docs/material/.icons/material/vector-polyline-edit.svg create mode 100644 docs/material/.icons/material/vector-polyline-minus.svg create mode 100644 docs/material/.icons/material/vector-polyline-plus.svg create mode 100644 docs/material/.icons/material/vector-polyline-remove.svg create mode 100644 docs/material/.icons/material/vector-polyline.svg create mode 100644 docs/material/.icons/material/vector-radius.svg create mode 100644 docs/material/.icons/material/vector-rectangle.svg create mode 100644 docs/material/.icons/material/vector-selection.svg create mode 100644 docs/material/.icons/material/vector-square.svg create mode 100644 docs/material/.icons/material/vector-triangle.svg create mode 100644 docs/material/.icons/material/vector-union.svg create mode 100644 docs/material/.icons/material/vhs.svg create mode 100644 docs/material/.icons/material/vibrate-off.svg create mode 100644 docs/material/.icons/material/vibrate.svg create mode 100644 docs/material/.icons/material/video-3d-off.svg create mode 100644 docs/material/.icons/material/video-3d-variant.svg create mode 100644 docs/material/.icons/material/video-3d.svg create mode 100644 docs/material/.icons/material/video-4k-box.svg create mode 100644 docs/material/.icons/material/video-account.svg create mode 100644 docs/material/.icons/material/video-box-off.svg create mode 100644 docs/material/.icons/material/video-box.svg create mode 100644 docs/material/.icons/material/video-check-outline.svg create mode 100644 docs/material/.icons/material/video-check.svg create mode 100644 docs/material/.icons/material/video-image.svg create mode 100644 docs/material/.icons/material/video-input-antenna.svg create mode 100644 docs/material/.icons/material/video-input-component.svg create mode 100644 docs/material/.icons/material/video-input-hdmi.svg create mode 100644 docs/material/.icons/material/video-input-scart.svg create mode 100644 docs/material/.icons/material/video-input-svideo.svg create mode 100644 docs/material/.icons/material/video-minus-outline.svg create mode 100644 docs/material/.icons/material/video-minus.svg create mode 100644 docs/material/.icons/material/video-off-outline.svg create mode 100644 docs/material/.icons/material/video-off.svg create mode 100644 docs/material/.icons/material/video-outline.svg create mode 100644 docs/material/.icons/material/video-plus-outline.svg create mode 100644 docs/material/.icons/material/video-plus.svg create mode 100644 docs/material/.icons/material/video-stabilization.svg create mode 100644 docs/material/.icons/material/video-switch-outline.svg create mode 100644 docs/material/.icons/material/video-switch.svg create mode 100644 docs/material/.icons/material/video-vintage.svg create mode 100644 docs/material/.icons/material/video-wireless-outline.svg create mode 100644 docs/material/.icons/material/video-wireless.svg create mode 100644 docs/material/.icons/material/video.svg create mode 100644 docs/material/.icons/material/view-agenda-outline.svg create mode 100644 docs/material/.icons/material/view-agenda.svg create mode 100644 docs/material/.icons/material/view-array.svg create mode 100644 docs/material/.icons/material/view-carousel.svg create mode 100644 docs/material/.icons/material/view-column.svg create mode 100644 docs/material/.icons/material/view-comfy.svg create mode 100644 docs/material/.icons/material/view-compact-outline.svg create mode 100644 docs/material/.icons/material/view-compact.svg create mode 100644 docs/material/.icons/material/view-dashboard-outline.svg create mode 100644 docs/material/.icons/material/view-dashboard-variant.svg create mode 100644 docs/material/.icons/material/view-dashboard.svg create mode 100644 docs/material/.icons/material/view-day.svg create mode 100644 docs/material/.icons/material/view-grid-outline.svg create mode 100644 docs/material/.icons/material/view-grid-plus-outline.svg create mode 100644 docs/material/.icons/material/view-grid-plus.svg create mode 100644 docs/material/.icons/material/view-grid.svg create mode 100644 docs/material/.icons/material/view-headline.svg create mode 100644 docs/material/.icons/material/view-list.svg create mode 100644 docs/material/.icons/material/view-module.svg create mode 100644 docs/material/.icons/material/view-parallel.svg create mode 100644 docs/material/.icons/material/view-quilt.svg create mode 100644 docs/material/.icons/material/view-sequential.svg create mode 100644 docs/material/.icons/material/view-split-horizontal.svg create mode 100644 docs/material/.icons/material/view-split-vertical.svg create mode 100644 docs/material/.icons/material/view-stream.svg create mode 100644 docs/material/.icons/material/view-week.svg create mode 100644 docs/material/.icons/material/vimeo.svg create mode 100644 docs/material/.icons/material/violin.svg create mode 100644 docs/material/.icons/material/virtual-reality.svg create mode 100644 docs/material/.icons/material/virus-outline.svg create mode 100644 docs/material/.icons/material/virus.svg create mode 100644 docs/material/.icons/material/vk.svg create mode 100644 docs/material/.icons/material/vlc.svg create mode 100644 docs/material/.icons/material/voice-off.svg create mode 100644 docs/material/.icons/material/voicemail.svg create mode 100644 docs/material/.icons/material/volleyball.svg create mode 100644 docs/material/.icons/material/volume-high.svg create mode 100644 docs/material/.icons/material/volume-low.svg create mode 100644 docs/material/.icons/material/volume-medium.svg create mode 100644 docs/material/.icons/material/volume-minus.svg create mode 100644 docs/material/.icons/material/volume-mute.svg create mode 100644 docs/material/.icons/material/volume-off.svg create mode 100644 docs/material/.icons/material/volume-plus.svg create mode 100644 docs/material/.icons/material/volume-source.svg create mode 100644 docs/material/.icons/material/volume-variant-off.svg create mode 100644 docs/material/.icons/material/volume-vibrate.svg create mode 100644 docs/material/.icons/material/vote-outline.svg create mode 100644 docs/material/.icons/material/vote.svg create mode 100644 docs/material/.icons/material/vpn.svg create mode 100644 docs/material/.icons/material/vuejs.svg create mode 100644 docs/material/.icons/material/vuetify.svg create mode 100644 docs/material/.icons/material/walk.svg create mode 100644 docs/material/.icons/material/wall-sconce-flat-variant.svg create mode 100644 docs/material/.icons/material/wall-sconce-flat.svg create mode 100644 docs/material/.icons/material/wall-sconce-round-variant.svg create mode 100644 docs/material/.icons/material/wall-sconce-round.svg create mode 100644 docs/material/.icons/material/wall-sconce.svg create mode 100644 docs/material/.icons/material/wall.svg create mode 100644 docs/material/.icons/material/wallet-giftcard.svg create mode 100644 docs/material/.icons/material/wallet-membership.svg create mode 100644 docs/material/.icons/material/wallet-outline.svg create mode 100644 docs/material/.icons/material/wallet-plus-outline.svg create mode 100644 docs/material/.icons/material/wallet-plus.svg create mode 100644 docs/material/.icons/material/wallet-travel.svg create mode 100644 docs/material/.icons/material/wallet.svg create mode 100644 docs/material/.icons/material/wallpaper.svg create mode 100644 docs/material/.icons/material/wan.svg create mode 100644 docs/material/.icons/material/wardrobe-outline.svg create mode 100644 docs/material/.icons/material/wardrobe.svg create mode 100644 docs/material/.icons/material/warehouse.svg create mode 100644 docs/material/.icons/material/washing-machine-alert.svg create mode 100644 docs/material/.icons/material/washing-machine-off.svg create mode 100644 docs/material/.icons/material/washing-machine.svg create mode 100644 docs/material/.icons/material/watch-export-variant.svg create mode 100644 docs/material/.icons/material/watch-export.svg create mode 100644 docs/material/.icons/material/watch-import-variant.svg create mode 100644 docs/material/.icons/material/watch-import.svg create mode 100644 docs/material/.icons/material/watch-variant.svg create mode 100644 docs/material/.icons/material/watch-vibrate-off.svg create mode 100644 docs/material/.icons/material/watch-vibrate.svg create mode 100644 docs/material/.icons/material/watch.svg create mode 100644 docs/material/.icons/material/water-boiler-alert.svg create mode 100644 docs/material/.icons/material/water-boiler-off.svg create mode 100644 docs/material/.icons/material/water-boiler.svg create mode 100644 docs/material/.icons/material/water-off.svg create mode 100644 docs/material/.icons/material/water-outline.svg create mode 100644 docs/material/.icons/material/water-percent.svg create mode 100644 docs/material/.icons/material/water-polo.svg create mode 100644 docs/material/.icons/material/water-pump-off.svg create mode 100644 docs/material/.icons/material/water-pump.svg create mode 100644 docs/material/.icons/material/water-well-outline.svg create mode 100644 docs/material/.icons/material/water-well.svg create mode 100644 docs/material/.icons/material/water.svg create mode 100644 docs/material/.icons/material/watermark.svg create mode 100644 docs/material/.icons/material/wave.svg create mode 100644 docs/material/.icons/material/waves.svg create mode 100644 docs/material/.icons/material/waze.svg create mode 100644 docs/material/.icons/material/weather-cloudy-alert.svg create mode 100644 docs/material/.icons/material/weather-cloudy-arrow-right.svg create mode 100644 docs/material/.icons/material/weather-cloudy.svg create mode 100644 docs/material/.icons/material/weather-fog.svg create mode 100644 docs/material/.icons/material/weather-hail.svg create mode 100644 docs/material/.icons/material/weather-hazy.svg create mode 100644 docs/material/.icons/material/weather-hurricane.svg create mode 100644 docs/material/.icons/material/weather-lightning-rainy.svg create mode 100644 docs/material/.icons/material/weather-lightning.svg create mode 100644 docs/material/.icons/material/weather-night-partly-cloudy.svg create mode 100644 docs/material/.icons/material/weather-night.svg create mode 100644 docs/material/.icons/material/weather-partly-cloudy.svg create mode 100644 docs/material/.icons/material/weather-partly-lightning.svg create mode 100644 docs/material/.icons/material/weather-partly-rainy.svg create mode 100644 docs/material/.icons/material/weather-partly-snowy-rainy.svg create mode 100644 docs/material/.icons/material/weather-partly-snowy.svg create mode 100644 docs/material/.icons/material/weather-pouring.svg create mode 100644 docs/material/.icons/material/weather-rainy.svg create mode 100644 docs/material/.icons/material/weather-snowy-heavy.svg create mode 100644 docs/material/.icons/material/weather-snowy-rainy.svg create mode 100644 docs/material/.icons/material/weather-snowy.svg create mode 100644 docs/material/.icons/material/weather-sunny-alert.svg create mode 100644 docs/material/.icons/material/weather-sunny.svg create mode 100644 docs/material/.icons/material/weather-sunset-down.svg create mode 100644 docs/material/.icons/material/weather-sunset-up.svg create mode 100644 docs/material/.icons/material/weather-sunset.svg create mode 100644 docs/material/.icons/material/weather-tornado.svg create mode 100644 docs/material/.icons/material/weather-windy-variant.svg create mode 100644 docs/material/.icons/material/weather-windy.svg create mode 100644 docs/material/.icons/material/web-box.svg create mode 100644 docs/material/.icons/material/web-clock.svg create mode 100644 docs/material/.icons/material/web.svg create mode 100644 docs/material/.icons/material/webcam.svg create mode 100644 docs/material/.icons/material/webhook.svg create mode 100644 docs/material/.icons/material/webpack.svg create mode 100644 docs/material/.icons/material/webrtc.svg create mode 100644 docs/material/.icons/material/wechat.svg create mode 100644 docs/material/.icons/material/weight-gram.svg create mode 100644 docs/material/.icons/material/weight-kilogram.svg create mode 100644 docs/material/.icons/material/weight-lifter.svg create mode 100644 docs/material/.icons/material/weight-pound.svg create mode 100644 docs/material/.icons/material/weight.svg create mode 100644 docs/material/.icons/material/whatsapp.svg create mode 100644 docs/material/.icons/material/wheelchair-accessibility.svg create mode 100644 docs/material/.icons/material/whistle-outline.svg create mode 100644 docs/material/.icons/material/whistle.svg create mode 100644 docs/material/.icons/material/white-balance-auto.svg create mode 100644 docs/material/.icons/material/white-balance-incandescent.svg create mode 100644 docs/material/.icons/material/white-balance-iridescent.svg create mode 100644 docs/material/.icons/material/white-balance-sunny.svg create mode 100644 docs/material/.icons/material/widgets-outline.svg create mode 100644 docs/material/.icons/material/widgets.svg create mode 100644 docs/material/.icons/material/wifi-off.svg create mode 100644 docs/material/.icons/material/wifi-star.svg create mode 100644 docs/material/.icons/material/wifi-strength-1-alert.svg create mode 100644 docs/material/.icons/material/wifi-strength-1-lock.svg create mode 100644 docs/material/.icons/material/wifi-strength-1.svg create mode 100644 docs/material/.icons/material/wifi-strength-2-alert.svg create mode 100644 docs/material/.icons/material/wifi-strength-2-lock.svg create mode 100644 docs/material/.icons/material/wifi-strength-2.svg create mode 100644 docs/material/.icons/material/wifi-strength-3-alert.svg create mode 100644 docs/material/.icons/material/wifi-strength-3-lock.svg create mode 100644 docs/material/.icons/material/wifi-strength-3.svg create mode 100644 docs/material/.icons/material/wifi-strength-4-alert.svg create mode 100644 docs/material/.icons/material/wifi-strength-4-lock.svg create mode 100644 docs/material/.icons/material/wifi-strength-4.svg create mode 100644 docs/material/.icons/material/wifi-strength-alert-outline.svg create mode 100644 docs/material/.icons/material/wifi-strength-lock-outline.svg create mode 100644 docs/material/.icons/material/wifi-strength-off-outline.svg create mode 100644 docs/material/.icons/material/wifi-strength-off.svg create mode 100644 docs/material/.icons/material/wifi-strength-outline.svg create mode 100644 docs/material/.icons/material/wifi.svg create mode 100644 docs/material/.icons/material/wikipedia.svg create mode 100644 docs/material/.icons/material/wind-turbine.svg create mode 100644 docs/material/.icons/material/window-close.svg create mode 100644 docs/material/.icons/material/window-closed-variant.svg create mode 100644 docs/material/.icons/material/window-closed.svg create mode 100644 docs/material/.icons/material/window-maximize.svg create mode 100644 docs/material/.icons/material/window-minimize.svg create mode 100644 docs/material/.icons/material/window-open-variant.svg create mode 100644 docs/material/.icons/material/window-open.svg create mode 100644 docs/material/.icons/material/window-restore.svg create mode 100644 docs/material/.icons/material/window-shutter-alert.svg create mode 100644 docs/material/.icons/material/window-shutter-open.svg create mode 100644 docs/material/.icons/material/window-shutter.svg create mode 100644 docs/material/.icons/material/wiper-wash.svg create mode 100644 docs/material/.icons/material/wiper.svg create mode 100644 docs/material/.icons/material/wordpress.svg create mode 100644 docs/material/.icons/material/wrap-disabled.svg create mode 100644 docs/material/.icons/material/wrap.svg create mode 100644 docs/material/.icons/material/wrench-outline.svg create mode 100644 docs/material/.icons/material/wrench.svg create mode 100644 docs/material/.icons/material/xamarin-outline.svg create mode 100644 docs/material/.icons/material/xamarin.svg create mode 100644 docs/material/.icons/material/xing.svg create mode 100644 docs/material/.icons/material/xml.svg create mode 100644 docs/material/.icons/material/xmpp.svg create mode 100644 docs/material/.icons/material/y-combinator.svg create mode 100644 docs/material/.icons/material/yahoo.svg create mode 100644 docs/material/.icons/material/yeast.svg create mode 100644 docs/material/.icons/material/yin-yang.svg create mode 100644 docs/material/.icons/material/yoga.svg create mode 100644 docs/material/.icons/material/youtube-gaming.svg create mode 100644 docs/material/.icons/material/youtube-studio.svg create mode 100644 docs/material/.icons/material/youtube-subscription.svg create mode 100644 docs/material/.icons/material/youtube-tv.svg create mode 100644 docs/material/.icons/material/youtube.svg create mode 100644 docs/material/.icons/material/z-wave.svg create mode 100644 docs/material/.icons/material/zend.svg create mode 100644 docs/material/.icons/material/zigbee.svg create mode 100644 docs/material/.icons/material/zip-box-outline.svg create mode 100644 docs/material/.icons/material/zip-box.svg create mode 100644 docs/material/.icons/material/zip-disk.svg create mode 100644 docs/material/.icons/material/zodiac-aquarius.svg create mode 100644 docs/material/.icons/material/zodiac-aries.svg create mode 100644 docs/material/.icons/material/zodiac-cancer.svg create mode 100644 docs/material/.icons/material/zodiac-capricorn.svg create mode 100644 docs/material/.icons/material/zodiac-gemini.svg create mode 100644 docs/material/.icons/material/zodiac-leo.svg create mode 100644 docs/material/.icons/material/zodiac-libra.svg create mode 100644 docs/material/.icons/material/zodiac-pisces.svg create mode 100644 docs/material/.icons/material/zodiac-sagittarius.svg create mode 100644 docs/material/.icons/material/zodiac-scorpio.svg create mode 100644 docs/material/.icons/material/zodiac-taurus.svg create mode 100644 docs/material/.icons/material/zodiac-virgo.svg create mode 100644 docs/material/.icons/octicons/LICENSE create mode 100644 docs/material/.icons/octicons/alert.svg create mode 100644 docs/material/.icons/octicons/archive.svg create mode 100644 docs/material/.icons/octicons/arrow-both.svg create mode 100644 docs/material/.icons/octicons/arrow-down.svg create mode 100644 docs/material/.icons/octicons/arrow-left.svg create mode 100644 docs/material/.icons/octicons/arrow-right.svg create mode 100644 docs/material/.icons/octicons/arrow-small-down.svg create mode 100644 docs/material/.icons/octicons/arrow-small-left.svg create mode 100644 docs/material/.icons/octicons/arrow-small-right.svg create mode 100644 docs/material/.icons/octicons/arrow-small-up.svg create mode 100644 docs/material/.icons/octicons/arrow-up.svg create mode 100644 docs/material/.icons/octicons/beaker.svg create mode 100644 docs/material/.icons/octicons/bell.svg create mode 100644 docs/material/.icons/octicons/bold.svg create mode 100644 docs/material/.icons/octicons/book.svg create mode 100644 docs/material/.icons/octicons/bookmark.svg create mode 100644 docs/material/.icons/octicons/briefcase.svg create mode 100644 docs/material/.icons/octicons/broadcast.svg create mode 100644 docs/material/.icons/octicons/browser.svg create mode 100644 docs/material/.icons/octicons/bug.svg create mode 100644 docs/material/.icons/octicons/calendar.svg create mode 100644 docs/material/.icons/octicons/check.svg create mode 100644 docs/material/.icons/octicons/checklist.svg create mode 100644 docs/material/.icons/octicons/chevron-down.svg create mode 100644 docs/material/.icons/octicons/chevron-left.svg create mode 100644 docs/material/.icons/octicons/chevron-right.svg create mode 100644 docs/material/.icons/octicons/chevron-up.svg create mode 100644 docs/material/.icons/octicons/circle-slash.svg create mode 100644 docs/material/.icons/octicons/circuit-board.svg create mode 100644 docs/material/.icons/octicons/clippy.svg create mode 100644 docs/material/.icons/octicons/clock.svg create mode 100644 docs/material/.icons/octicons/cloud-download.svg create mode 100644 docs/material/.icons/octicons/cloud-upload.svg create mode 100644 docs/material/.icons/octicons/code.svg create mode 100644 docs/material/.icons/octicons/comment-discussion.svg create mode 100644 docs/material/.icons/octicons/comment.svg create mode 100644 docs/material/.icons/octicons/credit-card.svg create mode 100644 docs/material/.icons/octicons/dash.svg create mode 100644 docs/material/.icons/octicons/dashboard.svg create mode 100644 docs/material/.icons/octicons/database.svg create mode 100644 docs/material/.icons/octicons/dependent.svg create mode 100644 docs/material/.icons/octicons/desktop-download.svg create mode 100644 docs/material/.icons/octicons/device-camera-video.svg create mode 100644 docs/material/.icons/octicons/device-camera.svg create mode 100644 docs/material/.icons/octicons/device-desktop.svg create mode 100644 docs/material/.icons/octicons/device-mobile.svg create mode 100644 docs/material/.icons/octicons/diff-added.svg create mode 100644 docs/material/.icons/octicons/diff-ignored.svg create mode 100644 docs/material/.icons/octicons/diff-modified.svg create mode 100644 docs/material/.icons/octicons/diff-removed.svg create mode 100644 docs/material/.icons/octicons/diff-renamed.svg create mode 100644 docs/material/.icons/octicons/diff.svg create mode 100644 docs/material/.icons/octicons/ellipsis.svg create mode 100644 docs/material/.icons/octicons/eye-closed.svg create mode 100644 docs/material/.icons/octicons/eye.svg create mode 100644 docs/material/.icons/octicons/file-binary.svg create mode 100644 docs/material/.icons/octicons/file-code.svg create mode 100644 docs/material/.icons/octicons/file-directory.svg create mode 100644 docs/material/.icons/octicons/file-media.svg create mode 100644 docs/material/.icons/octicons/file-pdf.svg create mode 100644 docs/material/.icons/octicons/file-submodule.svg create mode 100644 docs/material/.icons/octicons/file-symlink-directory.svg create mode 100644 docs/material/.icons/octicons/file-symlink-file.svg create mode 100644 docs/material/.icons/octicons/file-zip.svg create mode 100644 docs/material/.icons/octicons/file.svg create mode 100644 docs/material/.icons/octicons/flame.svg create mode 100644 docs/material/.icons/octicons/fold-down.svg create mode 100644 docs/material/.icons/octicons/fold-up.svg create mode 100644 docs/material/.icons/octicons/fold.svg create mode 100644 docs/material/.icons/octicons/gear.svg create mode 100644 docs/material/.icons/octicons/gift.svg create mode 100644 docs/material/.icons/octicons/gist-secret.svg create mode 100644 docs/material/.icons/octicons/gist.svg create mode 100644 docs/material/.icons/octicons/git-branch.svg create mode 100644 docs/material/.icons/octicons/git-commit.svg create mode 100644 docs/material/.icons/octicons/git-compare.svg create mode 100644 docs/material/.icons/octicons/git-merge.svg create mode 100644 docs/material/.icons/octicons/git-pull-request.svg create mode 100644 docs/material/.icons/octicons/github-action.svg create mode 100644 docs/material/.icons/octicons/globe.svg create mode 100644 docs/material/.icons/octicons/grabber.svg create mode 100644 docs/material/.icons/octicons/graph.svg create mode 100644 docs/material/.icons/octicons/heart-outline.svg create mode 100644 docs/material/.icons/octicons/heart.svg create mode 100644 docs/material/.icons/octicons/history.svg create mode 100644 docs/material/.icons/octicons/home.svg create mode 100644 docs/material/.icons/octicons/horizontal-rule.svg create mode 100644 docs/material/.icons/octicons/hubot.svg create mode 100644 docs/material/.icons/octicons/inbox.svg create mode 100644 docs/material/.icons/octicons/infinity.svg create mode 100644 docs/material/.icons/octicons/info.svg create mode 100644 docs/material/.icons/octicons/internal-repo.svg create mode 100644 docs/material/.icons/octicons/issue-closed.svg create mode 100644 docs/material/.icons/octicons/issue-opened.svg create mode 100644 docs/material/.icons/octicons/issue-reopened.svg create mode 100644 docs/material/.icons/octicons/italic.svg create mode 100644 docs/material/.icons/octicons/jersey.svg create mode 100644 docs/material/.icons/octicons/kebab-horizontal.svg create mode 100644 docs/material/.icons/octicons/kebab-vertical.svg create mode 100644 docs/material/.icons/octicons/key.svg create mode 100644 docs/material/.icons/octicons/keyboard.svg create mode 100644 docs/material/.icons/octicons/law.svg create mode 100644 docs/material/.icons/octicons/light-bulb.svg create mode 100644 docs/material/.icons/octicons/line-arrow-down.svg create mode 100644 docs/material/.icons/octicons/line-arrow-left.svg create mode 100644 docs/material/.icons/octicons/line-arrow-right.svg create mode 100644 docs/material/.icons/octicons/line-arrow-up.svg create mode 100644 docs/material/.icons/octicons/link-external.svg create mode 100644 docs/material/.icons/octicons/link.svg create mode 100644 docs/material/.icons/octicons/list-ordered.svg create mode 100644 docs/material/.icons/octicons/list-unordered.svg create mode 100644 docs/material/.icons/octicons/location.svg create mode 100644 docs/material/.icons/octicons/lock.svg create mode 100644 docs/material/.icons/octicons/logo-gist.svg create mode 100644 docs/material/.icons/octicons/logo-github.svg create mode 100644 docs/material/.icons/octicons/mail-read.svg create mode 100644 docs/material/.icons/octicons/mail.svg create mode 100644 docs/material/.icons/octicons/mark-github.svg create mode 100644 docs/material/.icons/octicons/markdown.svg create mode 100644 docs/material/.icons/octicons/megaphone.svg create mode 100644 docs/material/.icons/octicons/mention.svg create mode 100644 docs/material/.icons/octicons/milestone.svg create mode 100644 docs/material/.icons/octicons/mirror.svg create mode 100644 docs/material/.icons/octicons/mortar-board.svg create mode 100644 docs/material/.icons/octicons/mute.svg create mode 100644 docs/material/.icons/octicons/no-newline.svg create mode 100644 docs/material/.icons/octicons/north-star.svg create mode 100644 docs/material/.icons/octicons/note.svg create mode 100644 docs/material/.icons/octicons/octoface.svg create mode 100644 docs/material/.icons/octicons/organization.svg create mode 100644 docs/material/.icons/octicons/package.svg create mode 100644 docs/material/.icons/octicons/paintcan.svg create mode 100644 docs/material/.icons/octicons/pencil.svg create mode 100644 docs/material/.icons/octicons/person.svg create mode 100644 docs/material/.icons/octicons/pin.svg create mode 100644 docs/material/.icons/octicons/play.svg create mode 100644 docs/material/.icons/octicons/plug.svg create mode 100644 docs/material/.icons/octicons/plus-small.svg create mode 100644 docs/material/.icons/octicons/plus.svg create mode 100644 docs/material/.icons/octicons/primitive-dot-stroke.svg create mode 100644 docs/material/.icons/octicons/primitive-dot.svg create mode 100644 docs/material/.icons/octicons/primitive-square.svg create mode 100644 docs/material/.icons/octicons/project.svg create mode 100644 docs/material/.icons/octicons/pulse.svg create mode 100644 docs/material/.icons/octicons/question.svg create mode 100644 docs/material/.icons/octicons/quote.svg create mode 100644 docs/material/.icons/octicons/radio-tower.svg create mode 100644 docs/material/.icons/octicons/reply.svg create mode 100644 docs/material/.icons/octicons/repo-clone.svg create mode 100644 docs/material/.icons/octicons/repo-force-push.svg create mode 100644 docs/material/.icons/octicons/repo-forked.svg create mode 100644 docs/material/.icons/octicons/repo-pull.svg create mode 100644 docs/material/.icons/octicons/repo-push.svg create mode 100644 docs/material/.icons/octicons/repo-template-private.svg create mode 100644 docs/material/.icons/octicons/repo-template.svg create mode 100644 docs/material/.icons/octicons/repo.svg create mode 100644 docs/material/.icons/octicons/report.svg create mode 100644 docs/material/.icons/octicons/request-changes.svg create mode 100644 docs/material/.icons/octicons/rocket.svg create mode 100644 docs/material/.icons/octicons/rss.svg create mode 100644 docs/material/.icons/octicons/ruby.svg create mode 100644 docs/material/.icons/octicons/saved.svg create mode 100644 docs/material/.icons/octicons/screen-full.svg create mode 100644 docs/material/.icons/octicons/screen-normal.svg create mode 100644 docs/material/.icons/octicons/search.svg create mode 100644 docs/material/.icons/octicons/server.svg create mode 100644 docs/material/.icons/octicons/settings.svg create mode 100644 docs/material/.icons/octicons/shield-check.svg create mode 100644 docs/material/.icons/octicons/shield-lock.svg create mode 100644 docs/material/.icons/octicons/shield-x.svg create mode 100644 docs/material/.icons/octicons/shield.svg create mode 100644 docs/material/.icons/octicons/sign-in.svg create mode 100644 docs/material/.icons/octicons/sign-out.svg create mode 100644 docs/material/.icons/octicons/skip.svg create mode 100644 docs/material/.icons/octicons/smiley.svg create mode 100644 docs/material/.icons/octicons/squirrel.svg create mode 100644 docs/material/.icons/octicons/star.svg create mode 100644 docs/material/.icons/octicons/stop.svg create mode 100644 docs/material/.icons/octicons/sync.svg create mode 100644 docs/material/.icons/octicons/tag.svg create mode 100644 docs/material/.icons/octicons/tasklist.svg create mode 100644 docs/material/.icons/octicons/telescope.svg create mode 100644 docs/material/.icons/octicons/terminal.svg create mode 100644 docs/material/.icons/octicons/text-size.svg create mode 100644 docs/material/.icons/octicons/three-bars.svg create mode 100644 docs/material/.icons/octicons/thumbsdown.svg create mode 100644 docs/material/.icons/octicons/thumbsup.svg create mode 100644 docs/material/.icons/octicons/tools.svg create mode 100644 docs/material/.icons/octicons/trashcan.svg create mode 100644 docs/material/.icons/octicons/triangle-down.svg create mode 100644 docs/material/.icons/octicons/triangle-left.svg create mode 100644 docs/material/.icons/octicons/triangle-right.svg create mode 100644 docs/material/.icons/octicons/triangle-up.svg create mode 100644 docs/material/.icons/octicons/unfold.svg create mode 100644 docs/material/.icons/octicons/unmute.svg create mode 100644 docs/material/.icons/octicons/unsaved.svg create mode 100644 docs/material/.icons/octicons/unverified.svg create mode 100644 docs/material/.icons/octicons/verified.svg create mode 100644 docs/material/.icons/octicons/versions.svg create mode 100644 docs/material/.icons/octicons/watch.svg create mode 100644 docs/material/.icons/octicons/workflow-all.svg create mode 100644 docs/material/.icons/octicons/workflow.svg create mode 100644 docs/material/.icons/octicons/x.svg create mode 100644 docs/material/.icons/octicons/zap.svg create mode 100644 docs/material/404.html create mode 100644 docs/material/__init__.py create mode 100644 docs/material/assets/images/favicon.png create mode 100644 docs/material/assets/javascripts/bundle.8566d47a.min.js create mode 100644 docs/material/assets/javascripts/bundle.8566d47a.min.js.map create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.ar.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.da.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.de.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.du.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.es.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.fi.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.fr.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.hu.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.it.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.ja.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.jp.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.multi.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.nl.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.no.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.pt.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.ro.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.ru.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.stemmer.support.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.sv.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.tr.min.js create mode 100644 docs/material/assets/javascripts/lunr/min/lunr.vi.min.js create mode 100644 docs/material/assets/javascripts/lunr/tinyseg.min.js create mode 100644 docs/material/assets/javascripts/vendor.809e24aa.min.js create mode 100644 docs/material/assets/javascripts/vendor.809e24aa.min.js.map create mode 100644 docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js create mode 100644 docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js.map create mode 100644 docs/material/assets/manifest.json create mode 100644 docs/material/assets/stylesheets/main.127eade9.min.css create mode 100644 docs/material/assets/stylesheets/main.127eade9.min.css.map create mode 100644 docs/material/assets/stylesheets/palette.c929de0b.min.css create mode 100644 docs/material/assets/stylesheets/palette.c929de0b.min.css.map create mode 100644 docs/material/base.html create mode 100644 docs/material/base.html.bak create mode 100644 docs/material/main.html create mode 100644 docs/material/mkdocs_theme.yml create mode 100644 docs/material/overrides/home.html create mode 100644 docs/material/overrides/main.html create mode 100644 docs/material/partials/footer.html create mode 100644 docs/material/partials/header.html create mode 100644 docs/material/partials/hero.html create mode 100644 docs/material/partials/integrations/analytics.html create mode 100644 docs/material/partials/integrations/disqus.html create mode 100644 docs/material/partials/language.html create mode 100644 docs/material/partials/language/af.html create mode 100644 docs/material/partials/language/ar.html create mode 100644 docs/material/partials/language/ca.html create mode 100644 docs/material/partials/language/cs.html create mode 100644 docs/material/partials/language/da.html create mode 100644 docs/material/partials/language/de.html create mode 100644 docs/material/partials/language/en.html create mode 100644 docs/material/partials/language/es.html create mode 100644 docs/material/partials/language/et.html create mode 100644 docs/material/partials/language/fa.html create mode 100644 docs/material/partials/language/fi.html create mode 100644 docs/material/partials/language/fr.html create mode 100644 docs/material/partials/language/gl.html create mode 100644 docs/material/partials/language/gr.html create mode 100644 docs/material/partials/language/he.html create mode 100644 docs/material/partials/language/hi.html create mode 100644 docs/material/partials/language/hr.html create mode 100644 docs/material/partials/language/hu.html create mode 100644 docs/material/partials/language/id.html create mode 100644 docs/material/partials/language/it.html create mode 100644 docs/material/partials/language/ja.html create mode 100644 docs/material/partials/language/kr.html create mode 100644 docs/material/partials/language/my.html create mode 100644 docs/material/partials/language/nl.html create mode 100644 docs/material/partials/language/nn.html create mode 100644 docs/material/partials/language/no.html create mode 100644 docs/material/partials/language/pl.html create mode 100644 docs/material/partials/language/pt.html create mode 100644 docs/material/partials/language/ro.html create mode 100644 docs/material/partials/language/ru.html create mode 100644 docs/material/partials/language/sh.html create mode 100644 docs/material/partials/language/si.html create mode 100644 docs/material/partials/language/sk.html create mode 100644 docs/material/partials/language/sr.html create mode 100644 docs/material/partials/language/sv.html create mode 100644 docs/material/partials/language/th.html create mode 100644 docs/material/partials/language/tr.html create mode 100644 docs/material/partials/language/uk.html create mode 100644 docs/material/partials/language/vi.html create mode 100644 docs/material/partials/language/zh-Hant.html create mode 100644 docs/material/partials/language/zh-TW.html create mode 100644 docs/material/partials/language/zh.html create mode 100644 docs/material/partials/logo.html create mode 100644 docs/material/partials/nav-item.html create mode 100644 docs/material/partials/nav.html create mode 100644 docs/material/partials/palette.html create mode 100644 docs/material/partials/search.html create mode 100644 docs/material/partials/social.html create mode 100644 docs/material/partials/source-date.html create mode 100644 docs/material/partials/source-link.html create mode 100644 docs/material/partials/source.html create mode 100644 docs/material/partials/tabs-item.html create mode 100644 docs/material/partials/tabs.html create mode 100644 docs/material/partials/toc-item.html create mode 100644 docs/material/partials/toc.html diff --git a/docs/en_us/index.md b/docs/en_us/index.md new file mode 100644 index 000000000..ad49ab437 --- /dev/null +++ b/docs/en_us/index.md @@ -0,0 +1,4 @@ +--- +template: overrides/home.html +title: Material for MkDocs +--- diff --git a/docs/material/.icons/fontawesome/LICENSE.txt b/docs/material/.icons/fontawesome/LICENSE.txt new file mode 100644 index 000000000..f31bef92b --- /dev/null +++ b/docs/material/.icons/fontawesome/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license/free. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OFL license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/docs/material/.icons/fontawesome/brands/500px.svg b/docs/material/.icons/fontawesome/brands/500px.svg new file mode 100644 index 000000000..d872f24a0 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/500px.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/accessible-icon.svg b/docs/material/.icons/fontawesome/brands/accessible-icon.svg new file mode 100644 index 000000000..725b9028c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/accessible-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/accusoft.svg b/docs/material/.icons/fontawesome/brands/accusoft.svg new file mode 100644 index 000000000..7be2e628e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/accusoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/acquisitions-incorporated.svg b/docs/material/.icons/fontawesome/brands/acquisitions-incorporated.svg new file mode 100644 index 000000000..0a2254856 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/acquisitions-incorporated.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/adn.svg b/docs/material/.icons/fontawesome/brands/adn.svg new file mode 100644 index 000000000..ee285395f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/adn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/adobe.svg b/docs/material/.icons/fontawesome/brands/adobe.svg new file mode 100644 index 000000000..27030e6bd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/adobe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/adversal.svg b/docs/material/.icons/fontawesome/brands/adversal.svg new file mode 100644 index 000000000..125dd5019 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/adversal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/affiliatetheme.svg b/docs/material/.icons/fontawesome/brands/affiliatetheme.svg new file mode 100644 index 000000000..d5dd4e8e8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/affiliatetheme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/airbnb.svg b/docs/material/.icons/fontawesome/brands/airbnb.svg new file mode 100644 index 000000000..b3ca9d6b9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/airbnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/algolia.svg b/docs/material/.icons/fontawesome/brands/algolia.svg new file mode 100644 index 000000000..979d7cd71 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/algolia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/alipay.svg b/docs/material/.icons/fontawesome/brands/alipay.svg new file mode 100644 index 000000000..de341fbc5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/alipay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/amazon-pay.svg b/docs/material/.icons/fontawesome/brands/amazon-pay.svg new file mode 100644 index 000000000..5c90ad763 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/amazon-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/amazon.svg b/docs/material/.icons/fontawesome/brands/amazon.svg new file mode 100644 index 000000000..642fdb2d9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/amilia.svg b/docs/material/.icons/fontawesome/brands/amilia.svg new file mode 100644 index 000000000..48c693c97 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/amilia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/android.svg b/docs/material/.icons/fontawesome/brands/android.svg new file mode 100644 index 000000000..da3cfeb7e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/angellist.svg b/docs/material/.icons/fontawesome/brands/angellist.svg new file mode 100644 index 000000000..422885c2f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/angellist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/angrycreative.svg b/docs/material/.icons/fontawesome/brands/angrycreative.svg new file mode 100644 index 000000000..b2624691c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/angrycreative.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/angular.svg b/docs/material/.icons/fontawesome/brands/angular.svg new file mode 100644 index 000000000..9948fb757 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/app-store-ios.svg b/docs/material/.icons/fontawesome/brands/app-store-ios.svg new file mode 100644 index 000000000..12fc84843 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/app-store-ios.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/app-store.svg b/docs/material/.icons/fontawesome/brands/app-store.svg new file mode 100644 index 000000000..52e04a60e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/app-store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/apper.svg b/docs/material/.icons/fontawesome/brands/apper.svg new file mode 100644 index 000000000..f986f504a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/apper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/apple-pay.svg b/docs/material/.icons/fontawesome/brands/apple-pay.svg new file mode 100644 index 000000000..5d3145ada --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/apple.svg b/docs/material/.icons/fontawesome/brands/apple.svg new file mode 100644 index 000000000..e24ed63ea --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/artstation.svg b/docs/material/.icons/fontawesome/brands/artstation.svg new file mode 100644 index 000000000..cc08b02c9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/artstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/asymmetrik.svg b/docs/material/.icons/fontawesome/brands/asymmetrik.svg new file mode 100644 index 000000000..ef4729624 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/asymmetrik.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/atlassian.svg b/docs/material/.icons/fontawesome/brands/atlassian.svg new file mode 100644 index 000000000..c07561e7d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/atlassian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/audible.svg b/docs/material/.icons/fontawesome/brands/audible.svg new file mode 100644 index 000000000..7ee5aef8a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/audible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/autoprefixer.svg b/docs/material/.icons/fontawesome/brands/autoprefixer.svg new file mode 100644 index 000000000..912dee1b3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/autoprefixer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/avianex.svg b/docs/material/.icons/fontawesome/brands/avianex.svg new file mode 100644 index 000000000..409530967 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/avianex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/aviato.svg b/docs/material/.icons/fontawesome/brands/aviato.svg new file mode 100644 index 000000000..064e04449 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/aviato.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/aws.svg b/docs/material/.icons/fontawesome/brands/aws.svg new file mode 100644 index 000000000..ea1def3f8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/aws.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bandcamp.svg b/docs/material/.icons/fontawesome/brands/bandcamp.svg new file mode 100644 index 000000000..f1e1c204f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bandcamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/battle-net.svg b/docs/material/.icons/fontawesome/brands/battle-net.svg new file mode 100644 index 000000000..a4716898c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/battle-net.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/behance-square.svg b/docs/material/.icons/fontawesome/brands/behance-square.svg new file mode 100644 index 000000000..2d9e08bfc --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/behance-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/behance.svg b/docs/material/.icons/fontawesome/brands/behance.svg new file mode 100644 index 000000000..73e946774 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bimobject.svg b/docs/material/.icons/fontawesome/brands/bimobject.svg new file mode 100644 index 000000000..b708fdea9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bimobject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bitbucket.svg b/docs/material/.icons/fontawesome/brands/bitbucket.svg new file mode 100644 index 000000000..2f70ac0d6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bitbucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bitcoin.svg b/docs/material/.icons/fontawesome/brands/bitcoin.svg new file mode 100644 index 000000000..3a0e098d0 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bity.svg b/docs/material/.icons/fontawesome/brands/bity.svg new file mode 100644 index 000000000..cf6c63d9b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/black-tie.svg b/docs/material/.icons/fontawesome/brands/black-tie.svg new file mode 100644 index 000000000..36f3eb79e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/black-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/blackberry.svg b/docs/material/.icons/fontawesome/brands/blackberry.svg new file mode 100644 index 000000000..d83088658 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/blackberry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/blogger-b.svg b/docs/material/.icons/fontawesome/brands/blogger-b.svg new file mode 100644 index 000000000..c313b5212 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/blogger-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/blogger.svg b/docs/material/.icons/fontawesome/brands/blogger.svg new file mode 100644 index 000000000..7707557e4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bluetooth-b.svg b/docs/material/.icons/fontawesome/brands/bluetooth-b.svg new file mode 100644 index 000000000..d6e3a5e12 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bluetooth-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bluetooth.svg b/docs/material/.icons/fontawesome/brands/bluetooth.svg new file mode 100644 index 000000000..aad75a381 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/bootstrap.svg b/docs/material/.icons/fontawesome/brands/bootstrap.svg new file mode 100644 index 000000000..6d0ed4f57 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/bootstrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/btc.svg b/docs/material/.icons/fontawesome/brands/btc.svg new file mode 100644 index 000000000..45e65158d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/buffer.svg b/docs/material/.icons/fontawesome/brands/buffer.svg new file mode 100644 index 000000000..91cfe03f4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/buffer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/buromobelexperte.svg b/docs/material/.icons/fontawesome/brands/buromobelexperte.svg new file mode 100644 index 000000000..f419c9091 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/buromobelexperte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/buy-n-large.svg b/docs/material/.icons/fontawesome/brands/buy-n-large.svg new file mode 100644 index 000000000..4be604df9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/buy-n-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/buysellads.svg b/docs/material/.icons/fontawesome/brands/buysellads.svg new file mode 100644 index 000000000..5bb292db5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/buysellads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/canadian-maple-leaf.svg b/docs/material/.icons/fontawesome/brands/canadian-maple-leaf.svg new file mode 100644 index 000000000..ca96f7c46 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/canadian-maple-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-amazon-pay.svg b/docs/material/.icons/fontawesome/brands/cc-amazon-pay.svg new file mode 100644 index 000000000..7a9866914 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-amazon-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-amex.svg b/docs/material/.icons/fontawesome/brands/cc-amex.svg new file mode 100644 index 000000000..7d4351542 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-amex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-apple-pay.svg b/docs/material/.icons/fontawesome/brands/cc-apple-pay.svg new file mode 100644 index 000000000..a8a56ed58 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-diners-club.svg b/docs/material/.icons/fontawesome/brands/cc-diners-club.svg new file mode 100644 index 000000000..7ade2bb53 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-diners-club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-discover.svg b/docs/material/.icons/fontawesome/brands/cc-discover.svg new file mode 100644 index 000000000..2b780e4e4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-discover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-jcb.svg b/docs/material/.icons/fontawesome/brands/cc-jcb.svg new file mode 100644 index 000000000..8671a8844 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-jcb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-mastercard.svg b/docs/material/.icons/fontawesome/brands/cc-mastercard.svg new file mode 100644 index 000000000..af0753ea1 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-mastercard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-paypal.svg b/docs/material/.icons/fontawesome/brands/cc-paypal.svg new file mode 100644 index 000000000..6ca920055 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-stripe.svg b/docs/material/.icons/fontawesome/brands/cc-stripe.svg new file mode 100644 index 000000000..5cb2a8d21 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cc-visa.svg b/docs/material/.icons/fontawesome/brands/cc-visa.svg new file mode 100644 index 000000000..b5cb29a20 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cc-visa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/centercode.svg b/docs/material/.icons/fontawesome/brands/centercode.svg new file mode 100644 index 000000000..440b9c83a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/centercode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/centos.svg b/docs/material/.icons/fontawesome/brands/centos.svg new file mode 100644 index 000000000..72b5f2031 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/centos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/chrome.svg b/docs/material/.icons/fontawesome/brands/chrome.svg new file mode 100644 index 000000000..5ea90d91b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/chromecast.svg b/docs/material/.icons/fontawesome/brands/chromecast.svg new file mode 100644 index 000000000..bb04abbd5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/chromecast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cloudscale.svg b/docs/material/.icons/fontawesome/brands/cloudscale.svg new file mode 100644 index 000000000..9ad2a4055 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cloudscale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cloudsmith.svg b/docs/material/.icons/fontawesome/brands/cloudsmith.svg new file mode 100644 index 000000000..bd2d47041 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cloudsmith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cloudversify.svg b/docs/material/.icons/fontawesome/brands/cloudversify.svg new file mode 100644 index 000000000..4ed2518d1 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cloudversify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/codepen.svg b/docs/material/.icons/fontawesome/brands/codepen.svg new file mode 100644 index 000000000..325853708 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/codiepie.svg b/docs/material/.icons/fontawesome/brands/codiepie.svg new file mode 100644 index 000000000..dc7579c07 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/codiepie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/confluence.svg b/docs/material/.icons/fontawesome/brands/confluence.svg new file mode 100644 index 000000000..ffeb92397 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/confluence.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/connectdevelop.svg b/docs/material/.icons/fontawesome/brands/connectdevelop.svg new file mode 100644 index 000000000..d665edc33 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/connectdevelop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/contao.svg b/docs/material/.icons/fontawesome/brands/contao.svg new file mode 100644 index 000000000..a08f60aff --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/contao.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cotton-bureau.svg b/docs/material/.icons/fontawesome/brands/cotton-bureau.svg new file mode 100644 index 000000000..e2a4ad966 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cotton-bureau.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cpanel.svg b/docs/material/.icons/fontawesome/brands/cpanel.svg new file mode 100644 index 000000000..c95511c16 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cpanel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-by.svg b/docs/material/.icons/fontawesome/brands/creative-commons-by.svg new file mode 100644 index 000000000..5432986b9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-by.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-nc-eu.svg b/docs/material/.icons/fontawesome/brands/creative-commons-nc-eu.svg new file mode 100644 index 000000000..539c7d603 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-nc-eu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-nc-jp.svg b/docs/material/.icons/fontawesome/brands/creative-commons-nc-jp.svg new file mode 100644 index 000000000..a8d89b19e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-nc-jp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-nc.svg b/docs/material/.icons/fontawesome/brands/creative-commons-nc.svg new file mode 100644 index 000000000..abb1577ad --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-nc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-nd.svg b/docs/material/.icons/fontawesome/brands/creative-commons-nd.svg new file mode 100644 index 000000000..07b5fde4b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-nd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-pd-alt.svg b/docs/material/.icons/fontawesome/brands/creative-commons-pd-alt.svg new file mode 100644 index 000000000..d36218423 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-pd-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-pd.svg b/docs/material/.icons/fontawesome/brands/creative-commons-pd.svg new file mode 100644 index 000000000..884fbd02a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-pd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-remix.svg b/docs/material/.icons/fontawesome/brands/creative-commons-remix.svg new file mode 100644 index 000000000..70ced8946 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-remix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-sa.svg b/docs/material/.icons/fontawesome/brands/creative-commons-sa.svg new file mode 100644 index 000000000..c9f41f8f6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-sa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-sampling-plus.svg b/docs/material/.icons/fontawesome/brands/creative-commons-sampling-plus.svg new file mode 100644 index 000000000..c06a1cd51 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-sampling-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-sampling.svg b/docs/material/.icons/fontawesome/brands/creative-commons-sampling.svg new file mode 100644 index 000000000..40a20c652 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-sampling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-share.svg b/docs/material/.icons/fontawesome/brands/creative-commons-share.svg new file mode 100644 index 000000000..afef40ad4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons-zero.svg b/docs/material/.icons/fontawesome/brands/creative-commons-zero.svg new file mode 100644 index 000000000..a67d78980 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons-zero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/creative-commons.svg b/docs/material/.icons/fontawesome/brands/creative-commons.svg new file mode 100644 index 000000000..e24a68f65 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/creative-commons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/critical-role.svg b/docs/material/.icons/fontawesome/brands/critical-role.svg new file mode 100644 index 000000000..cbfc80833 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/critical-role.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/css3-alt.svg b/docs/material/.icons/fontawesome/brands/css3-alt.svg new file mode 100644 index 000000000..544362a13 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/css3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/css3.svg b/docs/material/.icons/fontawesome/brands/css3.svg new file mode 100644 index 000000000..5ea43eda3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/cuttlefish.svg b/docs/material/.icons/fontawesome/brands/cuttlefish.svg new file mode 100644 index 000000000..92f20d8ea --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/cuttlefish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/d-and-d-beyond.svg b/docs/material/.icons/fontawesome/brands/d-and-d-beyond.svg new file mode 100644 index 000000000..195c6e9b5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/d-and-d-beyond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/d-and-d.svg b/docs/material/.icons/fontawesome/brands/d-and-d.svg new file mode 100644 index 000000000..9411ae036 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/d-and-d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dailymotion.svg b/docs/material/.icons/fontawesome/brands/dailymotion.svg new file mode 100644 index 000000000..45ec4d277 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dailymotion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dashcube.svg b/docs/material/.icons/fontawesome/brands/dashcube.svg new file mode 100644 index 000000000..c31239b23 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dashcube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/delicious.svg b/docs/material/.icons/fontawesome/brands/delicious.svg new file mode 100644 index 000000000..f20775421 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/delicious.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/deploydog.svg b/docs/material/.icons/fontawesome/brands/deploydog.svg new file mode 100644 index 000000000..c9764e801 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/deploydog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/deskpro.svg b/docs/material/.icons/fontawesome/brands/deskpro.svg new file mode 100644 index 000000000..48ad26998 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/deskpro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dev.svg b/docs/material/.icons/fontawesome/brands/dev.svg new file mode 100644 index 000000000..399017f56 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dev.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/deviantart.svg b/docs/material/.icons/fontawesome/brands/deviantart.svg new file mode 100644 index 000000000..017804bc7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/deviantart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dhl.svg b/docs/material/.icons/fontawesome/brands/dhl.svg new file mode 100644 index 000000000..cc62f97d4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dhl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/diaspora.svg b/docs/material/.icons/fontawesome/brands/diaspora.svg new file mode 100644 index 000000000..edd3ace0d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/diaspora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/digg.svg b/docs/material/.icons/fontawesome/brands/digg.svg new file mode 100644 index 000000000..9c580fb0e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/digg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/digital-ocean.svg b/docs/material/.icons/fontawesome/brands/digital-ocean.svg new file mode 100644 index 000000000..861def5bb --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/digital-ocean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/discord.svg b/docs/material/.icons/fontawesome/brands/discord.svg new file mode 100644 index 000000000..650fe8f01 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/discourse.svg b/docs/material/.icons/fontawesome/brands/discourse.svg new file mode 100644 index 000000000..874039759 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/discourse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dochub.svg b/docs/material/.icons/fontawesome/brands/dochub.svg new file mode 100644 index 000000000..c336088d4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dochub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/docker.svg b/docs/material/.icons/fontawesome/brands/docker.svg new file mode 100644 index 000000000..c4b131982 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/draft2digital.svg b/docs/material/.icons/fontawesome/brands/draft2digital.svg new file mode 100644 index 000000000..37207200f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/draft2digital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dribbble-square.svg b/docs/material/.icons/fontawesome/brands/dribbble-square.svg new file mode 100644 index 000000000..147f5aee6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dribbble-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dribbble.svg b/docs/material/.icons/fontawesome/brands/dribbble.svg new file mode 100644 index 000000000..165c90aff --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dropbox.svg b/docs/material/.icons/fontawesome/brands/dropbox.svg new file mode 100644 index 000000000..cbc4787b7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/drupal.svg b/docs/material/.icons/fontawesome/brands/drupal.svg new file mode 100644 index 000000000..09a90aeeb --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/drupal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/dyalog.svg b/docs/material/.icons/fontawesome/brands/dyalog.svg new file mode 100644 index 000000000..40a59c736 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/dyalog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/earlybirds.svg b/docs/material/.icons/fontawesome/brands/earlybirds.svg new file mode 100644 index 000000000..42c9f51f1 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/earlybirds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ebay.svg b/docs/material/.icons/fontawesome/brands/ebay.svg new file mode 100644 index 000000000..fe79f933f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ebay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/edge.svg b/docs/material/.icons/fontawesome/brands/edge.svg new file mode 100644 index 000000000..f4a91ecfa --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/elementor.svg b/docs/material/.icons/fontawesome/brands/elementor.svg new file mode 100644 index 000000000..da050213b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/elementor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ello.svg b/docs/material/.icons/fontawesome/brands/ello.svg new file mode 100644 index 000000000..4cc8b0754 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ember.svg b/docs/material/.icons/fontawesome/brands/ember.svg new file mode 100644 index 000000000..69b717614 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ember.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/empire.svg b/docs/material/.icons/fontawesome/brands/empire.svg new file mode 100644 index 000000000..b000c8e07 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/empire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/envira.svg b/docs/material/.icons/fontawesome/brands/envira.svg new file mode 100644 index 000000000..92aee1438 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/envira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/erlang.svg b/docs/material/.icons/fontawesome/brands/erlang.svg new file mode 100644 index 000000000..01e29ac92 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/erlang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ethereum.svg b/docs/material/.icons/fontawesome/brands/ethereum.svg new file mode 100644 index 000000000..fce0031ad --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ethereum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/etsy.svg b/docs/material/.icons/fontawesome/brands/etsy.svg new file mode 100644 index 000000000..1dc363414 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/etsy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/evernote.svg b/docs/material/.icons/fontawesome/brands/evernote.svg new file mode 100644 index 000000000..f1cc8cb98 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/evernote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/expeditedssl.svg b/docs/material/.icons/fontawesome/brands/expeditedssl.svg new file mode 100644 index 000000000..a5c29368c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/expeditedssl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/facebook-f.svg b/docs/material/.icons/fontawesome/brands/facebook-f.svg new file mode 100644 index 000000000..40d4f1c26 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/facebook-messenger.svg b/docs/material/.icons/fontawesome/brands/facebook-messenger.svg new file mode 100644 index 000000000..309d71060 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/facebook-square.svg b/docs/material/.icons/fontawesome/brands/facebook-square.svg new file mode 100644 index 000000000..0de47eb31 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/facebook-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/facebook.svg b/docs/material/.icons/fontawesome/brands/facebook.svg new file mode 100644 index 000000000..6e23a941a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fantasy-flight-games.svg b/docs/material/.icons/fontawesome/brands/fantasy-flight-games.svg new file mode 100644 index 000000000..23a640169 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fantasy-flight-games.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fedex.svg b/docs/material/.icons/fontawesome/brands/fedex.svg new file mode 100644 index 000000000..bcea5e544 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fedex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fedora.svg b/docs/material/.icons/fontawesome/brands/fedora.svg new file mode 100644 index 000000000..798af6e0b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fedora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/figma.svg b/docs/material/.icons/fontawesome/brands/figma.svg new file mode 100644 index 000000000..b46cf0eaf --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/firefox-browser.svg b/docs/material/.icons/fontawesome/brands/firefox-browser.svg new file mode 100644 index 000000000..4f90a53c9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/firefox-browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/firefox.svg b/docs/material/.icons/fontawesome/brands/firefox.svg new file mode 100644 index 000000000..a01c4e567 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/firefox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/first-order-alt.svg b/docs/material/.icons/fontawesome/brands/first-order-alt.svg new file mode 100644 index 000000000..1279395bd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/first-order-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/first-order.svg b/docs/material/.icons/fontawesome/brands/first-order.svg new file mode 100644 index 000000000..527e4a5a9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/first-order.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/firstdraft.svg b/docs/material/.icons/fontawesome/brands/firstdraft.svg new file mode 100644 index 000000000..c2bcd3124 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/firstdraft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/flickr.svg b/docs/material/.icons/fontawesome/brands/flickr.svg new file mode 100644 index 000000000..15dcfc6c6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/flickr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/flipboard.svg b/docs/material/.icons/fontawesome/brands/flipboard.svg new file mode 100644 index 000000000..866f82fdd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/flipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fly.svg b/docs/material/.icons/fontawesome/brands/fly.svg new file mode 100644 index 000000000..69ee5c7b7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/font-awesome-alt.svg b/docs/material/.icons/fontawesome/brands/font-awesome-alt.svg new file mode 100644 index 000000000..f80146ae9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/font-awesome-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/font-awesome-flag.svg b/docs/material/.icons/fontawesome/brands/font-awesome-flag.svg new file mode 100644 index 000000000..9f0b7a480 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/font-awesome-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/font-awesome-logo-full.svg b/docs/material/.icons/fontawesome/brands/font-awesome-logo-full.svg new file mode 100644 index 000000000..06b75a4d0 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/font-awesome-logo-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/font-awesome.svg b/docs/material/.icons/fontawesome/brands/font-awesome.svg new file mode 100644 index 000000000..8c1d44528 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/font-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fonticons-fi.svg b/docs/material/.icons/fontawesome/brands/fonticons-fi.svg new file mode 100644 index 000000000..e654422ce --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fonticons-fi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fonticons.svg b/docs/material/.icons/fontawesome/brands/fonticons.svg new file mode 100644 index 000000000..b9e2de549 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fonticons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fort-awesome-alt.svg b/docs/material/.icons/fontawesome/brands/fort-awesome-alt.svg new file mode 100644 index 000000000..bc6d0c24e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fort-awesome-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fort-awesome.svg b/docs/material/.icons/fontawesome/brands/fort-awesome.svg new file mode 100644 index 000000000..a763d437b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fort-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/forumbee.svg b/docs/material/.icons/fontawesome/brands/forumbee.svg new file mode 100644 index 000000000..d31d64118 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/forumbee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/foursquare.svg b/docs/material/.icons/fontawesome/brands/foursquare.svg new file mode 100644 index 000000000..130fa9b39 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/foursquare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/free-code-camp.svg b/docs/material/.icons/fontawesome/brands/free-code-camp.svg new file mode 100644 index 000000000..d4ec80f7c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/free-code-camp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/freebsd.svg b/docs/material/.icons/fontawesome/brands/freebsd.svg new file mode 100644 index 000000000..98c790fa0 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/freebsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/fulcrum.svg b/docs/material/.icons/fontawesome/brands/fulcrum.svg new file mode 100644 index 000000000..adf033c97 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/fulcrum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/galactic-republic.svg b/docs/material/.icons/fontawesome/brands/galactic-republic.svg new file mode 100644 index 000000000..79def97be --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/galactic-republic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/galactic-senate.svg b/docs/material/.icons/fontawesome/brands/galactic-senate.svg new file mode 100644 index 000000000..87e875016 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/galactic-senate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/get-pocket.svg b/docs/material/.icons/fontawesome/brands/get-pocket.svg new file mode 100644 index 000000000..f6046088f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/get-pocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gg-circle.svg b/docs/material/.icons/fontawesome/brands/gg-circle.svg new file mode 100644 index 000000000..7ff26dd65 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gg-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gg.svg b/docs/material/.icons/fontawesome/brands/gg.svg new file mode 100644 index 000000000..cace4961a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/git-alt.svg b/docs/material/.icons/fontawesome/brands/git-alt.svg new file mode 100644 index 000000000..36d10c0b2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/git-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/git-square.svg b/docs/material/.icons/fontawesome/brands/git-square.svg new file mode 100644 index 000000000..225316432 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/git-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/git.svg b/docs/material/.icons/fontawesome/brands/git.svg new file mode 100644 index 000000000..40571b1f2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/git.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/github-alt.svg b/docs/material/.icons/fontawesome/brands/github-alt.svg new file mode 100644 index 000000000..43d2da5d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/github-square.svg b/docs/material/.icons/fontawesome/brands/github-square.svg new file mode 100644 index 000000000..a235d2f4e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/github-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/github.svg b/docs/material/.icons/fontawesome/brands/github.svg new file mode 100644 index 000000000..53bd7b2d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gitkraken.svg b/docs/material/.icons/fontawesome/brands/gitkraken.svg new file mode 100644 index 000000000..a3bc20fc3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gitkraken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gitlab.svg b/docs/material/.icons/fontawesome/brands/gitlab.svg new file mode 100644 index 000000000..ae4efce6b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gitter.svg b/docs/material/.icons/fontawesome/brands/gitter.svg new file mode 100644 index 000000000..6aaafd9a4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/glide-g.svg b/docs/material/.icons/fontawesome/brands/glide-g.svg new file mode 100644 index 000000000..7517405f6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/glide-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/glide.svg b/docs/material/.icons/fontawesome/brands/glide.svg new file mode 100644 index 000000000..0fbdca4b3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/glide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gofore.svg b/docs/material/.icons/fontawesome/brands/gofore.svg new file mode 100644 index 000000000..792de75e7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gofore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/goodreads-g.svg b/docs/material/.icons/fontawesome/brands/goodreads-g.svg new file mode 100644 index 000000000..b35546631 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/goodreads-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/goodreads.svg b/docs/material/.icons/fontawesome/brands/goodreads.svg new file mode 100644 index 000000000..040163af9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/goodreads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/google-drive.svg b/docs/material/.icons/fontawesome/brands/google-drive.svg new file mode 100644 index 000000000..cd8dd52a5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/google-play.svg b/docs/material/.icons/fontawesome/brands/google-play.svg new file mode 100644 index 000000000..82cffd530 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/google-plus-g.svg b/docs/material/.icons/fontawesome/brands/google-plus-g.svg new file mode 100644 index 000000000..c4587db39 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/google-plus-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/google-plus-square.svg b/docs/material/.icons/fontawesome/brands/google-plus-square.svg new file mode 100644 index 000000000..f18979c9f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/google-plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/google-plus.svg b/docs/material/.icons/fontawesome/brands/google-plus.svg new file mode 100644 index 000000000..46e143e6b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/google-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/google-wallet.svg b/docs/material/.icons/fontawesome/brands/google-wallet.svg new file mode 100644 index 000000000..009afb61c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/google-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/google.svg b/docs/material/.icons/fontawesome/brands/google.svg new file mode 100644 index 000000000..014b5ceb9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gratipay.svg b/docs/material/.icons/fontawesome/brands/gratipay.svg new file mode 100644 index 000000000..a35d8b197 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gratipay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/grav.svg b/docs/material/.icons/fontawesome/brands/grav.svg new file mode 100644 index 000000000..e12bbf51e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/grav.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gripfire.svg b/docs/material/.icons/fontawesome/brands/gripfire.svg new file mode 100644 index 000000000..561aa2d71 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gripfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/grunt.svg b/docs/material/.icons/fontawesome/brands/grunt.svg new file mode 100644 index 000000000..a36fab819 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/grunt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/gulp.svg b/docs/material/.icons/fontawesome/brands/gulp.svg new file mode 100644 index 000000000..0bb37a270 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/gulp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hacker-news-square.svg b/docs/material/.icons/fontawesome/brands/hacker-news-square.svg new file mode 100644 index 000000000..1bb8cab45 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hacker-news-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hacker-news.svg b/docs/material/.icons/fontawesome/brands/hacker-news.svg new file mode 100644 index 000000000..0de37e65c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hacker-news.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hackerrank.svg b/docs/material/.icons/fontawesome/brands/hackerrank.svg new file mode 100644 index 000000000..d2a44d1b2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hackerrank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hips.svg b/docs/material/.icons/fontawesome/brands/hips.svg new file mode 100644 index 000000000..7eb9cdf4c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hips.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hire-a-helper.svg b/docs/material/.icons/fontawesome/brands/hire-a-helper.svg new file mode 100644 index 000000000..5fdb39dc2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hire-a-helper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hooli.svg b/docs/material/.icons/fontawesome/brands/hooli.svg new file mode 100644 index 000000000..e4cf92983 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hooli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hornbill.svg b/docs/material/.icons/fontawesome/brands/hornbill.svg new file mode 100644 index 000000000..e147e879a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hornbill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hotjar.svg b/docs/material/.icons/fontawesome/brands/hotjar.svg new file mode 100644 index 000000000..7e4772964 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hotjar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/houzz.svg b/docs/material/.icons/fontawesome/brands/houzz.svg new file mode 100644 index 000000000..1ad90a213 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/houzz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/html5.svg b/docs/material/.icons/fontawesome/brands/html5.svg new file mode 100644 index 000000000..a06827da3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/hubspot.svg b/docs/material/.icons/fontawesome/brands/hubspot.svg new file mode 100644 index 000000000..03f8f4e0c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/hubspot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ideal.svg b/docs/material/.icons/fontawesome/brands/ideal.svg new file mode 100644 index 000000000..11b81baf9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ideal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/imdb.svg b/docs/material/.icons/fontawesome/brands/imdb.svg new file mode 100644 index 000000000..a4d5eb55c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/imdb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/instagram-square.svg b/docs/material/.icons/fontawesome/brands/instagram-square.svg new file mode 100644 index 000000000..4338164bd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/instagram-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/instagram.svg b/docs/material/.icons/fontawesome/brands/instagram.svg new file mode 100644 index 000000000..89c89b76f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/intercom.svg b/docs/material/.icons/fontawesome/brands/intercom.svg new file mode 100644 index 000000000..a36742b72 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/intercom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/internet-explorer.svg b/docs/material/.icons/fontawesome/brands/internet-explorer.svg new file mode 100644 index 000000000..36173c0ba --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/internet-explorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/invision.svg b/docs/material/.icons/fontawesome/brands/invision.svg new file mode 100644 index 000000000..3af871b13 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/invision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ioxhost.svg b/docs/material/.icons/fontawesome/brands/ioxhost.svg new file mode 100644 index 000000000..64f31af27 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ioxhost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/itch-io.svg b/docs/material/.icons/fontawesome/brands/itch-io.svg new file mode 100644 index 000000000..ee2e014d7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/itch-io.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/itunes-note.svg b/docs/material/.icons/fontawesome/brands/itunes-note.svg new file mode 100644 index 000000000..bb46e7024 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/itunes-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/itunes.svg b/docs/material/.icons/fontawesome/brands/itunes.svg new file mode 100644 index 000000000..32736ae83 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/itunes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/java.svg b/docs/material/.icons/fontawesome/brands/java.svg new file mode 100644 index 000000000..d3dd63ad2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/java.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/jedi-order.svg b/docs/material/.icons/fontawesome/brands/jedi-order.svg new file mode 100644 index 000000000..990461a67 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/jedi-order.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/jenkins.svg b/docs/material/.icons/fontawesome/brands/jenkins.svg new file mode 100644 index 000000000..4c2251f1b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/jenkins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/jira.svg b/docs/material/.icons/fontawesome/brands/jira.svg new file mode 100644 index 000000000..467d3f6d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/jira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/joget.svg b/docs/material/.icons/fontawesome/brands/joget.svg new file mode 100644 index 000000000..1007ec648 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/joget.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/joomla.svg b/docs/material/.icons/fontawesome/brands/joomla.svg new file mode 100644 index 000000000..a5654303b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/joomla.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/js-square.svg b/docs/material/.icons/fontawesome/brands/js-square.svg new file mode 100644 index 000000000..389af1c14 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/js-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/js.svg b/docs/material/.icons/fontawesome/brands/js.svg new file mode 100644 index 000000000..1bf21b891 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/jsfiddle.svg b/docs/material/.icons/fontawesome/brands/jsfiddle.svg new file mode 100644 index 000000000..2fb27ee36 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/jsfiddle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/kaggle.svg b/docs/material/.icons/fontawesome/brands/kaggle.svg new file mode 100644 index 000000000..b93394a0f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/kaggle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/keybase.svg b/docs/material/.icons/fontawesome/brands/keybase.svg new file mode 100644 index 000000000..5968b2fd9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/keybase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/keycdn.svg b/docs/material/.icons/fontawesome/brands/keycdn.svg new file mode 100644 index 000000000..da19aee02 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/keycdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/kickstarter-k.svg b/docs/material/.icons/fontawesome/brands/kickstarter-k.svg new file mode 100644 index 000000000..4ad8ad2cb --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/kickstarter-k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/kickstarter.svg b/docs/material/.icons/fontawesome/brands/kickstarter.svg new file mode 100644 index 000000000..c765b1b40 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/kickstarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/korvue.svg b/docs/material/.icons/fontawesome/brands/korvue.svg new file mode 100644 index 000000000..c9c44a81a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/korvue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/laravel.svg b/docs/material/.icons/fontawesome/brands/laravel.svg new file mode 100644 index 000000000..a98d06cbf --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/laravel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/lastfm-square.svg b/docs/material/.icons/fontawesome/brands/lastfm-square.svg new file mode 100644 index 000000000..e9febdb67 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/lastfm-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/lastfm.svg b/docs/material/.icons/fontawesome/brands/lastfm.svg new file mode 100644 index 000000000..7508067ab --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/lastfm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/leanpub.svg b/docs/material/.icons/fontawesome/brands/leanpub.svg new file mode 100644 index 000000000..994eca34d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/leanpub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/less.svg b/docs/material/.icons/fontawesome/brands/less.svg new file mode 100644 index 000000000..12a0ae2a9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/line.svg b/docs/material/.icons/fontawesome/brands/line.svg new file mode 100644 index 000000000..866abd878 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/linkedin-in.svg b/docs/material/.icons/fontawesome/brands/linkedin-in.svg new file mode 100644 index 000000000..226b6f9ab --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/linkedin-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/linkedin.svg b/docs/material/.icons/fontawesome/brands/linkedin.svg new file mode 100644 index 000000000..69d8e9731 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/linode.svg b/docs/material/.icons/fontawesome/brands/linode.svg new file mode 100644 index 000000000..502bdf796 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/linode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/linux.svg b/docs/material/.icons/fontawesome/brands/linux.svg new file mode 100644 index 000000000..ca9b9a851 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/lyft.svg b/docs/material/.icons/fontawesome/brands/lyft.svg new file mode 100644 index 000000000..4283ec51a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/lyft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/magento.svg b/docs/material/.icons/fontawesome/brands/magento.svg new file mode 100644 index 000000000..bdf6488e5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/magento.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mailchimp.svg b/docs/material/.icons/fontawesome/brands/mailchimp.svg new file mode 100644 index 000000000..c990e2865 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mailchimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mandalorian.svg b/docs/material/.icons/fontawesome/brands/mandalorian.svg new file mode 100644 index 000000000..0440e7dce --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mandalorian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/markdown.svg b/docs/material/.icons/fontawesome/brands/markdown.svg new file mode 100644 index 000000000..843d4801e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mastodon.svg b/docs/material/.icons/fontawesome/brands/mastodon.svg new file mode 100644 index 000000000..847e4b0ee --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/maxcdn.svg b/docs/material/.icons/fontawesome/brands/maxcdn.svg new file mode 100644 index 000000000..4f4b85da4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/maxcdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mdb.svg b/docs/material/.icons/fontawesome/brands/mdb.svg new file mode 100644 index 000000000..99e737b58 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mdb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/medapps.svg b/docs/material/.icons/fontawesome/brands/medapps.svg new file mode 100644 index 000000000..bb1a667aa --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/medapps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/medium-m.svg b/docs/material/.icons/fontawesome/brands/medium-m.svg new file mode 100644 index 000000000..8305fdacd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/medium-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/medium.svg b/docs/material/.icons/fontawesome/brands/medium.svg new file mode 100644 index 000000000..f370e1e19 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/medrt.svg b/docs/material/.icons/fontawesome/brands/medrt.svg new file mode 100644 index 000000000..377594460 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/medrt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/meetup.svg b/docs/material/.icons/fontawesome/brands/meetup.svg new file mode 100644 index 000000000..d387c4bdb --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/meetup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/megaport.svg b/docs/material/.icons/fontawesome/brands/megaport.svg new file mode 100644 index 000000000..17faf7ce3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/megaport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mendeley.svg b/docs/material/.icons/fontawesome/brands/mendeley.svg new file mode 100644 index 000000000..c0f76a8d7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mendeley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/microblog.svg b/docs/material/.icons/fontawesome/brands/microblog.svg new file mode 100644 index 000000000..d1c0570c5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/microblog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/microsoft.svg b/docs/material/.icons/fontawesome/brands/microsoft.svg new file mode 100644 index 000000000..ed8989554 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mix.svg b/docs/material/.icons/fontawesome/brands/mix.svg new file mode 100644 index 000000000..d131e2321 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mixcloud.svg b/docs/material/.icons/fontawesome/brands/mixcloud.svg new file mode 100644 index 000000000..094239bbf --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mixcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mixer.svg b/docs/material/.icons/fontawesome/brands/mixer.svg new file mode 100644 index 000000000..785ab3927 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mixer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/mizuni.svg b/docs/material/.icons/fontawesome/brands/mizuni.svg new file mode 100644 index 000000000..8cb8d9185 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/mizuni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/modx.svg b/docs/material/.icons/fontawesome/brands/modx.svg new file mode 100644 index 000000000..9cbc71fde --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/modx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/monero.svg b/docs/material/.icons/fontawesome/brands/monero.svg new file mode 100644 index 000000000..c4892b6c5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/monero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/napster.svg b/docs/material/.icons/fontawesome/brands/napster.svg new file mode 100644 index 000000000..866e31da6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/napster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/neos.svg b/docs/material/.icons/fontawesome/brands/neos.svg new file mode 100644 index 000000000..2bece211f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/neos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/nimblr.svg b/docs/material/.icons/fontawesome/brands/nimblr.svg new file mode 100644 index 000000000..add60b070 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/nimblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/node-js.svg b/docs/material/.icons/fontawesome/brands/node-js.svg new file mode 100644 index 000000000..c73f1a64a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/node-js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/node.svg b/docs/material/.icons/fontawesome/brands/node.svg new file mode 100644 index 000000000..3bdb5eacd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/node.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/npm.svg b/docs/material/.icons/fontawesome/brands/npm.svg new file mode 100644 index 000000000..ad643c367 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ns8.svg b/docs/material/.icons/fontawesome/brands/ns8.svg new file mode 100644 index 000000000..1f5e2fc94 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ns8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/nutritionix.svg b/docs/material/.icons/fontawesome/brands/nutritionix.svg new file mode 100644 index 000000000..19eb0e078 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/nutritionix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/odnoklassniki-square.svg b/docs/material/.icons/fontawesome/brands/odnoklassniki-square.svg new file mode 100644 index 000000000..e2793a94e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/odnoklassniki-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/odnoklassniki.svg b/docs/material/.icons/fontawesome/brands/odnoklassniki.svg new file mode 100644 index 000000000..f426fd364 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/odnoklassniki.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/old-republic.svg b/docs/material/.icons/fontawesome/brands/old-republic.svg new file mode 100644 index 000000000..f941d36c4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/old-republic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/opencart.svg b/docs/material/.icons/fontawesome/brands/opencart.svg new file mode 100644 index 000000000..2f1498a1a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/opencart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/openid.svg b/docs/material/.icons/fontawesome/brands/openid.svg new file mode 100644 index 000000000..d36573e03 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/openid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/opera.svg b/docs/material/.icons/fontawesome/brands/opera.svg new file mode 100644 index 000000000..4fd8cb920 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/optin-monster.svg b/docs/material/.icons/fontawesome/brands/optin-monster.svg new file mode 100644 index 000000000..cbf70491d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/optin-monster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/orcid.svg b/docs/material/.icons/fontawesome/brands/orcid.svg new file mode 100644 index 000000000..3b0a650fc --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/orcid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/osi.svg b/docs/material/.icons/fontawesome/brands/osi.svg new file mode 100644 index 000000000..7add2192f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/osi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/page4.svg b/docs/material/.icons/fontawesome/brands/page4.svg new file mode 100644 index 000000000..e0eda5d37 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/page4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pagelines.svg b/docs/material/.icons/fontawesome/brands/pagelines.svg new file mode 100644 index 000000000..6722988a8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pagelines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/palfed.svg b/docs/material/.icons/fontawesome/brands/palfed.svg new file mode 100644 index 000000000..5c8a4b2cb --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/palfed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/patreon.svg b/docs/material/.icons/fontawesome/brands/patreon.svg new file mode 100644 index 000000000..199095714 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/patreon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/paypal.svg b/docs/material/.icons/fontawesome/brands/paypal.svg new file mode 100644 index 000000000..ecf00b6d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/penny-arcade.svg b/docs/material/.icons/fontawesome/brands/penny-arcade.svg new file mode 100644 index 000000000..6644a5603 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/penny-arcade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/periscope.svg b/docs/material/.icons/fontawesome/brands/periscope.svg new file mode 100644 index 000000000..9f46704c3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/periscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/phabricator.svg b/docs/material/.icons/fontawesome/brands/phabricator.svg new file mode 100644 index 000000000..c51884753 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/phabricator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/phoenix-framework.svg b/docs/material/.icons/fontawesome/brands/phoenix-framework.svg new file mode 100644 index 000000000..4542fc2f9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/phoenix-framework.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/phoenix-squadron.svg b/docs/material/.icons/fontawesome/brands/phoenix-squadron.svg new file mode 100644 index 000000000..d07ac212b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/phoenix-squadron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/php.svg b/docs/material/.icons/fontawesome/brands/php.svg new file mode 100644 index 000000000..c2d86d48e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/php.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pied-piper-alt.svg b/docs/material/.icons/fontawesome/brands/pied-piper-alt.svg new file mode 100644 index 000000000..4e8c419bd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pied-piper-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pied-piper-hat.svg b/docs/material/.icons/fontawesome/brands/pied-piper-hat.svg new file mode 100644 index 000000000..2f93465dc --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pied-piper-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pied-piper-pp.svg b/docs/material/.icons/fontawesome/brands/pied-piper-pp.svg new file mode 100644 index 000000000..092ca730a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pied-piper-pp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pied-piper-square.svg b/docs/material/.icons/fontawesome/brands/pied-piper-square.svg new file mode 100644 index 000000000..d74fb980c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pied-piper-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pied-piper.svg b/docs/material/.icons/fontawesome/brands/pied-piper.svg new file mode 100644 index 000000000..484a20311 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pied-piper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pinterest-p.svg b/docs/material/.icons/fontawesome/brands/pinterest-p.svg new file mode 100644 index 000000000..311932af8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pinterest-p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pinterest-square.svg b/docs/material/.icons/fontawesome/brands/pinterest-square.svg new file mode 100644 index 000000000..7a502a796 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pinterest-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pinterest.svg b/docs/material/.icons/fontawesome/brands/pinterest.svg new file mode 100644 index 000000000..42c1f6455 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/playstation.svg b/docs/material/.icons/fontawesome/brands/playstation.svg new file mode 100644 index 000000000..3cd7fcad8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/playstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/product-hunt.svg b/docs/material/.icons/fontawesome/brands/product-hunt.svg new file mode 100644 index 000000000..847ac2c21 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/product-hunt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/pushed.svg b/docs/material/.icons/fontawesome/brands/pushed.svg new file mode 100644 index 000000000..f7e24f0ca --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/pushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/python.svg b/docs/material/.icons/fontawesome/brands/python.svg new file mode 100644 index 000000000..cf92eb977 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/qq.svg b/docs/material/.icons/fontawesome/brands/qq.svg new file mode 100644 index 000000000..541bdd570 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/qq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/quinscape.svg b/docs/material/.icons/fontawesome/brands/quinscape.svg new file mode 100644 index 000000000..dd9822dd2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/quinscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/quora.svg b/docs/material/.icons/fontawesome/brands/quora.svg new file mode 100644 index 000000000..601d815c7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/quora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/r-project.svg b/docs/material/.icons/fontawesome/brands/r-project.svg new file mode 100644 index 000000000..ef4076e43 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/r-project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/raspberry-pi.svg b/docs/material/.icons/fontawesome/brands/raspberry-pi.svg new file mode 100644 index 000000000..cce311f0c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/raspberry-pi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ravelry.svg b/docs/material/.icons/fontawesome/brands/ravelry.svg new file mode 100644 index 000000000..49d511c03 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ravelry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/react.svg b/docs/material/.icons/fontawesome/brands/react.svg new file mode 100644 index 000000000..e58841065 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/reacteurope.svg b/docs/material/.icons/fontawesome/brands/reacteurope.svg new file mode 100644 index 000000000..9bb1c8c50 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/reacteurope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/readme.svg b/docs/material/.icons/fontawesome/brands/readme.svg new file mode 100644 index 000000000..482c337eb --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/readme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/rebel.svg b/docs/material/.icons/fontawesome/brands/rebel.svg new file mode 100644 index 000000000..555b05339 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/rebel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/red-river.svg b/docs/material/.icons/fontawesome/brands/red-river.svg new file mode 100644 index 000000000..6e7044f2e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/red-river.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/reddit-alien.svg b/docs/material/.icons/fontawesome/brands/reddit-alien.svg new file mode 100644 index 000000000..85b98591e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/reddit-alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/reddit-square.svg b/docs/material/.icons/fontawesome/brands/reddit-square.svg new file mode 100644 index 000000000..e940a8517 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/reddit-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/reddit.svg b/docs/material/.icons/fontawesome/brands/reddit.svg new file mode 100644 index 000000000..262d0a7f8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/redhat.svg b/docs/material/.icons/fontawesome/brands/redhat.svg new file mode 100644 index 000000000..3d82184d1 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/redhat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/renren.svg b/docs/material/.icons/fontawesome/brands/renren.svg new file mode 100644 index 000000000..9706a7029 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/renren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/replyd.svg b/docs/material/.icons/fontawesome/brands/replyd.svg new file mode 100644 index 000000000..fe526f2b1 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/replyd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/researchgate.svg b/docs/material/.icons/fontawesome/brands/researchgate.svg new file mode 100644 index 000000000..db7149f4c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/researchgate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/resolving.svg b/docs/material/.icons/fontawesome/brands/resolving.svg new file mode 100644 index 000000000..339cbca04 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/resolving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/rev.svg b/docs/material/.icons/fontawesome/brands/rev.svg new file mode 100644 index 000000000..22d6264c3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/rev.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/rocketchat.svg b/docs/material/.icons/fontawesome/brands/rocketchat.svg new file mode 100644 index 000000000..c3a36d754 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/rocketchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/rockrms.svg b/docs/material/.icons/fontawesome/brands/rockrms.svg new file mode 100644 index 000000000..6c41d7905 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/rockrms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/safari.svg b/docs/material/.icons/fontawesome/brands/safari.svg new file mode 100644 index 000000000..98387b357 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/safari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/salesforce.svg b/docs/material/.icons/fontawesome/brands/salesforce.svg new file mode 100644 index 000000000..4ba079c7a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/salesforce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sass.svg b/docs/material/.icons/fontawesome/brands/sass.svg new file mode 100644 index 000000000..1f832a507 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/schlix.svg b/docs/material/.icons/fontawesome/brands/schlix.svg new file mode 100644 index 000000000..413e4ff70 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/schlix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/scribd.svg b/docs/material/.icons/fontawesome/brands/scribd.svg new file mode 100644 index 000000000..f1ecad19d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/scribd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/searchengin.svg b/docs/material/.icons/fontawesome/brands/searchengin.svg new file mode 100644 index 000000000..2ed72b1ac --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/searchengin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sellcast.svg b/docs/material/.icons/fontawesome/brands/sellcast.svg new file mode 100644 index 000000000..75b47f18f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sellcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sellsy.svg b/docs/material/.icons/fontawesome/brands/sellsy.svg new file mode 100644 index 000000000..6119fe585 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sellsy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/servicestack.svg b/docs/material/.icons/fontawesome/brands/servicestack.svg new file mode 100644 index 000000000..9f937eb4d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/servicestack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/shirtsinbulk.svg b/docs/material/.icons/fontawesome/brands/shirtsinbulk.svg new file mode 100644 index 000000000..4832095e3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/shirtsinbulk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/shopify.svg b/docs/material/.icons/fontawesome/brands/shopify.svg new file mode 100644 index 000000000..09533c950 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/shopify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/shopware.svg b/docs/material/.icons/fontawesome/brands/shopware.svg new file mode 100644 index 000000000..02529ecff --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/shopware.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/simplybuilt.svg b/docs/material/.icons/fontawesome/brands/simplybuilt.svg new file mode 100644 index 000000000..fbecfe964 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/simplybuilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sistrix.svg b/docs/material/.icons/fontawesome/brands/sistrix.svg new file mode 100644 index 000000000..e62cef615 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sistrix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sith.svg b/docs/material/.icons/fontawesome/brands/sith.svg new file mode 100644 index 000000000..98c96401a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sketch.svg b/docs/material/.icons/fontawesome/brands/sketch.svg new file mode 100644 index 000000000..fb22f3166 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sketch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/skyatlas.svg b/docs/material/.icons/fontawesome/brands/skyatlas.svg new file mode 100644 index 000000000..d2c8a3bf8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/skyatlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/skype.svg b/docs/material/.icons/fontawesome/brands/skype.svg new file mode 100644 index 000000000..538843cd6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/slack-hash.svg b/docs/material/.icons/fontawesome/brands/slack-hash.svg new file mode 100644 index 000000000..a465405ef --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/slack-hash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/slack.svg b/docs/material/.icons/fontawesome/brands/slack.svg new file mode 100644 index 000000000..ee293d671 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/slideshare.svg b/docs/material/.icons/fontawesome/brands/slideshare.svg new file mode 100644 index 000000000..421509262 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/slideshare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/snapchat-ghost.svg b/docs/material/.icons/fontawesome/brands/snapchat-ghost.svg new file mode 100644 index 000000000..30b14548c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/snapchat-ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/snapchat-square.svg b/docs/material/.icons/fontawesome/brands/snapchat-square.svg new file mode 100644 index 000000000..c91e05ecb --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/snapchat-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/snapchat.svg b/docs/material/.icons/fontawesome/brands/snapchat.svg new file mode 100644 index 000000000..88cfa1670 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/soundcloud.svg b/docs/material/.icons/fontawesome/brands/soundcloud.svg new file mode 100644 index 000000000..0d9b06160 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/soundcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sourcetree.svg b/docs/material/.icons/fontawesome/brands/sourcetree.svg new file mode 100644 index 000000000..d4a15c502 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sourcetree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/speakap.svg b/docs/material/.icons/fontawesome/brands/speakap.svg new file mode 100644 index 000000000..5123f7b8e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/speakap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/speaker-deck.svg b/docs/material/.icons/fontawesome/brands/speaker-deck.svg new file mode 100644 index 000000000..678132ee8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/speaker-deck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/spotify.svg b/docs/material/.icons/fontawesome/brands/spotify.svg new file mode 100644 index 000000000..dcd028a9a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/spotify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/squarespace.svg b/docs/material/.icons/fontawesome/brands/squarespace.svg new file mode 100644 index 000000000..6b31da58e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/squarespace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/stack-exchange.svg b/docs/material/.icons/fontawesome/brands/stack-exchange.svg new file mode 100644 index 000000000..3889ae234 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/stack-exchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/stack-overflow.svg b/docs/material/.icons/fontawesome/brands/stack-overflow.svg new file mode 100644 index 000000000..e8560a30e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/stack-overflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/stackpath.svg b/docs/material/.icons/fontawesome/brands/stackpath.svg new file mode 100644 index 000000000..c2e53143c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/stackpath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/staylinked.svg b/docs/material/.icons/fontawesome/brands/staylinked.svg new file mode 100644 index 000000000..3c6b2c8f4 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/staylinked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/steam-square.svg b/docs/material/.icons/fontawesome/brands/steam-square.svg new file mode 100644 index 000000000..59a6a8f61 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/steam-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/steam-symbol.svg b/docs/material/.icons/fontawesome/brands/steam-symbol.svg new file mode 100644 index 000000000..f0ab74db5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/steam-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/steam.svg b/docs/material/.icons/fontawesome/brands/steam.svg new file mode 100644 index 000000000..62d2616c8 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/sticker-mule.svg b/docs/material/.icons/fontawesome/brands/sticker-mule.svg new file mode 100644 index 000000000..6a23f17fa --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/sticker-mule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/strava.svg b/docs/material/.icons/fontawesome/brands/strava.svg new file mode 100644 index 000000000..40102da38 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/strava.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/stripe-s.svg b/docs/material/.icons/fontawesome/brands/stripe-s.svg new file mode 100644 index 000000000..08c5eb9ee --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/stripe-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/stripe.svg b/docs/material/.icons/fontawesome/brands/stripe.svg new file mode 100644 index 000000000..1688d50a2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/studiovinari.svg b/docs/material/.icons/fontawesome/brands/studiovinari.svg new file mode 100644 index 000000000..e6e7fa897 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/studiovinari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/stumbleupon-circle.svg b/docs/material/.icons/fontawesome/brands/stumbleupon-circle.svg new file mode 100644 index 000000000..a4b42346c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/stumbleupon-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/stumbleupon.svg b/docs/material/.icons/fontawesome/brands/stumbleupon.svg new file mode 100644 index 000000000..999d38627 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/stumbleupon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/superpowers.svg b/docs/material/.icons/fontawesome/brands/superpowers.svg new file mode 100644 index 000000000..a6f13f6d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/superpowers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/supple.svg b/docs/material/.icons/fontawesome/brands/supple.svg new file mode 100644 index 000000000..5afe87926 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/supple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/suse.svg b/docs/material/.icons/fontawesome/brands/suse.svg new file mode 100644 index 000000000..a5a612d73 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/suse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/swift.svg b/docs/material/.icons/fontawesome/brands/swift.svg new file mode 100644 index 000000000..c3cda3c0d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/swift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/symfony.svg b/docs/material/.icons/fontawesome/brands/symfony.svg new file mode 100644 index 000000000..51905feb2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/symfony.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/teamspeak.svg b/docs/material/.icons/fontawesome/brands/teamspeak.svg new file mode 100644 index 000000000..507fef800 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/teamspeak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/telegram-plane.svg b/docs/material/.icons/fontawesome/brands/telegram-plane.svg new file mode 100644 index 000000000..a4e067b5d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/telegram-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/telegram.svg b/docs/material/.icons/fontawesome/brands/telegram.svg new file mode 100644 index 000000000..fc5492cc9 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/tencent-weibo.svg b/docs/material/.icons/fontawesome/brands/tencent-weibo.svg new file mode 100644 index 000000000..30b49fc82 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/tencent-weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/the-red-yeti.svg b/docs/material/.icons/fontawesome/brands/the-red-yeti.svg new file mode 100644 index 000000000..c6e8f07a5 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/the-red-yeti.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/themeco.svg b/docs/material/.icons/fontawesome/brands/themeco.svg new file mode 100644 index 000000000..0e706e413 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/themeco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/themeisle.svg b/docs/material/.icons/fontawesome/brands/themeisle.svg new file mode 100644 index 000000000..981483878 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/themeisle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/think-peaks.svg b/docs/material/.icons/fontawesome/brands/think-peaks.svg new file mode 100644 index 000000000..d956893c6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/think-peaks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/trade-federation.svg b/docs/material/.icons/fontawesome/brands/trade-federation.svg new file mode 100644 index 000000000..07bd63b2b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/trade-federation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/trello.svg b/docs/material/.icons/fontawesome/brands/trello.svg new file mode 100644 index 000000000..634c6c3b3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/tripadvisor.svg b/docs/material/.icons/fontawesome/brands/tripadvisor.svg new file mode 100644 index 000000000..d3f325718 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/tripadvisor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/tumblr-square.svg b/docs/material/.icons/fontawesome/brands/tumblr-square.svg new file mode 100644 index 000000000..96b8cf5c0 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/tumblr-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/tumblr.svg b/docs/material/.icons/fontawesome/brands/tumblr.svg new file mode 100644 index 000000000..da593777a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/twitch.svg b/docs/material/.icons/fontawesome/brands/twitch.svg new file mode 100644 index 000000000..119260f09 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/twitter-square.svg b/docs/material/.icons/fontawesome/brands/twitter-square.svg new file mode 100644 index 000000000..a754fd07f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/twitter-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/twitter.svg b/docs/material/.icons/fontawesome/brands/twitter.svg new file mode 100644 index 000000000..f0ed9c5fc --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/typo3.svg b/docs/material/.icons/fontawesome/brands/typo3.svg new file mode 100644 index 000000000..4da76b3bd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/typo3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/uber.svg b/docs/material/.icons/fontawesome/brands/uber.svg new file mode 100644 index 000000000..569a1cd9c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/uber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ubuntu.svg b/docs/material/.icons/fontawesome/brands/ubuntu.svg new file mode 100644 index 000000000..e1958dc48 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ubuntu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/uikit.svg b/docs/material/.icons/fontawesome/brands/uikit.svg new file mode 100644 index 000000000..26ab61104 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/uikit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/umbraco.svg b/docs/material/.icons/fontawesome/brands/umbraco.svg new file mode 100644 index 000000000..fad502dd3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/umbraco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/uniregistry.svg b/docs/material/.icons/fontawesome/brands/uniregistry.svg new file mode 100644 index 000000000..c77b49144 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/uniregistry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/unity.svg b/docs/material/.icons/fontawesome/brands/unity.svg new file mode 100644 index 000000000..3d1b1b85a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/unity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/untappd.svg b/docs/material/.icons/fontawesome/brands/untappd.svg new file mode 100644 index 000000000..5e0629387 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/untappd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ups.svg b/docs/material/.icons/fontawesome/brands/ups.svg new file mode 100644 index 000000000..eecae78c2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ups.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/usb.svg b/docs/material/.icons/fontawesome/brands/usb.svg new file mode 100644 index 000000000..a9d265eee --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/usb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/usps.svg b/docs/material/.icons/fontawesome/brands/usps.svg new file mode 100644 index 000000000..f939b3e25 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/usps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/ussunnah.svg b/docs/material/.icons/fontawesome/brands/ussunnah.svg new file mode 100644 index 000000000..1dd9ed125 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/ussunnah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vaadin.svg b/docs/material/.icons/fontawesome/brands/vaadin.svg new file mode 100644 index 000000000..fadce5ada --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vaadin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/viacoin.svg b/docs/material/.icons/fontawesome/brands/viacoin.svg new file mode 100644 index 000000000..c4777d6fc --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/viacoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/viadeo-square.svg b/docs/material/.icons/fontawesome/brands/viadeo-square.svg new file mode 100644 index 000000000..9212671d0 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/viadeo-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/viadeo.svg b/docs/material/.icons/fontawesome/brands/viadeo.svg new file mode 100644 index 000000000..f4c1f8a1b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/viadeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/viber.svg b/docs/material/.icons/fontawesome/brands/viber.svg new file mode 100644 index 000000000..e40506b7a --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/viber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vimeo-square.svg b/docs/material/.icons/fontawesome/brands/vimeo-square.svg new file mode 100644 index 000000000..eed266e79 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vimeo-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vimeo-v.svg b/docs/material/.icons/fontawesome/brands/vimeo-v.svg new file mode 100644 index 000000000..c87152815 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vimeo-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vimeo.svg b/docs/material/.icons/fontawesome/brands/vimeo.svg new file mode 100644 index 000000000..3a0c52739 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vine.svg b/docs/material/.icons/fontawesome/brands/vine.svg new file mode 100644 index 000000000..53cb27f89 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vk.svg b/docs/material/.icons/fontawesome/brands/vk.svg new file mode 100644 index 000000000..022717d16 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vnv.svg b/docs/material/.icons/fontawesome/brands/vnv.svg new file mode 100644 index 000000000..56cd37b49 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vnv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/vuejs.svg b/docs/material/.icons/fontawesome/brands/vuejs.svg new file mode 100644 index 000000000..932887c13 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/waze.svg b/docs/material/.icons/fontawesome/brands/waze.svg new file mode 100644 index 000000000..7bfebb1d1 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/waze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/weebly.svg b/docs/material/.icons/fontawesome/brands/weebly.svg new file mode 100644 index 000000000..917dabe60 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/weebly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/weibo.svg b/docs/material/.icons/fontawesome/brands/weibo.svg new file mode 100644 index 000000000..84f18c49f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/weixin.svg b/docs/material/.icons/fontawesome/brands/weixin.svg new file mode 100644 index 000000000..cd27b1981 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/weixin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/whatsapp-square.svg b/docs/material/.icons/fontawesome/brands/whatsapp-square.svg new file mode 100644 index 000000000..7db67533d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/whatsapp-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/whatsapp.svg b/docs/material/.icons/fontawesome/brands/whatsapp.svg new file mode 100644 index 000000000..6ca3eb351 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/whmcs.svg b/docs/material/.icons/fontawesome/brands/whmcs.svg new file mode 100644 index 000000000..2bbd6959f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/whmcs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wikipedia-w.svg b/docs/material/.icons/fontawesome/brands/wikipedia-w.svg new file mode 100644 index 000000000..075425306 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wikipedia-w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/windows.svg b/docs/material/.icons/fontawesome/brands/windows.svg new file mode 100644 index 000000000..586ba25dd --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wix.svg b/docs/material/.icons/fontawesome/brands/wix.svg new file mode 100644 index 000000000..c1bea30e0 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wizards-of-the-coast.svg b/docs/material/.icons/fontawesome/brands/wizards-of-the-coast.svg new file mode 100644 index 000000000..5842f47b6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wizards-of-the-coast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wolf-pack-battalion.svg b/docs/material/.icons/fontawesome/brands/wolf-pack-battalion.svg new file mode 100644 index 000000000..0d03a6695 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wolf-pack-battalion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wordpress-simple.svg b/docs/material/.icons/fontawesome/brands/wordpress-simple.svg new file mode 100644 index 000000000..de9795ad2 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wordpress-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wordpress.svg b/docs/material/.icons/fontawesome/brands/wordpress.svg new file mode 100644 index 000000000..3cc2bd44d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wpbeginner.svg b/docs/material/.icons/fontawesome/brands/wpbeginner.svg new file mode 100644 index 000000000..1f81e8445 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wpbeginner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wpexplorer.svg b/docs/material/.icons/fontawesome/brands/wpexplorer.svg new file mode 100644 index 000000000..706e12a94 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wpexplorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wpforms.svg b/docs/material/.icons/fontawesome/brands/wpforms.svg new file mode 100644 index 000000000..03a3662b1 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wpforms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/wpressr.svg b/docs/material/.icons/fontawesome/brands/wpressr.svg new file mode 100644 index 000000000..daa6135c7 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/wpressr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/xbox.svg b/docs/material/.icons/fontawesome/brands/xbox.svg new file mode 100644 index 000000000..5420576e3 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/xing-square.svg b/docs/material/.icons/fontawesome/brands/xing-square.svg new file mode 100644 index 000000000..8c9fb8292 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/xing-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/xing.svg b/docs/material/.icons/fontawesome/brands/xing.svg new file mode 100644 index 000000000..c40077111 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/y-combinator.svg b/docs/material/.icons/fontawesome/brands/y-combinator.svg new file mode 100644 index 000000000..d4a0f7e2c --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/y-combinator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/yahoo.svg b/docs/material/.icons/fontawesome/brands/yahoo.svg new file mode 100644 index 000000000..22dea83de --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/yahoo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/yammer.svg b/docs/material/.icons/fontawesome/brands/yammer.svg new file mode 100644 index 000000000..ff483ed85 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/yammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/yandex-international.svg b/docs/material/.icons/fontawesome/brands/yandex-international.svg new file mode 100644 index 000000000..2b1c10c79 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/yandex-international.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/yandex.svg b/docs/material/.icons/fontawesome/brands/yandex.svg new file mode 100644 index 000000000..d054fe043 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/yandex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/yarn.svg b/docs/material/.icons/fontawesome/brands/yarn.svg new file mode 100644 index 000000000..ed00ea94b --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/yarn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/yelp.svg b/docs/material/.icons/fontawesome/brands/yelp.svg new file mode 100644 index 000000000..43150f3a6 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/yelp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/yoast.svg b/docs/material/.icons/fontawesome/brands/yoast.svg new file mode 100644 index 000000000..bf2ec0f1e --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/yoast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/youtube-square.svg b/docs/material/.icons/fontawesome/brands/youtube-square.svg new file mode 100644 index 000000000..07b9ab593 --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/youtube-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/youtube.svg b/docs/material/.icons/fontawesome/brands/youtube.svg new file mode 100644 index 000000000..e831b886f --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/brands/zhihu.svg b/docs/material/.icons/fontawesome/brands/zhihu.svg new file mode 100644 index 000000000..c206c266d --- /dev/null +++ b/docs/material/.icons/fontawesome/brands/zhihu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/address-book.svg b/docs/material/.icons/fontawesome/regular/address-book.svg new file mode 100644 index 000000000..1c941ca30 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/address-card.svg b/docs/material/.icons/fontawesome/regular/address-card.svg new file mode 100644 index 000000000..4e0179f55 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/address-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/angry.svg b/docs/material/.icons/fontawesome/regular/angry.svg new file mode 100644 index 000000000..f8636abe5 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/arrow-alt-circle-down.svg b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-down.svg new file mode 100644 index 000000000..5f7584886 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/arrow-alt-circle-left.svg b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-left.svg new file mode 100644 index 000000000..eb3fbdb9f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/arrow-alt-circle-right.svg b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-right.svg new file mode 100644 index 000000000..061d97266 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/arrow-alt-circle-up.svg b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-up.svg new file mode 100644 index 000000000..519288e7a --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/arrow-alt-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/bell-slash.svg b/docs/material/.icons/fontawesome/regular/bell-slash.svg new file mode 100644 index 000000000..410eb75e3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/bell.svg b/docs/material/.icons/fontawesome/regular/bell.svg new file mode 100644 index 000000000..2b98a370f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/bookmark.svg b/docs/material/.icons/fontawesome/regular/bookmark.svg new file mode 100644 index 000000000..741b441f9 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/building.svg b/docs/material/.icons/fontawesome/regular/building.svg new file mode 100644 index 000000000..4178db461 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/calendar-alt.svg b/docs/material/.icons/fontawesome/regular/calendar-alt.svg new file mode 100644 index 000000000..130e2ab70 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/calendar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/calendar-check.svg b/docs/material/.icons/fontawesome/regular/calendar-check.svg new file mode 100644 index 000000000..55a9f20fc --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/calendar-minus.svg b/docs/material/.icons/fontawesome/regular/calendar-minus.svg new file mode 100644 index 000000000..0b83b3487 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/calendar-plus.svg b/docs/material/.icons/fontawesome/regular/calendar-plus.svg new file mode 100644 index 000000000..7715ffc40 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/calendar-times.svg b/docs/material/.icons/fontawesome/regular/calendar-times.svg new file mode 100644 index 000000000..8a9a10c77 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/calendar-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/calendar.svg b/docs/material/.icons/fontawesome/regular/calendar.svg new file mode 100644 index 000000000..725e88798 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/caret-square-down.svg b/docs/material/.icons/fontawesome/regular/caret-square-down.svg new file mode 100644 index 000000000..29a40ab91 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/caret-square-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/caret-square-left.svg b/docs/material/.icons/fontawesome/regular/caret-square-left.svg new file mode 100644 index 000000000..5fa7f8b01 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/caret-square-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/caret-square-right.svg b/docs/material/.icons/fontawesome/regular/caret-square-right.svg new file mode 100644 index 000000000..03b438973 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/caret-square-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/caret-square-up.svg b/docs/material/.icons/fontawesome/regular/caret-square-up.svg new file mode 100644 index 000000000..b59f23b38 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/caret-square-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/chart-bar.svg b/docs/material/.icons/fontawesome/regular/chart-bar.svg new file mode 100644 index 000000000..36820b766 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/check-circle.svg b/docs/material/.icons/fontawesome/regular/check-circle.svg new file mode 100644 index 000000000..000b850f9 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/check-square.svg b/docs/material/.icons/fontawesome/regular/check-square.svg new file mode 100644 index 000000000..602b375b9 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/circle.svg b/docs/material/.icons/fontawesome/regular/circle.svg new file mode 100644 index 000000000..835815e17 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/clipboard.svg b/docs/material/.icons/fontawesome/regular/clipboard.svg new file mode 100644 index 000000000..a9260d172 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/clock.svg b/docs/material/.icons/fontawesome/regular/clock.svg new file mode 100644 index 000000000..136a550aa --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/clone.svg b/docs/material/.icons/fontawesome/regular/clone.svg new file mode 100644 index 000000000..f9b3a6b8f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/closed-captioning.svg b/docs/material/.icons/fontawesome/regular/closed-captioning.svg new file mode 100644 index 000000000..277952b0a --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/comment-alt.svg b/docs/material/.icons/fontawesome/regular/comment-alt.svg new file mode 100644 index 000000000..cf31f0882 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/comment-dots.svg b/docs/material/.icons/fontawesome/regular/comment-dots.svg new file mode 100644 index 000000000..de4dc0722 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/comment.svg b/docs/material/.icons/fontawesome/regular/comment.svg new file mode 100644 index 000000000..6fb2541d8 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/comments.svg b/docs/material/.icons/fontawesome/regular/comments.svg new file mode 100644 index 000000000..9ab2d3879 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/compass.svg b/docs/material/.icons/fontawesome/regular/compass.svg new file mode 100644 index 000000000..225da3982 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/copy.svg b/docs/material/.icons/fontawesome/regular/copy.svg new file mode 100644 index 000000000..9875df30e --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/copyright.svg b/docs/material/.icons/fontawesome/regular/copyright.svg new file mode 100644 index 000000000..61318d6cd --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/credit-card.svg b/docs/material/.icons/fontawesome/regular/credit-card.svg new file mode 100644 index 000000000..f5a047fb0 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/dizzy.svg b/docs/material/.icons/fontawesome/regular/dizzy.svg new file mode 100644 index 000000000..b84e00599 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/dot-circle.svg b/docs/material/.icons/fontawesome/regular/dot-circle.svg new file mode 100644 index 000000000..eacf9b700 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/dot-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/edit.svg b/docs/material/.icons/fontawesome/regular/edit.svg new file mode 100644 index 000000000..d7b191461 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/envelope-open.svg b/docs/material/.icons/fontawesome/regular/envelope-open.svg new file mode 100644 index 000000000..8aa3359e8 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/envelope.svg b/docs/material/.icons/fontawesome/regular/envelope.svg new file mode 100644 index 000000000..a2557ef20 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/eye-slash.svg b/docs/material/.icons/fontawesome/regular/eye-slash.svg new file mode 100644 index 000000000..ac123231f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/eye.svg b/docs/material/.icons/fontawesome/regular/eye.svg new file mode 100644 index 000000000..2083b1060 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-alt.svg b/docs/material/.icons/fontawesome/regular/file-alt.svg new file mode 100644 index 000000000..e32217d20 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-archive.svg b/docs/material/.icons/fontawesome/regular/file-archive.svg new file mode 100644 index 000000000..af14d23fe --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-audio.svg b/docs/material/.icons/fontawesome/regular/file-audio.svg new file mode 100644 index 000000000..2b7c9ca7a --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-code.svg b/docs/material/.icons/fontawesome/regular/file-code.svg new file mode 100644 index 000000000..6483b793c --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-excel.svg b/docs/material/.icons/fontawesome/regular/file-excel.svg new file mode 100644 index 000000000..481230270 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-image.svg b/docs/material/.icons/fontawesome/regular/file-image.svg new file mode 100644 index 000000000..2ca87e5c8 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-pdf.svg b/docs/material/.icons/fontawesome/regular/file-pdf.svg new file mode 100644 index 000000000..3f2fa4532 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-powerpoint.svg b/docs/material/.icons/fontawesome/regular/file-powerpoint.svg new file mode 100644 index 000000000..41e3505b3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-video.svg b/docs/material/.icons/fontawesome/regular/file-video.svg new file mode 100644 index 000000000..af025d5ac --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file-word.svg b/docs/material/.icons/fontawesome/regular/file-word.svg new file mode 100644 index 000000000..2ba499007 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/file.svg b/docs/material/.icons/fontawesome/regular/file.svg new file mode 100644 index 000000000..9bc15133e --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/flag.svg b/docs/material/.icons/fontawesome/regular/flag.svg new file mode 100644 index 000000000..352a6d35b --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/flushed.svg b/docs/material/.icons/fontawesome/regular/flushed.svg new file mode 100644 index 000000000..cb201a245 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/flushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/folder-open.svg b/docs/material/.icons/fontawesome/regular/folder-open.svg new file mode 100644 index 000000000..d367d41bc --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/folder.svg b/docs/material/.icons/fontawesome/regular/folder.svg new file mode 100644 index 000000000..7c9d6c4d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/font-awesome-logo-full.svg b/docs/material/.icons/fontawesome/regular/font-awesome-logo-full.svg new file mode 100644 index 000000000..06b75a4d0 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/font-awesome-logo-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/frown-open.svg b/docs/material/.icons/fontawesome/regular/frown-open.svg new file mode 100644 index 000000000..728cc1cb3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/frown-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/frown.svg b/docs/material/.icons/fontawesome/regular/frown.svg new file mode 100644 index 000000000..a8cb60371 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/futbol.svg b/docs/material/.icons/fontawesome/regular/futbol.svg new file mode 100644 index 000000000..060146529 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/gem.svg b/docs/material/.icons/fontawesome/regular/gem.svg new file mode 100644 index 000000000..9640cbf9f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grimace.svg b/docs/material/.icons/fontawesome/regular/grimace.svg new file mode 100644 index 000000000..3ef8c8809 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grimace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-alt.svg b/docs/material/.icons/fontawesome/regular/grin-alt.svg new file mode 100644 index 000000000..6e8ac81eb --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-beam-sweat.svg b/docs/material/.icons/fontawesome/regular/grin-beam-sweat.svg new file mode 100644 index 000000000..6f2213350 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-beam-sweat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-beam.svg b/docs/material/.icons/fontawesome/regular/grin-beam.svg new file mode 100644 index 000000000..0f8b36601 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-hearts.svg b/docs/material/.icons/fontawesome/regular/grin-hearts.svg new file mode 100644 index 000000000..3ecf5f4a2 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-hearts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-squint-tears.svg b/docs/material/.icons/fontawesome/regular/grin-squint-tears.svg new file mode 100644 index 000000000..06116746f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-squint-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-squint.svg b/docs/material/.icons/fontawesome/regular/grin-squint.svg new file mode 100644 index 000000000..b6d15a4e4 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-stars.svg b/docs/material/.icons/fontawesome/regular/grin-stars.svg new file mode 100644 index 000000000..8f8f2d077 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-tears.svg b/docs/material/.icons/fontawesome/regular/grin-tears.svg new file mode 100644 index 000000000..fefc4237c --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-tongue-squint.svg b/docs/material/.icons/fontawesome/regular/grin-tongue-squint.svg new file mode 100644 index 000000000..6434a61bb --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-tongue-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-tongue-wink.svg b/docs/material/.icons/fontawesome/regular/grin-tongue-wink.svg new file mode 100644 index 000000000..e75cdccd7 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-tongue.svg b/docs/material/.icons/fontawesome/regular/grin-tongue.svg new file mode 100644 index 000000000..1afbcef40 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin-wink.svg b/docs/material/.icons/fontawesome/regular/grin-wink.svg new file mode 100644 index 000000000..ed3b703d9 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/grin.svg b/docs/material/.icons/fontawesome/regular/grin.svg new file mode 100644 index 000000000..1630a8922 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-lizard.svg b/docs/material/.icons/fontawesome/regular/hand-lizard.svg new file mode 100644 index 000000000..bdeca648c --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-lizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-paper.svg b/docs/material/.icons/fontawesome/regular/hand-paper.svg new file mode 100644 index 000000000..6a0a7fc2b --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-peace.svg b/docs/material/.icons/fontawesome/regular/hand-peace.svg new file mode 100644 index 000000000..e445ba62a --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-point-down.svg b/docs/material/.icons/fontawesome/regular/hand-point-down.svg new file mode 100644 index 000000000..d87f28ecc --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-point-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-point-left.svg b/docs/material/.icons/fontawesome/regular/hand-point-left.svg new file mode 100644 index 000000000..23e5b1392 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-point-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-point-right.svg b/docs/material/.icons/fontawesome/regular/hand-point-right.svg new file mode 100644 index 000000000..cc7e062be --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-point-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-point-up.svg b/docs/material/.icons/fontawesome/regular/hand-point-up.svg new file mode 100644 index 000000000..b7475816f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-point-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-pointer.svg b/docs/material/.icons/fontawesome/regular/hand-pointer.svg new file mode 100644 index 000000000..8ce3eece7 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-rock.svg b/docs/material/.icons/fontawesome/regular/hand-rock.svg new file mode 100644 index 000000000..0fda3efda --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-rock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-scissors.svg b/docs/material/.icons/fontawesome/regular/hand-scissors.svg new file mode 100644 index 000000000..45c993027 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hand-spock.svg b/docs/material/.icons/fontawesome/regular/hand-spock.svg new file mode 100644 index 000000000..d61cda4dc --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hand-spock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/handshake.svg b/docs/material/.icons/fontawesome/regular/handshake.svg new file mode 100644 index 000000000..b395862de --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hdd.svg b/docs/material/.icons/fontawesome/regular/hdd.svg new file mode 100644 index 000000000..101b7a97c --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/heart.svg b/docs/material/.icons/fontawesome/regular/heart.svg new file mode 100644 index 000000000..9a380831a --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hospital.svg b/docs/material/.icons/fontawesome/regular/hospital.svg new file mode 100644 index 000000000..07d145f6e --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/hourglass.svg b/docs/material/.icons/fontawesome/regular/hourglass.svg new file mode 100644 index 000000000..c89faa1df --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/id-badge.svg b/docs/material/.icons/fontawesome/regular/id-badge.svg new file mode 100644 index 000000000..39008027e --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/id-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/id-card.svg b/docs/material/.icons/fontawesome/regular/id-card.svg new file mode 100644 index 000000000..58ce378ba --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/image.svg b/docs/material/.icons/fontawesome/regular/image.svg new file mode 100644 index 000000000..235e3cffb --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/images.svg b/docs/material/.icons/fontawesome/regular/images.svg new file mode 100644 index 000000000..3a3945420 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/keyboard.svg b/docs/material/.icons/fontawesome/regular/keyboard.svg new file mode 100644 index 000000000..3b3705dcb --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/kiss-beam.svg b/docs/material/.icons/fontawesome/regular/kiss-beam.svg new file mode 100644 index 000000000..857180863 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/kiss-wink-heart.svg b/docs/material/.icons/fontawesome/regular/kiss-wink-heart.svg new file mode 100644 index 000000000..a513302e0 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/kiss.svg b/docs/material/.icons/fontawesome/regular/kiss.svg new file mode 100644 index 000000000..5af5fc763 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/laugh-beam.svg b/docs/material/.icons/fontawesome/regular/laugh-beam.svg new file mode 100644 index 000000000..d9e473f2c --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/laugh-squint.svg b/docs/material/.icons/fontawesome/regular/laugh-squint.svg new file mode 100644 index 000000000..4edf0d0c7 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/laugh-wink.svg b/docs/material/.icons/fontawesome/regular/laugh-wink.svg new file mode 100644 index 000000000..39c36954d --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/laugh.svg b/docs/material/.icons/fontawesome/regular/laugh.svg new file mode 100644 index 000000000..b8524251c --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/lemon.svg b/docs/material/.icons/fontawesome/regular/lemon.svg new file mode 100644 index 000000000..ab9ed90b9 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/life-ring.svg b/docs/material/.icons/fontawesome/regular/life-ring.svg new file mode 100644 index 000000000..2cf332681 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/lightbulb.svg b/docs/material/.icons/fontawesome/regular/lightbulb.svg new file mode 100644 index 000000000..90c250aff --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/list-alt.svg b/docs/material/.icons/fontawesome/regular/list-alt.svg new file mode 100644 index 000000000..7df6fba00 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/list-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/map.svg b/docs/material/.icons/fontawesome/regular/map.svg new file mode 100644 index 000000000..6c613d4f3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/meh-blank.svg b/docs/material/.icons/fontawesome/regular/meh-blank.svg new file mode 100644 index 000000000..ebeece479 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/meh-rolling-eyes.svg b/docs/material/.icons/fontawesome/regular/meh-rolling-eyes.svg new file mode 100644 index 000000000..3fb3476fa --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/meh-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/meh.svg b/docs/material/.icons/fontawesome/regular/meh.svg new file mode 100644 index 000000000..3bff8acc4 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/minus-square.svg b/docs/material/.icons/fontawesome/regular/minus-square.svg new file mode 100644 index 000000000..6b72714ef --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/money-bill-alt.svg b/docs/material/.icons/fontawesome/regular/money-bill-alt.svg new file mode 100644 index 000000000..013118a36 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/money-bill-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/moon.svg b/docs/material/.icons/fontawesome/regular/moon.svg new file mode 100644 index 000000000..91c3b80fe --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/newspaper.svg b/docs/material/.icons/fontawesome/regular/newspaper.svg new file mode 100644 index 000000000..a54e3ca58 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/object-group.svg b/docs/material/.icons/fontawesome/regular/object-group.svg new file mode 100644 index 000000000..e483f376e --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/object-ungroup.svg b/docs/material/.icons/fontawesome/regular/object-ungroup.svg new file mode 100644 index 000000000..625536303 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/paper-plane.svg b/docs/material/.icons/fontawesome/regular/paper-plane.svg new file mode 100644 index 000000000..215e29334 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/pause-circle.svg b/docs/material/.icons/fontawesome/regular/pause-circle.svg new file mode 100644 index 000000000..caebd9e96 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/play-circle.svg b/docs/material/.icons/fontawesome/regular/play-circle.svg new file mode 100644 index 000000000..9de60df95 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/plus-square.svg b/docs/material/.icons/fontawesome/regular/plus-square.svg new file mode 100644 index 000000000..dfc22ac64 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/question-circle.svg b/docs/material/.icons/fontawesome/regular/question-circle.svg new file mode 100644 index 000000000..9a30b85d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/registered.svg b/docs/material/.icons/fontawesome/regular/registered.svg new file mode 100644 index 000000000..db9e8da56 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/sad-cry.svg b/docs/material/.icons/fontawesome/regular/sad-cry.svg new file mode 100644 index 000000000..8ab84c9f5 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/sad-tear.svg b/docs/material/.icons/fontawesome/regular/sad-tear.svg new file mode 100644 index 000000000..e19421ca3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/save.svg b/docs/material/.icons/fontawesome/regular/save.svg new file mode 100644 index 000000000..d2245da43 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/share-square.svg b/docs/material/.icons/fontawesome/regular/share-square.svg new file mode 100644 index 000000000..6e678e9cc --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/share-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/smile-beam.svg b/docs/material/.icons/fontawesome/regular/smile-beam.svg new file mode 100644 index 000000000..1077160fd --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/smile-wink.svg b/docs/material/.icons/fontawesome/regular/smile-wink.svg new file mode 100644 index 000000000..e842eede3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/smile.svg b/docs/material/.icons/fontawesome/regular/smile.svg new file mode 100644 index 000000000..025898d4d --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/snowflake.svg b/docs/material/.icons/fontawesome/regular/snowflake.svg new file mode 100644 index 000000000..2258d8050 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/square.svg b/docs/material/.icons/fontawesome/regular/square.svg new file mode 100644 index 000000000..b9a4b9620 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/star-half.svg b/docs/material/.icons/fontawesome/regular/star-half.svg new file mode 100644 index 000000000..12b063fd1 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/star.svg b/docs/material/.icons/fontawesome/regular/star.svg new file mode 100644 index 000000000..a1370d23f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/sticky-note.svg b/docs/material/.icons/fontawesome/regular/sticky-note.svg new file mode 100644 index 000000000..45919b2d8 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/sticky-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/stop-circle.svg b/docs/material/.icons/fontawesome/regular/stop-circle.svg new file mode 100644 index 000000000..37bf314d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/sun.svg b/docs/material/.icons/fontawesome/regular/sun.svg new file mode 100644 index 000000000..78d33ba5e --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/surprise.svg b/docs/material/.icons/fontawesome/regular/surprise.svg new file mode 100644 index 000000000..4210c378f --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/thumbs-down.svg b/docs/material/.icons/fontawesome/regular/thumbs-down.svg new file mode 100644 index 000000000..d7b49d534 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/thumbs-up.svg b/docs/material/.icons/fontawesome/regular/thumbs-up.svg new file mode 100644 index 000000000..f60e4d116 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/times-circle.svg b/docs/material/.icons/fontawesome/regular/times-circle.svg new file mode 100644 index 000000000..15181d341 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/tired.svg b/docs/material/.icons/fontawesome/regular/tired.svg new file mode 100644 index 000000000..6f700be9c --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/trash-alt.svg b/docs/material/.icons/fontawesome/regular/trash-alt.svg new file mode 100644 index 000000000..69511ac79 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/user-circle.svg b/docs/material/.icons/fontawesome/regular/user-circle.svg new file mode 100644 index 000000000..1d678d242 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/user.svg b/docs/material/.icons/fontawesome/regular/user.svg new file mode 100644 index 000000000..bdc327c69 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/window-close.svg b/docs/material/.icons/fontawesome/regular/window-close.svg new file mode 100644 index 000000000..137598556 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/window-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/window-maximize.svg b/docs/material/.icons/fontawesome/regular/window-maximize.svg new file mode 100644 index 000000000..39c0ac06a --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/window-minimize.svg b/docs/material/.icons/fontawesome/regular/window-minimize.svg new file mode 100644 index 000000000..0986bbaa5 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/regular/window-restore.svg b/docs/material/.icons/fontawesome/regular/window-restore.svg new file mode 100644 index 000000000..9d1bfa7b5 --- /dev/null +++ b/docs/material/.icons/fontawesome/regular/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ad.svg b/docs/material/.icons/fontawesome/solid/ad.svg new file mode 100644 index 000000000..bd78e06da --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/address-book.svg b/docs/material/.icons/fontawesome/solid/address-book.svg new file mode 100644 index 000000000..f652f5a93 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/address-card.svg b/docs/material/.icons/fontawesome/solid/address-card.svg new file mode 100644 index 000000000..628ced258 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/address-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/adjust.svg b/docs/material/.icons/fontawesome/solid/adjust.svg new file mode 100644 index 000000000..2616d99a9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/adjust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/air-freshener.svg b/docs/material/.icons/fontawesome/solid/air-freshener.svg new file mode 100644 index 000000000..25713c701 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/air-freshener.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/align-center.svg b/docs/material/.icons/fontawesome/solid/align-center.svg new file mode 100644 index 000000000..43b336674 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/align-justify.svg b/docs/material/.icons/fontawesome/solid/align-justify.svg new file mode 100644 index 000000000..1e69256e6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/align-left.svg b/docs/material/.icons/fontawesome/solid/align-left.svg new file mode 100644 index 000000000..d188e173a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/align-right.svg b/docs/material/.icons/fontawesome/solid/align-right.svg new file mode 100644 index 000000000..8d5f5e817 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/allergies.svg b/docs/material/.icons/fontawesome/solid/allergies.svg new file mode 100644 index 000000000..335f5bcb0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/allergies.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ambulance.svg b/docs/material/.icons/fontawesome/solid/ambulance.svg new file mode 100644 index 000000000..b35a7bc05 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ambulance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/american-sign-language-interpreting.svg b/docs/material/.icons/fontawesome/solid/american-sign-language-interpreting.svg new file mode 100644 index 000000000..d65a1664d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/american-sign-language-interpreting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/anchor.svg b/docs/material/.icons/fontawesome/solid/anchor.svg new file mode 100644 index 000000000..792266ba8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-double-down.svg b/docs/material/.icons/fontawesome/solid/angle-double-down.svg new file mode 100644 index 000000000..3228f4abc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-double-left.svg b/docs/material/.icons/fontawesome/solid/angle-double-left.svg new file mode 100644 index 000000000..4474d83e2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-double-right.svg b/docs/material/.icons/fontawesome/solid/angle-double-right.svg new file mode 100644 index 000000000..cdf933666 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-double-up.svg b/docs/material/.icons/fontawesome/solid/angle-double-up.svg new file mode 100644 index 000000000..74b542f65 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-down.svg b/docs/material/.icons/fontawesome/solid/angle-down.svg new file mode 100644 index 000000000..146234252 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-left.svg b/docs/material/.icons/fontawesome/solid/angle-left.svg new file mode 100644 index 000000000..1e28c704d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-right.svg b/docs/material/.icons/fontawesome/solid/angle-right.svg new file mode 100644 index 000000000..ec7fbe9f0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angle-up.svg b/docs/material/.icons/fontawesome/solid/angle-up.svg new file mode 100644 index 000000000..1d0bbead7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/angry.svg b/docs/material/.icons/fontawesome/solid/angry.svg new file mode 100644 index 000000000..eca0b5d6a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ankh.svg b/docs/material/.icons/fontawesome/solid/ankh.svg new file mode 100644 index 000000000..2cab7bfdd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ankh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/apple-alt.svg b/docs/material/.icons/fontawesome/solid/apple-alt.svg new file mode 100644 index 000000000..995d76e9d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/apple-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/archive.svg b/docs/material/.icons/fontawesome/solid/archive.svg new file mode 100644 index 000000000..394dad2db --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/archway.svg b/docs/material/.icons/fontawesome/solid/archway.svg new file mode 100644 index 000000000..e5ad2f3de --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/archway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-alt-circle-down.svg b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-down.svg new file mode 100644 index 000000000..a2f644f8f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-alt-circle-left.svg b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-left.svg new file mode 100644 index 000000000..8a53b2265 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-alt-circle-right.svg b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-right.svg new file mode 100644 index 000000000..9da44be87 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-alt-circle-up.svg b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-up.svg new file mode 100644 index 000000000..c650c8267 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-alt-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-circle-down.svg b/docs/material/.icons/fontawesome/solid/arrow-circle-down.svg new file mode 100644 index 000000000..08b9f13ae --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-circle-left.svg b/docs/material/.icons/fontawesome/solid/arrow-circle-left.svg new file mode 100644 index 000000000..59be8d9e3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-circle-right.svg b/docs/material/.icons/fontawesome/solid/arrow-circle-right.svg new file mode 100644 index 000000000..f059bab95 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-circle-up.svg b/docs/material/.icons/fontawesome/solid/arrow-circle-up.svg new file mode 100644 index 000000000..d9d8081c9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-down.svg b/docs/material/.icons/fontawesome/solid/arrow-down.svg new file mode 100644 index 000000000..61b4db70f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-left.svg b/docs/material/.icons/fontawesome/solid/arrow-left.svg new file mode 100644 index 000000000..b229b8d13 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-right.svg b/docs/material/.icons/fontawesome/solid/arrow-right.svg new file mode 100644 index 000000000..1b9b05b47 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrow-up.svg b/docs/material/.icons/fontawesome/solid/arrow-up.svg new file mode 100644 index 000000000..bc571b5d9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrows-alt-h.svg b/docs/material/.icons/fontawesome/solid/arrows-alt-h.svg new file mode 100644 index 000000000..0caa926d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrows-alt-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrows-alt-v.svg b/docs/material/.icons/fontawesome/solid/arrows-alt-v.svg new file mode 100644 index 000000000..ebb23acbd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrows-alt-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/arrows-alt.svg b/docs/material/.icons/fontawesome/solid/arrows-alt.svg new file mode 100644 index 000000000..d885a5a68 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/arrows-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/assistive-listening-systems.svg b/docs/material/.icons/fontawesome/solid/assistive-listening-systems.svg new file mode 100644 index 000000000..5071f5967 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/assistive-listening-systems.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/asterisk.svg b/docs/material/.icons/fontawesome/solid/asterisk.svg new file mode 100644 index 000000000..d77cbb6b6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/asterisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/at.svg b/docs/material/.icons/fontawesome/solid/at.svg new file mode 100644 index 000000000..846893f55 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/atlas.svg b/docs/material/.icons/fontawesome/solid/atlas.svg new file mode 100644 index 000000000..ea31821f8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/atlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/atom.svg b/docs/material/.icons/fontawesome/solid/atom.svg new file mode 100644 index 000000000..b9f35da17 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/audio-description.svg b/docs/material/.icons/fontawesome/solid/audio-description.svg new file mode 100644 index 000000000..712578ee0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/audio-description.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/award.svg b/docs/material/.icons/fontawesome/solid/award.svg new file mode 100644 index 000000000..3350fa6a7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/baby-carriage.svg b/docs/material/.icons/fontawesome/solid/baby-carriage.svg new file mode 100644 index 000000000..e8dd92b8b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/baby.svg b/docs/material/.icons/fontawesome/solid/baby.svg new file mode 100644 index 000000000..0313288a1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/baby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/backspace.svg b/docs/material/.icons/fontawesome/solid/backspace.svg new file mode 100644 index 000000000..b1c995223 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/backward.svg b/docs/material/.icons/fontawesome/solid/backward.svg new file mode 100644 index 000000000..b37fcc22f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bacon.svg b/docs/material/.icons/fontawesome/solid/bacon.svg new file mode 100644 index 000000000..3976fe30e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bacon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bahai.svg b/docs/material/.icons/fontawesome/solid/bahai.svg new file mode 100644 index 000000000..8ea2a693b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bahai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/balance-scale-left.svg b/docs/material/.icons/fontawesome/solid/balance-scale-left.svg new file mode 100644 index 000000000..e7b692e66 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/balance-scale-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/balance-scale-right.svg b/docs/material/.icons/fontawesome/solid/balance-scale-right.svg new file mode 100644 index 000000000..77476a1f4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/balance-scale-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/balance-scale.svg b/docs/material/.icons/fontawesome/solid/balance-scale.svg new file mode 100644 index 000000000..e526521ed --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/balance-scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ban.svg b/docs/material/.icons/fontawesome/solid/ban.svg new file mode 100644 index 000000000..85f7f06f1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/band-aid.svg b/docs/material/.icons/fontawesome/solid/band-aid.svg new file mode 100644 index 000000000..4d0f55915 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/band-aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/barcode.svg b/docs/material/.icons/fontawesome/solid/barcode.svg new file mode 100644 index 000000000..58cbee7de --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bars.svg b/docs/material/.icons/fontawesome/solid/bars.svg new file mode 100644 index 000000000..87d79f9ee --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/baseball-ball.svg b/docs/material/.icons/fontawesome/solid/baseball-ball.svg new file mode 100644 index 000000000..bcdb0a0c4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/baseball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/basketball-ball.svg b/docs/material/.icons/fontawesome/solid/basketball-ball.svg new file mode 100644 index 000000000..bb2ba2384 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/basketball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bath.svg b/docs/material/.icons/fontawesome/solid/bath.svg new file mode 100644 index 000000000..8f20e3c52 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/battery-empty.svg b/docs/material/.icons/fontawesome/solid/battery-empty.svg new file mode 100644 index 000000000..b4a57fac9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/battery-full.svg b/docs/material/.icons/fontawesome/solid/battery-full.svg new file mode 100644 index 000000000..056b8189a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/battery-half.svg b/docs/material/.icons/fontawesome/solid/battery-half.svg new file mode 100644 index 000000000..16a8fc339 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/battery-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/battery-quarter.svg b/docs/material/.icons/fontawesome/solid/battery-quarter.svg new file mode 100644 index 000000000..d48ca28ba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/battery-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/battery-three-quarters.svg b/docs/material/.icons/fontawesome/solid/battery-three-quarters.svg new file mode 100644 index 000000000..43fc35adf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/battery-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bed.svg b/docs/material/.icons/fontawesome/solid/bed.svg new file mode 100644 index 000000000..d70b02219 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/beer.svg b/docs/material/.icons/fontawesome/solid/beer.svg new file mode 100644 index 000000000..a4ad01aa2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bell-slash.svg b/docs/material/.icons/fontawesome/solid/bell-slash.svg new file mode 100644 index 000000000..e36f50010 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bell.svg b/docs/material/.icons/fontawesome/solid/bell.svg new file mode 100644 index 000000000..e45be58cf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bezier-curve.svg b/docs/material/.icons/fontawesome/solid/bezier-curve.svg new file mode 100644 index 000000000..ca10d7a7f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bezier-curve.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bible.svg b/docs/material/.icons/fontawesome/solid/bible.svg new file mode 100644 index 000000000..8c6c9532d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bicycle.svg b/docs/material/.icons/fontawesome/solid/bicycle.svg new file mode 100644 index 000000000..124ca5e14 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/biking.svg b/docs/material/.icons/fontawesome/solid/biking.svg new file mode 100644 index 000000000..f35f41e59 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/biking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/binoculars.svg b/docs/material/.icons/fontawesome/solid/binoculars.svg new file mode 100644 index 000000000..d09ca73b6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/binoculars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/biohazard.svg b/docs/material/.icons/fontawesome/solid/biohazard.svg new file mode 100644 index 000000000..fddaee62d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/biohazard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/birthday-cake.svg b/docs/material/.icons/fontawesome/solid/birthday-cake.svg new file mode 100644 index 000000000..50e92ae4f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/birthday-cake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/blender-phone.svg b/docs/material/.icons/fontawesome/solid/blender-phone.svg new file mode 100644 index 000000000..29733d67e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/blender-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/blender.svg b/docs/material/.icons/fontawesome/solid/blender.svg new file mode 100644 index 000000000..8357ad276 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/blender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/blind.svg b/docs/material/.icons/fontawesome/solid/blind.svg new file mode 100644 index 000000000..a16a89037 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/blind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/blog.svg b/docs/material/.icons/fontawesome/solid/blog.svg new file mode 100644 index 000000000..c9f8bb5bb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/blog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bold.svg b/docs/material/.icons/fontawesome/solid/bold.svg new file mode 100644 index 000000000..c58ae4872 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bolt.svg b/docs/material/.icons/fontawesome/solid/bolt.svg new file mode 100644 index 000000000..4654a1ebb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bomb.svg b/docs/material/.icons/fontawesome/solid/bomb.svg new file mode 100644 index 000000000..d7a56f2b1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bomb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bone.svg b/docs/material/.icons/fontawesome/solid/bone.svg new file mode 100644 index 000000000..1d43763ec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bong.svg b/docs/material/.icons/fontawesome/solid/bong.svg new file mode 100644 index 000000000..e84800ce5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/book-dead.svg b/docs/material/.icons/fontawesome/solid/book-dead.svg new file mode 100644 index 000000000..76a2ce39a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/book-dead.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/book-medical.svg b/docs/material/.icons/fontawesome/solid/book-medical.svg new file mode 100644 index 000000000..64564f85b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/book-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/book-open.svg b/docs/material/.icons/fontawesome/solid/book-open.svg new file mode 100644 index 000000000..342917db5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/book-reader.svg b/docs/material/.icons/fontawesome/solid/book-reader.svg new file mode 100644 index 000000000..4d39dcbcc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/book-reader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/book.svg b/docs/material/.icons/fontawesome/solid/book.svg new file mode 100644 index 000000000..d27fdae79 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bookmark.svg b/docs/material/.icons/fontawesome/solid/bookmark.svg new file mode 100644 index 000000000..d1c8e4a20 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/border-all.svg b/docs/material/.icons/fontawesome/solid/border-all.svg new file mode 100644 index 000000000..d5b7c918e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/border-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/border-none.svg b/docs/material/.icons/fontawesome/solid/border-none.svg new file mode 100644 index 000000000..2e53f36d4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/border-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/border-style.svg b/docs/material/.icons/fontawesome/solid/border-style.svg new file mode 100644 index 000000000..10ff9417e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/border-style.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bowling-ball.svg b/docs/material/.icons/fontawesome/solid/bowling-ball.svg new file mode 100644 index 000000000..59602f68f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bowling-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/box-open.svg b/docs/material/.icons/fontawesome/solid/box-open.svg new file mode 100644 index 000000000..0e6242c68 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/box-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/box-tissue.svg b/docs/material/.icons/fontawesome/solid/box-tissue.svg new file mode 100644 index 000000000..48d9e8e38 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/box-tissue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/box.svg b/docs/material/.icons/fontawesome/solid/box.svg new file mode 100644 index 000000000..6cd0dc123 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/boxes.svg b/docs/material/.icons/fontawesome/solid/boxes.svg new file mode 100644 index 000000000..b2da05b6d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/boxes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/braille.svg b/docs/material/.icons/fontawesome/solid/braille.svg new file mode 100644 index 000000000..08f034ffa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/braille.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/brain.svg b/docs/material/.icons/fontawesome/solid/brain.svg new file mode 100644 index 000000000..dee0d37f9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bread-slice.svg b/docs/material/.icons/fontawesome/solid/bread-slice.svg new file mode 100644 index 000000000..9b62b9401 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bread-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/briefcase-medical.svg b/docs/material/.icons/fontawesome/solid/briefcase-medical.svg new file mode 100644 index 000000000..f1404740f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/briefcase-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/briefcase.svg b/docs/material/.icons/fontawesome/solid/briefcase.svg new file mode 100644 index 000000000..8c2882a09 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/broadcast-tower.svg b/docs/material/.icons/fontawesome/solid/broadcast-tower.svg new file mode 100644 index 000000000..614bc53dd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/broadcast-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/broom.svg b/docs/material/.icons/fontawesome/solid/broom.svg new file mode 100644 index 000000000..93b43c99f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/broom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/brush.svg b/docs/material/.icons/fontawesome/solid/brush.svg new file mode 100644 index 000000000..e42b048b4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bug.svg b/docs/material/.icons/fontawesome/solid/bug.svg new file mode 100644 index 000000000..b9185530a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/building.svg b/docs/material/.icons/fontawesome/solid/building.svg new file mode 100644 index 000000000..a109377bc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bullhorn.svg b/docs/material/.icons/fontawesome/solid/bullhorn.svg new file mode 100644 index 000000000..253742652 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bullhorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bullseye.svg b/docs/material/.icons/fontawesome/solid/bullseye.svg new file mode 100644 index 000000000..ec402e644 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bullseye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/burn.svg b/docs/material/.icons/fontawesome/solid/burn.svg new file mode 100644 index 000000000..44183cf17 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/burn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bus-alt.svg b/docs/material/.icons/fontawesome/solid/bus-alt.svg new file mode 100644 index 000000000..bfaad7215 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/bus.svg b/docs/material/.icons/fontawesome/solid/bus.svg new file mode 100644 index 000000000..040c4a6b2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/business-time.svg b/docs/material/.icons/fontawesome/solid/business-time.svg new file mode 100644 index 000000000..74b5a1df4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/business-time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calculator.svg b/docs/material/.icons/fontawesome/solid/calculator.svg new file mode 100644 index 000000000..9b367dfae --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar-alt.svg b/docs/material/.icons/fontawesome/solid/calendar-alt.svg new file mode 100644 index 000000000..b07a0911c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar-check.svg b/docs/material/.icons/fontawesome/solid/calendar-check.svg new file mode 100644 index 000000000..35b590d02 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar-day.svg b/docs/material/.icons/fontawesome/solid/calendar-day.svg new file mode 100644 index 000000000..20f9fa09f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar-minus.svg b/docs/material/.icons/fontawesome/solid/calendar-minus.svg new file mode 100644 index 000000000..78b8a3c07 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar-plus.svg b/docs/material/.icons/fontawesome/solid/calendar-plus.svg new file mode 100644 index 000000000..5e1b33825 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar-times.svg b/docs/material/.icons/fontawesome/solid/calendar-times.svg new file mode 100644 index 000000000..4db39b2d8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar-week.svg b/docs/material/.icons/fontawesome/solid/calendar-week.svg new file mode 100644 index 000000000..1bb6c9499 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar-week.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/calendar.svg b/docs/material/.icons/fontawesome/solid/calendar.svg new file mode 100644 index 000000000..2d3eefe8d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/camera-retro.svg b/docs/material/.icons/fontawesome/solid/camera-retro.svg new file mode 100644 index 000000000..67b7cfd54 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/camera-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/camera.svg b/docs/material/.icons/fontawesome/solid/camera.svg new file mode 100644 index 000000000..dc9f60813 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/campground.svg b/docs/material/.icons/fontawesome/solid/campground.svg new file mode 100644 index 000000000..39719580f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/campground.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/candy-cane.svg b/docs/material/.icons/fontawesome/solid/candy-cane.svg new file mode 100644 index 000000000..7e6600a49 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/candy-cane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cannabis.svg b/docs/material/.icons/fontawesome/solid/cannabis.svg new file mode 100644 index 000000000..f93e6b5e4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cannabis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/capsules.svg b/docs/material/.icons/fontawesome/solid/capsules.svg new file mode 100644 index 000000000..20d8ceea2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/capsules.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/car-alt.svg b/docs/material/.icons/fontawesome/solid/car-alt.svg new file mode 100644 index 000000000..88111cfae --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/car-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/car-battery.svg b/docs/material/.icons/fontawesome/solid/car-battery.svg new file mode 100644 index 000000000..537e7d298 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/car-crash.svg b/docs/material/.icons/fontawesome/solid/car-crash.svg new file mode 100644 index 000000000..b117434f1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/car-crash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/car-side.svg b/docs/material/.icons/fontawesome/solid/car-side.svg new file mode 100644 index 000000000..a65439899 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/car-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/car.svg b/docs/material/.icons/fontawesome/solid/car.svg new file mode 100644 index 000000000..9b2389900 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caravan.svg b/docs/material/.icons/fontawesome/solid/caravan.svg new file mode 100644 index 000000000..95ef12571 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caravan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-down.svg b/docs/material/.icons/fontawesome/solid/caret-down.svg new file mode 100644 index 000000000..b3ee2ea95 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-left.svg b/docs/material/.icons/fontawesome/solid/caret-left.svg new file mode 100644 index 000000000..36d7191ad --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-right.svg b/docs/material/.icons/fontawesome/solid/caret-right.svg new file mode 100644 index 000000000..bcd4cd106 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-square-down.svg b/docs/material/.icons/fontawesome/solid/caret-square-down.svg new file mode 100644 index 000000000..87a4f7a05 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-square-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-square-left.svg b/docs/material/.icons/fontawesome/solid/caret-square-left.svg new file mode 100644 index 000000000..856dcac95 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-square-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-square-right.svg b/docs/material/.icons/fontawesome/solid/caret-square-right.svg new file mode 100644 index 000000000..d69ec9fd4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-square-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-square-up.svg b/docs/material/.icons/fontawesome/solid/caret-square-up.svg new file mode 100644 index 000000000..005ea2c06 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-square-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/caret-up.svg b/docs/material/.icons/fontawesome/solid/caret-up.svg new file mode 100644 index 000000000..b4c7e5485 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/carrot.svg b/docs/material/.icons/fontawesome/solid/carrot.svg new file mode 100644 index 000000000..cedac22b0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/carrot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cart-arrow-down.svg b/docs/material/.icons/fontawesome/solid/cart-arrow-down.svg new file mode 100644 index 000000000..69e39712a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cart-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cart-plus.svg b/docs/material/.icons/fontawesome/solid/cart-plus.svg new file mode 100644 index 000000000..7f5ab7f52 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cart-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cash-register.svg b/docs/material/.icons/fontawesome/solid/cash-register.svg new file mode 100644 index 000000000..eaf65d9e8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cash-register.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cat.svg b/docs/material/.icons/fontawesome/solid/cat.svg new file mode 100644 index 000000000..486bbcc4d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/certificate.svg b/docs/material/.icons/fontawesome/solid/certificate.svg new file mode 100644 index 000000000..c57ab137a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/certificate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chair.svg b/docs/material/.icons/fontawesome/solid/chair.svg new file mode 100644 index 000000000..101e5d200 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chalkboard-teacher.svg b/docs/material/.icons/fontawesome/solid/chalkboard-teacher.svg new file mode 100644 index 000000000..ce1d9dc53 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chalkboard-teacher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chalkboard.svg b/docs/material/.icons/fontawesome/solid/chalkboard.svg new file mode 100644 index 000000000..6ec7e00d0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chalkboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/charging-station.svg b/docs/material/.icons/fontawesome/solid/charging-station.svg new file mode 100644 index 000000000..2b0997f1c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/charging-station.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chart-area.svg b/docs/material/.icons/fontawesome/solid/chart-area.svg new file mode 100644 index 000000000..47c886290 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chart-area.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chart-bar.svg b/docs/material/.icons/fontawesome/solid/chart-bar.svg new file mode 100644 index 000000000..e08c6f7cb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chart-line.svg b/docs/material/.icons/fontawesome/solid/chart-line.svg new file mode 100644 index 000000000..5a0e06fec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chart-pie.svg b/docs/material/.icons/fontawesome/solid/chart-pie.svg new file mode 100644 index 000000000..e1b476bd3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/check-circle.svg b/docs/material/.icons/fontawesome/solid/check-circle.svg new file mode 100644 index 000000000..bdda551ef --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/check-double.svg b/docs/material/.icons/fontawesome/solid/check-double.svg new file mode 100644 index 000000000..ecfd08238 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/check-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/check-square.svg b/docs/material/.icons/fontawesome/solid/check-square.svg new file mode 100644 index 000000000..4ea6964af --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/check.svg b/docs/material/.icons/fontawesome/solid/check.svg new file mode 100644 index 000000000..2ec27cf84 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cheese.svg b/docs/material/.icons/fontawesome/solid/cheese.svg new file mode 100644 index 000000000..f1856d50d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cheese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess-bishop.svg b/docs/material/.icons/fontawesome/solid/chess-bishop.svg new file mode 100644 index 000000000..13cc80079 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess-bishop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess-board.svg b/docs/material/.icons/fontawesome/solid/chess-board.svg new file mode 100644 index 000000000..8f30ead9a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess-king.svg b/docs/material/.icons/fontawesome/solid/chess-king.svg new file mode 100644 index 000000000..22165b875 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess-king.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess-knight.svg b/docs/material/.icons/fontawesome/solid/chess-knight.svg new file mode 100644 index 000000000..4f50d227f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess-knight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess-pawn.svg b/docs/material/.icons/fontawesome/solid/chess-pawn.svg new file mode 100644 index 000000000..5c4bdeae3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess-pawn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess-queen.svg b/docs/material/.icons/fontawesome/solid/chess-queen.svg new file mode 100644 index 000000000..701622311 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess-queen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess-rook.svg b/docs/material/.icons/fontawesome/solid/chess-rook.svg new file mode 100644 index 000000000..248f51261 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess-rook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chess.svg b/docs/material/.icons/fontawesome/solid/chess.svg new file mode 100644 index 000000000..ca77f3e5e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chess.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-circle-down.svg b/docs/material/.icons/fontawesome/solid/chevron-circle-down.svg new file mode 100644 index 000000000..4be7cea6f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-circle-left.svg b/docs/material/.icons/fontawesome/solid/chevron-circle-left.svg new file mode 100644 index 000000000..60b5ac6ec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-circle-right.svg b/docs/material/.icons/fontawesome/solid/chevron-circle-right.svg new file mode 100644 index 000000000..93350ee73 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-circle-up.svg b/docs/material/.icons/fontawesome/solid/chevron-circle-up.svg new file mode 100644 index 000000000..d973a5dfa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-down.svg b/docs/material/.icons/fontawesome/solid/chevron-down.svg new file mode 100644 index 000000000..5962e8933 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-left.svg b/docs/material/.icons/fontawesome/solid/chevron-left.svg new file mode 100644 index 000000000..c2dcbcca9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-right.svg b/docs/material/.icons/fontawesome/solid/chevron-right.svg new file mode 100644 index 000000000..6d3e119b8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/chevron-up.svg b/docs/material/.icons/fontawesome/solid/chevron-up.svg new file mode 100644 index 000000000..a38c372ad --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/child.svg b/docs/material/.icons/fontawesome/solid/child.svg new file mode 100644 index 000000000..8bbc718b9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/church.svg b/docs/material/.icons/fontawesome/solid/church.svg new file mode 100644 index 000000000..a9e57d50c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/church.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/circle-notch.svg b/docs/material/.icons/fontawesome/solid/circle-notch.svg new file mode 100644 index 000000000..3cc8c0b5d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/circle-notch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/circle.svg b/docs/material/.icons/fontawesome/solid/circle.svg new file mode 100644 index 000000000..c2db0b25c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/city.svg b/docs/material/.icons/fontawesome/solid/city.svg new file mode 100644 index 000000000..a27d3116e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/clinic-medical.svg b/docs/material/.icons/fontawesome/solid/clinic-medical.svg new file mode 100644 index 000000000..fc72d08c5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/clinic-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/clipboard-check.svg b/docs/material/.icons/fontawesome/solid/clipboard-check.svg new file mode 100644 index 000000000..3cdd41e99 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/clipboard-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/clipboard-list.svg b/docs/material/.icons/fontawesome/solid/clipboard-list.svg new file mode 100644 index 000000000..f8421f08b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/clipboard-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/clipboard.svg b/docs/material/.icons/fontawesome/solid/clipboard.svg new file mode 100644 index 000000000..103d885f4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/clock.svg b/docs/material/.icons/fontawesome/solid/clock.svg new file mode 100644 index 000000000..43b47bf26 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/clone.svg b/docs/material/.icons/fontawesome/solid/clone.svg new file mode 100644 index 000000000..0f40db074 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/closed-captioning.svg b/docs/material/.icons/fontawesome/solid/closed-captioning.svg new file mode 100644 index 000000000..f0c68d043 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-download-alt.svg b/docs/material/.icons/fontawesome/solid/cloud-download-alt.svg new file mode 100644 index 000000000..3cd62ac24 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-meatball.svg b/docs/material/.icons/fontawesome/solid/cloud-meatball.svg new file mode 100644 index 000000000..fe0a3a980 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-moon-rain.svg b/docs/material/.icons/fontawesome/solid/cloud-moon-rain.svg new file mode 100644 index 000000000..dc164ec41 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-moon-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-moon.svg b/docs/material/.icons/fontawesome/solid/cloud-moon.svg new file mode 100644 index 000000000..2caccfb1b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-rain.svg b/docs/material/.icons/fontawesome/solid/cloud-rain.svg new file mode 100644 index 000000000..766e9ae92 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-showers-heavy.svg b/docs/material/.icons/fontawesome/solid/cloud-showers-heavy.svg new file mode 100644 index 000000000..9b6d5b6a8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-showers-heavy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-sun-rain.svg b/docs/material/.icons/fontawesome/solid/cloud-sun-rain.svg new file mode 100644 index 000000000..eedd183b7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-sun-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-sun.svg b/docs/material/.icons/fontawesome/solid/cloud-sun.svg new file mode 100644 index 000000000..e4afd9ff1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud-upload-alt.svg b/docs/material/.icons/fontawesome/solid/cloud-upload-alt.svg new file mode 100644 index 000000000..8cf98e907 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud-upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cloud.svg b/docs/material/.icons/fontawesome/solid/cloud.svg new file mode 100644 index 000000000..38d2dc530 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cocktail.svg b/docs/material/.icons/fontawesome/solid/cocktail.svg new file mode 100644 index 000000000..b630000ba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cocktail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/code-branch.svg b/docs/material/.icons/fontawesome/solid/code-branch.svg new file mode 100644 index 000000000..0f33c5c50 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/code-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/code.svg b/docs/material/.icons/fontawesome/solid/code.svg new file mode 100644 index 000000000..ea8da707c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/coffee.svg b/docs/material/.icons/fontawesome/solid/coffee.svg new file mode 100644 index 000000000..af4c02477 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cog.svg b/docs/material/.icons/fontawesome/solid/cog.svg new file mode 100644 index 000000000..fb5bd35ac --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cogs.svg b/docs/material/.icons/fontawesome/solid/cogs.svg new file mode 100644 index 000000000..c016886e0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cogs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/coins.svg b/docs/material/.icons/fontawesome/solid/coins.svg new file mode 100644 index 000000000..511b03316 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/columns.svg b/docs/material/.icons/fontawesome/solid/columns.svg new file mode 100644 index 000000000..84ec2a09e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comment-alt.svg b/docs/material/.icons/fontawesome/solid/comment-alt.svg new file mode 100644 index 000000000..5d81f790e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comment-dollar.svg b/docs/material/.icons/fontawesome/solid/comment-dollar.svg new file mode 100644 index 000000000..5b2aaae44 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comment-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comment-dots.svg b/docs/material/.icons/fontawesome/solid/comment-dots.svg new file mode 100644 index 000000000..5866e4194 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comment-medical.svg b/docs/material/.icons/fontawesome/solid/comment-medical.svg new file mode 100644 index 000000000..6f8a3fdcc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comment-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comment-slash.svg b/docs/material/.icons/fontawesome/solid/comment-slash.svg new file mode 100644 index 000000000..b4b826fbc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comment-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comment.svg b/docs/material/.icons/fontawesome/solid/comment.svg new file mode 100644 index 000000000..f63328368 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comments-dollar.svg b/docs/material/.icons/fontawesome/solid/comments-dollar.svg new file mode 100644 index 000000000..1e1d7c9a2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comments-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/comments.svg b/docs/material/.icons/fontawesome/solid/comments.svg new file mode 100644 index 000000000..2ea7897c8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/compact-disc.svg b/docs/material/.icons/fontawesome/solid/compact-disc.svg new file mode 100644 index 000000000..7a583fce9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/compact-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/compass.svg b/docs/material/.icons/fontawesome/solid/compass.svg new file mode 100644 index 000000000..680065854 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/compress-alt.svg b/docs/material/.icons/fontawesome/solid/compress-alt.svg new file mode 100644 index 000000000..cdb153697 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/compress-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/compress-arrows-alt.svg b/docs/material/.icons/fontawesome/solid/compress-arrows-alt.svg new file mode 100644 index 000000000..c06ee8f8a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/compress-arrows-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/compress.svg b/docs/material/.icons/fontawesome/solid/compress.svg new file mode 100644 index 000000000..f2faafbfd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/concierge-bell.svg b/docs/material/.icons/fontawesome/solid/concierge-bell.svg new file mode 100644 index 000000000..91d12a638 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/concierge-bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cookie-bite.svg b/docs/material/.icons/fontawesome/solid/cookie-bite.svg new file mode 100644 index 000000000..5fa2c8d4f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cookie-bite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cookie.svg b/docs/material/.icons/fontawesome/solid/cookie.svg new file mode 100644 index 000000000..6f26bdc39 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cookie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/copy.svg b/docs/material/.icons/fontawesome/solid/copy.svg new file mode 100644 index 000000000..dffe43e76 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/copyright.svg b/docs/material/.icons/fontawesome/solid/copyright.svg new file mode 100644 index 000000000..36d7b91cb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/couch.svg b/docs/material/.icons/fontawesome/solid/couch.svg new file mode 100644 index 000000000..ba8c3ffb4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/couch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/credit-card.svg b/docs/material/.icons/fontawesome/solid/credit-card.svg new file mode 100644 index 000000000..676d35868 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/crop-alt.svg b/docs/material/.icons/fontawesome/solid/crop-alt.svg new file mode 100644 index 000000000..aa7438ebf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/crop-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/crop.svg b/docs/material/.icons/fontawesome/solid/crop.svg new file mode 100644 index 000000000..5bd06a921 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cross.svg b/docs/material/.icons/fontawesome/solid/cross.svg new file mode 100644 index 000000000..86113de50 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/crosshairs.svg b/docs/material/.icons/fontawesome/solid/crosshairs.svg new file mode 100644 index 000000000..60acd3e28 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/crow.svg b/docs/material/.icons/fontawesome/solid/crow.svg new file mode 100644 index 000000000..e982936ac --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/crow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/crown.svg b/docs/material/.icons/fontawesome/solid/crown.svg new file mode 100644 index 000000000..03b1f1918 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/crown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/crutch.svg b/docs/material/.icons/fontawesome/solid/crutch.svg new file mode 100644 index 000000000..cc081dd47 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/crutch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cube.svg b/docs/material/.icons/fontawesome/solid/cube.svg new file mode 100644 index 000000000..a627fd549 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cubes.svg b/docs/material/.icons/fontawesome/solid/cubes.svg new file mode 100644 index 000000000..208f688a3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cubes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/cut.svg b/docs/material/.icons/fontawesome/solid/cut.svg new file mode 100644 index 000000000..4f626aa09 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/database.svg b/docs/material/.icons/fontawesome/solid/database.svg new file mode 100644 index 000000000..a6e4982bc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/deaf.svg b/docs/material/.icons/fontawesome/solid/deaf.svg new file mode 100644 index 000000000..25a7a86ec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/deaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/democrat.svg b/docs/material/.icons/fontawesome/solid/democrat.svg new file mode 100644 index 000000000..5cde060ff --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/democrat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/desktop.svg b/docs/material/.icons/fontawesome/solid/desktop.svg new file mode 100644 index 000000000..bba157e80 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dharmachakra.svg b/docs/material/.icons/fontawesome/solid/dharmachakra.svg new file mode 100644 index 000000000..6838379be --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dharmachakra.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/diagnoses.svg b/docs/material/.icons/fontawesome/solid/diagnoses.svg new file mode 100644 index 000000000..8f56e24c2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/diagnoses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-d20.svg b/docs/material/.icons/fontawesome/solid/dice-d20.svg new file mode 100644 index 000000000..085e3f0d9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-d20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-d6.svg b/docs/material/.icons/fontawesome/solid/dice-d6.svg new file mode 100644 index 000000000..b1d270a0f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-five.svg b/docs/material/.icons/fontawesome/solid/dice-five.svg new file mode 100644 index 000000000..7fd8c1d23 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-four.svg b/docs/material/.icons/fontawesome/solid/dice-four.svg new file mode 100644 index 000000000..9cd681bd3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-one.svg b/docs/material/.icons/fontawesome/solid/dice-one.svg new file mode 100644 index 000000000..e5d3b5e14 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-six.svg b/docs/material/.icons/fontawesome/solid/dice-six.svg new file mode 100644 index 000000000..c1ed7cfc4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-three.svg b/docs/material/.icons/fontawesome/solid/dice-three.svg new file mode 100644 index 000000000..c035c8043 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice-two.svg b/docs/material/.icons/fontawesome/solid/dice-two.svg new file mode 100644 index 000000000..d6528d79e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dice.svg b/docs/material/.icons/fontawesome/solid/dice.svg new file mode 100644 index 000000000..da8a81230 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/digital-tachograph.svg b/docs/material/.icons/fontawesome/solid/digital-tachograph.svg new file mode 100644 index 000000000..65f4a028c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/digital-tachograph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/directions.svg b/docs/material/.icons/fontawesome/solid/directions.svg new file mode 100644 index 000000000..aa23106ed --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/directions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/disease.svg b/docs/material/.icons/fontawesome/solid/disease.svg new file mode 100644 index 000000000..dd01d4176 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/disease.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/divide.svg b/docs/material/.icons/fontawesome/solid/divide.svg new file mode 100644 index 000000000..cb6d8b6f9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/divide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dizzy.svg b/docs/material/.icons/fontawesome/solid/dizzy.svg new file mode 100644 index 000000000..d1b524692 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dna.svg b/docs/material/.icons/fontawesome/solid/dna.svg new file mode 100644 index 000000000..81cddb6a6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dog.svg b/docs/material/.icons/fontawesome/solid/dog.svg new file mode 100644 index 000000000..1db543420 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dollar-sign.svg b/docs/material/.icons/fontawesome/solid/dollar-sign.svg new file mode 100644 index 000000000..23cf69108 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dolly-flatbed.svg b/docs/material/.icons/fontawesome/solid/dolly-flatbed.svg new file mode 100644 index 000000000..bb20bdebc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dolly-flatbed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dolly.svg b/docs/material/.icons/fontawesome/solid/dolly.svg new file mode 100644 index 000000000..0fe3a517f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dolly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/donate.svg b/docs/material/.icons/fontawesome/solid/donate.svg new file mode 100644 index 000000000..bacf83e67 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/donate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/door-closed.svg b/docs/material/.icons/fontawesome/solid/door-closed.svg new file mode 100644 index 000000000..00add3418 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/door-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/door-open.svg b/docs/material/.icons/fontawesome/solid/door-open.svg new file mode 100644 index 000000000..e246f1fbc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/door-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dot-circle.svg b/docs/material/.icons/fontawesome/solid/dot-circle.svg new file mode 100644 index 000000000..5cb222ddd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dot-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dove.svg b/docs/material/.icons/fontawesome/solid/dove.svg new file mode 100644 index 000000000..86139028f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/download.svg b/docs/material/.icons/fontawesome/solid/download.svg new file mode 100644 index 000000000..da5eec408 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/drafting-compass.svg b/docs/material/.icons/fontawesome/solid/drafting-compass.svg new file mode 100644 index 000000000..c2834adb2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/drafting-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dragon.svg b/docs/material/.icons/fontawesome/solid/dragon.svg new file mode 100644 index 000000000..a94804030 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dragon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/draw-polygon.svg b/docs/material/.icons/fontawesome/solid/draw-polygon.svg new file mode 100644 index 000000000..0a9c61b74 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/draw-polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/drum-steelpan.svg b/docs/material/.icons/fontawesome/solid/drum-steelpan.svg new file mode 100644 index 000000000..c4b12b485 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/drum-steelpan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/drum.svg b/docs/material/.icons/fontawesome/solid/drum.svg new file mode 100644 index 000000000..dbc7b6d6a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/drum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/drumstick-bite.svg b/docs/material/.icons/fontawesome/solid/drumstick-bite.svg new file mode 100644 index 000000000..136788589 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/drumstick-bite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dumbbell.svg b/docs/material/.icons/fontawesome/solid/dumbbell.svg new file mode 100644 index 000000000..2fe16673c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dumbbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dumpster-fire.svg b/docs/material/.icons/fontawesome/solid/dumpster-fire.svg new file mode 100644 index 000000000..9bd654f4b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dumpster-fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dumpster.svg b/docs/material/.icons/fontawesome/solid/dumpster.svg new file mode 100644 index 000000000..74cdd3f93 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dumpster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/dungeon.svg b/docs/material/.icons/fontawesome/solid/dungeon.svg new file mode 100644 index 000000000..48d55329f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/dungeon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/edit.svg b/docs/material/.icons/fontawesome/solid/edit.svg new file mode 100644 index 000000000..2313feb19 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/egg.svg b/docs/material/.icons/fontawesome/solid/egg.svg new file mode 100644 index 000000000..804ac67c9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/eject.svg b/docs/material/.icons/fontawesome/solid/eject.svg new file mode 100644 index 000000000..d240b0d1b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/eject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ellipsis-h.svg b/docs/material/.icons/fontawesome/solid/ellipsis-h.svg new file mode 100644 index 000000000..70748ad95 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ellipsis-v.svg b/docs/material/.icons/fontawesome/solid/ellipsis-v.svg new file mode 100644 index 000000000..e8e713ad4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/envelope-open-text.svg b/docs/material/.icons/fontawesome/solid/envelope-open-text.svg new file mode 100644 index 000000000..61ecfa317 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/envelope-open-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/envelope-open.svg b/docs/material/.icons/fontawesome/solid/envelope-open.svg new file mode 100644 index 000000000..faed68051 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/envelope-square.svg b/docs/material/.icons/fontawesome/solid/envelope-square.svg new file mode 100644 index 000000000..c35055f9c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/envelope-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/envelope.svg b/docs/material/.icons/fontawesome/solid/envelope.svg new file mode 100644 index 000000000..edbcad3de --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/equals.svg b/docs/material/.icons/fontawesome/solid/equals.svg new file mode 100644 index 000000000..9dcbfdb5a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/equals.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/eraser.svg b/docs/material/.icons/fontawesome/solid/eraser.svg new file mode 100644 index 000000000..4c6a0465b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/eraser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ethernet.svg b/docs/material/.icons/fontawesome/solid/ethernet.svg new file mode 100644 index 000000000..2b391a39f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ethernet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/euro-sign.svg b/docs/material/.icons/fontawesome/solid/euro-sign.svg new file mode 100644 index 000000000..8e5025885 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/euro-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/exchange-alt.svg b/docs/material/.icons/fontawesome/solid/exchange-alt.svg new file mode 100644 index 000000000..b22538a9e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/exchange-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/exclamation-circle.svg b/docs/material/.icons/fontawesome/solid/exclamation-circle.svg new file mode 100644 index 000000000..165930398 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/exclamation-triangle.svg b/docs/material/.icons/fontawesome/solid/exclamation-triangle.svg new file mode 100644 index 000000000..2ab53271b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/exclamation.svg b/docs/material/.icons/fontawesome/solid/exclamation.svg new file mode 100644 index 000000000..89ef11a7a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/expand-alt.svg b/docs/material/.icons/fontawesome/solid/expand-alt.svg new file mode 100644 index 000000000..05eb25935 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/expand-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/expand-arrows-alt.svg b/docs/material/.icons/fontawesome/solid/expand-arrows-alt.svg new file mode 100644 index 000000000..ce405a126 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/expand-arrows-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/expand.svg b/docs/material/.icons/fontawesome/solid/expand.svg new file mode 100644 index 000000000..e8f812d47 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/external-link-alt.svg b/docs/material/.icons/fontawesome/solid/external-link-alt.svg new file mode 100644 index 000000000..0132297cc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/external-link-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/external-link-square-alt.svg b/docs/material/.icons/fontawesome/solid/external-link-square-alt.svg new file mode 100644 index 000000000..099977be4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/external-link-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/eye-dropper.svg b/docs/material/.icons/fontawesome/solid/eye-dropper.svg new file mode 100644 index 000000000..51c3453a6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/eye-dropper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/eye-slash.svg b/docs/material/.icons/fontawesome/solid/eye-slash.svg new file mode 100644 index 000000000..d2898a170 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/eye.svg b/docs/material/.icons/fontawesome/solid/eye.svg new file mode 100644 index 000000000..3f000f15f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fan.svg b/docs/material/.icons/fontawesome/solid/fan.svg new file mode 100644 index 000000000..dd50af56f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fast-backward.svg b/docs/material/.icons/fontawesome/solid/fast-backward.svg new file mode 100644 index 000000000..dfe10e5c5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fast-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fast-forward.svg b/docs/material/.icons/fontawesome/solid/fast-forward.svg new file mode 100644 index 000000000..57c072ae1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/faucet.svg b/docs/material/.icons/fontawesome/solid/faucet.svg new file mode 100644 index 000000000..f1a9b7ce8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/faucet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fax.svg b/docs/material/.icons/fontawesome/solid/fax.svg new file mode 100644 index 000000000..acb5db645 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/feather-alt.svg b/docs/material/.icons/fontawesome/solid/feather-alt.svg new file mode 100644 index 000000000..a04ebbd1f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/feather-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/feather.svg b/docs/material/.icons/fontawesome/solid/feather.svg new file mode 100644 index 000000000..bbdb93428 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/female.svg b/docs/material/.icons/fontawesome/solid/female.svg new file mode 100644 index 000000000..c20b5dd31 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fighter-jet.svg b/docs/material/.icons/fontawesome/solid/fighter-jet.svg new file mode 100644 index 000000000..3fdfe2d8b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fighter-jet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-alt.svg b/docs/material/.icons/fontawesome/solid/file-alt.svg new file mode 100644 index 000000000..e1f980c87 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-archive.svg b/docs/material/.icons/fontawesome/solid/file-archive.svg new file mode 100644 index 000000000..7c60e72c4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-audio.svg b/docs/material/.icons/fontawesome/solid/file-audio.svg new file mode 100644 index 000000000..c491a45a4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-code.svg b/docs/material/.icons/fontawesome/solid/file-code.svg new file mode 100644 index 000000000..65c4779de --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-contract.svg b/docs/material/.icons/fontawesome/solid/file-contract.svg new file mode 100644 index 000000000..0a023feb4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-csv.svg b/docs/material/.icons/fontawesome/solid/file-csv.svg new file mode 100644 index 000000000..7b0d27366 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-csv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-download.svg b/docs/material/.icons/fontawesome/solid/file-download.svg new file mode 100644 index 000000000..b0dfa46eb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-excel.svg b/docs/material/.icons/fontawesome/solid/file-excel.svg new file mode 100644 index 000000000..62cec9dd2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-export.svg b/docs/material/.icons/fontawesome/solid/file-export.svg new file mode 100644 index 000000000..1590d5deb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-image.svg b/docs/material/.icons/fontawesome/solid/file-image.svg new file mode 100644 index 000000000..ad19e3122 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-import.svg b/docs/material/.icons/fontawesome/solid/file-import.svg new file mode 100644 index 000000000..a89e8eafa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-invoice-dollar.svg b/docs/material/.icons/fontawesome/solid/file-invoice-dollar.svg new file mode 100644 index 000000000..39184ce70 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-invoice-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-invoice.svg b/docs/material/.icons/fontawesome/solid/file-invoice.svg new file mode 100644 index 000000000..5f5b24196 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-invoice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-medical-alt.svg b/docs/material/.icons/fontawesome/solid/file-medical-alt.svg new file mode 100644 index 000000000..0c0699c3e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-medical-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-medical.svg b/docs/material/.icons/fontawesome/solid/file-medical.svg new file mode 100644 index 000000000..748bf58f6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-pdf.svg b/docs/material/.icons/fontawesome/solid/file-pdf.svg new file mode 100644 index 000000000..9782667d5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-powerpoint.svg b/docs/material/.icons/fontawesome/solid/file-powerpoint.svg new file mode 100644 index 000000000..bd26fb923 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-prescription.svg b/docs/material/.icons/fontawesome/solid/file-prescription.svg new file mode 100644 index 000000000..563292ba9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-signature.svg b/docs/material/.icons/fontawesome/solid/file-signature.svg new file mode 100644 index 000000000..6b27b140b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-upload.svg b/docs/material/.icons/fontawesome/solid/file-upload.svg new file mode 100644 index 000000000..49b0a88dd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-video.svg b/docs/material/.icons/fontawesome/solid/file-video.svg new file mode 100644 index 000000000..b1001afd4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file-word.svg b/docs/material/.icons/fontawesome/solid/file-word.svg new file mode 100644 index 000000000..f484a94cc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/file.svg b/docs/material/.icons/fontawesome/solid/file.svg new file mode 100644 index 000000000..7f495dcef --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fill-drip.svg b/docs/material/.icons/fontawesome/solid/fill-drip.svg new file mode 100644 index 000000000..74346b5c6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fill-drip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fill.svg b/docs/material/.icons/fontawesome/solid/fill.svg new file mode 100644 index 000000000..b7bf4056f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/film.svg b/docs/material/.icons/fontawesome/solid/film.svg new file mode 100644 index 000000000..f120aee23 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/filter.svg b/docs/material/.icons/fontawesome/solid/filter.svg new file mode 100644 index 000000000..95861a392 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fingerprint.svg b/docs/material/.icons/fontawesome/solid/fingerprint.svg new file mode 100644 index 000000000..3cd584178 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fire-alt.svg b/docs/material/.icons/fontawesome/solid/fire-alt.svg new file mode 100644 index 000000000..d8766309c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fire-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fire-extinguisher.svg b/docs/material/.icons/fontawesome/solid/fire-extinguisher.svg new file mode 100644 index 000000000..2bd873807 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fire-extinguisher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fire.svg b/docs/material/.icons/fontawesome/solid/fire.svg new file mode 100644 index 000000000..5ab3fa831 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/first-aid.svg b/docs/material/.icons/fontawesome/solid/first-aid.svg new file mode 100644 index 000000000..43fd52251 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/first-aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fish.svg b/docs/material/.icons/fontawesome/solid/fish.svg new file mode 100644 index 000000000..8312ff5c1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/fist-raised.svg b/docs/material/.icons/fontawesome/solid/fist-raised.svg new file mode 100644 index 000000000..26f32ec96 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/fist-raised.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/flag-checkered.svg b/docs/material/.icons/fontawesome/solid/flag-checkered.svg new file mode 100644 index 000000000..acb3406a4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/flag-checkered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/flag-usa.svg b/docs/material/.icons/fontawesome/solid/flag-usa.svg new file mode 100644 index 000000000..7cb1a625a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/flag-usa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/flag.svg b/docs/material/.icons/fontawesome/solid/flag.svg new file mode 100644 index 000000000..f967752b0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/flask.svg b/docs/material/.icons/fontawesome/solid/flask.svg new file mode 100644 index 000000000..c30929ace --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/flushed.svg b/docs/material/.icons/fontawesome/solid/flushed.svg new file mode 100644 index 000000000..1e6e1c96e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/flushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/folder-minus.svg b/docs/material/.icons/fontawesome/solid/folder-minus.svg new file mode 100644 index 000000000..4e554e0d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/folder-open.svg b/docs/material/.icons/fontawesome/solid/folder-open.svg new file mode 100644 index 000000000..a6a92edd2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/folder-plus.svg b/docs/material/.icons/fontawesome/solid/folder-plus.svg new file mode 100644 index 000000000..9efcea8fa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/folder.svg b/docs/material/.icons/fontawesome/solid/folder.svg new file mode 100644 index 000000000..c9607689a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/font-awesome-logo-full.svg b/docs/material/.icons/fontawesome/solid/font-awesome-logo-full.svg new file mode 100644 index 000000000..06b75a4d0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/font-awesome-logo-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/font.svg b/docs/material/.icons/fontawesome/solid/font.svg new file mode 100644 index 000000000..6745a095e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/font.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/football-ball.svg b/docs/material/.icons/fontawesome/solid/football-ball.svg new file mode 100644 index 000000000..260c2914a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/football-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/forward.svg b/docs/material/.icons/fontawesome/solid/forward.svg new file mode 100644 index 000000000..5349d49fb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/frog.svg b/docs/material/.icons/fontawesome/solid/frog.svg new file mode 100644 index 000000000..8c072de92 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/frog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/frown-open.svg b/docs/material/.icons/fontawesome/solid/frown-open.svg new file mode 100644 index 000000000..dac5ca2a6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/frown-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/frown.svg b/docs/material/.icons/fontawesome/solid/frown.svg new file mode 100644 index 000000000..8207b8dd7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/funnel-dollar.svg b/docs/material/.icons/fontawesome/solid/funnel-dollar.svg new file mode 100644 index 000000000..d5970e141 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/funnel-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/futbol.svg b/docs/material/.icons/fontawesome/solid/futbol.svg new file mode 100644 index 000000000..936fcad2e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/gamepad.svg b/docs/material/.icons/fontawesome/solid/gamepad.svg new file mode 100644 index 000000000..f39af0a4a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/gamepad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/gas-pump.svg b/docs/material/.icons/fontawesome/solid/gas-pump.svg new file mode 100644 index 000000000..0a3899549 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/gas-pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/gavel.svg b/docs/material/.icons/fontawesome/solid/gavel.svg new file mode 100644 index 000000000..c68ac7c38 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/gavel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/gem.svg b/docs/material/.icons/fontawesome/solid/gem.svg new file mode 100644 index 000000000..6172b8711 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/genderless.svg b/docs/material/.icons/fontawesome/solid/genderless.svg new file mode 100644 index 000000000..9c9286734 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/genderless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ghost.svg b/docs/material/.icons/fontawesome/solid/ghost.svg new file mode 100644 index 000000000..91b24056d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/gift.svg b/docs/material/.icons/fontawesome/solid/gift.svg new file mode 100644 index 000000000..d3c13490d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/gifts.svg b/docs/material/.icons/fontawesome/solid/gifts.svg new file mode 100644 index 000000000..e132b647e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/gifts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/glass-cheers.svg b/docs/material/.icons/fontawesome/solid/glass-cheers.svg new file mode 100644 index 000000000..0f8de5ab3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/glass-cheers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/glass-martini-alt.svg b/docs/material/.icons/fontawesome/solid/glass-martini-alt.svg new file mode 100644 index 000000000..dc4aa9c61 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/glass-martini-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/glass-martini.svg b/docs/material/.icons/fontawesome/solid/glass-martini.svg new file mode 100644 index 000000000..283c3c613 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/glass-martini.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/glass-whiskey.svg b/docs/material/.icons/fontawesome/solid/glass-whiskey.svg new file mode 100644 index 000000000..27b295395 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/glass-whiskey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/glasses.svg b/docs/material/.icons/fontawesome/solid/glasses.svg new file mode 100644 index 000000000..51f3462ed --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/globe-africa.svg b/docs/material/.icons/fontawesome/solid/globe-africa.svg new file mode 100644 index 000000000..0cf09fbd3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/globe-africa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/globe-americas.svg b/docs/material/.icons/fontawesome/solid/globe-americas.svg new file mode 100644 index 000000000..121a1f985 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/globe-americas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/globe-asia.svg b/docs/material/.icons/fontawesome/solid/globe-asia.svg new file mode 100644 index 000000000..658160efd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/globe-asia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/globe-europe.svg b/docs/material/.icons/fontawesome/solid/globe-europe.svg new file mode 100644 index 000000000..598233054 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/globe-europe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/globe.svg b/docs/material/.icons/fontawesome/solid/globe.svg new file mode 100644 index 000000000..93b617845 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/golf-ball.svg b/docs/material/.icons/fontawesome/solid/golf-ball.svg new file mode 100644 index 000000000..9e87e82a1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/golf-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/gopuram.svg b/docs/material/.icons/fontawesome/solid/gopuram.svg new file mode 100644 index 000000000..efe3a7cc8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/gopuram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/graduation-cap.svg b/docs/material/.icons/fontawesome/solid/graduation-cap.svg new file mode 100644 index 000000000..101c3315f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/graduation-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/greater-than-equal.svg b/docs/material/.icons/fontawesome/solid/greater-than-equal.svg new file mode 100644 index 000000000..1c071f5d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/greater-than-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/greater-than.svg b/docs/material/.icons/fontawesome/solid/greater-than.svg new file mode 100644 index 000000000..152a4bcc4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/greater-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grimace.svg b/docs/material/.icons/fontawesome/solid/grimace.svg new file mode 100644 index 000000000..dda0b7b79 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grimace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-alt.svg b/docs/material/.icons/fontawesome/solid/grin-alt.svg new file mode 100644 index 000000000..c400d4dba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-beam-sweat.svg b/docs/material/.icons/fontawesome/solid/grin-beam-sweat.svg new file mode 100644 index 000000000..1e1096560 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-beam-sweat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-beam.svg b/docs/material/.icons/fontawesome/solid/grin-beam.svg new file mode 100644 index 000000000..cfde54a95 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-hearts.svg b/docs/material/.icons/fontawesome/solid/grin-hearts.svg new file mode 100644 index 000000000..eae2d18cf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-hearts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-squint-tears.svg b/docs/material/.icons/fontawesome/solid/grin-squint-tears.svg new file mode 100644 index 000000000..39073b7d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-squint-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-squint.svg b/docs/material/.icons/fontawesome/solid/grin-squint.svg new file mode 100644 index 000000000..de54800c6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-stars.svg b/docs/material/.icons/fontawesome/solid/grin-stars.svg new file mode 100644 index 000000000..a6432aaba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-tears.svg b/docs/material/.icons/fontawesome/solid/grin-tears.svg new file mode 100644 index 000000000..1413617a5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-tongue-squint.svg b/docs/material/.icons/fontawesome/solid/grin-tongue-squint.svg new file mode 100644 index 000000000..c903494b4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-tongue-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-tongue-wink.svg b/docs/material/.icons/fontawesome/solid/grin-tongue-wink.svg new file mode 100644 index 000000000..49beb8452 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-tongue.svg b/docs/material/.icons/fontawesome/solid/grin-tongue.svg new file mode 100644 index 000000000..6aff145f1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin-wink.svg b/docs/material/.icons/fontawesome/solid/grin-wink.svg new file mode 100644 index 000000000..4c8ed97b0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grin.svg b/docs/material/.icons/fontawesome/solid/grin.svg new file mode 100644 index 000000000..4ba985a07 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grip-horizontal.svg b/docs/material/.icons/fontawesome/solid/grip-horizontal.svg new file mode 100644 index 000000000..bb19ff318 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grip-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grip-lines-vertical.svg b/docs/material/.icons/fontawesome/solid/grip-lines-vertical.svg new file mode 100644 index 000000000..92feba894 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grip-lines-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grip-lines.svg b/docs/material/.icons/fontawesome/solid/grip-lines.svg new file mode 100644 index 000000000..6fb9ce7c0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grip-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/grip-vertical.svg b/docs/material/.icons/fontawesome/solid/grip-vertical.svg new file mode 100644 index 000000000..a383a4331 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/grip-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/guitar.svg b/docs/material/.icons/fontawesome/solid/guitar.svg new file mode 100644 index 000000000..2eb401dfa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/guitar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/h-square.svg b/docs/material/.icons/fontawesome/solid/h-square.svg new file mode 100644 index 000000000..0b85e2856 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/h-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hamburger.svg b/docs/material/.icons/fontawesome/solid/hamburger.svg new file mode 100644 index 000000000..e73c324ce --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hamburger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hammer.svg b/docs/material/.icons/fontawesome/solid/hammer.svg new file mode 100644 index 000000000..78df6b490 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hamsa.svg b/docs/material/.icons/fontawesome/solid/hamsa.svg new file mode 100644 index 000000000..b38511add --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hamsa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-holding-heart.svg b/docs/material/.icons/fontawesome/solid/hand-holding-heart.svg new file mode 100644 index 000000000..65ee45e7f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-holding-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-holding-medical.svg b/docs/material/.icons/fontawesome/solid/hand-holding-medical.svg new file mode 100644 index 000000000..4af4748a4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-holding-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-holding-usd.svg b/docs/material/.icons/fontawesome/solid/hand-holding-usd.svg new file mode 100644 index 000000000..2bd108e67 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-holding-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-holding-water.svg b/docs/material/.icons/fontawesome/solid/hand-holding-water.svg new file mode 100644 index 000000000..36c5c92ad --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-holding-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-holding.svg b/docs/material/.icons/fontawesome/solid/hand-holding.svg new file mode 100644 index 000000000..1328cfd2a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-holding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-lizard.svg b/docs/material/.icons/fontawesome/solid/hand-lizard.svg new file mode 100644 index 000000000..7258eda1b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-lizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-middle-finger.svg b/docs/material/.icons/fontawesome/solid/hand-middle-finger.svg new file mode 100644 index 000000000..52c9b4353 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-middle-finger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-paper.svg b/docs/material/.icons/fontawesome/solid/hand-paper.svg new file mode 100644 index 000000000..af3ee7ad3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-peace.svg b/docs/material/.icons/fontawesome/solid/hand-peace.svg new file mode 100644 index 000000000..3fcdaad98 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-point-down.svg b/docs/material/.icons/fontawesome/solid/hand-point-down.svg new file mode 100644 index 000000000..af8513f07 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-point-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-point-left.svg b/docs/material/.icons/fontawesome/solid/hand-point-left.svg new file mode 100644 index 000000000..5fa16c8d5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-point-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-point-right.svg b/docs/material/.icons/fontawesome/solid/hand-point-right.svg new file mode 100644 index 000000000..e3f50e124 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-point-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-point-up.svg b/docs/material/.icons/fontawesome/solid/hand-point-up.svg new file mode 100644 index 000000000..8bf94b711 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-point-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-pointer.svg b/docs/material/.icons/fontawesome/solid/hand-pointer.svg new file mode 100644 index 000000000..b4665d466 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-rock.svg b/docs/material/.icons/fontawesome/solid/hand-rock.svg new file mode 100644 index 000000000..ce1f6ea32 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-rock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-scissors.svg b/docs/material/.icons/fontawesome/solid/hand-scissors.svg new file mode 100644 index 000000000..f05455804 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-sparkles.svg b/docs/material/.icons/fontawesome/solid/hand-sparkles.svg new file mode 100644 index 000000000..38ce6749c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hand-spock.svg b/docs/material/.icons/fontawesome/solid/hand-spock.svg new file mode 100644 index 000000000..b6e722bd6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hand-spock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hands-helping.svg b/docs/material/.icons/fontawesome/solid/hands-helping.svg new file mode 100644 index 000000000..162f45e9e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hands-helping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hands-wash.svg b/docs/material/.icons/fontawesome/solid/hands-wash.svg new file mode 100644 index 000000000..14dd52282 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hands-wash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hands.svg b/docs/material/.icons/fontawesome/solid/hands.svg new file mode 100644 index 000000000..5f0b02d90 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hands.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/handshake-alt-slash.svg b/docs/material/.icons/fontawesome/solid/handshake-alt-slash.svg new file mode 100644 index 000000000..c5f455bae --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/handshake-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/handshake-slash.svg b/docs/material/.icons/fontawesome/solid/handshake-slash.svg new file mode 100644 index 000000000..3685b8b52 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/handshake-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/handshake.svg b/docs/material/.icons/fontawesome/solid/handshake.svg new file mode 100644 index 000000000..bd5cf53ea --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hanukiah.svg b/docs/material/.icons/fontawesome/solid/hanukiah.svg new file mode 100644 index 000000000..b431d6aef --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hanukiah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hard-hat.svg b/docs/material/.icons/fontawesome/solid/hard-hat.svg new file mode 100644 index 000000000..bcbaa1e98 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hard-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hashtag.svg b/docs/material/.icons/fontawesome/solid/hashtag.svg new file mode 100644 index 000000000..831f2659e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hashtag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hat-cowboy-side.svg b/docs/material/.icons/fontawesome/solid/hat-cowboy-side.svg new file mode 100644 index 000000000..4f0f7a328 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hat-cowboy-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hat-cowboy.svg b/docs/material/.icons/fontawesome/solid/hat-cowboy.svg new file mode 100644 index 000000000..764d3ce02 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hat-cowboy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hat-wizard.svg b/docs/material/.icons/fontawesome/solid/hat-wizard.svg new file mode 100644 index 000000000..a7e9f31ef --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hat-wizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hdd.svg b/docs/material/.icons/fontawesome/solid/hdd.svg new file mode 100644 index 000000000..b8d1672d1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/head-side-cough-slash.svg b/docs/material/.icons/fontawesome/solid/head-side-cough-slash.svg new file mode 100644 index 000000000..c7d943cea --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/head-side-cough-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/head-side-cough.svg b/docs/material/.icons/fontawesome/solid/head-side-cough.svg new file mode 100644 index 000000000..006a1c355 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/head-side-mask.svg b/docs/material/.icons/fontawesome/solid/head-side-mask.svg new file mode 100644 index 000000000..a8f521ee0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/head-side-virus.svg b/docs/material/.icons/fontawesome/solid/head-side-virus.svg new file mode 100644 index 000000000..db6cf4f0a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/head-side-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/heading.svg b/docs/material/.icons/fontawesome/solid/heading.svg new file mode 100644 index 000000000..86c2f0593 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/heading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/headphones-alt.svg b/docs/material/.icons/fontawesome/solid/headphones-alt.svg new file mode 100644 index 000000000..735dc8a7e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/headphones-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/headphones.svg b/docs/material/.icons/fontawesome/solid/headphones.svg new file mode 100644 index 000000000..013bac6fa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/headset.svg b/docs/material/.icons/fontawesome/solid/headset.svg new file mode 100644 index 000000000..e63e7fd2e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/heart-broken.svg b/docs/material/.icons/fontawesome/solid/heart-broken.svg new file mode 100644 index 000000000..bcc6ccfc6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/heart-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/heart.svg b/docs/material/.icons/fontawesome/solid/heart.svg new file mode 100644 index 000000000..d9fa587dd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/heartbeat.svg b/docs/material/.icons/fontawesome/solid/heartbeat.svg new file mode 100644 index 000000000..fa2bb9b41 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/heartbeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/helicopter.svg b/docs/material/.icons/fontawesome/solid/helicopter.svg new file mode 100644 index 000000000..3dd4f03ed --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/helicopter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/highlighter.svg b/docs/material/.icons/fontawesome/solid/highlighter.svg new file mode 100644 index 000000000..ea4f67f6f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/highlighter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hiking.svg b/docs/material/.icons/fontawesome/solid/hiking.svg new file mode 100644 index 000000000..067d8bb6c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hiking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hippo.svg b/docs/material/.icons/fontawesome/solid/hippo.svg new file mode 100644 index 000000000..e8c2a223f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hippo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/history.svg b/docs/material/.icons/fontawesome/solid/history.svg new file mode 100644 index 000000000..8157c3131 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hockey-puck.svg b/docs/material/.icons/fontawesome/solid/hockey-puck.svg new file mode 100644 index 000000000..24a0a90d4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hockey-puck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/holly-berry.svg b/docs/material/.icons/fontawesome/solid/holly-berry.svg new file mode 100644 index 000000000..71e156e5d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/holly-berry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/home.svg b/docs/material/.icons/fontawesome/solid/home.svg new file mode 100644 index 000000000..0d0d49e4e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/horse-head.svg b/docs/material/.icons/fontawesome/solid/horse-head.svg new file mode 100644 index 000000000..98a804a95 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/horse-head.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/horse.svg b/docs/material/.icons/fontawesome/solid/horse.svg new file mode 100644 index 000000000..88892f5d6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/horse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hospital-alt.svg b/docs/material/.icons/fontawesome/solid/hospital-alt.svg new file mode 100644 index 000000000..5229e16ce --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hospital-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hospital-symbol.svg b/docs/material/.icons/fontawesome/solid/hospital-symbol.svg new file mode 100644 index 000000000..9463a88d8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hospital-user.svg b/docs/material/.icons/fontawesome/solid/hospital-user.svg new file mode 100644 index 000000000..2c21de962 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hospital-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hospital.svg b/docs/material/.icons/fontawesome/solid/hospital.svg new file mode 100644 index 000000000..e670862f8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hot-tub.svg b/docs/material/.icons/fontawesome/solid/hot-tub.svg new file mode 100644 index 000000000..402e0fde4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hot-tub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hotdog.svg b/docs/material/.icons/fontawesome/solid/hotdog.svg new file mode 100644 index 000000000..0d59d0e74 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hotdog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hotel.svg b/docs/material/.icons/fontawesome/solid/hotel.svg new file mode 100644 index 000000000..39a8e565d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hotel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hourglass-end.svg b/docs/material/.icons/fontawesome/solid/hourglass-end.svg new file mode 100644 index 000000000..4773ce654 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hourglass-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hourglass-half.svg b/docs/material/.icons/fontawesome/solid/hourglass-half.svg new file mode 100644 index 000000000..adf6f26de --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hourglass-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hourglass-start.svg b/docs/material/.icons/fontawesome/solid/hourglass-start.svg new file mode 100644 index 000000000..214b6c71c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hourglass-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hourglass.svg b/docs/material/.icons/fontawesome/solid/hourglass.svg new file mode 100644 index 000000000..cd6052ce9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/house-damage.svg b/docs/material/.icons/fontawesome/solid/house-damage.svg new file mode 100644 index 000000000..6a9deccdf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/house-damage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/house-user.svg b/docs/material/.icons/fontawesome/solid/house-user.svg new file mode 100644 index 000000000..b699d3049 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/hryvnia.svg b/docs/material/.icons/fontawesome/solid/hryvnia.svg new file mode 100644 index 000000000..d817adfa5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/hryvnia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/i-cursor.svg b/docs/material/.icons/fontawesome/solid/i-cursor.svg new file mode 100644 index 000000000..2367160dc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/i-cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ice-cream.svg b/docs/material/.icons/fontawesome/solid/ice-cream.svg new file mode 100644 index 000000000..15085a96d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/icicles.svg b/docs/material/.icons/fontawesome/solid/icicles.svg new file mode 100644 index 000000000..962982d59 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/icicles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/icons.svg b/docs/material/.icons/fontawesome/solid/icons.svg new file mode 100644 index 000000000..f7ed59c60 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/id-badge.svg b/docs/material/.icons/fontawesome/solid/id-badge.svg new file mode 100644 index 000000000..a5ce6e1d9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/id-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/id-card-alt.svg b/docs/material/.icons/fontawesome/solid/id-card-alt.svg new file mode 100644 index 000000000..0b21ac366 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/id-card-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/id-card.svg b/docs/material/.icons/fontawesome/solid/id-card.svg new file mode 100644 index 000000000..b6be99cb2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/igloo.svg b/docs/material/.icons/fontawesome/solid/igloo.svg new file mode 100644 index 000000000..e2d77d48f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/igloo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/image.svg b/docs/material/.icons/fontawesome/solid/image.svg new file mode 100644 index 000000000..dbf552dab --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/images.svg b/docs/material/.icons/fontawesome/solid/images.svg new file mode 100644 index 000000000..efd28e2ac --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/inbox.svg b/docs/material/.icons/fontawesome/solid/inbox.svg new file mode 100644 index 000000000..74e065ffe --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/indent.svg b/docs/material/.icons/fontawesome/solid/indent.svg new file mode 100644 index 000000000..e99bac6b1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/industry.svg b/docs/material/.icons/fontawesome/solid/industry.svg new file mode 100644 index 000000000..c04e11ac1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/industry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/infinity.svg b/docs/material/.icons/fontawesome/solid/infinity.svg new file mode 100644 index 000000000..d8dd3984e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/infinity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/info-circle.svg b/docs/material/.icons/fontawesome/solid/info-circle.svg new file mode 100644 index 000000000..a25c1632d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/info-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/info.svg b/docs/material/.icons/fontawesome/solid/info.svg new file mode 100644 index 000000000..e6b9c3f6e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/italic.svg b/docs/material/.icons/fontawesome/solid/italic.svg new file mode 100644 index 000000000..d05e744ff --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/jedi.svg b/docs/material/.icons/fontawesome/solid/jedi.svg new file mode 100644 index 000000000..020c30e29 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/jedi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/joint.svg b/docs/material/.icons/fontawesome/solid/joint.svg new file mode 100644 index 000000000..84cf5b91b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/joint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/journal-whills.svg b/docs/material/.icons/fontawesome/solid/journal-whills.svg new file mode 100644 index 000000000..c9606a3db --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/journal-whills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/kaaba.svg b/docs/material/.icons/fontawesome/solid/kaaba.svg new file mode 100644 index 000000000..1b0cb8518 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/kaaba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/key.svg b/docs/material/.icons/fontawesome/solid/key.svg new file mode 100644 index 000000000..dbe729099 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/keyboard.svg b/docs/material/.icons/fontawesome/solid/keyboard.svg new file mode 100644 index 000000000..12686637f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/khanda.svg b/docs/material/.icons/fontawesome/solid/khanda.svg new file mode 100644 index 000000000..763263710 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/khanda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/kiss-beam.svg b/docs/material/.icons/fontawesome/solid/kiss-beam.svg new file mode 100644 index 000000000..a2c3e501f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/kiss-wink-heart.svg b/docs/material/.icons/fontawesome/solid/kiss-wink-heart.svg new file mode 100644 index 000000000..de6ecee32 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/kiss.svg b/docs/material/.icons/fontawesome/solid/kiss.svg new file mode 100644 index 000000000..0f6852440 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/kiwi-bird.svg b/docs/material/.icons/fontawesome/solid/kiwi-bird.svg new file mode 100644 index 000000000..bbc7c9af4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/kiwi-bird.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/landmark.svg b/docs/material/.icons/fontawesome/solid/landmark.svg new file mode 100644 index 000000000..90e5009b0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/landmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/language.svg b/docs/material/.icons/fontawesome/solid/language.svg new file mode 100644 index 000000000..32108d8c8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laptop-code.svg b/docs/material/.icons/fontawesome/solid/laptop-code.svg new file mode 100644 index 000000000..a607c0f2c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laptop-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laptop-house.svg b/docs/material/.icons/fontawesome/solid/laptop-house.svg new file mode 100644 index 000000000..1f83435f2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laptop-house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laptop-medical.svg b/docs/material/.icons/fontawesome/solid/laptop-medical.svg new file mode 100644 index 000000000..0cea89a61 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laptop-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laptop.svg b/docs/material/.icons/fontawesome/solid/laptop.svg new file mode 100644 index 000000000..b68aab382 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laugh-beam.svg b/docs/material/.icons/fontawesome/solid/laugh-beam.svg new file mode 100644 index 000000000..9baa5495e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laugh-squint.svg b/docs/material/.icons/fontawesome/solid/laugh-squint.svg new file mode 100644 index 000000000..20046e6d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laugh-wink.svg b/docs/material/.icons/fontawesome/solid/laugh-wink.svg new file mode 100644 index 000000000..1dffaa609 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/laugh.svg b/docs/material/.icons/fontawesome/solid/laugh.svg new file mode 100644 index 000000000..07d3111ed --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/layer-group.svg b/docs/material/.icons/fontawesome/solid/layer-group.svg new file mode 100644 index 000000000..ecbec29f9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/leaf.svg b/docs/material/.icons/fontawesome/solid/leaf.svg new file mode 100644 index 000000000..f31abe1b8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/lemon.svg b/docs/material/.icons/fontawesome/solid/lemon.svg new file mode 100644 index 000000000..e8f98bd68 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/less-than-equal.svg b/docs/material/.icons/fontawesome/solid/less-than-equal.svg new file mode 100644 index 000000000..7bbf5c084 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/less-than-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/less-than.svg b/docs/material/.icons/fontawesome/solid/less-than.svg new file mode 100644 index 000000000..5a72828e9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/less-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/level-down-alt.svg b/docs/material/.icons/fontawesome/solid/level-down-alt.svg new file mode 100644 index 000000000..9cd529024 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/level-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/level-up-alt.svg b/docs/material/.icons/fontawesome/solid/level-up-alt.svg new file mode 100644 index 000000000..ea28ce8ed --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/level-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/life-ring.svg b/docs/material/.icons/fontawesome/solid/life-ring.svg new file mode 100644 index 000000000..02ca0243a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/lightbulb.svg b/docs/material/.icons/fontawesome/solid/lightbulb.svg new file mode 100644 index 000000000..08338ad43 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/link.svg b/docs/material/.icons/fontawesome/solid/link.svg new file mode 100644 index 000000000..c61fc5ef0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/lira-sign.svg b/docs/material/.icons/fontawesome/solid/lira-sign.svg new file mode 100644 index 000000000..007666043 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/list-alt.svg b/docs/material/.icons/fontawesome/solid/list-alt.svg new file mode 100644 index 000000000..5e32557c2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/list-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/list-ol.svg b/docs/material/.icons/fontawesome/solid/list-ol.svg new file mode 100644 index 000000000..961855681 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/list-ol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/list-ul.svg b/docs/material/.icons/fontawesome/solid/list-ul.svg new file mode 100644 index 000000000..7fa661d13 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/list.svg b/docs/material/.icons/fontawesome/solid/list.svg new file mode 100644 index 000000000..6345952ae --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/location-arrow.svg b/docs/material/.icons/fontawesome/solid/location-arrow.svg new file mode 100644 index 000000000..853ee9c30 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/location-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/lock-open.svg b/docs/material/.icons/fontawesome/solid/lock-open.svg new file mode 100644 index 000000000..7f949963a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/lock.svg b/docs/material/.icons/fontawesome/solid/lock.svg new file mode 100644 index 000000000..7d0e70bdc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/long-arrow-alt-down.svg b/docs/material/.icons/fontawesome/solid/long-arrow-alt-down.svg new file mode 100644 index 000000000..75e69e79b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/long-arrow-alt-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/long-arrow-alt-left.svg b/docs/material/.icons/fontawesome/solid/long-arrow-alt-left.svg new file mode 100644 index 000000000..b9e103b3d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/long-arrow-alt-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/long-arrow-alt-right.svg b/docs/material/.icons/fontawesome/solid/long-arrow-alt-right.svg new file mode 100644 index 000000000..2f388d537 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/long-arrow-alt-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/long-arrow-alt-up.svg b/docs/material/.icons/fontawesome/solid/long-arrow-alt-up.svg new file mode 100644 index 000000000..cdd5dcf7b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/long-arrow-alt-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/low-vision.svg b/docs/material/.icons/fontawesome/solid/low-vision.svg new file mode 100644 index 000000000..64fbc1425 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/low-vision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/luggage-cart.svg b/docs/material/.icons/fontawesome/solid/luggage-cart.svg new file mode 100644 index 000000000..c8514212f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/luggage-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/lungs-virus.svg b/docs/material/.icons/fontawesome/solid/lungs-virus.svg new file mode 100644 index 000000000..4a4c68036 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/lungs-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/lungs.svg b/docs/material/.icons/fontawesome/solid/lungs.svg new file mode 100644 index 000000000..cfc26ca34 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/lungs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/magic.svg b/docs/material/.icons/fontawesome/solid/magic.svg new file mode 100644 index 000000000..9ee277f19 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/magic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/magnet.svg b/docs/material/.icons/fontawesome/solid/magnet.svg new file mode 100644 index 000000000..16e44c4ad --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mail-bulk.svg b/docs/material/.icons/fontawesome/solid/mail-bulk.svg new file mode 100644 index 000000000..38e5f5ae3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mail-bulk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/male.svg b/docs/material/.icons/fontawesome/solid/male.svg new file mode 100644 index 000000000..b41d026f3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/map-marked-alt.svg b/docs/material/.icons/fontawesome/solid/map-marked-alt.svg new file mode 100644 index 000000000..12cfe126b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/map-marked-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/map-marked.svg b/docs/material/.icons/fontawesome/solid/map-marked.svg new file mode 100644 index 000000000..491814244 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/map-marked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/map-marker-alt.svg b/docs/material/.icons/fontawesome/solid/map-marker-alt.svg new file mode 100644 index 000000000..d3d94f03a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/map-marker-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/map-marker.svg b/docs/material/.icons/fontawesome/solid/map-marker.svg new file mode 100644 index 000000000..c2047c7ba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/map-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/map-pin.svg b/docs/material/.icons/fontawesome/solid/map-pin.svg new file mode 100644 index 000000000..3d7107330 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/map-signs.svg b/docs/material/.icons/fontawesome/solid/map-signs.svg new file mode 100644 index 000000000..5f5b9b3d6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/map-signs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/map.svg b/docs/material/.icons/fontawesome/solid/map.svg new file mode 100644 index 000000000..4f9aaf20a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/marker.svg b/docs/material/.icons/fontawesome/solid/marker.svg new file mode 100644 index 000000000..bde41659c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mars-double.svg b/docs/material/.icons/fontawesome/solid/mars-double.svg new file mode 100644 index 000000000..49a76e073 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mars-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mars-stroke-h.svg b/docs/material/.icons/fontawesome/solid/mars-stroke-h.svg new file mode 100644 index 000000000..32ea3f52e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mars-stroke-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mars-stroke-v.svg b/docs/material/.icons/fontawesome/solid/mars-stroke-v.svg new file mode 100644 index 000000000..e3c03aace --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mars-stroke-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mars-stroke.svg b/docs/material/.icons/fontawesome/solid/mars-stroke.svg new file mode 100644 index 000000000..076d1e6d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mars-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mars.svg b/docs/material/.icons/fontawesome/solid/mars.svg new file mode 100644 index 000000000..022f88d00 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mask.svg b/docs/material/.icons/fontawesome/solid/mask.svg new file mode 100644 index 000000000..d4067931d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/medal.svg b/docs/material/.icons/fontawesome/solid/medal.svg new file mode 100644 index 000000000..520c13db9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/medkit.svg b/docs/material/.icons/fontawesome/solid/medkit.svg new file mode 100644 index 000000000..637d38e9f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/meh-blank.svg b/docs/material/.icons/fontawesome/solid/meh-blank.svg new file mode 100644 index 000000000..e98e39bba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/meh-rolling-eyes.svg b/docs/material/.icons/fontawesome/solid/meh-rolling-eyes.svg new file mode 100644 index 000000000..068994059 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/meh-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/meh.svg b/docs/material/.icons/fontawesome/solid/meh.svg new file mode 100644 index 000000000..198bebded --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/memory.svg b/docs/material/.icons/fontawesome/solid/memory.svg new file mode 100644 index 000000000..1ae9bcd2a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/memory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/menorah.svg b/docs/material/.icons/fontawesome/solid/menorah.svg new file mode 100644 index 000000000..a6f11b97b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/menorah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mercury.svg b/docs/material/.icons/fontawesome/solid/mercury.svg new file mode 100644 index 000000000..a93041587 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mercury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/meteor.svg b/docs/material/.icons/fontawesome/solid/meteor.svg new file mode 100644 index 000000000..5ba729164 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/meteor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/microchip.svg b/docs/material/.icons/fontawesome/solid/microchip.svg new file mode 100644 index 000000000..49acc0e22 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/microchip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/microphone-alt-slash.svg b/docs/material/.icons/fontawesome/solid/microphone-alt-slash.svg new file mode 100644 index 000000000..59ad8b275 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/microphone-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/microphone-alt.svg b/docs/material/.icons/fontawesome/solid/microphone-alt.svg new file mode 100644 index 000000000..dd8f50f0c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/microphone-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/microphone-slash.svg b/docs/material/.icons/fontawesome/solid/microphone-slash.svg new file mode 100644 index 000000000..8d3badb73 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/microphone.svg b/docs/material/.icons/fontawesome/solid/microphone.svg new file mode 100644 index 000000000..194b4d316 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/microscope.svg b/docs/material/.icons/fontawesome/solid/microscope.svg new file mode 100644 index 000000000..ef7140363 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/minus-circle.svg b/docs/material/.icons/fontawesome/solid/minus-circle.svg new file mode 100644 index 000000000..efe6e46a3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/minus-square.svg b/docs/material/.icons/fontawesome/solid/minus-square.svg new file mode 100644 index 000000000..27ebb01cc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/minus.svg b/docs/material/.icons/fontawesome/solid/minus.svg new file mode 100644 index 000000000..ac83426d1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mitten.svg b/docs/material/.icons/fontawesome/solid/mitten.svg new file mode 100644 index 000000000..a4dca7540 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mitten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mobile-alt.svg b/docs/material/.icons/fontawesome/solid/mobile-alt.svg new file mode 100644 index 000000000..e8084596d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mobile-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mobile.svg b/docs/material/.icons/fontawesome/solid/mobile.svg new file mode 100644 index 000000000..2783241d7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/money-bill-alt.svg b/docs/material/.icons/fontawesome/solid/money-bill-alt.svg new file mode 100644 index 000000000..41a1e5d72 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/money-bill-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/money-bill-wave-alt.svg b/docs/material/.icons/fontawesome/solid/money-bill-wave-alt.svg new file mode 100644 index 000000000..f32fcfe87 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/money-bill-wave-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/money-bill-wave.svg b/docs/material/.icons/fontawesome/solid/money-bill-wave.svg new file mode 100644 index 000000000..fc7823946 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/money-bill-wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/money-bill.svg b/docs/material/.icons/fontawesome/solid/money-bill.svg new file mode 100644 index 000000000..e1ae0f293 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/money-bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/money-check-alt.svg b/docs/material/.icons/fontawesome/solid/money-check-alt.svg new file mode 100644 index 000000000..08816382b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/money-check-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/money-check.svg b/docs/material/.icons/fontawesome/solid/money-check.svg new file mode 100644 index 000000000..84bbeac2d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/money-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/monument.svg b/docs/material/.icons/fontawesome/solid/monument.svg new file mode 100644 index 000000000..5dd373a7d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/monument.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/moon.svg b/docs/material/.icons/fontawesome/solid/moon.svg new file mode 100644 index 000000000..dd9ff7e89 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mortar-pestle.svg b/docs/material/.icons/fontawesome/solid/mortar-pestle.svg new file mode 100644 index 000000000..56041707c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mortar-pestle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mosque.svg b/docs/material/.icons/fontawesome/solid/mosque.svg new file mode 100644 index 000000000..396eb4ee0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mosque.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/motorcycle.svg b/docs/material/.icons/fontawesome/solid/motorcycle.svg new file mode 100644 index 000000000..148897996 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/motorcycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mountain.svg b/docs/material/.icons/fontawesome/solid/mountain.svg new file mode 100644 index 000000000..919fcd4ec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mountain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mouse-pointer.svg b/docs/material/.icons/fontawesome/solid/mouse-pointer.svg new file mode 100644 index 000000000..c5f252d0a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mouse-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mouse.svg b/docs/material/.icons/fontawesome/solid/mouse.svg new file mode 100644 index 000000000..dad8e470a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/mug-hot.svg b/docs/material/.icons/fontawesome/solid/mug-hot.svg new file mode 100644 index 000000000..750e08617 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/mug-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/music.svg b/docs/material/.icons/fontawesome/solid/music.svg new file mode 100644 index 000000000..723dcfe43 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/network-wired.svg b/docs/material/.icons/fontawesome/solid/network-wired.svg new file mode 100644 index 000000000..1be547c0e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/network-wired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/neuter.svg b/docs/material/.icons/fontawesome/solid/neuter.svg new file mode 100644 index 000000000..cb7635d0f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/neuter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/newspaper.svg b/docs/material/.icons/fontawesome/solid/newspaper.svg new file mode 100644 index 000000000..48bcb02d5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/not-equal.svg b/docs/material/.icons/fontawesome/solid/not-equal.svg new file mode 100644 index 000000000..d11d13918 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/not-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/notes-medical.svg b/docs/material/.icons/fontawesome/solid/notes-medical.svg new file mode 100644 index 000000000..fc5d5962e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/notes-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/object-group.svg b/docs/material/.icons/fontawesome/solid/object-group.svg new file mode 100644 index 000000000..b07fcecf7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/object-ungroup.svg b/docs/material/.icons/fontawesome/solid/object-ungroup.svg new file mode 100644 index 000000000..a66887b10 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/oil-can.svg b/docs/material/.icons/fontawesome/solid/oil-can.svg new file mode 100644 index 000000000..02a86938d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/oil-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/om.svg b/docs/material/.icons/fontawesome/solid/om.svg new file mode 100644 index 000000000..34fbced80 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/om.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/otter.svg b/docs/material/.icons/fontawesome/solid/otter.svg new file mode 100644 index 000000000..c908a04d0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/otter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/outdent.svg b/docs/material/.icons/fontawesome/solid/outdent.svg new file mode 100644 index 000000000..0f4749c73 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/outdent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pager.svg b/docs/material/.icons/fontawesome/solid/pager.svg new file mode 100644 index 000000000..896c919f8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pager.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/paint-brush.svg b/docs/material/.icons/fontawesome/solid/paint-brush.svg new file mode 100644 index 000000000..01d1c9273 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/paint-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/paint-roller.svg b/docs/material/.icons/fontawesome/solid/paint-roller.svg new file mode 100644 index 000000000..14d3b6ac3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/paint-roller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/palette.svg b/docs/material/.icons/fontawesome/solid/palette.svg new file mode 100644 index 000000000..a75b257e6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pallet.svg b/docs/material/.icons/fontawesome/solid/pallet.svg new file mode 100644 index 000000000..564f45be9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/paper-plane.svg b/docs/material/.icons/fontawesome/solid/paper-plane.svg new file mode 100644 index 000000000..cecb40f27 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/paperclip.svg b/docs/material/.icons/fontawesome/solid/paperclip.svg new file mode 100644 index 000000000..162db7e5c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/parachute-box.svg b/docs/material/.icons/fontawesome/solid/parachute-box.svg new file mode 100644 index 000000000..80abd2ea6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/parachute-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/paragraph.svg b/docs/material/.icons/fontawesome/solid/paragraph.svg new file mode 100644 index 000000000..9b31e4beb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/parking.svg b/docs/material/.icons/fontawesome/solid/parking.svg new file mode 100644 index 000000000..04a13736c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/parking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/passport.svg b/docs/material/.icons/fontawesome/solid/passport.svg new file mode 100644 index 000000000..1a7aa6f1c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/passport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pastafarianism.svg b/docs/material/.icons/fontawesome/solid/pastafarianism.svg new file mode 100644 index 000000000..402622aa6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pastafarianism.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/paste.svg b/docs/material/.icons/fontawesome/solid/paste.svg new file mode 100644 index 000000000..17707e9f4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/paste.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pause-circle.svg b/docs/material/.icons/fontawesome/solid/pause-circle.svg new file mode 100644 index 000000000..72a8e48c3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pause.svg b/docs/material/.icons/fontawesome/solid/pause.svg new file mode 100644 index 000000000..63a15b6ee --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/paw.svg b/docs/material/.icons/fontawesome/solid/paw.svg new file mode 100644 index 000000000..5cb50f82a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/peace.svg b/docs/material/.icons/fontawesome/solid/peace.svg new file mode 100644 index 000000000..7c5ce22fb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pen-alt.svg b/docs/material/.icons/fontawesome/solid/pen-alt.svg new file mode 100644 index 000000000..ab987aade --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pen-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pen-fancy.svg b/docs/material/.icons/fontawesome/solid/pen-fancy.svg new file mode 100644 index 000000000..d51e1d595 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pen-fancy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pen-nib.svg b/docs/material/.icons/fontawesome/solid/pen-nib.svg new file mode 100644 index 000000000..8f740779a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pen-nib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pen-square.svg b/docs/material/.icons/fontawesome/solid/pen-square.svg new file mode 100644 index 000000000..0f30e05fd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pen-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pen.svg b/docs/material/.icons/fontawesome/solid/pen.svg new file mode 100644 index 000000000..2d043aa47 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pencil-alt.svg b/docs/material/.icons/fontawesome/solid/pencil-alt.svg new file mode 100644 index 000000000..26d7daeac --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pencil-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pencil-ruler.svg b/docs/material/.icons/fontawesome/solid/pencil-ruler.svg new file mode 100644 index 000000000..572c35520 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pencil-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/people-arrows.svg b/docs/material/.icons/fontawesome/solid/people-arrows.svg new file mode 100644 index 000000000..a394be1dc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/people-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/people-carry.svg b/docs/material/.icons/fontawesome/solid/people-carry.svg new file mode 100644 index 000000000..98a947fbf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/people-carry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pepper-hot.svg b/docs/material/.icons/fontawesome/solid/pepper-hot.svg new file mode 100644 index 000000000..a3811e448 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pepper-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/percent.svg b/docs/material/.icons/fontawesome/solid/percent.svg new file mode 100644 index 000000000..16106767c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/percentage.svg b/docs/material/.icons/fontawesome/solid/percentage.svg new file mode 100644 index 000000000..574fb0554 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/percentage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/person-booth.svg b/docs/material/.icons/fontawesome/solid/person-booth.svg new file mode 100644 index 000000000..dd7624fa7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/person-booth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/phone-alt.svg b/docs/material/.icons/fontawesome/solid/phone-alt.svg new file mode 100644 index 000000000..2f9362151 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/phone-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/phone-slash.svg b/docs/material/.icons/fontawesome/solid/phone-slash.svg new file mode 100644 index 000000000..0e20562e5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/phone-square-alt.svg b/docs/material/.icons/fontawesome/solid/phone-square-alt.svg new file mode 100644 index 000000000..c3df7c77c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/phone-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/phone-square.svg b/docs/material/.icons/fontawesome/solid/phone-square.svg new file mode 100644 index 000000000..0871b57a8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/phone-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/phone-volume.svg b/docs/material/.icons/fontawesome/solid/phone-volume.svg new file mode 100644 index 000000000..b9de1f3ba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/phone-volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/phone.svg b/docs/material/.icons/fontawesome/solid/phone.svg new file mode 100644 index 000000000..2cf74a9d8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/photo-video.svg b/docs/material/.icons/fontawesome/solid/photo-video.svg new file mode 100644 index 000000000..745cf53c0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/photo-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/piggy-bank.svg b/docs/material/.icons/fontawesome/solid/piggy-bank.svg new file mode 100644 index 000000000..65fb510e5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/piggy-bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pills.svg b/docs/material/.icons/fontawesome/solid/pills.svg new file mode 100644 index 000000000..eadd5aa10 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pizza-slice.svg b/docs/material/.icons/fontawesome/solid/pizza-slice.svg new file mode 100644 index 000000000..764072a65 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pizza-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/place-of-worship.svg b/docs/material/.icons/fontawesome/solid/place-of-worship.svg new file mode 100644 index 000000000..0998c6a02 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/place-of-worship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plane-arrival.svg b/docs/material/.icons/fontawesome/solid/plane-arrival.svg new file mode 100644 index 000000000..a8fc810b1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plane-arrival.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plane-departure.svg b/docs/material/.icons/fontawesome/solid/plane-departure.svg new file mode 100644 index 000000000..b84c8f11b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plane-departure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plane-slash.svg b/docs/material/.icons/fontawesome/solid/plane-slash.svg new file mode 100644 index 000000000..58097c429 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plane-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plane.svg b/docs/material/.icons/fontawesome/solid/plane.svg new file mode 100644 index 000000000..964d452fb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/play-circle.svg b/docs/material/.icons/fontawesome/solid/play-circle.svg new file mode 100644 index 000000000..ea1039704 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/play.svg b/docs/material/.icons/fontawesome/solid/play.svg new file mode 100644 index 000000000..d7fa87f32 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plug.svg b/docs/material/.icons/fontawesome/solid/plug.svg new file mode 100644 index 000000000..68218d074 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plus-circle.svg b/docs/material/.icons/fontawesome/solid/plus-circle.svg new file mode 100644 index 000000000..f7a138c6e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plus-square.svg b/docs/material/.icons/fontawesome/solid/plus-square.svg new file mode 100644 index 000000000..ff058b572 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/plus.svg b/docs/material/.icons/fontawesome/solid/plus.svg new file mode 100644 index 000000000..95992e1f5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/podcast.svg b/docs/material/.icons/fontawesome/solid/podcast.svg new file mode 100644 index 000000000..9ee3b6fad --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/podcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/poll-h.svg b/docs/material/.icons/fontawesome/solid/poll-h.svg new file mode 100644 index 000000000..c3993a991 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/poll-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/poll.svg b/docs/material/.icons/fontawesome/solid/poll.svg new file mode 100644 index 000000000..96d2fb67e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/poll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/poo-storm.svg b/docs/material/.icons/fontawesome/solid/poo-storm.svg new file mode 100644 index 000000000..cf79910f7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/poo-storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/poo.svg b/docs/material/.icons/fontawesome/solid/poo.svg new file mode 100644 index 000000000..997725b53 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/poo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/poop.svg b/docs/material/.icons/fontawesome/solid/poop.svg new file mode 100644 index 000000000..8adbdb89f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/poop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/portrait.svg b/docs/material/.icons/fontawesome/solid/portrait.svg new file mode 100644 index 000000000..a62ed1801 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pound-sign.svg b/docs/material/.icons/fontawesome/solid/pound-sign.svg new file mode 100644 index 000000000..8705075f9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pound-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/power-off.svg b/docs/material/.icons/fontawesome/solid/power-off.svg new file mode 100644 index 000000000..371131806 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/power-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pray.svg b/docs/material/.icons/fontawesome/solid/pray.svg new file mode 100644 index 000000000..dc87ee560 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/praying-hands.svg b/docs/material/.icons/fontawesome/solid/praying-hands.svg new file mode 100644 index 000000000..6756d8c8c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/praying-hands.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/prescription-bottle-alt.svg b/docs/material/.icons/fontawesome/solid/prescription-bottle-alt.svg new file mode 100644 index 000000000..5757bf870 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/prescription-bottle-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/prescription-bottle.svg b/docs/material/.icons/fontawesome/solid/prescription-bottle.svg new file mode 100644 index 000000000..6f2d6c363 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/prescription-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/prescription.svg b/docs/material/.icons/fontawesome/solid/prescription.svg new file mode 100644 index 000000000..f0cfc7217 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/print.svg b/docs/material/.icons/fontawesome/solid/print.svg new file mode 100644 index 000000000..2c11c293d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/procedures.svg b/docs/material/.icons/fontawesome/solid/procedures.svg new file mode 100644 index 000000000..5ccfafbe6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/procedures.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/project-diagram.svg b/docs/material/.icons/fontawesome/solid/project-diagram.svg new file mode 100644 index 000000000..cb21c6f88 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/project-diagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pump-medical.svg b/docs/material/.icons/fontawesome/solid/pump-medical.svg new file mode 100644 index 000000000..ba0a1d432 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pump-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/pump-soap.svg b/docs/material/.icons/fontawesome/solid/pump-soap.svg new file mode 100644 index 000000000..6fd1d5e12 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/pump-soap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/puzzle-piece.svg b/docs/material/.icons/fontawesome/solid/puzzle-piece.svg new file mode 100644 index 000000000..a632d8a92 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/puzzle-piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/qrcode.svg b/docs/material/.icons/fontawesome/solid/qrcode.svg new file mode 100644 index 000000000..c92fa7caa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/qrcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/question-circle.svg b/docs/material/.icons/fontawesome/solid/question-circle.svg new file mode 100644 index 000000000..a8f424362 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/question.svg b/docs/material/.icons/fontawesome/solid/question.svg new file mode 100644 index 000000000..065e9fe73 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/quidditch.svg b/docs/material/.icons/fontawesome/solid/quidditch.svg new file mode 100644 index 000000000..6d0be5eb5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/quidditch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/quote-left.svg b/docs/material/.icons/fontawesome/solid/quote-left.svg new file mode 100644 index 000000000..d73aa5e4e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/quote-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/quote-right.svg b/docs/material/.icons/fontawesome/solid/quote-right.svg new file mode 100644 index 000000000..18537bfe4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/quote-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/quran.svg b/docs/material/.icons/fontawesome/solid/quran.svg new file mode 100644 index 000000000..a40a656db --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/quran.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/radiation-alt.svg b/docs/material/.icons/fontawesome/solid/radiation-alt.svg new file mode 100644 index 000000000..a44836cff --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/radiation-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/radiation.svg b/docs/material/.icons/fontawesome/solid/radiation.svg new file mode 100644 index 000000000..c6c5b9c44 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/radiation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/rainbow.svg b/docs/material/.icons/fontawesome/solid/rainbow.svg new file mode 100644 index 000000000..ef50bef28 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/rainbow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/random.svg b/docs/material/.icons/fontawesome/solid/random.svg new file mode 100644 index 000000000..c6e56dc66 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/random.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/receipt.svg b/docs/material/.icons/fontawesome/solid/receipt.svg new file mode 100644 index 000000000..60d8a6c02 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/record-vinyl.svg b/docs/material/.icons/fontawesome/solid/record-vinyl.svg new file mode 100644 index 000000000..bffe9269a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/record-vinyl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/recycle.svg b/docs/material/.icons/fontawesome/solid/recycle.svg new file mode 100644 index 000000000..1c7fa7166 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/recycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/redo-alt.svg b/docs/material/.icons/fontawesome/solid/redo-alt.svg new file mode 100644 index 000000000..f014834d5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/redo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/redo.svg b/docs/material/.icons/fontawesome/solid/redo.svg new file mode 100644 index 000000000..85da0c0b7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/registered.svg b/docs/material/.icons/fontawesome/solid/registered.svg new file mode 100644 index 000000000..7d883448e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/remove-format.svg b/docs/material/.icons/fontawesome/solid/remove-format.svg new file mode 100644 index 000000000..3d1bd2eb5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/remove-format.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/reply-all.svg b/docs/material/.icons/fontawesome/solid/reply-all.svg new file mode 100644 index 000000000..41b428a42 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/reply-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/reply.svg b/docs/material/.icons/fontawesome/solid/reply.svg new file mode 100644 index 000000000..50f99ff05 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/republican.svg b/docs/material/.icons/fontawesome/solid/republican.svg new file mode 100644 index 000000000..76f70e91c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/republican.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/restroom.svg b/docs/material/.icons/fontawesome/solid/restroom.svg new file mode 100644 index 000000000..87486b851 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/restroom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/retweet.svg b/docs/material/.icons/fontawesome/solid/retweet.svg new file mode 100644 index 000000000..6181bf526 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/retweet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ribbon.svg b/docs/material/.icons/fontawesome/solid/ribbon.svg new file mode 100644 index 000000000..c87df5ff6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ring.svg b/docs/material/.icons/fontawesome/solid/ring.svg new file mode 100644 index 000000000..cba4ca690 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/road.svg b/docs/material/.icons/fontawesome/solid/road.svg new file mode 100644 index 000000000..6cc2df2bf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/road.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/robot.svg b/docs/material/.icons/fontawesome/solid/robot.svg new file mode 100644 index 000000000..d2383dfdc --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/rocket.svg b/docs/material/.icons/fontawesome/solid/rocket.svg new file mode 100644 index 000000000..0fcaaec02 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/route.svg b/docs/material/.icons/fontawesome/solid/route.svg new file mode 100644 index 000000000..2d050c40e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/route.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/rss-square.svg b/docs/material/.icons/fontawesome/solid/rss-square.svg new file mode 100644 index 000000000..ff9a15a63 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/rss-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/rss.svg b/docs/material/.icons/fontawesome/solid/rss.svg new file mode 100644 index 000000000..e6fa54c38 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ruble-sign.svg b/docs/material/.icons/fontawesome/solid/ruble-sign.svg new file mode 100644 index 000000000..50ec2f50b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ruble-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ruler-combined.svg b/docs/material/.icons/fontawesome/solid/ruler-combined.svg new file mode 100644 index 000000000..c4ceb4a6e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ruler-horizontal.svg b/docs/material/.icons/fontawesome/solid/ruler-horizontal.svg new file mode 100644 index 000000000..12c5426e2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ruler-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ruler-vertical.svg b/docs/material/.icons/fontawesome/solid/ruler-vertical.svg new file mode 100644 index 000000000..364cb31c2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ruler-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ruler.svg b/docs/material/.icons/fontawesome/solid/ruler.svg new file mode 100644 index 000000000..3f7a16b47 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/running.svg b/docs/material/.icons/fontawesome/solid/running.svg new file mode 100644 index 000000000..0e4a5a192 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/running.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/rupee-sign.svg b/docs/material/.icons/fontawesome/solid/rupee-sign.svg new file mode 100644 index 000000000..b7144973b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/rupee-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sad-cry.svg b/docs/material/.icons/fontawesome/solid/sad-cry.svg new file mode 100644 index 000000000..448b6df84 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sad-tear.svg b/docs/material/.icons/fontawesome/solid/sad-tear.svg new file mode 100644 index 000000000..4071d1026 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/satellite-dish.svg b/docs/material/.icons/fontawesome/solid/satellite-dish.svg new file mode 100644 index 000000000..7b53497c2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/satellite-dish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/satellite.svg b/docs/material/.icons/fontawesome/solid/satellite.svg new file mode 100644 index 000000000..cfddf1ce3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/satellite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/save.svg b/docs/material/.icons/fontawesome/solid/save.svg new file mode 100644 index 000000000..76494fd29 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/school.svg b/docs/material/.icons/fontawesome/solid/school.svg new file mode 100644 index 000000000..298fb88a4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/screwdriver.svg b/docs/material/.icons/fontawesome/solid/screwdriver.svg new file mode 100644 index 000000000..04ce77868 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/scroll.svg b/docs/material/.icons/fontawesome/solid/scroll.svg new file mode 100644 index 000000000..0ba80124f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sd-card.svg b/docs/material/.icons/fontawesome/solid/sd-card.svg new file mode 100644 index 000000000..be6da436f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sd-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/search-dollar.svg b/docs/material/.icons/fontawesome/solid/search-dollar.svg new file mode 100644 index 000000000..009f332e8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/search-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/search-location.svg b/docs/material/.icons/fontawesome/solid/search-location.svg new file mode 100644 index 000000000..cae1a2bb6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/search-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/search-minus.svg b/docs/material/.icons/fontawesome/solid/search-minus.svg new file mode 100644 index 000000000..7befe08ba --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/search-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/search-plus.svg b/docs/material/.icons/fontawesome/solid/search-plus.svg new file mode 100644 index 000000000..e4f5984b3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/search-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/search.svg b/docs/material/.icons/fontawesome/solid/search.svg new file mode 100644 index 000000000..865b962e2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/seedling.svg b/docs/material/.icons/fontawesome/solid/seedling.svg new file mode 100644 index 000000000..b5e2a26ef --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/seedling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/server.svg b/docs/material/.icons/fontawesome/solid/server.svg new file mode 100644 index 000000000..4e6c50fd4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shapes.svg b/docs/material/.icons/fontawesome/solid/shapes.svg new file mode 100644 index 000000000..3880ff368 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/share-alt-square.svg b/docs/material/.icons/fontawesome/solid/share-alt-square.svg new file mode 100644 index 000000000..b1c9c0abb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/share-alt-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/share-alt.svg b/docs/material/.icons/fontawesome/solid/share-alt.svg new file mode 100644 index 000000000..34c8fcc2d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/share-square.svg b/docs/material/.icons/fontawesome/solid/share-square.svg new file mode 100644 index 000000000..c86740ad8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/share-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/share.svg b/docs/material/.icons/fontawesome/solid/share.svg new file mode 100644 index 000000000..e7e262b44 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shekel-sign.svg b/docs/material/.icons/fontawesome/solid/shekel-sign.svg new file mode 100644 index 000000000..079555e42 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shekel-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shield-alt.svg b/docs/material/.icons/fontawesome/solid/shield-alt.svg new file mode 100644 index 000000000..f21eee0e1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shield-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shield-virus.svg b/docs/material/.icons/fontawesome/solid/shield-virus.svg new file mode 100644 index 000000000..5110fd989 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shield-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ship.svg b/docs/material/.icons/fontawesome/solid/ship.svg new file mode 100644 index 000000000..13a3d2ba8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shipping-fast.svg b/docs/material/.icons/fontawesome/solid/shipping-fast.svg new file mode 100644 index 000000000..342f4d40f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shipping-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shoe-prints.svg b/docs/material/.icons/fontawesome/solid/shoe-prints.svg new file mode 100644 index 000000000..9f056d4af --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shoe-prints.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shopping-bag.svg b/docs/material/.icons/fontawesome/solid/shopping-bag.svg new file mode 100644 index 000000000..78f8a425c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shopping-basket.svg b/docs/material/.icons/fontawesome/solid/shopping-basket.svg new file mode 100644 index 000000000..6eef20e6a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shopping-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shopping-cart.svg b/docs/material/.icons/fontawesome/solid/shopping-cart.svg new file mode 100644 index 000000000..d409917d2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shower.svg b/docs/material/.icons/fontawesome/solid/shower.svg new file mode 100644 index 000000000..9e332790d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/shuttle-van.svg b/docs/material/.icons/fontawesome/solid/shuttle-van.svg new file mode 100644 index 000000000..820b13dff --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/shuttle-van.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sign-in-alt.svg b/docs/material/.icons/fontawesome/solid/sign-in-alt.svg new file mode 100644 index 000000000..5b235c0cf --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sign-in-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sign-language.svg b/docs/material/.icons/fontawesome/solid/sign-language.svg new file mode 100644 index 000000000..6602b6d3a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sign-language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sign-out-alt.svg b/docs/material/.icons/fontawesome/solid/sign-out-alt.svg new file mode 100644 index 000000000..ca9853369 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sign-out-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sign.svg b/docs/material/.icons/fontawesome/solid/sign.svg new file mode 100644 index 000000000..0b2a45bb8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/signal.svg b/docs/material/.icons/fontawesome/solid/signal.svg new file mode 100644 index 000000000..d929175e4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/signature.svg b/docs/material/.icons/fontawesome/solid/signature.svg new file mode 100644 index 000000000..de2832b7d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sim-card.svg b/docs/material/.icons/fontawesome/solid/sim-card.svg new file mode 100644 index 000000000..12786193b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sim-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sitemap.svg b/docs/material/.icons/fontawesome/solid/sitemap.svg new file mode 100644 index 000000000..a7009eaff --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sitemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/skating.svg b/docs/material/.icons/fontawesome/solid/skating.svg new file mode 100644 index 000000000..74d500634 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/skating.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/skiing-nordic.svg b/docs/material/.icons/fontawesome/solid/skiing-nordic.svg new file mode 100644 index 000000000..1c29fc385 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/skiing-nordic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/skiing.svg b/docs/material/.icons/fontawesome/solid/skiing.svg new file mode 100644 index 000000000..3362f8f1c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/skiing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/skull-crossbones.svg b/docs/material/.icons/fontawesome/solid/skull-crossbones.svg new file mode 100644 index 000000000..aae294fef --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/skull-crossbones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/skull.svg b/docs/material/.icons/fontawesome/solid/skull.svg new file mode 100644 index 000000000..72429692c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/slash.svg b/docs/material/.icons/fontawesome/solid/slash.svg new file mode 100644 index 000000000..aa5bcdbae --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sleigh.svg b/docs/material/.icons/fontawesome/solid/sleigh.svg new file mode 100644 index 000000000..1ea545cb7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sleigh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sliders-h.svg b/docs/material/.icons/fontawesome/solid/sliders-h.svg new file mode 100644 index 000000000..e5d7fd784 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sliders-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/smile-beam.svg b/docs/material/.icons/fontawesome/solid/smile-beam.svg new file mode 100644 index 000000000..386957529 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/smile-wink.svg b/docs/material/.icons/fontawesome/solid/smile-wink.svg new file mode 100644 index 000000000..b85ec1191 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/smile.svg b/docs/material/.icons/fontawesome/solid/smile.svg new file mode 100644 index 000000000..dc8784a78 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/smog.svg b/docs/material/.icons/fontawesome/solid/smog.svg new file mode 100644 index 000000000..d7f689738 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/smog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/smoking-ban.svg b/docs/material/.icons/fontawesome/solid/smoking-ban.svg new file mode 100644 index 000000000..4382b1f7b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/smoking-ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/smoking.svg b/docs/material/.icons/fontawesome/solid/smoking.svg new file mode 100644 index 000000000..6dd415781 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sms.svg b/docs/material/.icons/fontawesome/solid/sms.svg new file mode 100644 index 000000000..6a6e950c4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/snowboarding.svg b/docs/material/.icons/fontawesome/solid/snowboarding.svg new file mode 100644 index 000000000..d241f40eb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/snowboarding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/snowflake.svg b/docs/material/.icons/fontawesome/solid/snowflake.svg new file mode 100644 index 000000000..270da5d10 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/snowman.svg b/docs/material/.icons/fontawesome/solid/snowman.svg new file mode 100644 index 000000000..795a2040b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/snowman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/snowplow.svg b/docs/material/.icons/fontawesome/solid/snowplow.svg new file mode 100644 index 000000000..19d31e989 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/snowplow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/soap.svg b/docs/material/.icons/fontawesome/solid/soap.svg new file mode 100644 index 000000000..3c7638b50 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/soap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/socks.svg b/docs/material/.icons/fontawesome/solid/socks.svg new file mode 100644 index 000000000..c8696f6be --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/socks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/solar-panel.svg b/docs/material/.icons/fontawesome/solid/solar-panel.svg new file mode 100644 index 000000000..2760e7928 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/solar-panel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-alpha-down-alt.svg b/docs/material/.icons/fontawesome/solid/sort-alpha-down-alt.svg new file mode 100644 index 000000000..ce88c9093 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-alpha-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-alpha-down.svg b/docs/material/.icons/fontawesome/solid/sort-alpha-down.svg new file mode 100644 index 000000000..e1e1d2133 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-alpha-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-alpha-up-alt.svg b/docs/material/.icons/fontawesome/solid/sort-alpha-up-alt.svg new file mode 100644 index 000000000..194b0524b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-alpha-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-alpha-up.svg b/docs/material/.icons/fontawesome/solid/sort-alpha-up.svg new file mode 100644 index 000000000..f04200dcd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-alpha-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-amount-down-alt.svg b/docs/material/.icons/fontawesome/solid/sort-amount-down-alt.svg new file mode 100644 index 000000000..c3865bdf3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-amount-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-amount-down.svg b/docs/material/.icons/fontawesome/solid/sort-amount-down.svg new file mode 100644 index 000000000..8c5c43833 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-amount-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-amount-up-alt.svg b/docs/material/.icons/fontawesome/solid/sort-amount-up-alt.svg new file mode 100644 index 000000000..3cf6a05a1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-amount-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-amount-up.svg b/docs/material/.icons/fontawesome/solid/sort-amount-up.svg new file mode 100644 index 000000000..57a0e334b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-amount-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-down.svg b/docs/material/.icons/fontawesome/solid/sort-down.svg new file mode 100644 index 000000000..2644ba2b1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-numeric-down-alt.svg b/docs/material/.icons/fontawesome/solid/sort-numeric-down-alt.svg new file mode 100644 index 000000000..ba5c79ad6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-numeric-down-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-numeric-down.svg b/docs/material/.icons/fontawesome/solid/sort-numeric-down.svg new file mode 100644 index 000000000..548a24384 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-numeric-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-numeric-up-alt.svg b/docs/material/.icons/fontawesome/solid/sort-numeric-up-alt.svg new file mode 100644 index 000000000..d804ec549 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-numeric-up-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-numeric-up.svg b/docs/material/.icons/fontawesome/solid/sort-numeric-up.svg new file mode 100644 index 000000000..79d1c44c9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-numeric-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort-up.svg b/docs/material/.icons/fontawesome/solid/sort-up.svg new file mode 100644 index 000000000..c6e1001d7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sort.svg b/docs/material/.icons/fontawesome/solid/sort.svg new file mode 100644 index 000000000..89c08354d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/spa.svg b/docs/material/.icons/fontawesome/solid/spa.svg new file mode 100644 index 000000000..53388af80 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/spa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/space-shuttle.svg b/docs/material/.icons/fontawesome/solid/space-shuttle.svg new file mode 100644 index 000000000..c3dd88453 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/space-shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/spell-check.svg b/docs/material/.icons/fontawesome/solid/spell-check.svg new file mode 100644 index 000000000..bab1dbed9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/spell-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/spider.svg b/docs/material/.icons/fontawesome/solid/spider.svg new file mode 100644 index 000000000..f2d7030b0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/spider.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/spinner.svg b/docs/material/.icons/fontawesome/solid/spinner.svg new file mode 100644 index 000000000..4397764e0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/splotch.svg b/docs/material/.icons/fontawesome/solid/splotch.svg new file mode 100644 index 000000000..070a1c1cb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/splotch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/spray-can.svg b/docs/material/.icons/fontawesome/solid/spray-can.svg new file mode 100644 index 000000000..05947c08f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/spray-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/square-full.svg b/docs/material/.icons/fontawesome/solid/square-full.svg new file mode 100644 index 000000000..7bb73943d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/square-root-alt.svg b/docs/material/.icons/fontawesome/solid/square-root-alt.svg new file mode 100644 index 000000000..c7e20a31c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/square-root-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/square.svg b/docs/material/.icons/fontawesome/solid/square.svg new file mode 100644 index 000000000..40338d449 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stamp.svg b/docs/material/.icons/fontawesome/solid/stamp.svg new file mode 100644 index 000000000..591a5bba1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/star-and-crescent.svg b/docs/material/.icons/fontawesome/solid/star-and-crescent.svg new file mode 100644 index 000000000..6d3786023 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/star-and-crescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/star-half-alt.svg b/docs/material/.icons/fontawesome/solid/star-half-alt.svg new file mode 100644 index 000000000..5a9b4c389 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/star-half.svg b/docs/material/.icons/fontawesome/solid/star-half.svg new file mode 100644 index 000000000..6599dcbfa --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/star-of-david.svg b/docs/material/.icons/fontawesome/solid/star-of-david.svg new file mode 100644 index 000000000..d9a5e5cd3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/star-of-david.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/star-of-life.svg b/docs/material/.icons/fontawesome/solid/star-of-life.svg new file mode 100644 index 000000000..0737995ee --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/star-of-life.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/star.svg b/docs/material/.icons/fontawesome/solid/star.svg new file mode 100644 index 000000000..7cfd13b8a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/step-backward.svg b/docs/material/.icons/fontawesome/solid/step-backward.svg new file mode 100644 index 000000000..e6f0d100e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/step-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/step-forward.svg b/docs/material/.icons/fontawesome/solid/step-forward.svg new file mode 100644 index 000000000..33eb8fb61 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stethoscope.svg b/docs/material/.icons/fontawesome/solid/stethoscope.svg new file mode 100644 index 000000000..10d30562c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sticky-note.svg b/docs/material/.icons/fontawesome/solid/sticky-note.svg new file mode 100644 index 000000000..4b577b881 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sticky-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stop-circle.svg b/docs/material/.icons/fontawesome/solid/stop-circle.svg new file mode 100644 index 000000000..15f56cdb8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stop.svg b/docs/material/.icons/fontawesome/solid/stop.svg new file mode 100644 index 000000000..40338d449 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stopwatch-20.svg b/docs/material/.icons/fontawesome/solid/stopwatch-20.svg new file mode 100644 index 000000000..8de6daa27 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stopwatch-20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stopwatch.svg b/docs/material/.icons/fontawesome/solid/stopwatch.svg new file mode 100644 index 000000000..72c134598 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/store-alt-slash.svg b/docs/material/.icons/fontawesome/solid/store-alt-slash.svg new file mode 100644 index 000000000..292db4e87 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/store-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/store-alt.svg b/docs/material/.icons/fontawesome/solid/store-alt.svg new file mode 100644 index 000000000..488759f1b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/store-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/store-slash.svg b/docs/material/.icons/fontawesome/solid/store-slash.svg new file mode 100644 index 000000000..cade88e57 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/store.svg b/docs/material/.icons/fontawesome/solid/store.svg new file mode 100644 index 000000000..aa0281fc7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stream.svg b/docs/material/.icons/fontawesome/solid/stream.svg new file mode 100644 index 000000000..938cc188c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/street-view.svg b/docs/material/.icons/fontawesome/solid/street-view.svg new file mode 100644 index 000000000..2ae0457e6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/street-view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/strikethrough.svg b/docs/material/.icons/fontawesome/solid/strikethrough.svg new file mode 100644 index 000000000..9135f5dce --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/stroopwafel.svg b/docs/material/.icons/fontawesome/solid/stroopwafel.svg new file mode 100644 index 000000000..4d7369474 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/stroopwafel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/subscript.svg b/docs/material/.icons/fontawesome/solid/subscript.svg new file mode 100644 index 000000000..b07e6379e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/subscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/subway.svg b/docs/material/.icons/fontawesome/solid/subway.svg new file mode 100644 index 000000000..19e5a3799 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/suitcase-rolling.svg b/docs/material/.icons/fontawesome/solid/suitcase-rolling.svg new file mode 100644 index 000000000..d54be1e0c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/suitcase-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/suitcase.svg b/docs/material/.icons/fontawesome/solid/suitcase.svg new file mode 100644 index 000000000..effa01c17 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sun.svg b/docs/material/.icons/fontawesome/solid/sun.svg new file mode 100644 index 000000000..19bc76b9b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/superscript.svg b/docs/material/.icons/fontawesome/solid/superscript.svg new file mode 100644 index 000000000..869c1c0b5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/surprise.svg b/docs/material/.icons/fontawesome/solid/surprise.svg new file mode 100644 index 000000000..478b6b017 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/swatchbook.svg b/docs/material/.icons/fontawesome/solid/swatchbook.svg new file mode 100644 index 000000000..0a0a82edd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/swatchbook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/swimmer.svg b/docs/material/.icons/fontawesome/solid/swimmer.svg new file mode 100644 index 000000000..261e60b4a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/swimmer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/swimming-pool.svg b/docs/material/.icons/fontawesome/solid/swimming-pool.svg new file mode 100644 index 000000000..533688df9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/swimming-pool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/synagogue.svg b/docs/material/.icons/fontawesome/solid/synagogue.svg new file mode 100644 index 000000000..12056ee7b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/synagogue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sync-alt.svg b/docs/material/.icons/fontawesome/solid/sync-alt.svg new file mode 100644 index 000000000..3c3106d84 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sync-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/sync.svg b/docs/material/.icons/fontawesome/solid/sync.svg new file mode 100644 index 000000000..39175f77f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/syringe.svg b/docs/material/.icons/fontawesome/solid/syringe.svg new file mode 100644 index 000000000..95626f741 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/table-tennis.svg b/docs/material/.icons/fontawesome/solid/table-tennis.svg new file mode 100644 index 000000000..a7f5e9a5a --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/table-tennis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/table.svg b/docs/material/.icons/fontawesome/solid/table.svg new file mode 100644 index 000000000..5690c5cc5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tablet-alt.svg b/docs/material/.icons/fontawesome/solid/tablet-alt.svg new file mode 100644 index 000000000..9e962f783 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tablet-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tablet.svg b/docs/material/.icons/fontawesome/solid/tablet.svg new file mode 100644 index 000000000..da45e7d21 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tablets.svg b/docs/material/.icons/fontawesome/solid/tablets.svg new file mode 100644 index 000000000..74c8265e2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tablets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tachometer-alt.svg b/docs/material/.icons/fontawesome/solid/tachometer-alt.svg new file mode 100644 index 000000000..977e1e9ff --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tachometer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tag.svg b/docs/material/.icons/fontawesome/solid/tag.svg new file mode 100644 index 000000000..f54df34df --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tags.svg b/docs/material/.icons/fontawesome/solid/tags.svg new file mode 100644 index 000000000..4ea728d53 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tape.svg b/docs/material/.icons/fontawesome/solid/tape.svg new file mode 100644 index 000000000..1fbaa1da1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tasks.svg b/docs/material/.icons/fontawesome/solid/tasks.svg new file mode 100644 index 000000000..05e6abbde --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tasks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/taxi.svg b/docs/material/.icons/fontawesome/solid/taxi.svg new file mode 100644 index 000000000..13f05d0dd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/teeth-open.svg b/docs/material/.icons/fontawesome/solid/teeth-open.svg new file mode 100644 index 000000000..f02650abd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/teeth-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/teeth.svg b/docs/material/.icons/fontawesome/solid/teeth.svg new file mode 100644 index 000000000..17e4027e6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/teeth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/temperature-high.svg b/docs/material/.icons/fontawesome/solid/temperature-high.svg new file mode 100644 index 000000000..e61b22b37 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/temperature-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/temperature-low.svg b/docs/material/.icons/fontawesome/solid/temperature-low.svg new file mode 100644 index 000000000..07d2427c0 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/temperature-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tenge.svg b/docs/material/.icons/fontawesome/solid/tenge.svg new file mode 100644 index 000000000..cc8be5c17 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tenge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/terminal.svg b/docs/material/.icons/fontawesome/solid/terminal.svg new file mode 100644 index 000000000..85b2b5e85 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/text-height.svg b/docs/material/.icons/fontawesome/solid/text-height.svg new file mode 100644 index 000000000..0cde86980 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/text-height.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/text-width.svg b/docs/material/.icons/fontawesome/solid/text-width.svg new file mode 100644 index 000000000..8d79728d6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/text-width.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/th-large.svg b/docs/material/.icons/fontawesome/solid/th-large.svg new file mode 100644 index 000000000..7894f58b4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/th-list.svg b/docs/material/.icons/fontawesome/solid/th-list.svg new file mode 100644 index 000000000..361af5425 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/th-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/th.svg b/docs/material/.icons/fontawesome/solid/th.svg new file mode 100644 index 000000000..73b6c92c3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/th.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/theater-masks.svg b/docs/material/.icons/fontawesome/solid/theater-masks.svg new file mode 100644 index 000000000..d16e6631d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/theater-masks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thermometer-empty.svg b/docs/material/.icons/fontawesome/solid/thermometer-empty.svg new file mode 100644 index 000000000..5a6a6b8e9 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thermometer-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thermometer-full.svg b/docs/material/.icons/fontawesome/solid/thermometer-full.svg new file mode 100644 index 000000000..caeb8b664 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thermometer-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thermometer-half.svg b/docs/material/.icons/fontawesome/solid/thermometer-half.svg new file mode 100644 index 000000000..8c3551274 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thermometer-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thermometer-quarter.svg b/docs/material/.icons/fontawesome/solid/thermometer-quarter.svg new file mode 100644 index 000000000..0478872ed --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thermometer-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thermometer-three-quarters.svg b/docs/material/.icons/fontawesome/solid/thermometer-three-quarters.svg new file mode 100644 index 000000000..b5188d58f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thermometer-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thermometer.svg b/docs/material/.icons/fontawesome/solid/thermometer.svg new file mode 100644 index 000000000..af0b9ef91 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thumbs-down.svg b/docs/material/.icons/fontawesome/solid/thumbs-down.svg new file mode 100644 index 000000000..7681fdeee --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thumbs-up.svg b/docs/material/.icons/fontawesome/solid/thumbs-up.svg new file mode 100644 index 000000000..539949dfd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/thumbtack.svg b/docs/material/.icons/fontawesome/solid/thumbtack.svg new file mode 100644 index 000000000..132254aa4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/thumbtack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/ticket-alt.svg b/docs/material/.icons/fontawesome/solid/ticket-alt.svg new file mode 100644 index 000000000..70158467d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/ticket-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/times-circle.svg b/docs/material/.icons/fontawesome/solid/times-circle.svg new file mode 100644 index 000000000..cdee94147 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/times.svg b/docs/material/.icons/fontawesome/solid/times.svg new file mode 100644 index 000000000..571a32a12 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tint-slash.svg b/docs/material/.icons/fontawesome/solid/tint-slash.svg new file mode 100644 index 000000000..df76bdf04 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tint-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tint.svg b/docs/material/.icons/fontawesome/solid/tint.svg new file mode 100644 index 000000000..8dd8f93e1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tired.svg b/docs/material/.icons/fontawesome/solid/tired.svg new file mode 100644 index 000000000..bdc5ce0d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/toggle-off.svg b/docs/material/.icons/fontawesome/solid/toggle-off.svg new file mode 100644 index 000000000..dce9c007b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/toggle-on.svg b/docs/material/.icons/fontawesome/solid/toggle-on.svg new file mode 100644 index 000000000..6c4c2dc15 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/toilet-paper-slash.svg b/docs/material/.icons/fontawesome/solid/toilet-paper-slash.svg new file mode 100644 index 000000000..1c2f2b82e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/toilet-paper-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/toilet-paper.svg b/docs/material/.icons/fontawesome/solid/toilet-paper.svg new file mode 100644 index 000000000..6201721d1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/toilet.svg b/docs/material/.icons/fontawesome/solid/toilet.svg new file mode 100644 index 000000000..c5abd0134 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/toilet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/toolbox.svg b/docs/material/.icons/fontawesome/solid/toolbox.svg new file mode 100644 index 000000000..dc11fef6b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/toolbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tools.svg b/docs/material/.icons/fontawesome/solid/tools.svg new file mode 100644 index 000000000..668d558e7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tools.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tooth.svg b/docs/material/.icons/fontawesome/solid/tooth.svg new file mode 100644 index 000000000..745734cb5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/torah.svg b/docs/material/.icons/fontawesome/solid/torah.svg new file mode 100644 index 000000000..237b5f7ec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/torah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/torii-gate.svg b/docs/material/.icons/fontawesome/solid/torii-gate.svg new file mode 100644 index 000000000..8b2d5261c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/torii-gate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tractor.svg b/docs/material/.icons/fontawesome/solid/tractor.svg new file mode 100644 index 000000000..fe0dea7f3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tractor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/trademark.svg b/docs/material/.icons/fontawesome/solid/trademark.svg new file mode 100644 index 000000000..4898eb522 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/traffic-light.svg b/docs/material/.icons/fontawesome/solid/traffic-light.svg new file mode 100644 index 000000000..0eb4de199 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/traffic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/trailer.svg b/docs/material/.icons/fontawesome/solid/trailer.svg new file mode 100644 index 000000000..dbf1022d1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/trailer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/train.svg b/docs/material/.icons/fontawesome/solid/train.svg new file mode 100644 index 000000000..79c0266f2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tram.svg b/docs/material/.icons/fontawesome/solid/tram.svg new file mode 100644 index 000000000..e3156976c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/transgender-alt.svg b/docs/material/.icons/fontawesome/solid/transgender-alt.svg new file mode 100644 index 000000000..6c1d1679e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/transgender-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/transgender.svg b/docs/material/.icons/fontawesome/solid/transgender.svg new file mode 100644 index 000000000..10d73936f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/trash-alt.svg b/docs/material/.icons/fontawesome/solid/trash-alt.svg new file mode 100644 index 000000000..acdf905f6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/trash-restore-alt.svg b/docs/material/.icons/fontawesome/solid/trash-restore-alt.svg new file mode 100644 index 000000000..1b812d1c5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/trash-restore-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/trash-restore.svg b/docs/material/.icons/fontawesome/solid/trash-restore.svg new file mode 100644 index 000000000..65f6e999f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/trash-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/trash.svg b/docs/material/.icons/fontawesome/solid/trash.svg new file mode 100644 index 000000000..bbc002b06 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tree.svg b/docs/material/.icons/fontawesome/solid/tree.svg new file mode 100644 index 000000000..a3c7f9344 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/trophy.svg b/docs/material/.icons/fontawesome/solid/trophy.svg new file mode 100644 index 000000000..6157afa00 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/truck-loading.svg b/docs/material/.icons/fontawesome/solid/truck-loading.svg new file mode 100644 index 000000000..7153afd05 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/truck-loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/truck-monster.svg b/docs/material/.icons/fontawesome/solid/truck-monster.svg new file mode 100644 index 000000000..b2855fb90 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/truck-monster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/truck-moving.svg b/docs/material/.icons/fontawesome/solid/truck-moving.svg new file mode 100644 index 000000000..18ea46f53 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/truck-moving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/truck-pickup.svg b/docs/material/.icons/fontawesome/solid/truck-pickup.svg new file mode 100644 index 000000000..37bc87d97 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/truck-pickup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/truck.svg b/docs/material/.icons/fontawesome/solid/truck.svg new file mode 100644 index 000000000..8b405feec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tshirt.svg b/docs/material/.icons/fontawesome/solid/tshirt.svg new file mode 100644 index 000000000..4cdf227e5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tshirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tty.svg b/docs/material/.icons/fontawesome/solid/tty.svg new file mode 100644 index 000000000..7a3bc4ace --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/tv.svg b/docs/material/.icons/fontawesome/solid/tv.svg new file mode 100644 index 000000000..1080e94e7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/umbrella-beach.svg b/docs/material/.icons/fontawesome/solid/umbrella-beach.svg new file mode 100644 index 000000000..9a75c5258 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/umbrella-beach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/umbrella.svg b/docs/material/.icons/fontawesome/solid/umbrella.svg new file mode 100644 index 000000000..83de3d7be --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/underline.svg b/docs/material/.icons/fontawesome/solid/underline.svg new file mode 100644 index 000000000..d2654366c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/undo-alt.svg b/docs/material/.icons/fontawesome/solid/undo-alt.svg new file mode 100644 index 000000000..bdc97cae1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/undo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/undo.svg b/docs/material/.icons/fontawesome/solid/undo.svg new file mode 100644 index 000000000..44b390412 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/universal-access.svg b/docs/material/.icons/fontawesome/solid/universal-access.svg new file mode 100644 index 000000000..1079d879b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/universal-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/university.svg b/docs/material/.icons/fontawesome/solid/university.svg new file mode 100644 index 000000000..7abeb4df5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/university.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/unlink.svg b/docs/material/.icons/fontawesome/solid/unlink.svg new file mode 100644 index 000000000..8cba9f8fe --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/unlock-alt.svg b/docs/material/.icons/fontawesome/solid/unlock-alt.svg new file mode 100644 index 000000000..b38ffb6ac --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/unlock.svg b/docs/material/.icons/fontawesome/solid/unlock.svg new file mode 100644 index 000000000..0b2258a81 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/upload.svg b/docs/material/.icons/fontawesome/solid/upload.svg new file mode 100644 index 000000000..1c880b516 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-alt-slash.svg b/docs/material/.icons/fontawesome/solid/user-alt-slash.svg new file mode 100644 index 000000000..74f859789 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-alt.svg b/docs/material/.icons/fontawesome/solid/user-alt.svg new file mode 100644 index 000000000..024cb44bb --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-astronaut.svg b/docs/material/.icons/fontawesome/solid/user-astronaut.svg new file mode 100644 index 000000000..631f16824 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-astronaut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-check.svg b/docs/material/.icons/fontawesome/solid/user-check.svg new file mode 100644 index 000000000..a63061186 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-circle.svg b/docs/material/.icons/fontawesome/solid/user-circle.svg new file mode 100644 index 000000000..6e03b1bd4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-clock.svg b/docs/material/.icons/fontawesome/solid/user-clock.svg new file mode 100644 index 000000000..1c45c705d --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-cog.svg b/docs/material/.icons/fontawesome/solid/user-cog.svg new file mode 100644 index 000000000..bae9930ee --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-edit.svg b/docs/material/.icons/fontawesome/solid/user-edit.svg new file mode 100644 index 000000000..bde9c9015 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-friends.svg b/docs/material/.icons/fontawesome/solid/user-friends.svg new file mode 100644 index 000000000..2e43c5983 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-friends.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-graduate.svg b/docs/material/.icons/fontawesome/solid/user-graduate.svg new file mode 100644 index 000000000..8855caaa8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-graduate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-injured.svg b/docs/material/.icons/fontawesome/solid/user-injured.svg new file mode 100644 index 000000000..c0096dc71 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-injured.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-lock.svg b/docs/material/.icons/fontawesome/solid/user-lock.svg new file mode 100644 index 000000000..300b9dd45 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-md.svg b/docs/material/.icons/fontawesome/solid/user-md.svg new file mode 100644 index 000000000..583cdc397 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-minus.svg b/docs/material/.icons/fontawesome/solid/user-minus.svg new file mode 100644 index 000000000..f019e7063 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-ninja.svg b/docs/material/.icons/fontawesome/solid/user-ninja.svg new file mode 100644 index 000000000..7bdec3603 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-ninja.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-nurse.svg b/docs/material/.icons/fontawesome/solid/user-nurse.svg new file mode 100644 index 000000000..94e665f69 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-plus.svg b/docs/material/.icons/fontawesome/solid/user-plus.svg new file mode 100644 index 000000000..01c84c363 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-secret.svg b/docs/material/.icons/fontawesome/solid/user-secret.svg new file mode 100644 index 000000000..daae530df --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-secret.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-shield.svg b/docs/material/.icons/fontawesome/solid/user-shield.svg new file mode 100644 index 000000000..7cfba68f3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-slash.svg b/docs/material/.icons/fontawesome/solid/user-slash.svg new file mode 100644 index 000000000..491e32a3b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-tag.svg b/docs/material/.icons/fontawesome/solid/user-tag.svg new file mode 100644 index 000000000..ec1a1e700 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-tie.svg b/docs/material/.icons/fontawesome/solid/user-tie.svg new file mode 100644 index 000000000..9bd9f95a5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user-times.svg b/docs/material/.icons/fontawesome/solid/user-times.svg new file mode 100644 index 000000000..341b1f120 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/user.svg b/docs/material/.icons/fontawesome/solid/user.svg new file mode 100644 index 000000000..591873a5b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/users-cog.svg b/docs/material/.icons/fontawesome/solid/users-cog.svg new file mode 100644 index 000000000..a90e8b03f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/users-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/users.svg b/docs/material/.icons/fontawesome/solid/users.svg new file mode 100644 index 000000000..3f07aab06 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/utensil-spoon.svg b/docs/material/.icons/fontawesome/solid/utensil-spoon.svg new file mode 100644 index 000000000..ec19dac55 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/utensil-spoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/utensils.svg b/docs/material/.icons/fontawesome/solid/utensils.svg new file mode 100644 index 000000000..29fa05ab1 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/utensils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/vector-square.svg b/docs/material/.icons/fontawesome/solid/vector-square.svg new file mode 100644 index 000000000..848b9fb40 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/venus-double.svg b/docs/material/.icons/fontawesome/solid/venus-double.svg new file mode 100644 index 000000000..8fa1ba94f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/venus-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/venus-mars.svg b/docs/material/.icons/fontawesome/solid/venus-mars.svg new file mode 100644 index 000000000..78089d807 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/venus-mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/venus.svg b/docs/material/.icons/fontawesome/solid/venus.svg new file mode 100644 index 000000000..637ef0cc2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/vial.svg b/docs/material/.icons/fontawesome/solid/vial.svg new file mode 100644 index 000000000..e01d94aec --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/vial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/vials.svg b/docs/material/.icons/fontawesome/solid/vials.svg new file mode 100644 index 000000000..13e7c5ac3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/vials.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/video-slash.svg b/docs/material/.icons/fontawesome/solid/video-slash.svg new file mode 100644 index 000000000..d221789ff --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/video-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/video.svg b/docs/material/.icons/fontawesome/solid/video.svg new file mode 100644 index 000000000..e14b3b936 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/vihara.svg b/docs/material/.icons/fontawesome/solid/vihara.svg new file mode 100644 index 000000000..d25739c19 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/vihara.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/virus-slash.svg b/docs/material/.icons/fontawesome/solid/virus-slash.svg new file mode 100644 index 000000000..ae3fea9a5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/virus.svg b/docs/material/.icons/fontawesome/solid/virus.svg new file mode 100644 index 000000000..b0a2e48d6 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/viruses.svg b/docs/material/.icons/fontawesome/solid/viruses.svg new file mode 100644 index 000000000..492482da5 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/viruses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/voicemail.svg b/docs/material/.icons/fontawesome/solid/voicemail.svg new file mode 100644 index 000000000..e75e0d064 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/volleyball-ball.svg b/docs/material/.icons/fontawesome/solid/volleyball-ball.svg new file mode 100644 index 000000000..3255dc9c4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/volleyball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/volume-down.svg b/docs/material/.icons/fontawesome/solid/volume-down.svg new file mode 100644 index 000000000..b3105c3d8 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/volume-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/volume-mute.svg b/docs/material/.icons/fontawesome/solid/volume-mute.svg new file mode 100644 index 000000000..b78aad67b --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/volume-off.svg b/docs/material/.icons/fontawesome/solid/volume-off.svg new file mode 100644 index 000000000..9bd55c954 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/volume-up.svg b/docs/material/.icons/fontawesome/solid/volume-up.svg new file mode 100644 index 000000000..c85f3e8d3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/volume-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/vote-yea.svg b/docs/material/.icons/fontawesome/solid/vote-yea.svg new file mode 100644 index 000000000..496a57625 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/vote-yea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/vr-cardboard.svg b/docs/material/.icons/fontawesome/solid/vr-cardboard.svg new file mode 100644 index 000000000..dd9eff58c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/vr-cardboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/walking.svg b/docs/material/.icons/fontawesome/solid/walking.svg new file mode 100644 index 000000000..4e85cd582 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/walking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wallet.svg b/docs/material/.icons/fontawesome/solid/wallet.svg new file mode 100644 index 000000000..f5842294c --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/warehouse.svg b/docs/material/.icons/fontawesome/solid/warehouse.svg new file mode 100644 index 000000000..712b08264 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/warehouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/water.svg b/docs/material/.icons/fontawesome/solid/water.svg new file mode 100644 index 000000000..cc7a7d3c4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wave-square.svg b/docs/material/.icons/fontawesome/solid/wave-square.svg new file mode 100644 index 000000000..2b47a0c97 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wave-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/weight-hanging.svg b/docs/material/.icons/fontawesome/solid/weight-hanging.svg new file mode 100644 index 000000000..db2801aa7 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/weight-hanging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/weight.svg b/docs/material/.icons/fontawesome/solid/weight.svg new file mode 100644 index 000000000..12e7df5ce --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wheelchair.svg b/docs/material/.icons/fontawesome/solid/wheelchair.svg new file mode 100644 index 000000000..abb35d560 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wifi.svg b/docs/material/.icons/fontawesome/solid/wifi.svg new file mode 100644 index 000000000..5ac43b3e3 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wind.svg b/docs/material/.icons/fontawesome/solid/wind.svg new file mode 100644 index 000000000..705d74b84 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/window-close.svg b/docs/material/.icons/fontawesome/solid/window-close.svg new file mode 100644 index 000000000..da63df918 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/window-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/window-maximize.svg b/docs/material/.icons/fontawesome/solid/window-maximize.svg new file mode 100644 index 000000000..d305d0ad4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/window-minimize.svg b/docs/material/.icons/fontawesome/solid/window-minimize.svg new file mode 100644 index 000000000..c0e48b3f2 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/window-restore.svg b/docs/material/.icons/fontawesome/solid/window-restore.svg new file mode 100644 index 000000000..355ce8f00 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wine-bottle.svg b/docs/material/.icons/fontawesome/solid/wine-bottle.svg new file mode 100644 index 000000000..6b66813cd --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wine-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wine-glass-alt.svg b/docs/material/.icons/fontawesome/solid/wine-glass-alt.svg new file mode 100644 index 000000000..2822897a4 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wine-glass-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wine-glass.svg b/docs/material/.icons/fontawesome/solid/wine-glass.svg new file mode 100644 index 000000000..a27377d0f --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wine-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/won-sign.svg b/docs/material/.icons/fontawesome/solid/won-sign.svg new file mode 100644 index 000000000..4cfd37d28 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/won-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/wrench.svg b/docs/material/.icons/fontawesome/solid/wrench.svg new file mode 100644 index 000000000..378cf6c65 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/x-ray.svg b/docs/material/.icons/fontawesome/solid/x-ray.svg new file mode 100644 index 000000000..fe20d4166 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/x-ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/yen-sign.svg b/docs/material/.icons/fontawesome/solid/yen-sign.svg new file mode 100644 index 000000000..3cdb4ec58 --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/yen-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/fontawesome/solid/yin-yang.svg b/docs/material/.icons/fontawesome/solid/yin-yang.svg new file mode 100644 index 000000000..7aa88f98e --- /dev/null +++ b/docs/material/.icons/fontawesome/solid/yin-yang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/logo.svg b/docs/material/.icons/logo.svg new file mode 100644 index 000000000..c0dd470f3 --- /dev/null +++ b/docs/material/.icons/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ab-testing.svg b/docs/material/.icons/material/ab-testing.svg new file mode 100644 index 000000000..e0ea0cdb3 --- /dev/null +++ b/docs/material/.icons/material/ab-testing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/abjad-arabic.svg b/docs/material/.icons/material/abjad-arabic.svg new file mode 100644 index 000000000..3cf54edd2 --- /dev/null +++ b/docs/material/.icons/material/abjad-arabic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/abjad-hebrew.svg b/docs/material/.icons/material/abjad-hebrew.svg new file mode 100644 index 000000000..d7f08c5a9 --- /dev/null +++ b/docs/material/.icons/material/abjad-hebrew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/abugida-devanagari.svg b/docs/material/.icons/material/abugida-devanagari.svg new file mode 100644 index 000000000..4dc7c277f --- /dev/null +++ b/docs/material/.icons/material/abugida-devanagari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/abugida-thai.svg b/docs/material/.icons/material/abugida-thai.svg new file mode 100644 index 000000000..13fc9a0c2 --- /dev/null +++ b/docs/material/.icons/material/abugida-thai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/access-point-network-off.svg b/docs/material/.icons/material/access-point-network-off.svg new file mode 100644 index 000000000..1833501d1 --- /dev/null +++ b/docs/material/.icons/material/access-point-network-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/access-point-network.svg b/docs/material/.icons/material/access-point-network.svg new file mode 100644 index 000000000..17c88daae --- /dev/null +++ b/docs/material/.icons/material/access-point-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/access-point.svg b/docs/material/.icons/material/access-point.svg new file mode 100644 index 000000000..c4cd8578c --- /dev/null +++ b/docs/material/.icons/material/access-point.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-alert-outline.svg b/docs/material/.icons/material/account-alert-outline.svg new file mode 100644 index 000000000..22d9ea8b8 --- /dev/null +++ b/docs/material/.icons/material/account-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-alert.svg b/docs/material/.icons/material/account-alert.svg new file mode 100644 index 000000000..4493a3b80 --- /dev/null +++ b/docs/material/.icons/material/account-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-arrow-left-outline.svg b/docs/material/.icons/material/account-arrow-left-outline.svg new file mode 100644 index 000000000..8d9918594 --- /dev/null +++ b/docs/material/.icons/material/account-arrow-left-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-arrow-left.svg b/docs/material/.icons/material/account-arrow-left.svg new file mode 100644 index 000000000..5758aed81 --- /dev/null +++ b/docs/material/.icons/material/account-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-arrow-right-outline.svg b/docs/material/.icons/material/account-arrow-right-outline.svg new file mode 100644 index 000000000..8a111a7f4 --- /dev/null +++ b/docs/material/.icons/material/account-arrow-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-arrow-right.svg b/docs/material/.icons/material/account-arrow-right.svg new file mode 100644 index 000000000..3eee48a70 --- /dev/null +++ b/docs/material/.icons/material/account-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-box-multiple-outline.svg b/docs/material/.icons/material/account-box-multiple-outline.svg new file mode 100644 index 000000000..4c213a0a3 --- /dev/null +++ b/docs/material/.icons/material/account-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-box-multiple.svg b/docs/material/.icons/material/account-box-multiple.svg new file mode 100644 index 000000000..6d3b259bf --- /dev/null +++ b/docs/material/.icons/material/account-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-box-outline.svg b/docs/material/.icons/material/account-box-outline.svg new file mode 100644 index 000000000..c19214405 --- /dev/null +++ b/docs/material/.icons/material/account-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-box.svg b/docs/material/.icons/material/account-box.svg new file mode 100644 index 000000000..e7eed83a0 --- /dev/null +++ b/docs/material/.icons/material/account-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-cancel-outline.svg b/docs/material/.icons/material/account-cancel-outline.svg new file mode 100644 index 000000000..c2d5e2308 --- /dev/null +++ b/docs/material/.icons/material/account-cancel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-cancel.svg b/docs/material/.icons/material/account-cancel.svg new file mode 100644 index 000000000..18eb2671c --- /dev/null +++ b/docs/material/.icons/material/account-cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-cash-outline.svg b/docs/material/.icons/material/account-cash-outline.svg new file mode 100644 index 000000000..91af66d5e --- /dev/null +++ b/docs/material/.icons/material/account-cash-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-cash.svg b/docs/material/.icons/material/account-cash.svg new file mode 100644 index 000000000..d83267626 --- /dev/null +++ b/docs/material/.icons/material/account-cash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-check-outline.svg b/docs/material/.icons/material/account-check-outline.svg new file mode 100644 index 000000000..28f459b06 --- /dev/null +++ b/docs/material/.icons/material/account-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-check.svg b/docs/material/.icons/material/account-check.svg new file mode 100644 index 000000000..0217da5e8 --- /dev/null +++ b/docs/material/.icons/material/account-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-child-circle.svg b/docs/material/.icons/material/account-child-circle.svg new file mode 100644 index 000000000..7f76f571e --- /dev/null +++ b/docs/material/.icons/material/account-child-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-child-outline.svg b/docs/material/.icons/material/account-child-outline.svg new file mode 100644 index 000000000..9fd307a21 --- /dev/null +++ b/docs/material/.icons/material/account-child-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-child.svg b/docs/material/.icons/material/account-child.svg new file mode 100644 index 000000000..0971d37ae --- /dev/null +++ b/docs/material/.icons/material/account-child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-circle-outline.svg b/docs/material/.icons/material/account-circle-outline.svg new file mode 100644 index 000000000..10c6e99e1 --- /dev/null +++ b/docs/material/.icons/material/account-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-circle.svg b/docs/material/.icons/material/account-circle.svg new file mode 100644 index 000000000..27f3e1d31 --- /dev/null +++ b/docs/material/.icons/material/account-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-clock-outline.svg b/docs/material/.icons/material/account-clock-outline.svg new file mode 100644 index 000000000..574ee3c57 --- /dev/null +++ b/docs/material/.icons/material/account-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-clock.svg b/docs/material/.icons/material/account-clock.svg new file mode 100644 index 000000000..e66aa75fa --- /dev/null +++ b/docs/material/.icons/material/account-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-cog-outline.svg b/docs/material/.icons/material/account-cog-outline.svg new file mode 100644 index 000000000..235c2f4f7 --- /dev/null +++ b/docs/material/.icons/material/account-cog-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-cog.svg b/docs/material/.icons/material/account-cog.svg new file mode 100644 index 000000000..ca6a9b37a --- /dev/null +++ b/docs/material/.icons/material/account-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-convert-outline.svg b/docs/material/.icons/material/account-convert-outline.svg new file mode 100644 index 000000000..8182fdc30 --- /dev/null +++ b/docs/material/.icons/material/account-convert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-convert.svg b/docs/material/.icons/material/account-convert.svg new file mode 100644 index 000000000..e2f19e6d3 --- /dev/null +++ b/docs/material/.icons/material/account-convert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-cowboy-hat.svg b/docs/material/.icons/material/account-cowboy-hat.svg new file mode 100644 index 000000000..d643edf56 --- /dev/null +++ b/docs/material/.icons/material/account-cowboy-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-details-outline.svg b/docs/material/.icons/material/account-details-outline.svg new file mode 100644 index 000000000..6de294f18 --- /dev/null +++ b/docs/material/.icons/material/account-details-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-details.svg b/docs/material/.icons/material/account-details.svg new file mode 100644 index 000000000..b94e2e000 --- /dev/null +++ b/docs/material/.icons/material/account-details.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-edit-outline.svg b/docs/material/.icons/material/account-edit-outline.svg new file mode 100644 index 000000000..d0d5cbe89 --- /dev/null +++ b/docs/material/.icons/material/account-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-edit.svg b/docs/material/.icons/material/account-edit.svg new file mode 100644 index 000000000..5366fc088 --- /dev/null +++ b/docs/material/.icons/material/account-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-group-outline.svg b/docs/material/.icons/material/account-group-outline.svg new file mode 100644 index 000000000..3da8dd500 --- /dev/null +++ b/docs/material/.icons/material/account-group-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-group.svg b/docs/material/.icons/material/account-group.svg new file mode 100644 index 000000000..13cce07a9 --- /dev/null +++ b/docs/material/.icons/material/account-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-hard-hat.svg b/docs/material/.icons/material/account-hard-hat.svg new file mode 100644 index 000000000..a1f17a430 --- /dev/null +++ b/docs/material/.icons/material/account-hard-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-heart-outline.svg b/docs/material/.icons/material/account-heart-outline.svg new file mode 100644 index 000000000..0484c996c --- /dev/null +++ b/docs/material/.icons/material/account-heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-heart.svg b/docs/material/.icons/material/account-heart.svg new file mode 100644 index 000000000..6d6b30ce2 --- /dev/null +++ b/docs/material/.icons/material/account-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-key-outline.svg b/docs/material/.icons/material/account-key-outline.svg new file mode 100644 index 000000000..2bc79434a --- /dev/null +++ b/docs/material/.icons/material/account-key-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-key.svg b/docs/material/.icons/material/account-key.svg new file mode 100644 index 000000000..19526b291 --- /dev/null +++ b/docs/material/.icons/material/account-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-lock-outline.svg b/docs/material/.icons/material/account-lock-outline.svg new file mode 100644 index 000000000..9d9ffe4a2 --- /dev/null +++ b/docs/material/.icons/material/account-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-lock.svg b/docs/material/.icons/material/account-lock.svg new file mode 100644 index 000000000..c77566755 --- /dev/null +++ b/docs/material/.icons/material/account-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-minus-outline.svg b/docs/material/.icons/material/account-minus-outline.svg new file mode 100644 index 000000000..a35d360b8 --- /dev/null +++ b/docs/material/.icons/material/account-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-minus.svg b/docs/material/.icons/material/account-minus.svg new file mode 100644 index 000000000..ee7d4b844 --- /dev/null +++ b/docs/material/.icons/material/account-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-check-outline.svg b/docs/material/.icons/material/account-multiple-check-outline.svg new file mode 100644 index 000000000..94fd44d2f --- /dev/null +++ b/docs/material/.icons/material/account-multiple-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-check.svg b/docs/material/.icons/material/account-multiple-check.svg new file mode 100644 index 000000000..92f634edc --- /dev/null +++ b/docs/material/.icons/material/account-multiple-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-minus-outline.svg b/docs/material/.icons/material/account-multiple-minus-outline.svg new file mode 100644 index 000000000..3ca945cf8 --- /dev/null +++ b/docs/material/.icons/material/account-multiple-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-minus.svg b/docs/material/.icons/material/account-multiple-minus.svg new file mode 100644 index 000000000..d6f39cf00 --- /dev/null +++ b/docs/material/.icons/material/account-multiple-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-outline.svg b/docs/material/.icons/material/account-multiple-outline.svg new file mode 100644 index 000000000..0e148191d --- /dev/null +++ b/docs/material/.icons/material/account-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-plus-outline.svg b/docs/material/.icons/material/account-multiple-plus-outline.svg new file mode 100644 index 000000000..c7ccb4243 --- /dev/null +++ b/docs/material/.icons/material/account-multiple-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-plus.svg b/docs/material/.icons/material/account-multiple-plus.svg new file mode 100644 index 000000000..6c945342e --- /dev/null +++ b/docs/material/.icons/material/account-multiple-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-remove-outline.svg b/docs/material/.icons/material/account-multiple-remove-outline.svg new file mode 100644 index 000000000..c6e88d185 --- /dev/null +++ b/docs/material/.icons/material/account-multiple-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple-remove.svg b/docs/material/.icons/material/account-multiple-remove.svg new file mode 100644 index 000000000..b1c8d1692 --- /dev/null +++ b/docs/material/.icons/material/account-multiple-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-multiple.svg b/docs/material/.icons/material/account-multiple.svg new file mode 100644 index 000000000..d3b5e9cdb --- /dev/null +++ b/docs/material/.icons/material/account-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-music-outline.svg b/docs/material/.icons/material/account-music-outline.svg new file mode 100644 index 000000000..647a79007 --- /dev/null +++ b/docs/material/.icons/material/account-music-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-music.svg b/docs/material/.icons/material/account-music.svg new file mode 100644 index 000000000..8e362689d --- /dev/null +++ b/docs/material/.icons/material/account-music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-network-outline.svg b/docs/material/.icons/material/account-network-outline.svg new file mode 100644 index 000000000..b96c6f180 --- /dev/null +++ b/docs/material/.icons/material/account-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-network.svg b/docs/material/.icons/material/account-network.svg new file mode 100644 index 000000000..792904df8 --- /dev/null +++ b/docs/material/.icons/material/account-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-off-outline.svg b/docs/material/.icons/material/account-off-outline.svg new file mode 100644 index 000000000..25acfe9d1 --- /dev/null +++ b/docs/material/.icons/material/account-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-off.svg b/docs/material/.icons/material/account-off.svg new file mode 100644 index 000000000..61d494d6b --- /dev/null +++ b/docs/material/.icons/material/account-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-outline.svg b/docs/material/.icons/material/account-outline.svg new file mode 100644 index 000000000..ac62ab0ba --- /dev/null +++ b/docs/material/.icons/material/account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-plus-outline.svg b/docs/material/.icons/material/account-plus-outline.svg new file mode 100644 index 000000000..b0e30e4cf --- /dev/null +++ b/docs/material/.icons/material/account-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-plus.svg b/docs/material/.icons/material/account-plus.svg new file mode 100644 index 000000000..6c555f634 --- /dev/null +++ b/docs/material/.icons/material/account-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-question-outline.svg b/docs/material/.icons/material/account-question-outline.svg new file mode 100644 index 000000000..0f508538c --- /dev/null +++ b/docs/material/.icons/material/account-question-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-question.svg b/docs/material/.icons/material/account-question.svg new file mode 100644 index 000000000..8c5307088 --- /dev/null +++ b/docs/material/.icons/material/account-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-remove-outline.svg b/docs/material/.icons/material/account-remove-outline.svg new file mode 100644 index 000000000..e0255b2eb --- /dev/null +++ b/docs/material/.icons/material/account-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-remove.svg b/docs/material/.icons/material/account-remove.svg new file mode 100644 index 000000000..152292139 --- /dev/null +++ b/docs/material/.icons/material/account-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-search-outline.svg b/docs/material/.icons/material/account-search-outline.svg new file mode 100644 index 000000000..f71a03659 --- /dev/null +++ b/docs/material/.icons/material/account-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-search.svg b/docs/material/.icons/material/account-search.svg new file mode 100644 index 000000000..debbcee03 --- /dev/null +++ b/docs/material/.icons/material/account-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-settings-outline.svg b/docs/material/.icons/material/account-settings-outline.svg new file mode 100644 index 000000000..811dc13f1 --- /dev/null +++ b/docs/material/.icons/material/account-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-settings.svg b/docs/material/.icons/material/account-settings.svg new file mode 100644 index 000000000..32cf47ae4 --- /dev/null +++ b/docs/material/.icons/material/account-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-star-outline.svg b/docs/material/.icons/material/account-star-outline.svg new file mode 100644 index 000000000..ca5d29535 --- /dev/null +++ b/docs/material/.icons/material/account-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-star.svg b/docs/material/.icons/material/account-star.svg new file mode 100644 index 000000000..1eed03cf7 --- /dev/null +++ b/docs/material/.icons/material/account-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-supervisor-circle.svg b/docs/material/.icons/material/account-supervisor-circle.svg new file mode 100644 index 000000000..2faae88fe --- /dev/null +++ b/docs/material/.icons/material/account-supervisor-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-supervisor-outline.svg b/docs/material/.icons/material/account-supervisor-outline.svg new file mode 100644 index 000000000..e38f5bc07 --- /dev/null +++ b/docs/material/.icons/material/account-supervisor-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-supervisor.svg b/docs/material/.icons/material/account-supervisor.svg new file mode 100644 index 000000000..acf3dcbe2 --- /dev/null +++ b/docs/material/.icons/material/account-supervisor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-switch-outline.svg b/docs/material/.icons/material/account-switch-outline.svg new file mode 100644 index 000000000..052dada57 --- /dev/null +++ b/docs/material/.icons/material/account-switch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-switch.svg b/docs/material/.icons/material/account-switch.svg new file mode 100644 index 000000000..0957cfcec --- /dev/null +++ b/docs/material/.icons/material/account-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-tie-outline.svg b/docs/material/.icons/material/account-tie-outline.svg new file mode 100644 index 000000000..c8df2c905 --- /dev/null +++ b/docs/material/.icons/material/account-tie-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-tie-voice-off-outline.svg b/docs/material/.icons/material/account-tie-voice-off-outline.svg new file mode 100644 index 000000000..be3736769 --- /dev/null +++ b/docs/material/.icons/material/account-tie-voice-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-tie-voice-off.svg b/docs/material/.icons/material/account-tie-voice-off.svg new file mode 100644 index 000000000..3468af564 --- /dev/null +++ b/docs/material/.icons/material/account-tie-voice-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-tie-voice-outline.svg b/docs/material/.icons/material/account-tie-voice-outline.svg new file mode 100644 index 000000000..64d77268c --- /dev/null +++ b/docs/material/.icons/material/account-tie-voice-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-tie-voice.svg b/docs/material/.icons/material/account-tie-voice.svg new file mode 100644 index 000000000..80be2ac97 --- /dev/null +++ b/docs/material/.icons/material/account-tie-voice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-tie.svg b/docs/material/.icons/material/account-tie.svg new file mode 100644 index 000000000..c378e7ec4 --- /dev/null +++ b/docs/material/.icons/material/account-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account-voice.svg b/docs/material/.icons/material/account-voice.svg new file mode 100644 index 000000000..a079819ee --- /dev/null +++ b/docs/material/.icons/material/account-voice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/account.svg b/docs/material/.icons/material/account.svg new file mode 100644 index 000000000..8c8e27ce4 --- /dev/null +++ b/docs/material/.icons/material/account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/adjust.svg b/docs/material/.icons/material/adjust.svg new file mode 100644 index 000000000..27c4ee78b --- /dev/null +++ b/docs/material/.icons/material/adjust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/adobe-acrobat.svg b/docs/material/.icons/material/adobe-acrobat.svg new file mode 100644 index 000000000..136692ced --- /dev/null +++ b/docs/material/.icons/material/adobe-acrobat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/adobe.svg b/docs/material/.icons/material/adobe.svg new file mode 100644 index 000000000..815cb9575 --- /dev/null +++ b/docs/material/.icons/material/adobe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/air-conditioner.svg b/docs/material/.icons/material/air-conditioner.svg new file mode 100644 index 000000000..7998c01c8 --- /dev/null +++ b/docs/material/.icons/material/air-conditioner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/air-filter.svg b/docs/material/.icons/material/air-filter.svg new file mode 100644 index 000000000..9c0d62283 --- /dev/null +++ b/docs/material/.icons/material/air-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/air-horn.svg b/docs/material/.icons/material/air-horn.svg new file mode 100644 index 000000000..c50ff8fca --- /dev/null +++ b/docs/material/.icons/material/air-horn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/air-humidifier.svg b/docs/material/.icons/material/air-humidifier.svg new file mode 100644 index 000000000..ec0fca9c7 --- /dev/null +++ b/docs/material/.icons/material/air-humidifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/air-purifier.svg b/docs/material/.icons/material/air-purifier.svg new file mode 100644 index 000000000..89e541ff3 --- /dev/null +++ b/docs/material/.icons/material/air-purifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airbag.svg b/docs/material/.icons/material/airbag.svg new file mode 100644 index 000000000..8919f9a91 --- /dev/null +++ b/docs/material/.icons/material/airbag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airballoon-outline.svg b/docs/material/.icons/material/airballoon-outline.svg new file mode 100644 index 000000000..d9a93bf68 --- /dev/null +++ b/docs/material/.icons/material/airballoon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airballoon.svg b/docs/material/.icons/material/airballoon.svg new file mode 100644 index 000000000..8c3acccbc --- /dev/null +++ b/docs/material/.icons/material/airballoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airplane-landing.svg b/docs/material/.icons/material/airplane-landing.svg new file mode 100644 index 000000000..5f0582c31 --- /dev/null +++ b/docs/material/.icons/material/airplane-landing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airplane-off.svg b/docs/material/.icons/material/airplane-off.svg new file mode 100644 index 000000000..f0b8669fa --- /dev/null +++ b/docs/material/.icons/material/airplane-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airplane-takeoff.svg b/docs/material/.icons/material/airplane-takeoff.svg new file mode 100644 index 000000000..bf9e34d2a --- /dev/null +++ b/docs/material/.icons/material/airplane-takeoff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airplane.svg b/docs/material/.icons/material/airplane.svg new file mode 100644 index 000000000..6c3d68551 --- /dev/null +++ b/docs/material/.icons/material/airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/airport.svg b/docs/material/.icons/material/airport.svg new file mode 100644 index 000000000..988c0e76d --- /dev/null +++ b/docs/material/.icons/material/airport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-bell.svg b/docs/material/.icons/material/alarm-bell.svg new file mode 100644 index 000000000..77d5f8c51 --- /dev/null +++ b/docs/material/.icons/material/alarm-bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-check.svg b/docs/material/.icons/material/alarm-check.svg new file mode 100644 index 000000000..b0c5f450c --- /dev/null +++ b/docs/material/.icons/material/alarm-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-light-outline.svg b/docs/material/.icons/material/alarm-light-outline.svg new file mode 100644 index 000000000..b667f8e76 --- /dev/null +++ b/docs/material/.icons/material/alarm-light-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-light.svg b/docs/material/.icons/material/alarm-light.svg new file mode 100644 index 000000000..5dd310895 --- /dev/null +++ b/docs/material/.icons/material/alarm-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-multiple.svg b/docs/material/.icons/material/alarm-multiple.svg new file mode 100644 index 000000000..814946669 --- /dev/null +++ b/docs/material/.icons/material/alarm-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-note-off.svg b/docs/material/.icons/material/alarm-note-off.svg new file mode 100644 index 000000000..1e346a8cd --- /dev/null +++ b/docs/material/.icons/material/alarm-note-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-note.svg b/docs/material/.icons/material/alarm-note.svg new file mode 100644 index 000000000..339cd8518 --- /dev/null +++ b/docs/material/.icons/material/alarm-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-off.svg b/docs/material/.icons/material/alarm-off.svg new file mode 100644 index 000000000..b338a7b20 --- /dev/null +++ b/docs/material/.icons/material/alarm-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-plus.svg b/docs/material/.icons/material/alarm-plus.svg new file mode 100644 index 000000000..02c01a75e --- /dev/null +++ b/docs/material/.icons/material/alarm-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm-snooze.svg b/docs/material/.icons/material/alarm-snooze.svg new file mode 100644 index 000000000..5c989942a --- /dev/null +++ b/docs/material/.icons/material/alarm-snooze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alarm.svg b/docs/material/.icons/material/alarm.svg new file mode 100644 index 000000000..69b39770c --- /dev/null +++ b/docs/material/.icons/material/alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/album.svg b/docs/material/.icons/material/album.svg new file mode 100644 index 000000000..4ed9b5535 --- /dev/null +++ b/docs/material/.icons/material/album.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-box-outline.svg b/docs/material/.icons/material/alert-box-outline.svg new file mode 100644 index 000000000..478da97bf --- /dev/null +++ b/docs/material/.icons/material/alert-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-box.svg b/docs/material/.icons/material/alert-box.svg new file mode 100644 index 000000000..cc8f77175 --- /dev/null +++ b/docs/material/.icons/material/alert-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-circle-check-outline.svg b/docs/material/.icons/material/alert-circle-check-outline.svg new file mode 100644 index 000000000..9af74c928 --- /dev/null +++ b/docs/material/.icons/material/alert-circle-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-circle-check.svg b/docs/material/.icons/material/alert-circle-check.svg new file mode 100644 index 000000000..70aa7be5f --- /dev/null +++ b/docs/material/.icons/material/alert-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-circle-outline.svg b/docs/material/.icons/material/alert-circle-outline.svg new file mode 100644 index 000000000..c5a93e71f --- /dev/null +++ b/docs/material/.icons/material/alert-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-circle.svg b/docs/material/.icons/material/alert-circle.svg new file mode 100644 index 000000000..ef4d3e65e --- /dev/null +++ b/docs/material/.icons/material/alert-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-decagram-outline.svg b/docs/material/.icons/material/alert-decagram-outline.svg new file mode 100644 index 000000000..e6b634198 --- /dev/null +++ b/docs/material/.icons/material/alert-decagram-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-decagram.svg b/docs/material/.icons/material/alert-decagram.svg new file mode 100644 index 000000000..800081b30 --- /dev/null +++ b/docs/material/.icons/material/alert-decagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-octagon-outline.svg b/docs/material/.icons/material/alert-octagon-outline.svg new file mode 100644 index 000000000..6509fa044 --- /dev/null +++ b/docs/material/.icons/material/alert-octagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-octagon.svg b/docs/material/.icons/material/alert-octagon.svg new file mode 100644 index 000000000..68b098310 --- /dev/null +++ b/docs/material/.icons/material/alert-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-octagram-outline.svg b/docs/material/.icons/material/alert-octagram-outline.svg new file mode 100644 index 000000000..bfcd21abe --- /dev/null +++ b/docs/material/.icons/material/alert-octagram-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-octagram.svg b/docs/material/.icons/material/alert-octagram.svg new file mode 100644 index 000000000..8887f8625 --- /dev/null +++ b/docs/material/.icons/material/alert-octagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-outline.svg b/docs/material/.icons/material/alert-outline.svg new file mode 100644 index 000000000..36d1e5b7b --- /dev/null +++ b/docs/material/.icons/material/alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-rhombus-outline.svg b/docs/material/.icons/material/alert-rhombus-outline.svg new file mode 100644 index 000000000..880324e40 --- /dev/null +++ b/docs/material/.icons/material/alert-rhombus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert-rhombus.svg b/docs/material/.icons/material/alert-rhombus.svg new file mode 100644 index 000000000..498a94d62 --- /dev/null +++ b/docs/material/.icons/material/alert-rhombus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alert.svg b/docs/material/.icons/material/alert.svg new file mode 100644 index 000000000..b5473e8a7 --- /dev/null +++ b/docs/material/.icons/material/alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alien-outline.svg b/docs/material/.icons/material/alien-outline.svg new file mode 100644 index 000000000..83f7d459e --- /dev/null +++ b/docs/material/.icons/material/alien-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alien.svg b/docs/material/.icons/material/alien.svg new file mode 100644 index 000000000..267d29664 --- /dev/null +++ b/docs/material/.icons/material/alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/align-horizontal-center.svg b/docs/material/.icons/material/align-horizontal-center.svg new file mode 100644 index 000000000..392803725 --- /dev/null +++ b/docs/material/.icons/material/align-horizontal-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/align-horizontal-left.svg b/docs/material/.icons/material/align-horizontal-left.svg new file mode 100644 index 000000000..f98c4b38b --- /dev/null +++ b/docs/material/.icons/material/align-horizontal-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/align-horizontal-right.svg b/docs/material/.icons/material/align-horizontal-right.svg new file mode 100644 index 000000000..7c316774b --- /dev/null +++ b/docs/material/.icons/material/align-horizontal-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/align-vertical-bottom.svg b/docs/material/.icons/material/align-vertical-bottom.svg new file mode 100644 index 000000000..5bc042379 --- /dev/null +++ b/docs/material/.icons/material/align-vertical-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/align-vertical-center.svg b/docs/material/.icons/material/align-vertical-center.svg new file mode 100644 index 000000000..55af3a3e3 --- /dev/null +++ b/docs/material/.icons/material/align-vertical-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/align-vertical-top.svg b/docs/material/.icons/material/align-vertical-top.svg new file mode 100644 index 000000000..08d449006 --- /dev/null +++ b/docs/material/.icons/material/align-vertical-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/all-inclusive.svg b/docs/material/.icons/material/all-inclusive.svg new file mode 100644 index 000000000..ea8ba39d9 --- /dev/null +++ b/docs/material/.icons/material/all-inclusive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/allergy.svg b/docs/material/.icons/material/allergy.svg new file mode 100644 index 000000000..0b3cbc5cd --- /dev/null +++ b/docs/material/.icons/material/allergy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-a-box-outline.svg b/docs/material/.icons/material/alpha-a-box-outline.svg new file mode 100644 index 000000000..9b874994b --- /dev/null +++ b/docs/material/.icons/material/alpha-a-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-a-box.svg b/docs/material/.icons/material/alpha-a-box.svg new file mode 100644 index 000000000..4c83f1fe6 --- /dev/null +++ b/docs/material/.icons/material/alpha-a-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-a-circle-outline.svg b/docs/material/.icons/material/alpha-a-circle-outline.svg new file mode 100644 index 000000000..672f598ec --- /dev/null +++ b/docs/material/.icons/material/alpha-a-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-a-circle.svg b/docs/material/.icons/material/alpha-a-circle.svg new file mode 100644 index 000000000..bf8561388 --- /dev/null +++ b/docs/material/.icons/material/alpha-a-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-a.svg b/docs/material/.icons/material/alpha-a.svg new file mode 100644 index 000000000..c9d66ee63 --- /dev/null +++ b/docs/material/.icons/material/alpha-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-b-box-outline.svg b/docs/material/.icons/material/alpha-b-box-outline.svg new file mode 100644 index 000000000..3ca921084 --- /dev/null +++ b/docs/material/.icons/material/alpha-b-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-b-box.svg b/docs/material/.icons/material/alpha-b-box.svg new file mode 100644 index 000000000..41129985f --- /dev/null +++ b/docs/material/.icons/material/alpha-b-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-b-circle-outline.svg b/docs/material/.icons/material/alpha-b-circle-outline.svg new file mode 100644 index 000000000..3d3106b79 --- /dev/null +++ b/docs/material/.icons/material/alpha-b-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-b-circle.svg b/docs/material/.icons/material/alpha-b-circle.svg new file mode 100644 index 000000000..49797d619 --- /dev/null +++ b/docs/material/.icons/material/alpha-b-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-b.svg b/docs/material/.icons/material/alpha-b.svg new file mode 100644 index 000000000..7f536b56d --- /dev/null +++ b/docs/material/.icons/material/alpha-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-c-box-outline.svg b/docs/material/.icons/material/alpha-c-box-outline.svg new file mode 100644 index 000000000..aad88088b --- /dev/null +++ b/docs/material/.icons/material/alpha-c-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-c-box.svg b/docs/material/.icons/material/alpha-c-box.svg new file mode 100644 index 000000000..5ec96817c --- /dev/null +++ b/docs/material/.icons/material/alpha-c-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-c-circle-outline.svg b/docs/material/.icons/material/alpha-c-circle-outline.svg new file mode 100644 index 000000000..0be86caec --- /dev/null +++ b/docs/material/.icons/material/alpha-c-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-c-circle.svg b/docs/material/.icons/material/alpha-c-circle.svg new file mode 100644 index 000000000..0ac61aa61 --- /dev/null +++ b/docs/material/.icons/material/alpha-c-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-c.svg b/docs/material/.icons/material/alpha-c.svg new file mode 100644 index 000000000..6f0a107a9 --- /dev/null +++ b/docs/material/.icons/material/alpha-c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-d-box-outline.svg b/docs/material/.icons/material/alpha-d-box-outline.svg new file mode 100644 index 000000000..33a306211 --- /dev/null +++ b/docs/material/.icons/material/alpha-d-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-d-box.svg b/docs/material/.icons/material/alpha-d-box.svg new file mode 100644 index 000000000..e8f62099b --- /dev/null +++ b/docs/material/.icons/material/alpha-d-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-d-circle-outline.svg b/docs/material/.icons/material/alpha-d-circle-outline.svg new file mode 100644 index 000000000..0bd16e491 --- /dev/null +++ b/docs/material/.icons/material/alpha-d-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-d-circle.svg b/docs/material/.icons/material/alpha-d-circle.svg new file mode 100644 index 000000000..59c63b753 --- /dev/null +++ b/docs/material/.icons/material/alpha-d-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-d.svg b/docs/material/.icons/material/alpha-d.svg new file mode 100644 index 000000000..0722a99f5 --- /dev/null +++ b/docs/material/.icons/material/alpha-d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-e-box-outline.svg b/docs/material/.icons/material/alpha-e-box-outline.svg new file mode 100644 index 000000000..80e1a7b49 --- /dev/null +++ b/docs/material/.icons/material/alpha-e-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-e-box.svg b/docs/material/.icons/material/alpha-e-box.svg new file mode 100644 index 000000000..31e8cab36 --- /dev/null +++ b/docs/material/.icons/material/alpha-e-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-e-circle-outline.svg b/docs/material/.icons/material/alpha-e-circle-outline.svg new file mode 100644 index 000000000..ed633c030 --- /dev/null +++ b/docs/material/.icons/material/alpha-e-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-e-circle.svg b/docs/material/.icons/material/alpha-e-circle.svg new file mode 100644 index 000000000..1e096ad62 --- /dev/null +++ b/docs/material/.icons/material/alpha-e-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-e.svg b/docs/material/.icons/material/alpha-e.svg new file mode 100644 index 000000000..e1f2f09b5 --- /dev/null +++ b/docs/material/.icons/material/alpha-e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-f-box-outline.svg b/docs/material/.icons/material/alpha-f-box-outline.svg new file mode 100644 index 000000000..d2b68b8e0 --- /dev/null +++ b/docs/material/.icons/material/alpha-f-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-f-box.svg b/docs/material/.icons/material/alpha-f-box.svg new file mode 100644 index 000000000..cfc263d10 --- /dev/null +++ b/docs/material/.icons/material/alpha-f-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-f-circle-outline.svg b/docs/material/.icons/material/alpha-f-circle-outline.svg new file mode 100644 index 000000000..5937a4b96 --- /dev/null +++ b/docs/material/.icons/material/alpha-f-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-f-circle.svg b/docs/material/.icons/material/alpha-f-circle.svg new file mode 100644 index 000000000..58ce2df1b --- /dev/null +++ b/docs/material/.icons/material/alpha-f-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-f.svg b/docs/material/.icons/material/alpha-f.svg new file mode 100644 index 000000000..e1bb43436 --- /dev/null +++ b/docs/material/.icons/material/alpha-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-g-box-outline.svg b/docs/material/.icons/material/alpha-g-box-outline.svg new file mode 100644 index 000000000..2ba9ac0e4 --- /dev/null +++ b/docs/material/.icons/material/alpha-g-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-g-box.svg b/docs/material/.icons/material/alpha-g-box.svg new file mode 100644 index 000000000..db4242192 --- /dev/null +++ b/docs/material/.icons/material/alpha-g-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-g-circle-outline.svg b/docs/material/.icons/material/alpha-g-circle-outline.svg new file mode 100644 index 000000000..009c655db --- /dev/null +++ b/docs/material/.icons/material/alpha-g-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-g-circle.svg b/docs/material/.icons/material/alpha-g-circle.svg new file mode 100644 index 000000000..ba47383d2 --- /dev/null +++ b/docs/material/.icons/material/alpha-g-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-g.svg b/docs/material/.icons/material/alpha-g.svg new file mode 100644 index 000000000..03b6319aa --- /dev/null +++ b/docs/material/.icons/material/alpha-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-h-box-outline.svg b/docs/material/.icons/material/alpha-h-box-outline.svg new file mode 100644 index 000000000..149cc78ab --- /dev/null +++ b/docs/material/.icons/material/alpha-h-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-h-box.svg b/docs/material/.icons/material/alpha-h-box.svg new file mode 100644 index 000000000..cf243df78 --- /dev/null +++ b/docs/material/.icons/material/alpha-h-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-h-circle-outline.svg b/docs/material/.icons/material/alpha-h-circle-outline.svg new file mode 100644 index 000000000..31636eb9a --- /dev/null +++ b/docs/material/.icons/material/alpha-h-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-h-circle.svg b/docs/material/.icons/material/alpha-h-circle.svg new file mode 100644 index 000000000..fa53e0215 --- /dev/null +++ b/docs/material/.icons/material/alpha-h-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-h.svg b/docs/material/.icons/material/alpha-h.svg new file mode 100644 index 000000000..3ab09b953 --- /dev/null +++ b/docs/material/.icons/material/alpha-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-i-box-outline.svg b/docs/material/.icons/material/alpha-i-box-outline.svg new file mode 100644 index 000000000..32fd60fa9 --- /dev/null +++ b/docs/material/.icons/material/alpha-i-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-i-box.svg b/docs/material/.icons/material/alpha-i-box.svg new file mode 100644 index 000000000..8ef7eb640 --- /dev/null +++ b/docs/material/.icons/material/alpha-i-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-i-circle-outline.svg b/docs/material/.icons/material/alpha-i-circle-outline.svg new file mode 100644 index 000000000..3fd5f41f0 --- /dev/null +++ b/docs/material/.icons/material/alpha-i-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-i-circle.svg b/docs/material/.icons/material/alpha-i-circle.svg new file mode 100644 index 000000000..e908474f7 --- /dev/null +++ b/docs/material/.icons/material/alpha-i-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-i.svg b/docs/material/.icons/material/alpha-i.svg new file mode 100644 index 000000000..a02ab5451 --- /dev/null +++ b/docs/material/.icons/material/alpha-i.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-j-box-outline.svg b/docs/material/.icons/material/alpha-j-box-outline.svg new file mode 100644 index 000000000..7698dc73f --- /dev/null +++ b/docs/material/.icons/material/alpha-j-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-j-box.svg b/docs/material/.icons/material/alpha-j-box.svg new file mode 100644 index 000000000..79fa44b11 --- /dev/null +++ b/docs/material/.icons/material/alpha-j-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-j-circle-outline.svg b/docs/material/.icons/material/alpha-j-circle-outline.svg new file mode 100644 index 000000000..ee1812bb8 --- /dev/null +++ b/docs/material/.icons/material/alpha-j-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-j-circle.svg b/docs/material/.icons/material/alpha-j-circle.svg new file mode 100644 index 000000000..92786a94e --- /dev/null +++ b/docs/material/.icons/material/alpha-j-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-j.svg b/docs/material/.icons/material/alpha-j.svg new file mode 100644 index 000000000..024fc3e08 --- /dev/null +++ b/docs/material/.icons/material/alpha-j.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-k-box-outline.svg b/docs/material/.icons/material/alpha-k-box-outline.svg new file mode 100644 index 000000000..1ac4519df --- /dev/null +++ b/docs/material/.icons/material/alpha-k-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-k-box.svg b/docs/material/.icons/material/alpha-k-box.svg new file mode 100644 index 000000000..290cb09be --- /dev/null +++ b/docs/material/.icons/material/alpha-k-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-k-circle-outline.svg b/docs/material/.icons/material/alpha-k-circle-outline.svg new file mode 100644 index 000000000..4a9cc669f --- /dev/null +++ b/docs/material/.icons/material/alpha-k-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-k-circle.svg b/docs/material/.icons/material/alpha-k-circle.svg new file mode 100644 index 000000000..dbb5d74f5 --- /dev/null +++ b/docs/material/.icons/material/alpha-k-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-k.svg b/docs/material/.icons/material/alpha-k.svg new file mode 100644 index 000000000..365868acc --- /dev/null +++ b/docs/material/.icons/material/alpha-k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-l-box-outline.svg b/docs/material/.icons/material/alpha-l-box-outline.svg new file mode 100644 index 000000000..363370d65 --- /dev/null +++ b/docs/material/.icons/material/alpha-l-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-l-box.svg b/docs/material/.icons/material/alpha-l-box.svg new file mode 100644 index 000000000..12641c8f1 --- /dev/null +++ b/docs/material/.icons/material/alpha-l-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-l-circle-outline.svg b/docs/material/.icons/material/alpha-l-circle-outline.svg new file mode 100644 index 000000000..52436e02f --- /dev/null +++ b/docs/material/.icons/material/alpha-l-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-l-circle.svg b/docs/material/.icons/material/alpha-l-circle.svg new file mode 100644 index 000000000..c2bac6c35 --- /dev/null +++ b/docs/material/.icons/material/alpha-l-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-l.svg b/docs/material/.icons/material/alpha-l.svg new file mode 100644 index 000000000..f3ebde289 --- /dev/null +++ b/docs/material/.icons/material/alpha-l.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-m-box-outline.svg b/docs/material/.icons/material/alpha-m-box-outline.svg new file mode 100644 index 000000000..b6b78d287 --- /dev/null +++ b/docs/material/.icons/material/alpha-m-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-m-box.svg b/docs/material/.icons/material/alpha-m-box.svg new file mode 100644 index 000000000..08732d0b5 --- /dev/null +++ b/docs/material/.icons/material/alpha-m-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-m-circle-outline.svg b/docs/material/.icons/material/alpha-m-circle-outline.svg new file mode 100644 index 000000000..6be9ffdbc --- /dev/null +++ b/docs/material/.icons/material/alpha-m-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-m-circle.svg b/docs/material/.icons/material/alpha-m-circle.svg new file mode 100644 index 000000000..b07275d8d --- /dev/null +++ b/docs/material/.icons/material/alpha-m-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-m.svg b/docs/material/.icons/material/alpha-m.svg new file mode 100644 index 000000000..5e1c5a545 --- /dev/null +++ b/docs/material/.icons/material/alpha-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-n-box-outline.svg b/docs/material/.icons/material/alpha-n-box-outline.svg new file mode 100644 index 000000000..0429e49c2 --- /dev/null +++ b/docs/material/.icons/material/alpha-n-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-n-box.svg b/docs/material/.icons/material/alpha-n-box.svg new file mode 100644 index 000000000..cd3c704d6 --- /dev/null +++ b/docs/material/.icons/material/alpha-n-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-n-circle-outline.svg b/docs/material/.icons/material/alpha-n-circle-outline.svg new file mode 100644 index 000000000..e023e9368 --- /dev/null +++ b/docs/material/.icons/material/alpha-n-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-n-circle.svg b/docs/material/.icons/material/alpha-n-circle.svg new file mode 100644 index 000000000..b986f3d2d --- /dev/null +++ b/docs/material/.icons/material/alpha-n-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-n.svg b/docs/material/.icons/material/alpha-n.svg new file mode 100644 index 000000000..3e20f7fb6 --- /dev/null +++ b/docs/material/.icons/material/alpha-n.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-o-box-outline.svg b/docs/material/.icons/material/alpha-o-box-outline.svg new file mode 100644 index 000000000..feda654b9 --- /dev/null +++ b/docs/material/.icons/material/alpha-o-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-o-box.svg b/docs/material/.icons/material/alpha-o-box.svg new file mode 100644 index 000000000..1dffe5436 --- /dev/null +++ b/docs/material/.icons/material/alpha-o-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-o-circle-outline.svg b/docs/material/.icons/material/alpha-o-circle-outline.svg new file mode 100644 index 000000000..bdbd537d1 --- /dev/null +++ b/docs/material/.icons/material/alpha-o-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-o-circle.svg b/docs/material/.icons/material/alpha-o-circle.svg new file mode 100644 index 000000000..9c22b102a --- /dev/null +++ b/docs/material/.icons/material/alpha-o-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-o.svg b/docs/material/.icons/material/alpha-o.svg new file mode 100644 index 000000000..7b55d3926 --- /dev/null +++ b/docs/material/.icons/material/alpha-o.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-p-box-outline.svg b/docs/material/.icons/material/alpha-p-box-outline.svg new file mode 100644 index 000000000..5851cb370 --- /dev/null +++ b/docs/material/.icons/material/alpha-p-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-p-box.svg b/docs/material/.icons/material/alpha-p-box.svg new file mode 100644 index 000000000..45fab6f4f --- /dev/null +++ b/docs/material/.icons/material/alpha-p-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-p-circle-outline.svg b/docs/material/.icons/material/alpha-p-circle-outline.svg new file mode 100644 index 000000000..c78353235 --- /dev/null +++ b/docs/material/.icons/material/alpha-p-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-p-circle.svg b/docs/material/.icons/material/alpha-p-circle.svg new file mode 100644 index 000000000..ff1c39739 --- /dev/null +++ b/docs/material/.icons/material/alpha-p-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-p.svg b/docs/material/.icons/material/alpha-p.svg new file mode 100644 index 000000000..438597e4a --- /dev/null +++ b/docs/material/.icons/material/alpha-p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-q-box-outline.svg b/docs/material/.icons/material/alpha-q-box-outline.svg new file mode 100644 index 000000000..abf30dc0c --- /dev/null +++ b/docs/material/.icons/material/alpha-q-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-q-box.svg b/docs/material/.icons/material/alpha-q-box.svg new file mode 100644 index 000000000..a3bfaa82f --- /dev/null +++ b/docs/material/.icons/material/alpha-q-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-q-circle-outline.svg b/docs/material/.icons/material/alpha-q-circle-outline.svg new file mode 100644 index 000000000..67fe62caa --- /dev/null +++ b/docs/material/.icons/material/alpha-q-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-q-circle.svg b/docs/material/.icons/material/alpha-q-circle.svg new file mode 100644 index 000000000..f5bf425b0 --- /dev/null +++ b/docs/material/.icons/material/alpha-q-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-q.svg b/docs/material/.icons/material/alpha-q.svg new file mode 100644 index 000000000..fa3e76efd --- /dev/null +++ b/docs/material/.icons/material/alpha-q.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-r-box-outline.svg b/docs/material/.icons/material/alpha-r-box-outline.svg new file mode 100644 index 000000000..3913c45e3 --- /dev/null +++ b/docs/material/.icons/material/alpha-r-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-r-box.svg b/docs/material/.icons/material/alpha-r-box.svg new file mode 100644 index 000000000..9c3907301 --- /dev/null +++ b/docs/material/.icons/material/alpha-r-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-r-circle-outline.svg b/docs/material/.icons/material/alpha-r-circle-outline.svg new file mode 100644 index 000000000..12a079d80 --- /dev/null +++ b/docs/material/.icons/material/alpha-r-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-r-circle.svg b/docs/material/.icons/material/alpha-r-circle.svg new file mode 100644 index 000000000..a626740f6 --- /dev/null +++ b/docs/material/.icons/material/alpha-r-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-r.svg b/docs/material/.icons/material/alpha-r.svg new file mode 100644 index 000000000..551e4390c --- /dev/null +++ b/docs/material/.icons/material/alpha-r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-s-box-outline.svg b/docs/material/.icons/material/alpha-s-box-outline.svg new file mode 100644 index 000000000..d4051ef70 --- /dev/null +++ b/docs/material/.icons/material/alpha-s-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-s-box.svg b/docs/material/.icons/material/alpha-s-box.svg new file mode 100644 index 000000000..9622fb3bb --- /dev/null +++ b/docs/material/.icons/material/alpha-s-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-s-circle-outline.svg b/docs/material/.icons/material/alpha-s-circle-outline.svg new file mode 100644 index 000000000..e7310b5ed --- /dev/null +++ b/docs/material/.icons/material/alpha-s-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-s-circle.svg b/docs/material/.icons/material/alpha-s-circle.svg new file mode 100644 index 000000000..77558cf1f --- /dev/null +++ b/docs/material/.icons/material/alpha-s-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-s.svg b/docs/material/.icons/material/alpha-s.svg new file mode 100644 index 000000000..f11da32d3 --- /dev/null +++ b/docs/material/.icons/material/alpha-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-t-box-outline.svg b/docs/material/.icons/material/alpha-t-box-outline.svg new file mode 100644 index 000000000..ecf2102bd --- /dev/null +++ b/docs/material/.icons/material/alpha-t-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-t-box.svg b/docs/material/.icons/material/alpha-t-box.svg new file mode 100644 index 000000000..8c3cb4bf1 --- /dev/null +++ b/docs/material/.icons/material/alpha-t-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-t-circle-outline.svg b/docs/material/.icons/material/alpha-t-circle-outline.svg new file mode 100644 index 000000000..64e2f2f82 --- /dev/null +++ b/docs/material/.icons/material/alpha-t-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-t-circle.svg b/docs/material/.icons/material/alpha-t-circle.svg new file mode 100644 index 000000000..f356e7bd1 --- /dev/null +++ b/docs/material/.icons/material/alpha-t-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-t.svg b/docs/material/.icons/material/alpha-t.svg new file mode 100644 index 000000000..26f7ad9d5 --- /dev/null +++ b/docs/material/.icons/material/alpha-t.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-u-box-outline.svg b/docs/material/.icons/material/alpha-u-box-outline.svg new file mode 100644 index 000000000..8374e32fa --- /dev/null +++ b/docs/material/.icons/material/alpha-u-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-u-box.svg b/docs/material/.icons/material/alpha-u-box.svg new file mode 100644 index 000000000..f91c6fc01 --- /dev/null +++ b/docs/material/.icons/material/alpha-u-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-u-circle-outline.svg b/docs/material/.icons/material/alpha-u-circle-outline.svg new file mode 100644 index 000000000..d840c19d6 --- /dev/null +++ b/docs/material/.icons/material/alpha-u-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-u-circle.svg b/docs/material/.icons/material/alpha-u-circle.svg new file mode 100644 index 000000000..e0d395df4 --- /dev/null +++ b/docs/material/.icons/material/alpha-u-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-u.svg b/docs/material/.icons/material/alpha-u.svg new file mode 100644 index 000000000..aec7b135f --- /dev/null +++ b/docs/material/.icons/material/alpha-u.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-v-box-outline.svg b/docs/material/.icons/material/alpha-v-box-outline.svg new file mode 100644 index 000000000..79d243f94 --- /dev/null +++ b/docs/material/.icons/material/alpha-v-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-v-box.svg b/docs/material/.icons/material/alpha-v-box.svg new file mode 100644 index 000000000..978e0bce2 --- /dev/null +++ b/docs/material/.icons/material/alpha-v-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-v-circle-outline.svg b/docs/material/.icons/material/alpha-v-circle-outline.svg new file mode 100644 index 000000000..e435df33e --- /dev/null +++ b/docs/material/.icons/material/alpha-v-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-v-circle.svg b/docs/material/.icons/material/alpha-v-circle.svg new file mode 100644 index 000000000..da5484c8e --- /dev/null +++ b/docs/material/.icons/material/alpha-v-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-v.svg b/docs/material/.icons/material/alpha-v.svg new file mode 100644 index 000000000..e3ca9da33 --- /dev/null +++ b/docs/material/.icons/material/alpha-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-w-box-outline.svg b/docs/material/.icons/material/alpha-w-box-outline.svg new file mode 100644 index 000000000..d3a16898e --- /dev/null +++ b/docs/material/.icons/material/alpha-w-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-w-box.svg b/docs/material/.icons/material/alpha-w-box.svg new file mode 100644 index 000000000..7565e0767 --- /dev/null +++ b/docs/material/.icons/material/alpha-w-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-w-circle-outline.svg b/docs/material/.icons/material/alpha-w-circle-outline.svg new file mode 100644 index 000000000..8ece081df --- /dev/null +++ b/docs/material/.icons/material/alpha-w-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-w-circle.svg b/docs/material/.icons/material/alpha-w-circle.svg new file mode 100644 index 000000000..eab29ecec --- /dev/null +++ b/docs/material/.icons/material/alpha-w-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-w.svg b/docs/material/.icons/material/alpha-w.svg new file mode 100644 index 000000000..fcd4844bb --- /dev/null +++ b/docs/material/.icons/material/alpha-w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-x-box-outline.svg b/docs/material/.icons/material/alpha-x-box-outline.svg new file mode 100644 index 000000000..3aac7a5b7 --- /dev/null +++ b/docs/material/.icons/material/alpha-x-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-x-box.svg b/docs/material/.icons/material/alpha-x-box.svg new file mode 100644 index 000000000..c809a34a1 --- /dev/null +++ b/docs/material/.icons/material/alpha-x-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-x-circle-outline.svg b/docs/material/.icons/material/alpha-x-circle-outline.svg new file mode 100644 index 000000000..8f1152aa0 --- /dev/null +++ b/docs/material/.icons/material/alpha-x-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-x-circle.svg b/docs/material/.icons/material/alpha-x-circle.svg new file mode 100644 index 000000000..ca7d58f1e --- /dev/null +++ b/docs/material/.icons/material/alpha-x-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-x.svg b/docs/material/.icons/material/alpha-x.svg new file mode 100644 index 000000000..4b736b5b3 --- /dev/null +++ b/docs/material/.icons/material/alpha-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-y-box-outline.svg b/docs/material/.icons/material/alpha-y-box-outline.svg new file mode 100644 index 000000000..a090d126c --- /dev/null +++ b/docs/material/.icons/material/alpha-y-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-y-box.svg b/docs/material/.icons/material/alpha-y-box.svg new file mode 100644 index 000000000..30e5130c9 --- /dev/null +++ b/docs/material/.icons/material/alpha-y-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-y-circle-outline.svg b/docs/material/.icons/material/alpha-y-circle-outline.svg new file mode 100644 index 000000000..ec072156b --- /dev/null +++ b/docs/material/.icons/material/alpha-y-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-y-circle.svg b/docs/material/.icons/material/alpha-y-circle.svg new file mode 100644 index 000000000..ac1adea8e --- /dev/null +++ b/docs/material/.icons/material/alpha-y-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-y.svg b/docs/material/.icons/material/alpha-y.svg new file mode 100644 index 000000000..846536c0b --- /dev/null +++ b/docs/material/.icons/material/alpha-y.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-z-box-outline.svg b/docs/material/.icons/material/alpha-z-box-outline.svg new file mode 100644 index 000000000..794988118 --- /dev/null +++ b/docs/material/.icons/material/alpha-z-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-z-box.svg b/docs/material/.icons/material/alpha-z-box.svg new file mode 100644 index 000000000..e6eda50d4 --- /dev/null +++ b/docs/material/.icons/material/alpha-z-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-z-circle-outline.svg b/docs/material/.icons/material/alpha-z-circle-outline.svg new file mode 100644 index 000000000..d0072f44d --- /dev/null +++ b/docs/material/.icons/material/alpha-z-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-z-circle.svg b/docs/material/.icons/material/alpha-z-circle.svg new file mode 100644 index 000000000..ddfb246ac --- /dev/null +++ b/docs/material/.icons/material/alpha-z-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha-z.svg b/docs/material/.icons/material/alpha-z.svg new file mode 100644 index 000000000..a2f778db8 --- /dev/null +++ b/docs/material/.icons/material/alpha-z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alpha.svg b/docs/material/.icons/material/alpha.svg new file mode 100644 index 000000000..4a5790e13 --- /dev/null +++ b/docs/material/.icons/material/alpha.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabet-aurebesh.svg b/docs/material/.icons/material/alphabet-aurebesh.svg new file mode 100644 index 000000000..c8af2245d --- /dev/null +++ b/docs/material/.icons/material/alphabet-aurebesh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabet-cyrillic.svg b/docs/material/.icons/material/alphabet-cyrillic.svg new file mode 100644 index 000000000..44addae60 --- /dev/null +++ b/docs/material/.icons/material/alphabet-cyrillic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabet-greek.svg b/docs/material/.icons/material/alphabet-greek.svg new file mode 100644 index 000000000..64e910a70 --- /dev/null +++ b/docs/material/.icons/material/alphabet-greek.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabet-latin.svg b/docs/material/.icons/material/alphabet-latin.svg new file mode 100644 index 000000000..c60be0281 --- /dev/null +++ b/docs/material/.icons/material/alphabet-latin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabet-piqad.svg b/docs/material/.icons/material/alphabet-piqad.svg new file mode 100644 index 000000000..2e2a912e2 --- /dev/null +++ b/docs/material/.icons/material/alphabet-piqad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabet-tengwar.svg b/docs/material/.icons/material/alphabet-tengwar.svg new file mode 100644 index 000000000..b6b6d67eb --- /dev/null +++ b/docs/material/.icons/material/alphabet-tengwar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabetical-off.svg b/docs/material/.icons/material/alphabetical-off.svg new file mode 100644 index 000000000..477fbc212 --- /dev/null +++ b/docs/material/.icons/material/alphabetical-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabetical-variant-off.svg b/docs/material/.icons/material/alphabetical-variant-off.svg new file mode 100644 index 000000000..ba0464b05 --- /dev/null +++ b/docs/material/.icons/material/alphabetical-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabetical-variant.svg b/docs/material/.icons/material/alphabetical-variant.svg new file mode 100644 index 000000000..ca1ffe668 --- /dev/null +++ b/docs/material/.icons/material/alphabetical-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/alphabetical.svg b/docs/material/.icons/material/alphabetical.svg new file mode 100644 index 000000000..ff47a0951 --- /dev/null +++ b/docs/material/.icons/material/alphabetical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/altimeter.svg b/docs/material/.icons/material/altimeter.svg new file mode 100644 index 000000000..34f7eb38b --- /dev/null +++ b/docs/material/.icons/material/altimeter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/amazon-alexa.svg b/docs/material/.icons/material/amazon-alexa.svg new file mode 100644 index 000000000..7d0dda019 --- /dev/null +++ b/docs/material/.icons/material/amazon-alexa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/amazon.svg b/docs/material/.icons/material/amazon.svg new file mode 100644 index 000000000..cb56b4e2e --- /dev/null +++ b/docs/material/.icons/material/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ambulance.svg b/docs/material/.icons/material/ambulance.svg new file mode 100644 index 000000000..b1e91ce31 --- /dev/null +++ b/docs/material/.icons/material/ambulance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ammunition.svg b/docs/material/.icons/material/ammunition.svg new file mode 100644 index 000000000..21589610b --- /dev/null +++ b/docs/material/.icons/material/ammunition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ampersand.svg b/docs/material/.icons/material/ampersand.svg new file mode 100644 index 000000000..e0fa5475f --- /dev/null +++ b/docs/material/.icons/material/ampersand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/amplifier-off.svg b/docs/material/.icons/material/amplifier-off.svg new file mode 100644 index 000000000..720d9f5ff --- /dev/null +++ b/docs/material/.icons/material/amplifier-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/amplifier.svg b/docs/material/.icons/material/amplifier.svg new file mode 100644 index 000000000..ee4df907d --- /dev/null +++ b/docs/material/.icons/material/amplifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/anchor.svg b/docs/material/.icons/material/anchor.svg new file mode 100644 index 000000000..4c86a0e70 --- /dev/null +++ b/docs/material/.icons/material/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/android-auto.svg b/docs/material/.icons/material/android-auto.svg new file mode 100644 index 000000000..ed5ac4fb0 --- /dev/null +++ b/docs/material/.icons/material/android-auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/android-debug-bridge.svg b/docs/material/.icons/material/android-debug-bridge.svg new file mode 100644 index 000000000..de679fe62 --- /dev/null +++ b/docs/material/.icons/material/android-debug-bridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/android-messages.svg b/docs/material/.icons/material/android-messages.svg new file mode 100644 index 000000000..24752adac --- /dev/null +++ b/docs/material/.icons/material/android-messages.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/android-studio.svg b/docs/material/.icons/material/android-studio.svg new file mode 100644 index 000000000..d7cf5cc7e --- /dev/null +++ b/docs/material/.icons/material/android-studio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/android.svg b/docs/material/.icons/material/android.svg new file mode 100644 index 000000000..cda890949 --- /dev/null +++ b/docs/material/.icons/material/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/angle-acute.svg b/docs/material/.icons/material/angle-acute.svg new file mode 100644 index 000000000..f63d4b97b --- /dev/null +++ b/docs/material/.icons/material/angle-acute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/angle-obtuse.svg b/docs/material/.icons/material/angle-obtuse.svg new file mode 100644 index 000000000..069679b8a --- /dev/null +++ b/docs/material/.icons/material/angle-obtuse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/angle-right.svg b/docs/material/.icons/material/angle-right.svg new file mode 100644 index 000000000..975eabdc7 --- /dev/null +++ b/docs/material/.icons/material/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/angular.svg b/docs/material/.icons/material/angular.svg new file mode 100644 index 000000000..3ae358997 --- /dev/null +++ b/docs/material/.icons/material/angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/angularjs.svg b/docs/material/.icons/material/angularjs.svg new file mode 100644 index 000000000..ef5685ef0 --- /dev/null +++ b/docs/material/.icons/material/angularjs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/animation-outline.svg b/docs/material/.icons/material/animation-outline.svg new file mode 100644 index 000000000..13c2b0132 --- /dev/null +++ b/docs/material/.icons/material/animation-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/animation-play-outline.svg b/docs/material/.icons/material/animation-play-outline.svg new file mode 100644 index 000000000..3a29a93b4 --- /dev/null +++ b/docs/material/.icons/material/animation-play-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/animation-play.svg b/docs/material/.icons/material/animation-play.svg new file mode 100644 index 000000000..5c7a2e58c --- /dev/null +++ b/docs/material/.icons/material/animation-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/animation.svg b/docs/material/.icons/material/animation.svg new file mode 100644 index 000000000..2fdee8941 --- /dev/null +++ b/docs/material/.icons/material/animation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ansible.svg b/docs/material/.icons/material/ansible.svg new file mode 100644 index 000000000..171e8130d --- /dev/null +++ b/docs/material/.icons/material/ansible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/antenna.svg b/docs/material/.icons/material/antenna.svg new file mode 100644 index 000000000..0d28c07be --- /dev/null +++ b/docs/material/.icons/material/antenna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/anvil.svg b/docs/material/.icons/material/anvil.svg new file mode 100644 index 000000000..c0c467e8a --- /dev/null +++ b/docs/material/.icons/material/anvil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apache-kafka.svg b/docs/material/.icons/material/apache-kafka.svg new file mode 100644 index 000000000..928cfb53c --- /dev/null +++ b/docs/material/.icons/material/apache-kafka.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/api-off.svg b/docs/material/.icons/material/api-off.svg new file mode 100644 index 000000000..cd2c72ceb --- /dev/null +++ b/docs/material/.icons/material/api-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/api.svg b/docs/material/.icons/material/api.svg new file mode 100644 index 000000000..4502b8288 --- /dev/null +++ b/docs/material/.icons/material/api.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-airplay.svg b/docs/material/.icons/material/apple-airplay.svg new file mode 100644 index 000000000..393771f7a --- /dev/null +++ b/docs/material/.icons/material/apple-airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-finder.svg b/docs/material/.icons/material/apple-finder.svg new file mode 100644 index 000000000..370d8d293 --- /dev/null +++ b/docs/material/.icons/material/apple-finder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-icloud.svg b/docs/material/.icons/material/apple-icloud.svg new file mode 100644 index 000000000..1bd184633 --- /dev/null +++ b/docs/material/.icons/material/apple-icloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-ios.svg b/docs/material/.icons/material/apple-ios.svg new file mode 100644 index 000000000..20f1bcbc7 --- /dev/null +++ b/docs/material/.icons/material/apple-ios.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-keyboard-caps.svg b/docs/material/.icons/material/apple-keyboard-caps.svg new file mode 100644 index 000000000..1c652de76 --- /dev/null +++ b/docs/material/.icons/material/apple-keyboard-caps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-keyboard-command.svg b/docs/material/.icons/material/apple-keyboard-command.svg new file mode 100644 index 000000000..1bdaef95f --- /dev/null +++ b/docs/material/.icons/material/apple-keyboard-command.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-keyboard-control.svg b/docs/material/.icons/material/apple-keyboard-control.svg new file mode 100644 index 000000000..aa4ec5fdc --- /dev/null +++ b/docs/material/.icons/material/apple-keyboard-control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-keyboard-option.svg b/docs/material/.icons/material/apple-keyboard-option.svg new file mode 100644 index 000000000..51cbdcf85 --- /dev/null +++ b/docs/material/.icons/material/apple-keyboard-option.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-keyboard-shift.svg b/docs/material/.icons/material/apple-keyboard-shift.svg new file mode 100644 index 000000000..94a2c6330 --- /dev/null +++ b/docs/material/.icons/material/apple-keyboard-shift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple-safari.svg b/docs/material/.icons/material/apple-safari.svg new file mode 100644 index 000000000..7ea5c93b5 --- /dev/null +++ b/docs/material/.icons/material/apple-safari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apple.svg b/docs/material/.icons/material/apple.svg new file mode 100644 index 000000000..59763d87a --- /dev/null +++ b/docs/material/.icons/material/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/application-export.svg b/docs/material/.icons/material/application-export.svg new file mode 100644 index 000000000..801a39329 --- /dev/null +++ b/docs/material/.icons/material/application-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/application-import.svg b/docs/material/.icons/material/application-import.svg new file mode 100644 index 000000000..8c90d3182 --- /dev/null +++ b/docs/material/.icons/material/application-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/application.svg b/docs/material/.icons/material/application.svg new file mode 100644 index 000000000..b98217b9a --- /dev/null +++ b/docs/material/.icons/material/application.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/approximately-equal-box.svg b/docs/material/.icons/material/approximately-equal-box.svg new file mode 100644 index 000000000..01e1eb34d --- /dev/null +++ b/docs/material/.icons/material/approximately-equal-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/approximately-equal.svg b/docs/material/.icons/material/approximately-equal.svg new file mode 100644 index 000000000..45258556b --- /dev/null +++ b/docs/material/.icons/material/approximately-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apps-box.svg b/docs/material/.icons/material/apps-box.svg new file mode 100644 index 000000000..1dc3ebb60 --- /dev/null +++ b/docs/material/.icons/material/apps-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/apps.svg b/docs/material/.icons/material/apps.svg new file mode 100644 index 000000000..5ff759bf1 --- /dev/null +++ b/docs/material/.icons/material/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arch.svg b/docs/material/.icons/material/arch.svg new file mode 100644 index 000000000..1e18ecdd3 --- /dev/null +++ b/docs/material/.icons/material/arch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/archive-arrow-down-outline.svg b/docs/material/.icons/material/archive-arrow-down-outline.svg new file mode 100644 index 000000000..e98053d7a --- /dev/null +++ b/docs/material/.icons/material/archive-arrow-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/archive-arrow-down.svg b/docs/material/.icons/material/archive-arrow-down.svg new file mode 100644 index 000000000..aa7cedaae --- /dev/null +++ b/docs/material/.icons/material/archive-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/archive-arrow-up-outline.svg b/docs/material/.icons/material/archive-arrow-up-outline.svg new file mode 100644 index 000000000..a36697e45 --- /dev/null +++ b/docs/material/.icons/material/archive-arrow-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/archive-arrow-up.svg b/docs/material/.icons/material/archive-arrow-up.svg new file mode 100644 index 000000000..3a3798091 --- /dev/null +++ b/docs/material/.icons/material/archive-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/archive-outline.svg b/docs/material/.icons/material/archive-outline.svg new file mode 100644 index 000000000..65debd343 --- /dev/null +++ b/docs/material/.icons/material/archive-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/archive.svg b/docs/material/.icons/material/archive.svg new file mode 100644 index 000000000..0c2f4b118 --- /dev/null +++ b/docs/material/.icons/material/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arm-flex-outline.svg b/docs/material/.icons/material/arm-flex-outline.svg new file mode 100644 index 000000000..0b546c55d --- /dev/null +++ b/docs/material/.icons/material/arm-flex-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arm-flex.svg b/docs/material/.icons/material/arm-flex.svg new file mode 100644 index 000000000..ecfe412f6 --- /dev/null +++ b/docs/material/.icons/material/arm-flex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrange-bring-forward.svg b/docs/material/.icons/material/arrange-bring-forward.svg new file mode 100644 index 000000000..3383c84e6 --- /dev/null +++ b/docs/material/.icons/material/arrange-bring-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrange-bring-to-front.svg b/docs/material/.icons/material/arrange-bring-to-front.svg new file mode 100644 index 000000000..b74b92757 --- /dev/null +++ b/docs/material/.icons/material/arrange-bring-to-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrange-send-backward.svg b/docs/material/.icons/material/arrange-send-backward.svg new file mode 100644 index 000000000..1e11ad8c0 --- /dev/null +++ b/docs/material/.icons/material/arrange-send-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrange-send-to-back.svg b/docs/material/.icons/material/arrange-send-to-back.svg new file mode 100644 index 000000000..97b2137ad --- /dev/null +++ b/docs/material/.icons/material/arrange-send-to-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-all.svg b/docs/material/.icons/material/arrow-all.svg new file mode 100644 index 000000000..5850f86a5 --- /dev/null +++ b/docs/material/.icons/material/arrow-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-bottom-left-bold-outline.svg b/docs/material/.icons/material/arrow-bottom-left-bold-outline.svg new file mode 100644 index 000000000..258f5bada --- /dev/null +++ b/docs/material/.icons/material/arrow-bottom-left-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-bottom-left-thick.svg b/docs/material/.icons/material/arrow-bottom-left-thick.svg new file mode 100644 index 000000000..ee0d416c2 --- /dev/null +++ b/docs/material/.icons/material/arrow-bottom-left-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-bottom-left.svg b/docs/material/.icons/material/arrow-bottom-left.svg new file mode 100644 index 000000000..4c10fc2e9 --- /dev/null +++ b/docs/material/.icons/material/arrow-bottom-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-bottom-right-bold-outline.svg b/docs/material/.icons/material/arrow-bottom-right-bold-outline.svg new file mode 100644 index 000000000..1c5b2dc66 --- /dev/null +++ b/docs/material/.icons/material/arrow-bottom-right-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-bottom-right-thick.svg b/docs/material/.icons/material/arrow-bottom-right-thick.svg new file mode 100644 index 000000000..30dd66397 --- /dev/null +++ b/docs/material/.icons/material/arrow-bottom-right-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-bottom-right.svg b/docs/material/.icons/material/arrow-bottom-right.svg new file mode 100644 index 000000000..4df1d7703 --- /dev/null +++ b/docs/material/.icons/material/arrow-bottom-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse-all.svg b/docs/material/.icons/material/arrow-collapse-all.svg new file mode 100644 index 000000000..5081a0385 --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse-down.svg b/docs/material/.icons/material/arrow-collapse-down.svg new file mode 100644 index 000000000..fc6392fa5 --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse-horizontal.svg b/docs/material/.icons/material/arrow-collapse-horizontal.svg new file mode 100644 index 000000000..4d1dfcd0e --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse-left.svg b/docs/material/.icons/material/arrow-collapse-left.svg new file mode 100644 index 000000000..f36d3eab0 --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse-right.svg b/docs/material/.icons/material/arrow-collapse-right.svg new file mode 100644 index 000000000..d9f38ebb5 --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse-up.svg b/docs/material/.icons/material/arrow-collapse-up.svg new file mode 100644 index 000000000..3ac6e1979 --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse-vertical.svg b/docs/material/.icons/material/arrow-collapse-vertical.svg new file mode 100644 index 000000000..de4868c8d --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-collapse.svg b/docs/material/.icons/material/arrow-collapse.svg new file mode 100644 index 000000000..e33a279a2 --- /dev/null +++ b/docs/material/.icons/material/arrow-collapse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-decision-auto-outline.svg b/docs/material/.icons/material/arrow-decision-auto-outline.svg new file mode 100644 index 000000000..6a1ecb40d --- /dev/null +++ b/docs/material/.icons/material/arrow-decision-auto-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-decision-auto.svg b/docs/material/.icons/material/arrow-decision-auto.svg new file mode 100644 index 000000000..2c2c6b19a --- /dev/null +++ b/docs/material/.icons/material/arrow-decision-auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-decision-outline.svg b/docs/material/.icons/material/arrow-decision-outline.svg new file mode 100644 index 000000000..e934cc3a2 --- /dev/null +++ b/docs/material/.icons/material/arrow-decision-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-decision.svg b/docs/material/.icons/material/arrow-decision.svg new file mode 100644 index 000000000..a6f7a242b --- /dev/null +++ b/docs/material/.icons/material/arrow-decision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-bold-box-outline.svg b/docs/material/.icons/material/arrow-down-bold-box-outline.svg new file mode 100644 index 000000000..993731cc9 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-bold-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-bold-box.svg b/docs/material/.icons/material/arrow-down-bold-box.svg new file mode 100644 index 000000000..9e7df2ba0 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-bold-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-bold-circle-outline.svg b/docs/material/.icons/material/arrow-down-bold-circle-outline.svg new file mode 100644 index 000000000..d88e25019 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-bold-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-bold-circle.svg b/docs/material/.icons/material/arrow-down-bold-circle.svg new file mode 100644 index 000000000..56ea715ea --- /dev/null +++ b/docs/material/.icons/material/arrow-down-bold-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-bold-hexagon-outline.svg b/docs/material/.icons/material/arrow-down-bold-hexagon-outline.svg new file mode 100644 index 000000000..55a53f217 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-bold-hexagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-bold-outline.svg b/docs/material/.icons/material/arrow-down-bold-outline.svg new file mode 100644 index 000000000..f9f62ef01 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-bold.svg b/docs/material/.icons/material/arrow-down-bold.svg new file mode 100644 index 000000000..d5da10818 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-box.svg b/docs/material/.icons/material/arrow-down-box.svg new file mode 100644 index 000000000..54ad4a442 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-circle-outline.svg b/docs/material/.icons/material/arrow-down-circle-outline.svg new file mode 100644 index 000000000..24571eefb --- /dev/null +++ b/docs/material/.icons/material/arrow-down-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-circle.svg b/docs/material/.icons/material/arrow-down-circle.svg new file mode 100644 index 000000000..53bf9297c --- /dev/null +++ b/docs/material/.icons/material/arrow-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-drop-circle-outline.svg b/docs/material/.icons/material/arrow-down-drop-circle-outline.svg new file mode 100644 index 000000000..4de0fba77 --- /dev/null +++ b/docs/material/.icons/material/arrow-down-drop-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-drop-circle.svg b/docs/material/.icons/material/arrow-down-drop-circle.svg new file mode 100644 index 000000000..b7bf510db --- /dev/null +++ b/docs/material/.icons/material/arrow-down-drop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down-thick.svg b/docs/material/.icons/material/arrow-down-thick.svg new file mode 100644 index 000000000..50f06979b --- /dev/null +++ b/docs/material/.icons/material/arrow-down-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-down.svg b/docs/material/.icons/material/arrow-down.svg new file mode 100644 index 000000000..8f408e442 --- /dev/null +++ b/docs/material/.icons/material/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand-all.svg b/docs/material/.icons/material/arrow-expand-all.svg new file mode 100644 index 000000000..865f7624b --- /dev/null +++ b/docs/material/.icons/material/arrow-expand-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand-down.svg b/docs/material/.icons/material/arrow-expand-down.svg new file mode 100644 index 000000000..806f969b0 --- /dev/null +++ b/docs/material/.icons/material/arrow-expand-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand-horizontal.svg b/docs/material/.icons/material/arrow-expand-horizontal.svg new file mode 100644 index 000000000..f81ddfed8 --- /dev/null +++ b/docs/material/.icons/material/arrow-expand-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand-left.svg b/docs/material/.icons/material/arrow-expand-left.svg new file mode 100644 index 000000000..5fbc3bbe0 --- /dev/null +++ b/docs/material/.icons/material/arrow-expand-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand-right.svg b/docs/material/.icons/material/arrow-expand-right.svg new file mode 100644 index 000000000..6c4006dc9 --- /dev/null +++ b/docs/material/.icons/material/arrow-expand-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand-up.svg b/docs/material/.icons/material/arrow-expand-up.svg new file mode 100644 index 000000000..b5bb9928b --- /dev/null +++ b/docs/material/.icons/material/arrow-expand-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand-vertical.svg b/docs/material/.icons/material/arrow-expand-vertical.svg new file mode 100644 index 000000000..6be41b170 --- /dev/null +++ b/docs/material/.icons/material/arrow-expand-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-expand.svg b/docs/material/.icons/material/arrow-expand.svg new file mode 100644 index 000000000..6e4d39091 --- /dev/null +++ b/docs/material/.icons/material/arrow-expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-horizontal-lock.svg b/docs/material/.icons/material/arrow-horizontal-lock.svg new file mode 100644 index 000000000..0d8d6a556 --- /dev/null +++ b/docs/material/.icons/material/arrow-horizontal-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-bold-box-outline.svg b/docs/material/.icons/material/arrow-left-bold-box-outline.svg new file mode 100644 index 000000000..c4aa8b3b0 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-bold-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-bold-box.svg b/docs/material/.icons/material/arrow-left-bold-box.svg new file mode 100644 index 000000000..45265fc06 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-bold-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-bold-circle-outline.svg b/docs/material/.icons/material/arrow-left-bold-circle-outline.svg new file mode 100644 index 000000000..e4c4beb98 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-bold-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-bold-circle.svg b/docs/material/.icons/material/arrow-left-bold-circle.svg new file mode 100644 index 000000000..f210f4818 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-bold-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-bold-hexagon-outline.svg b/docs/material/.icons/material/arrow-left-bold-hexagon-outline.svg new file mode 100644 index 000000000..e85903612 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-bold-hexagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-bold-outline.svg b/docs/material/.icons/material/arrow-left-bold-outline.svg new file mode 100644 index 000000000..fa2948499 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-bold.svg b/docs/material/.icons/material/arrow-left-bold.svg new file mode 100644 index 000000000..1ecb61f01 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-box.svg b/docs/material/.icons/material/arrow-left-box.svg new file mode 100644 index 000000000..0754624ab --- /dev/null +++ b/docs/material/.icons/material/arrow-left-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-circle-outline.svg b/docs/material/.icons/material/arrow-left-circle-outline.svg new file mode 100644 index 000000000..1abc78e6e --- /dev/null +++ b/docs/material/.icons/material/arrow-left-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-circle.svg b/docs/material/.icons/material/arrow-left-circle.svg new file mode 100644 index 000000000..be2cf65d8 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-drop-circle-outline.svg b/docs/material/.icons/material/arrow-left-drop-circle-outline.svg new file mode 100644 index 000000000..1592233c4 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-drop-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-drop-circle.svg b/docs/material/.icons/material/arrow-left-drop-circle.svg new file mode 100644 index 000000000..5d5bb7eb1 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-drop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-right-bold-outline.svg b/docs/material/.icons/material/arrow-left-right-bold-outline.svg new file mode 100644 index 000000000..0af33cf1c --- /dev/null +++ b/docs/material/.icons/material/arrow-left-right-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-right-bold.svg b/docs/material/.icons/material/arrow-left-right-bold.svg new file mode 100644 index 000000000..966193c52 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-right.svg b/docs/material/.icons/material/arrow-left-right.svg new file mode 100644 index 000000000..c0d18c3a1 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left-thick.svg b/docs/material/.icons/material/arrow-left-thick.svg new file mode 100644 index 000000000..d0f9e0f83 --- /dev/null +++ b/docs/material/.icons/material/arrow-left-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-left.svg b/docs/material/.icons/material/arrow-left.svg new file mode 100644 index 000000000..ffb97e418 --- /dev/null +++ b/docs/material/.icons/material/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-bold-box-outline.svg b/docs/material/.icons/material/arrow-right-bold-box-outline.svg new file mode 100644 index 000000000..b856e8fe4 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-bold-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-bold-box.svg b/docs/material/.icons/material/arrow-right-bold-box.svg new file mode 100644 index 000000000..42869bef3 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-bold-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-bold-circle-outline.svg b/docs/material/.icons/material/arrow-right-bold-circle-outline.svg new file mode 100644 index 000000000..bd02570d0 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-bold-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-bold-circle.svg b/docs/material/.icons/material/arrow-right-bold-circle.svg new file mode 100644 index 000000000..6732c65e8 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-bold-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-bold-hexagon-outline.svg b/docs/material/.icons/material/arrow-right-bold-hexagon-outline.svg new file mode 100644 index 000000000..fdaa4a0b6 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-bold-hexagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-bold-outline.svg b/docs/material/.icons/material/arrow-right-bold-outline.svg new file mode 100644 index 000000000..3ec7b4d28 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-bold.svg b/docs/material/.icons/material/arrow-right-bold.svg new file mode 100644 index 000000000..a9c528745 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-box.svg b/docs/material/.icons/material/arrow-right-box.svg new file mode 100644 index 000000000..fb82145cf --- /dev/null +++ b/docs/material/.icons/material/arrow-right-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-circle-outline.svg b/docs/material/.icons/material/arrow-right-circle-outline.svg new file mode 100644 index 000000000..fb0a093cf --- /dev/null +++ b/docs/material/.icons/material/arrow-right-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-circle.svg b/docs/material/.icons/material/arrow-right-circle.svg new file mode 100644 index 000000000..b77ed1d9f --- /dev/null +++ b/docs/material/.icons/material/arrow-right-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-drop-circle-outline.svg b/docs/material/.icons/material/arrow-right-drop-circle-outline.svg new file mode 100644 index 000000000..5b12a3dad --- /dev/null +++ b/docs/material/.icons/material/arrow-right-drop-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-drop-circle.svg b/docs/material/.icons/material/arrow-right-drop-circle.svg new file mode 100644 index 000000000..282d3dc77 --- /dev/null +++ b/docs/material/.icons/material/arrow-right-drop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right-thick.svg b/docs/material/.icons/material/arrow-right-thick.svg new file mode 100644 index 000000000..a2092e30a --- /dev/null +++ b/docs/material/.icons/material/arrow-right-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-right.svg b/docs/material/.icons/material/arrow-right.svg new file mode 100644 index 000000000..6bf1a7626 --- /dev/null +++ b/docs/material/.icons/material/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-split-horizontal.svg b/docs/material/.icons/material/arrow-split-horizontal.svg new file mode 100644 index 000000000..6e55e0bd4 --- /dev/null +++ b/docs/material/.icons/material/arrow-split-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-split-vertical.svg b/docs/material/.icons/material/arrow-split-vertical.svg new file mode 100644 index 000000000..bdd4ab29d --- /dev/null +++ b/docs/material/.icons/material/arrow-split-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-left-bold-outline.svg b/docs/material/.icons/material/arrow-top-left-bold-outline.svg new file mode 100644 index 000000000..7c0e07f7f --- /dev/null +++ b/docs/material/.icons/material/arrow-top-left-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-left-bottom-right-bold.svg b/docs/material/.icons/material/arrow-top-left-bottom-right-bold.svg new file mode 100644 index 000000000..b1ea7f9e9 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-left-bottom-right-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-left-bottom-right.svg b/docs/material/.icons/material/arrow-top-left-bottom-right.svg new file mode 100644 index 000000000..1a5ca1696 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-left-bottom-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-left-thick.svg b/docs/material/.icons/material/arrow-top-left-thick.svg new file mode 100644 index 000000000..4e7b4a3a4 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-left-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-left.svg b/docs/material/.icons/material/arrow-top-left.svg new file mode 100644 index 000000000..428c9bde5 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-right-bold-outline.svg b/docs/material/.icons/material/arrow-top-right-bold-outline.svg new file mode 100644 index 000000000..1092ee749 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-right-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-right-bottom-left-bold.svg b/docs/material/.icons/material/arrow-top-right-bottom-left-bold.svg new file mode 100644 index 000000000..b2b6617ba --- /dev/null +++ b/docs/material/.icons/material/arrow-top-right-bottom-left-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-right-bottom-left.svg b/docs/material/.icons/material/arrow-top-right-bottom-left.svg new file mode 100644 index 000000000..4c0925db0 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-right-bottom-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-right-thick.svg b/docs/material/.icons/material/arrow-top-right-thick.svg new file mode 100644 index 000000000..efc0e86a2 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-right-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-top-right.svg b/docs/material/.icons/material/arrow-top-right.svg new file mode 100644 index 000000000..e3fbefa04 --- /dev/null +++ b/docs/material/.icons/material/arrow-top-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-bold-box-outline.svg b/docs/material/.icons/material/arrow-up-bold-box-outline.svg new file mode 100644 index 000000000..67a3ab4f0 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-bold-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-bold-box.svg b/docs/material/.icons/material/arrow-up-bold-box.svg new file mode 100644 index 000000000..595ab8f23 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-bold-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-bold-circle-outline.svg b/docs/material/.icons/material/arrow-up-bold-circle-outline.svg new file mode 100644 index 000000000..6b078e444 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-bold-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-bold-circle.svg b/docs/material/.icons/material/arrow-up-bold-circle.svg new file mode 100644 index 000000000..f861693e0 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-bold-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-bold-hexagon-outline.svg b/docs/material/.icons/material/arrow-up-bold-hexagon-outline.svg new file mode 100644 index 000000000..22c04ae58 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-bold-hexagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-bold-outline.svg b/docs/material/.icons/material/arrow-up-bold-outline.svg new file mode 100644 index 000000000..10c808d7e --- /dev/null +++ b/docs/material/.icons/material/arrow-up-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-bold.svg b/docs/material/.icons/material/arrow-up-bold.svg new file mode 100644 index 000000000..ac89f31c9 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-box.svg b/docs/material/.icons/material/arrow-up-box.svg new file mode 100644 index 000000000..9a66b2113 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-circle-outline.svg b/docs/material/.icons/material/arrow-up-circle-outline.svg new file mode 100644 index 000000000..30008b3ac --- /dev/null +++ b/docs/material/.icons/material/arrow-up-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-circle.svg b/docs/material/.icons/material/arrow-up-circle.svg new file mode 100644 index 000000000..dfa0e2115 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-down-bold-outline.svg b/docs/material/.icons/material/arrow-up-down-bold-outline.svg new file mode 100644 index 000000000..1d7e95beb --- /dev/null +++ b/docs/material/.icons/material/arrow-up-down-bold-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-down-bold.svg b/docs/material/.icons/material/arrow-up-down-bold.svg new file mode 100644 index 000000000..fd05920be --- /dev/null +++ b/docs/material/.icons/material/arrow-up-down-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-down.svg b/docs/material/.icons/material/arrow-up-down.svg new file mode 100644 index 000000000..7f20b974e --- /dev/null +++ b/docs/material/.icons/material/arrow-up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-drop-circle-outline.svg b/docs/material/.icons/material/arrow-up-drop-circle-outline.svg new file mode 100644 index 000000000..ffe732769 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-drop-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-drop-circle.svg b/docs/material/.icons/material/arrow-up-drop-circle.svg new file mode 100644 index 000000000..43ab7f4c7 --- /dev/null +++ b/docs/material/.icons/material/arrow-up-drop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up-thick.svg b/docs/material/.icons/material/arrow-up-thick.svg new file mode 100644 index 000000000..cb70d65dd --- /dev/null +++ b/docs/material/.icons/material/arrow-up-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-up.svg b/docs/material/.icons/material/arrow-up.svg new file mode 100644 index 000000000..dc4e5e0b8 --- /dev/null +++ b/docs/material/.icons/material/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/arrow-vertical-lock.svg b/docs/material/.icons/material/arrow-vertical-lock.svg new file mode 100644 index 000000000..8812af47f --- /dev/null +++ b/docs/material/.icons/material/arrow-vertical-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/artstation.svg b/docs/material/.icons/material/artstation.svg new file mode 100644 index 000000000..bd314a011 --- /dev/null +++ b/docs/material/.icons/material/artstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/aspect-ratio.svg b/docs/material/.icons/material/aspect-ratio.svg new file mode 100644 index 000000000..2e3e17500 --- /dev/null +++ b/docs/material/.icons/material/aspect-ratio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/assistant.svg b/docs/material/.icons/material/assistant.svg new file mode 100644 index 000000000..35ea26cee --- /dev/null +++ b/docs/material/.icons/material/assistant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/asterisk.svg b/docs/material/.icons/material/asterisk.svg new file mode 100644 index 000000000..296dfce24 --- /dev/null +++ b/docs/material/.icons/material/asterisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/at.svg b/docs/material/.icons/material/at.svg new file mode 100644 index 000000000..fb22524a2 --- /dev/null +++ b/docs/material/.icons/material/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/atlassian.svg b/docs/material/.icons/material/atlassian.svg new file mode 100644 index 000000000..a4b317563 --- /dev/null +++ b/docs/material/.icons/material/atlassian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/atm.svg b/docs/material/.icons/material/atm.svg new file mode 100644 index 000000000..2170b1939 --- /dev/null +++ b/docs/material/.icons/material/atm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/atom-variant.svg b/docs/material/.icons/material/atom-variant.svg new file mode 100644 index 000000000..5b783f7c6 --- /dev/null +++ b/docs/material/.icons/material/atom-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/atom.svg b/docs/material/.icons/material/atom.svg new file mode 100644 index 000000000..a65dd3dd3 --- /dev/null +++ b/docs/material/.icons/material/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/attachment.svg b/docs/material/.icons/material/attachment.svg new file mode 100644 index 000000000..0f4eb3176 --- /dev/null +++ b/docs/material/.icons/material/attachment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/audio-video-off.svg b/docs/material/.icons/material/audio-video-off.svg new file mode 100644 index 000000000..75c08f4f3 --- /dev/null +++ b/docs/material/.icons/material/audio-video-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/audio-video.svg b/docs/material/.icons/material/audio-video.svg new file mode 100644 index 000000000..327cd06b0 --- /dev/null +++ b/docs/material/.icons/material/audio-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/augmented-reality.svg b/docs/material/.icons/material/augmented-reality.svg new file mode 100644 index 000000000..332ea2b03 --- /dev/null +++ b/docs/material/.icons/material/augmented-reality.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/auto-download.svg b/docs/material/.icons/material/auto-download.svg new file mode 100644 index 000000000..2f376533f --- /dev/null +++ b/docs/material/.icons/material/auto-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/auto-fix.svg b/docs/material/.icons/material/auto-fix.svg new file mode 100644 index 000000000..33dd12098 --- /dev/null +++ b/docs/material/.icons/material/auto-fix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/auto-upload.svg b/docs/material/.icons/material/auto-upload.svg new file mode 100644 index 000000000..003dd914b --- /dev/null +++ b/docs/material/.icons/material/auto-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/autorenew.svg b/docs/material/.icons/material/autorenew.svg new file mode 100644 index 000000000..be150e220 --- /dev/null +++ b/docs/material/.icons/material/autorenew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/av-timer.svg b/docs/material/.icons/material/av-timer.svg new file mode 100644 index 000000000..d6fa5fae7 --- /dev/null +++ b/docs/material/.icons/material/av-timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/aws.svg b/docs/material/.icons/material/aws.svg new file mode 100644 index 000000000..71d48cb07 --- /dev/null +++ b/docs/material/.icons/material/aws.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axe.svg b/docs/material/.icons/material/axe.svg new file mode 100644 index 000000000..e4d273b91 --- /dev/null +++ b/docs/material/.icons/material/axe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-arrow-info.svg b/docs/material/.icons/material/axis-arrow-info.svg new file mode 100644 index 000000000..4c8bd48be --- /dev/null +++ b/docs/material/.icons/material/axis-arrow-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-arrow-lock.svg b/docs/material/.icons/material/axis-arrow-lock.svg new file mode 100644 index 000000000..be7d232c4 --- /dev/null +++ b/docs/material/.icons/material/axis-arrow-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-arrow.svg b/docs/material/.icons/material/axis-arrow.svg new file mode 100644 index 000000000..e580701ab --- /dev/null +++ b/docs/material/.icons/material/axis-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-lock.svg b/docs/material/.icons/material/axis-lock.svg new file mode 100644 index 000000000..4d0eddf89 --- /dev/null +++ b/docs/material/.icons/material/axis-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-x-arrow-lock.svg b/docs/material/.icons/material/axis-x-arrow-lock.svg new file mode 100644 index 000000000..21ce57850 --- /dev/null +++ b/docs/material/.icons/material/axis-x-arrow-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-x-arrow.svg b/docs/material/.icons/material/axis-x-arrow.svg new file mode 100644 index 000000000..0dac790f0 --- /dev/null +++ b/docs/material/.icons/material/axis-x-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-x-rotate-clockwise.svg b/docs/material/.icons/material/axis-x-rotate-clockwise.svg new file mode 100644 index 000000000..ab6318498 --- /dev/null +++ b/docs/material/.icons/material/axis-x-rotate-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-x-rotate-counterclockwise.svg b/docs/material/.icons/material/axis-x-rotate-counterclockwise.svg new file mode 100644 index 000000000..4ad7cdf08 --- /dev/null +++ b/docs/material/.icons/material/axis-x-rotate-counterclockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-x-y-arrow-lock.svg b/docs/material/.icons/material/axis-x-y-arrow-lock.svg new file mode 100644 index 000000000..71ea5aa09 --- /dev/null +++ b/docs/material/.icons/material/axis-x-y-arrow-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-y-arrow-lock.svg b/docs/material/.icons/material/axis-y-arrow-lock.svg new file mode 100644 index 000000000..9944811ac --- /dev/null +++ b/docs/material/.icons/material/axis-y-arrow-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-y-arrow.svg b/docs/material/.icons/material/axis-y-arrow.svg new file mode 100644 index 000000000..e7452205d --- /dev/null +++ b/docs/material/.icons/material/axis-y-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-y-rotate-clockwise.svg b/docs/material/.icons/material/axis-y-rotate-clockwise.svg new file mode 100644 index 000000000..62a97c0d9 --- /dev/null +++ b/docs/material/.icons/material/axis-y-rotate-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-y-rotate-counterclockwise.svg b/docs/material/.icons/material/axis-y-rotate-counterclockwise.svg new file mode 100644 index 000000000..1f0ce9d1b --- /dev/null +++ b/docs/material/.icons/material/axis-y-rotate-counterclockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-z-arrow-lock.svg b/docs/material/.icons/material/axis-z-arrow-lock.svg new file mode 100644 index 000000000..bd8632285 --- /dev/null +++ b/docs/material/.icons/material/axis-z-arrow-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-z-arrow.svg b/docs/material/.icons/material/axis-z-arrow.svg new file mode 100644 index 000000000..d6330d545 --- /dev/null +++ b/docs/material/.icons/material/axis-z-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-z-rotate-clockwise.svg b/docs/material/.icons/material/axis-z-rotate-clockwise.svg new file mode 100644 index 000000000..be49fee5d --- /dev/null +++ b/docs/material/.icons/material/axis-z-rotate-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis-z-rotate-counterclockwise.svg b/docs/material/.icons/material/axis-z-rotate-counterclockwise.svg new file mode 100644 index 000000000..478fc5df9 --- /dev/null +++ b/docs/material/.icons/material/axis-z-rotate-counterclockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/axis.svg b/docs/material/.icons/material/axis.svg new file mode 100644 index 000000000..79d0377d2 --- /dev/null +++ b/docs/material/.icons/material/axis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/babel.svg b/docs/material/.icons/material/babel.svg new file mode 100644 index 000000000..5188009ee --- /dev/null +++ b/docs/material/.icons/material/babel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby-bottle-outline.svg b/docs/material/.icons/material/baby-bottle-outline.svg new file mode 100644 index 000000000..18f481c77 --- /dev/null +++ b/docs/material/.icons/material/baby-bottle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby-bottle.svg b/docs/material/.icons/material/baby-bottle.svg new file mode 100644 index 000000000..594ee0a9d --- /dev/null +++ b/docs/material/.icons/material/baby-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby-buggy.svg b/docs/material/.icons/material/baby-buggy.svg new file mode 100644 index 000000000..e815cb86c --- /dev/null +++ b/docs/material/.icons/material/baby-buggy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby-carriage-off.svg b/docs/material/.icons/material/baby-carriage-off.svg new file mode 100644 index 000000000..051851a76 --- /dev/null +++ b/docs/material/.icons/material/baby-carriage-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby-carriage.svg b/docs/material/.icons/material/baby-carriage.svg new file mode 100644 index 000000000..b09f4d6d3 --- /dev/null +++ b/docs/material/.icons/material/baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby-face-outline.svg b/docs/material/.icons/material/baby-face-outline.svg new file mode 100644 index 000000000..978776941 --- /dev/null +++ b/docs/material/.icons/material/baby-face-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby-face.svg b/docs/material/.icons/material/baby-face.svg new file mode 100644 index 000000000..48223cba2 --- /dev/null +++ b/docs/material/.icons/material/baby-face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baby.svg b/docs/material/.icons/material/baby.svg new file mode 100644 index 000000000..c54d3d098 --- /dev/null +++ b/docs/material/.icons/material/baby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/backburger.svg b/docs/material/.icons/material/backburger.svg new file mode 100644 index 000000000..4f3d296c9 --- /dev/null +++ b/docs/material/.icons/material/backburger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/backspace-outline.svg b/docs/material/.icons/material/backspace-outline.svg new file mode 100644 index 000000000..5164f0582 --- /dev/null +++ b/docs/material/.icons/material/backspace-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/backspace-reverse-outline.svg b/docs/material/.icons/material/backspace-reverse-outline.svg new file mode 100644 index 000000000..f14cd3e45 --- /dev/null +++ b/docs/material/.icons/material/backspace-reverse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/backspace-reverse.svg b/docs/material/.icons/material/backspace-reverse.svg new file mode 100644 index 000000000..86e22efbf --- /dev/null +++ b/docs/material/.icons/material/backspace-reverse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/backspace.svg b/docs/material/.icons/material/backspace.svg new file mode 100644 index 000000000..b5722e6b0 --- /dev/null +++ b/docs/material/.icons/material/backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/backup-restore.svg b/docs/material/.icons/material/backup-restore.svg new file mode 100644 index 000000000..8b5d8c2e3 --- /dev/null +++ b/docs/material/.icons/material/backup-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bacteria-outline.svg b/docs/material/.icons/material/bacteria-outline.svg new file mode 100644 index 000000000..67cacdba5 --- /dev/null +++ b/docs/material/.icons/material/bacteria-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bacteria.svg b/docs/material/.icons/material/bacteria.svg new file mode 100644 index 000000000..7b7bdf449 --- /dev/null +++ b/docs/material/.icons/material/bacteria.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/badge-account-alert-outline.svg b/docs/material/.icons/material/badge-account-alert-outline.svg new file mode 100644 index 000000000..b2f993e2e --- /dev/null +++ b/docs/material/.icons/material/badge-account-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/badge-account-alert.svg b/docs/material/.icons/material/badge-account-alert.svg new file mode 100644 index 000000000..50f8c77dd --- /dev/null +++ b/docs/material/.icons/material/badge-account-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/badge-account-horizontal-outline.svg b/docs/material/.icons/material/badge-account-horizontal-outline.svg new file mode 100644 index 000000000..0442f31e2 --- /dev/null +++ b/docs/material/.icons/material/badge-account-horizontal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/badge-account-horizontal.svg b/docs/material/.icons/material/badge-account-horizontal.svg new file mode 100644 index 000000000..b5a0cb346 --- /dev/null +++ b/docs/material/.icons/material/badge-account-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/badge-account-outline.svg b/docs/material/.icons/material/badge-account-outline.svg new file mode 100644 index 000000000..057c629aa --- /dev/null +++ b/docs/material/.icons/material/badge-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/badge-account.svg b/docs/material/.icons/material/badge-account.svg new file mode 100644 index 000000000..820167722 --- /dev/null +++ b/docs/material/.icons/material/badge-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/badminton.svg b/docs/material/.icons/material/badminton.svg new file mode 100644 index 000000000..acf5edace --- /dev/null +++ b/docs/material/.icons/material/badminton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-carry-on-check.svg b/docs/material/.icons/material/bag-carry-on-check.svg new file mode 100644 index 000000000..90b6a207b --- /dev/null +++ b/docs/material/.icons/material/bag-carry-on-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-carry-on-off.svg b/docs/material/.icons/material/bag-carry-on-off.svg new file mode 100644 index 000000000..ad9df950d --- /dev/null +++ b/docs/material/.icons/material/bag-carry-on-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-carry-on.svg b/docs/material/.icons/material/bag-carry-on.svg new file mode 100644 index 000000000..75821b1f1 --- /dev/null +++ b/docs/material/.icons/material/bag-carry-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-checked.svg b/docs/material/.icons/material/bag-checked.svg new file mode 100644 index 000000000..71ec47e1f --- /dev/null +++ b/docs/material/.icons/material/bag-checked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-personal-off-outline.svg b/docs/material/.icons/material/bag-personal-off-outline.svg new file mode 100644 index 000000000..10d9abd64 --- /dev/null +++ b/docs/material/.icons/material/bag-personal-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-personal-off.svg b/docs/material/.icons/material/bag-personal-off.svg new file mode 100644 index 000000000..2100909ae --- /dev/null +++ b/docs/material/.icons/material/bag-personal-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-personal-outline.svg b/docs/material/.icons/material/bag-personal-outline.svg new file mode 100644 index 000000000..34d38c05a --- /dev/null +++ b/docs/material/.icons/material/bag-personal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bag-personal.svg b/docs/material/.icons/material/bag-personal.svg new file mode 100644 index 000000000..f18faed03 --- /dev/null +++ b/docs/material/.icons/material/bag-personal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baguette.svg b/docs/material/.icons/material/baguette.svg new file mode 100644 index 000000000..63aa1d14f --- /dev/null +++ b/docs/material/.icons/material/baguette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/balloon.svg b/docs/material/.icons/material/balloon.svg new file mode 100644 index 000000000..a3c6434e1 --- /dev/null +++ b/docs/material/.icons/material/balloon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ballot-outline.svg b/docs/material/.icons/material/ballot-outline.svg new file mode 100644 index 000000000..37ceeefe8 --- /dev/null +++ b/docs/material/.icons/material/ballot-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ballot-recount-outline.svg b/docs/material/.icons/material/ballot-recount-outline.svg new file mode 100644 index 000000000..f0a7a5744 --- /dev/null +++ b/docs/material/.icons/material/ballot-recount-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ballot-recount.svg b/docs/material/.icons/material/ballot-recount.svg new file mode 100644 index 000000000..930a88595 --- /dev/null +++ b/docs/material/.icons/material/ballot-recount.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ballot.svg b/docs/material/.icons/material/ballot.svg new file mode 100644 index 000000000..938ff3bdf --- /dev/null +++ b/docs/material/.icons/material/ballot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bandage.svg b/docs/material/.icons/material/bandage.svg new file mode 100644 index 000000000..5b1acd9e4 --- /dev/null +++ b/docs/material/.icons/material/bandage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bandcamp.svg b/docs/material/.icons/material/bandcamp.svg new file mode 100644 index 000000000..559090c2d --- /dev/null +++ b/docs/material/.icons/material/bandcamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank-minus.svg b/docs/material/.icons/material/bank-minus.svg new file mode 100644 index 000000000..ab4b74b8f --- /dev/null +++ b/docs/material/.icons/material/bank-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank-outline.svg b/docs/material/.icons/material/bank-outline.svg new file mode 100644 index 000000000..a0b436461 --- /dev/null +++ b/docs/material/.icons/material/bank-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank-plus.svg b/docs/material/.icons/material/bank-plus.svg new file mode 100644 index 000000000..54406310d --- /dev/null +++ b/docs/material/.icons/material/bank-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank-remove.svg b/docs/material/.icons/material/bank-remove.svg new file mode 100644 index 000000000..a6ffecac7 --- /dev/null +++ b/docs/material/.icons/material/bank-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank-transfer-in.svg b/docs/material/.icons/material/bank-transfer-in.svg new file mode 100644 index 000000000..fbfd73420 --- /dev/null +++ b/docs/material/.icons/material/bank-transfer-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank-transfer-out.svg b/docs/material/.icons/material/bank-transfer-out.svg new file mode 100644 index 000000000..cb933452c --- /dev/null +++ b/docs/material/.icons/material/bank-transfer-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank-transfer.svg b/docs/material/.icons/material/bank-transfer.svg new file mode 100644 index 000000000..31f5e1621 --- /dev/null +++ b/docs/material/.icons/material/bank-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bank.svg b/docs/material/.icons/material/bank.svg new file mode 100644 index 000000000..87c505d58 --- /dev/null +++ b/docs/material/.icons/material/bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/barcode-off.svg b/docs/material/.icons/material/barcode-off.svg new file mode 100644 index 000000000..2fbc056b1 --- /dev/null +++ b/docs/material/.icons/material/barcode-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/barcode-scan.svg b/docs/material/.icons/material/barcode-scan.svg new file mode 100644 index 000000000..05989399c --- /dev/null +++ b/docs/material/.icons/material/barcode-scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/barcode.svg b/docs/material/.icons/material/barcode.svg new file mode 100644 index 000000000..dff1fb81c --- /dev/null +++ b/docs/material/.icons/material/barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/barley-off.svg b/docs/material/.icons/material/barley-off.svg new file mode 100644 index 000000000..31a553a48 --- /dev/null +++ b/docs/material/.icons/material/barley-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/barley.svg b/docs/material/.icons/material/barley.svg new file mode 100644 index 000000000..c96aebb1b --- /dev/null +++ b/docs/material/.icons/material/barley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/barn.svg b/docs/material/.icons/material/barn.svg new file mode 100644 index 000000000..f5e728941 --- /dev/null +++ b/docs/material/.icons/material/barn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/barrel.svg b/docs/material/.icons/material/barrel.svg new file mode 100644 index 000000000..e419e5954 --- /dev/null +++ b/docs/material/.icons/material/barrel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baseball-bat.svg b/docs/material/.icons/material/baseball-bat.svg new file mode 100644 index 000000000..84ce882ae --- /dev/null +++ b/docs/material/.icons/material/baseball-bat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/baseball.svg b/docs/material/.icons/material/baseball.svg new file mode 100644 index 000000000..c5d5c7186 --- /dev/null +++ b/docs/material/.icons/material/baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bash.svg b/docs/material/.icons/material/bash.svg new file mode 100644 index 000000000..83c1d0b81 --- /dev/null +++ b/docs/material/.icons/material/bash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/basket-fill.svg b/docs/material/.icons/material/basket-fill.svg new file mode 100644 index 000000000..6db01f2cb --- /dev/null +++ b/docs/material/.icons/material/basket-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/basket-outline.svg b/docs/material/.icons/material/basket-outline.svg new file mode 100644 index 000000000..a09ac33d9 --- /dev/null +++ b/docs/material/.icons/material/basket-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/basket-unfill.svg b/docs/material/.icons/material/basket-unfill.svg new file mode 100644 index 000000000..c89c6d98f --- /dev/null +++ b/docs/material/.icons/material/basket-unfill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/basket.svg b/docs/material/.icons/material/basket.svg new file mode 100644 index 000000000..82543e8c7 --- /dev/null +++ b/docs/material/.icons/material/basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/basketball-hoop-outline.svg b/docs/material/.icons/material/basketball-hoop-outline.svg new file mode 100644 index 000000000..aebe7cc25 --- /dev/null +++ b/docs/material/.icons/material/basketball-hoop-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/basketball-hoop.svg b/docs/material/.icons/material/basketball-hoop.svg new file mode 100644 index 000000000..b8813d4f2 --- /dev/null +++ b/docs/material/.icons/material/basketball-hoop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/basketball.svg b/docs/material/.icons/material/basketball.svg new file mode 100644 index 000000000..d02547a39 --- /dev/null +++ b/docs/material/.icons/material/basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bat.svg b/docs/material/.icons/material/bat.svg new file mode 100644 index 000000000..53e16ad0f --- /dev/null +++ b/docs/material/.icons/material/bat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-10-bluetooth.svg b/docs/material/.icons/material/battery-10-bluetooth.svg new file mode 100644 index 000000000..a0c2452b4 --- /dev/null +++ b/docs/material/.icons/material/battery-10-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-10.svg b/docs/material/.icons/material/battery-10.svg new file mode 100644 index 000000000..b69922a3e --- /dev/null +++ b/docs/material/.icons/material/battery-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-20-bluetooth.svg b/docs/material/.icons/material/battery-20-bluetooth.svg new file mode 100644 index 000000000..0d3351532 --- /dev/null +++ b/docs/material/.icons/material/battery-20-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-20.svg b/docs/material/.icons/material/battery-20.svg new file mode 100644 index 000000000..8d00e4014 --- /dev/null +++ b/docs/material/.icons/material/battery-20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-30-bluetooth.svg b/docs/material/.icons/material/battery-30-bluetooth.svg new file mode 100644 index 000000000..ef814fda9 --- /dev/null +++ b/docs/material/.icons/material/battery-30-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-30.svg b/docs/material/.icons/material/battery-30.svg new file mode 100644 index 000000000..8cef06dce --- /dev/null +++ b/docs/material/.icons/material/battery-30.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-40-bluetooth.svg b/docs/material/.icons/material/battery-40-bluetooth.svg new file mode 100644 index 000000000..f09fdf50e --- /dev/null +++ b/docs/material/.icons/material/battery-40-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-40.svg b/docs/material/.icons/material/battery-40.svg new file mode 100644 index 000000000..026a6bb45 --- /dev/null +++ b/docs/material/.icons/material/battery-40.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-50-bluetooth.svg b/docs/material/.icons/material/battery-50-bluetooth.svg new file mode 100644 index 000000000..59c7aa46c --- /dev/null +++ b/docs/material/.icons/material/battery-50-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-50.svg b/docs/material/.icons/material/battery-50.svg new file mode 100644 index 000000000..0a7adf52d --- /dev/null +++ b/docs/material/.icons/material/battery-50.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-60-bluetooth.svg b/docs/material/.icons/material/battery-60-bluetooth.svg new file mode 100644 index 000000000..eed8eaa75 --- /dev/null +++ b/docs/material/.icons/material/battery-60-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-60.svg b/docs/material/.icons/material/battery-60.svg new file mode 100644 index 000000000..858daeff7 --- /dev/null +++ b/docs/material/.icons/material/battery-60.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-70-bluetooth.svg b/docs/material/.icons/material/battery-70-bluetooth.svg new file mode 100644 index 000000000..d66b2679e --- /dev/null +++ b/docs/material/.icons/material/battery-70-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-70.svg b/docs/material/.icons/material/battery-70.svg new file mode 100644 index 000000000..48d019d97 --- /dev/null +++ b/docs/material/.icons/material/battery-70.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-80-bluetooth.svg b/docs/material/.icons/material/battery-80-bluetooth.svg new file mode 100644 index 000000000..179770282 --- /dev/null +++ b/docs/material/.icons/material/battery-80-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-80.svg b/docs/material/.icons/material/battery-80.svg new file mode 100644 index 000000000..b1e8ddc84 --- /dev/null +++ b/docs/material/.icons/material/battery-80.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-90-bluetooth.svg b/docs/material/.icons/material/battery-90-bluetooth.svg new file mode 100644 index 000000000..2d8f89988 --- /dev/null +++ b/docs/material/.icons/material/battery-90-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-90.svg b/docs/material/.icons/material/battery-90.svg new file mode 100644 index 000000000..07d8ba45b --- /dev/null +++ b/docs/material/.icons/material/battery-90.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-alert-bluetooth.svg b/docs/material/.icons/material/battery-alert-bluetooth.svg new file mode 100644 index 000000000..05841bb76 --- /dev/null +++ b/docs/material/.icons/material/battery-alert-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-alert-variant-outline.svg b/docs/material/.icons/material/battery-alert-variant-outline.svg new file mode 100644 index 000000000..10c89f417 --- /dev/null +++ b/docs/material/.icons/material/battery-alert-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-alert-variant.svg b/docs/material/.icons/material/battery-alert-variant.svg new file mode 100644 index 000000000..e0697b161 --- /dev/null +++ b/docs/material/.icons/material/battery-alert-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-alert.svg b/docs/material/.icons/material/battery-alert.svg new file mode 100644 index 000000000..4d15d5ca2 --- /dev/null +++ b/docs/material/.icons/material/battery-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-bluetooth-variant.svg b/docs/material/.icons/material/battery-bluetooth-variant.svg new file mode 100644 index 000000000..17dab376f --- /dev/null +++ b/docs/material/.icons/material/battery-bluetooth-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-bluetooth.svg b/docs/material/.icons/material/battery-bluetooth.svg new file mode 100644 index 000000000..06477d6ea --- /dev/null +++ b/docs/material/.icons/material/battery-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-10.svg b/docs/material/.icons/material/battery-charging-10.svg new file mode 100644 index 000000000..3ffcbcfe9 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-100.svg b/docs/material/.icons/material/battery-charging-100.svg new file mode 100644 index 000000000..c974b7acc --- /dev/null +++ b/docs/material/.icons/material/battery-charging-100.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-20.svg b/docs/material/.icons/material/battery-charging-20.svg new file mode 100644 index 000000000..95bf9b914 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-30.svg b/docs/material/.icons/material/battery-charging-30.svg new file mode 100644 index 000000000..e68517383 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-30.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-40.svg b/docs/material/.icons/material/battery-charging-40.svg new file mode 100644 index 000000000..3ae1fefd3 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-40.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-50.svg b/docs/material/.icons/material/battery-charging-50.svg new file mode 100644 index 000000000..3ae1fefd3 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-50.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-60.svg b/docs/material/.icons/material/battery-charging-60.svg new file mode 100644 index 000000000..850f50fbb --- /dev/null +++ b/docs/material/.icons/material/battery-charging-60.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-70.svg b/docs/material/.icons/material/battery-charging-70.svg new file mode 100644 index 000000000..6fc2366be --- /dev/null +++ b/docs/material/.icons/material/battery-charging-70.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-80.svg b/docs/material/.icons/material/battery-charging-80.svg new file mode 100644 index 000000000..eaea3bacf --- /dev/null +++ b/docs/material/.icons/material/battery-charging-80.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-90.svg b/docs/material/.icons/material/battery-charging-90.svg new file mode 100644 index 000000000..34644768f --- /dev/null +++ b/docs/material/.icons/material/battery-charging-90.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-high.svg b/docs/material/.icons/material/battery-charging-high.svg new file mode 100644 index 000000000..ed03ddbbb --- /dev/null +++ b/docs/material/.icons/material/battery-charging-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-low.svg b/docs/material/.icons/material/battery-charging-low.svg new file mode 100644 index 000000000..d986de898 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-medium.svg b/docs/material/.icons/material/battery-charging-medium.svg new file mode 100644 index 000000000..6d6f71e46 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-outline.svg b/docs/material/.icons/material/battery-charging-outline.svg new file mode 100644 index 000000000..bde0f404c --- /dev/null +++ b/docs/material/.icons/material/battery-charging-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-10.svg b/docs/material/.icons/material/battery-charging-wireless-10.svg new file mode 100644 index 000000000..125b95f0f --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-20.svg b/docs/material/.icons/material/battery-charging-wireless-20.svg new file mode 100644 index 000000000..ff03f9971 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-30.svg b/docs/material/.icons/material/battery-charging-wireless-30.svg new file mode 100644 index 000000000..47ca7a878 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-30.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-40.svg b/docs/material/.icons/material/battery-charging-wireless-40.svg new file mode 100644 index 000000000..be660874e --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-40.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-50.svg b/docs/material/.icons/material/battery-charging-wireless-50.svg new file mode 100644 index 000000000..44b0999d0 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-50.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-60.svg b/docs/material/.icons/material/battery-charging-wireless-60.svg new file mode 100644 index 000000000..cd9ac6d30 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-60.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-70.svg b/docs/material/.icons/material/battery-charging-wireless-70.svg new file mode 100644 index 000000000..33964dec5 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-70.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-80.svg b/docs/material/.icons/material/battery-charging-wireless-80.svg new file mode 100644 index 000000000..de64767b5 --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-80.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-90.svg b/docs/material/.icons/material/battery-charging-wireless-90.svg new file mode 100644 index 000000000..95ea15efc --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-90.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-alert.svg b/docs/material/.icons/material/battery-charging-wireless-alert.svg new file mode 100644 index 000000000..7787a477f --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless-outline.svg b/docs/material/.icons/material/battery-charging-wireless-outline.svg new file mode 100644 index 000000000..50c46123f --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging-wireless.svg b/docs/material/.icons/material/battery-charging-wireless.svg new file mode 100644 index 000000000..6e0b4c2ca --- /dev/null +++ b/docs/material/.icons/material/battery-charging-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-charging.svg b/docs/material/.icons/material/battery-charging.svg new file mode 100644 index 000000000..75a258007 --- /dev/null +++ b/docs/material/.icons/material/battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-heart-outline.svg b/docs/material/.icons/material/battery-heart-outline.svg new file mode 100644 index 000000000..4cafaf612 --- /dev/null +++ b/docs/material/.icons/material/battery-heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-heart-variant.svg b/docs/material/.icons/material/battery-heart-variant.svg new file mode 100644 index 000000000..4efc92fc6 --- /dev/null +++ b/docs/material/.icons/material/battery-heart-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-heart.svg b/docs/material/.icons/material/battery-heart.svg new file mode 100644 index 000000000..b83f3aa55 --- /dev/null +++ b/docs/material/.icons/material/battery-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-high.svg b/docs/material/.icons/material/battery-high.svg new file mode 100644 index 000000000..2287bfcff --- /dev/null +++ b/docs/material/.icons/material/battery-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-low.svg b/docs/material/.icons/material/battery-low.svg new file mode 100644 index 000000000..e32c76c9d --- /dev/null +++ b/docs/material/.icons/material/battery-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-medium.svg b/docs/material/.icons/material/battery-medium.svg new file mode 100644 index 000000000..d12103adc --- /dev/null +++ b/docs/material/.icons/material/battery-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-minus.svg b/docs/material/.icons/material/battery-minus.svg new file mode 100644 index 000000000..38b9ad0bb --- /dev/null +++ b/docs/material/.icons/material/battery-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-negative.svg b/docs/material/.icons/material/battery-negative.svg new file mode 100644 index 000000000..d7648ca93 --- /dev/null +++ b/docs/material/.icons/material/battery-negative.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-off-outline.svg b/docs/material/.icons/material/battery-off-outline.svg new file mode 100644 index 000000000..5dc8d6e34 --- /dev/null +++ b/docs/material/.icons/material/battery-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-off.svg b/docs/material/.icons/material/battery-off.svg new file mode 100644 index 000000000..bd09a2078 --- /dev/null +++ b/docs/material/.icons/material/battery-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-outline.svg b/docs/material/.icons/material/battery-outline.svg new file mode 100644 index 000000000..0bbfdae21 --- /dev/null +++ b/docs/material/.icons/material/battery-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-plus.svg b/docs/material/.icons/material/battery-plus.svg new file mode 100644 index 000000000..6a8f6b203 --- /dev/null +++ b/docs/material/.icons/material/battery-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-positive.svg b/docs/material/.icons/material/battery-positive.svg new file mode 100644 index 000000000..5577a1fb8 --- /dev/null +++ b/docs/material/.icons/material/battery-positive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-unknown-bluetooth.svg b/docs/material/.icons/material/battery-unknown-bluetooth.svg new file mode 100644 index 000000000..4297ed2be --- /dev/null +++ b/docs/material/.icons/material/battery-unknown-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery-unknown.svg b/docs/material/.icons/material/battery-unknown.svg new file mode 100644 index 000000000..1deafb416 --- /dev/null +++ b/docs/material/.icons/material/battery-unknown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battery.svg b/docs/material/.icons/material/battery.svg new file mode 100644 index 000000000..daec250b5 --- /dev/null +++ b/docs/material/.icons/material/battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/battlenet.svg b/docs/material/.icons/material/battlenet.svg new file mode 100644 index 000000000..18fc5130f --- /dev/null +++ b/docs/material/.icons/material/battlenet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beach.svg b/docs/material/.icons/material/beach.svg new file mode 100644 index 000000000..4b02f9caa --- /dev/null +++ b/docs/material/.icons/material/beach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-alert-outline.svg b/docs/material/.icons/material/beaker-alert-outline.svg new file mode 100644 index 000000000..3006f2fba --- /dev/null +++ b/docs/material/.icons/material/beaker-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-alert.svg b/docs/material/.icons/material/beaker-alert.svg new file mode 100644 index 000000000..a992a1722 --- /dev/null +++ b/docs/material/.icons/material/beaker-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-check-outline.svg b/docs/material/.icons/material/beaker-check-outline.svg new file mode 100644 index 000000000..6bfff2dce --- /dev/null +++ b/docs/material/.icons/material/beaker-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-check.svg b/docs/material/.icons/material/beaker-check.svg new file mode 100644 index 000000000..3f733d02f --- /dev/null +++ b/docs/material/.icons/material/beaker-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-minus-outline.svg b/docs/material/.icons/material/beaker-minus-outline.svg new file mode 100644 index 000000000..235a2ac8b --- /dev/null +++ b/docs/material/.icons/material/beaker-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-minus.svg b/docs/material/.icons/material/beaker-minus.svg new file mode 100644 index 000000000..9154dc91e --- /dev/null +++ b/docs/material/.icons/material/beaker-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-outline.svg b/docs/material/.icons/material/beaker-outline.svg new file mode 100644 index 000000000..ed40c4747 --- /dev/null +++ b/docs/material/.icons/material/beaker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-plus-outline.svg b/docs/material/.icons/material/beaker-plus-outline.svg new file mode 100644 index 000000000..ee87b1674 --- /dev/null +++ b/docs/material/.icons/material/beaker-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-plus.svg b/docs/material/.icons/material/beaker-plus.svg new file mode 100644 index 000000000..0fe8a0a87 --- /dev/null +++ b/docs/material/.icons/material/beaker-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-question-outline.svg b/docs/material/.icons/material/beaker-question-outline.svg new file mode 100644 index 000000000..7414119cf --- /dev/null +++ b/docs/material/.icons/material/beaker-question-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-question.svg b/docs/material/.icons/material/beaker-question.svg new file mode 100644 index 000000000..a7538541e --- /dev/null +++ b/docs/material/.icons/material/beaker-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-remove-outline.svg b/docs/material/.icons/material/beaker-remove-outline.svg new file mode 100644 index 000000000..ea2c0a440 --- /dev/null +++ b/docs/material/.icons/material/beaker-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker-remove.svg b/docs/material/.icons/material/beaker-remove.svg new file mode 100644 index 000000000..53c714d8c --- /dev/null +++ b/docs/material/.icons/material/beaker-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beaker.svg b/docs/material/.icons/material/beaker.svg new file mode 100644 index 000000000..9d9814d5b --- /dev/null +++ b/docs/material/.icons/material/beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-double-outline.svg b/docs/material/.icons/material/bed-double-outline.svg new file mode 100644 index 000000000..de766e6af --- /dev/null +++ b/docs/material/.icons/material/bed-double-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-double.svg b/docs/material/.icons/material/bed-double.svg new file mode 100644 index 000000000..6a4f025f5 --- /dev/null +++ b/docs/material/.icons/material/bed-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-empty.svg b/docs/material/.icons/material/bed-empty.svg new file mode 100644 index 000000000..0f016529f --- /dev/null +++ b/docs/material/.icons/material/bed-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-king-outline.svg b/docs/material/.icons/material/bed-king-outline.svg new file mode 100644 index 000000000..e1b9fc634 --- /dev/null +++ b/docs/material/.icons/material/bed-king-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-king.svg b/docs/material/.icons/material/bed-king.svg new file mode 100644 index 000000000..b25d4c076 --- /dev/null +++ b/docs/material/.icons/material/bed-king.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-outline.svg b/docs/material/.icons/material/bed-outline.svg new file mode 100644 index 000000000..a5d598be4 --- /dev/null +++ b/docs/material/.icons/material/bed-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-queen-outline.svg b/docs/material/.icons/material/bed-queen-outline.svg new file mode 100644 index 000000000..c9d0bacbf --- /dev/null +++ b/docs/material/.icons/material/bed-queen-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-queen.svg b/docs/material/.icons/material/bed-queen.svg new file mode 100644 index 000000000..908e0d9d7 --- /dev/null +++ b/docs/material/.icons/material/bed-queen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-single-outline.svg b/docs/material/.icons/material/bed-single-outline.svg new file mode 100644 index 000000000..9b826b32b --- /dev/null +++ b/docs/material/.icons/material/bed-single-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed-single.svg b/docs/material/.icons/material/bed-single.svg new file mode 100644 index 000000000..d463f2776 --- /dev/null +++ b/docs/material/.icons/material/bed-single.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bed.svg b/docs/material/.icons/material/bed.svg new file mode 100644 index 000000000..bc64a4a92 --- /dev/null +++ b/docs/material/.icons/material/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bee-flower.svg b/docs/material/.icons/material/bee-flower.svg new file mode 100644 index 000000000..ca8dec07d --- /dev/null +++ b/docs/material/.icons/material/bee-flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bee.svg b/docs/material/.icons/material/bee.svg new file mode 100644 index 000000000..e59f5bac2 --- /dev/null +++ b/docs/material/.icons/material/bee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beehive-off-outline.svg b/docs/material/.icons/material/beehive-off-outline.svg new file mode 100644 index 000000000..e7e5a2cfe --- /dev/null +++ b/docs/material/.icons/material/beehive-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beehive-outline.svg b/docs/material/.icons/material/beehive-outline.svg new file mode 100644 index 000000000..46225d2ec --- /dev/null +++ b/docs/material/.icons/material/beehive-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beer-outline.svg b/docs/material/.icons/material/beer-outline.svg new file mode 100644 index 000000000..6ffd29bf3 --- /dev/null +++ b/docs/material/.icons/material/beer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beer.svg b/docs/material/.icons/material/beer.svg new file mode 100644 index 000000000..442a260e4 --- /dev/null +++ b/docs/material/.icons/material/beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-alert-outline.svg b/docs/material/.icons/material/bell-alert-outline.svg new file mode 100644 index 000000000..734e1b87d --- /dev/null +++ b/docs/material/.icons/material/bell-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-alert.svg b/docs/material/.icons/material/bell-alert.svg new file mode 100644 index 000000000..26f2bce8b --- /dev/null +++ b/docs/material/.icons/material/bell-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-cancel-outline.svg b/docs/material/.icons/material/bell-cancel-outline.svg new file mode 100644 index 000000000..50685f005 --- /dev/null +++ b/docs/material/.icons/material/bell-cancel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-cancel.svg b/docs/material/.icons/material/bell-cancel.svg new file mode 100644 index 000000000..86235bae0 --- /dev/null +++ b/docs/material/.icons/material/bell-cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-check-outline.svg b/docs/material/.icons/material/bell-check-outline.svg new file mode 100644 index 000000000..257fe6f34 --- /dev/null +++ b/docs/material/.icons/material/bell-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-check.svg b/docs/material/.icons/material/bell-check.svg new file mode 100644 index 000000000..0f50d1e52 --- /dev/null +++ b/docs/material/.icons/material/bell-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-circle-outline.svg b/docs/material/.icons/material/bell-circle-outline.svg new file mode 100644 index 000000000..00b7f9d30 --- /dev/null +++ b/docs/material/.icons/material/bell-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-circle.svg b/docs/material/.icons/material/bell-circle.svg new file mode 100644 index 000000000..d99ae224c --- /dev/null +++ b/docs/material/.icons/material/bell-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-minus-outline.svg b/docs/material/.icons/material/bell-minus-outline.svg new file mode 100644 index 000000000..cdd10738d --- /dev/null +++ b/docs/material/.icons/material/bell-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-minus.svg b/docs/material/.icons/material/bell-minus.svg new file mode 100644 index 000000000..94d59f504 --- /dev/null +++ b/docs/material/.icons/material/bell-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-off-outline.svg b/docs/material/.icons/material/bell-off-outline.svg new file mode 100644 index 000000000..f44cd647a --- /dev/null +++ b/docs/material/.icons/material/bell-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-off.svg b/docs/material/.icons/material/bell-off.svg new file mode 100644 index 000000000..d2d3c1683 --- /dev/null +++ b/docs/material/.icons/material/bell-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-outline.svg b/docs/material/.icons/material/bell-outline.svg new file mode 100644 index 000000000..02e22a881 --- /dev/null +++ b/docs/material/.icons/material/bell-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-plus-outline.svg b/docs/material/.icons/material/bell-plus-outline.svg new file mode 100644 index 000000000..0e2bbdacf --- /dev/null +++ b/docs/material/.icons/material/bell-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-plus.svg b/docs/material/.icons/material/bell-plus.svg new file mode 100644 index 000000000..5d0e78132 --- /dev/null +++ b/docs/material/.icons/material/bell-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-remove-outline.svg b/docs/material/.icons/material/bell-remove-outline.svg new file mode 100644 index 000000000..82f8f3534 --- /dev/null +++ b/docs/material/.icons/material/bell-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-remove.svg b/docs/material/.icons/material/bell-remove.svg new file mode 100644 index 000000000..671d60671 --- /dev/null +++ b/docs/material/.icons/material/bell-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-ring-outline.svg b/docs/material/.icons/material/bell-ring-outline.svg new file mode 100644 index 000000000..1b4808be0 --- /dev/null +++ b/docs/material/.icons/material/bell-ring-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-ring.svg b/docs/material/.icons/material/bell-ring.svg new file mode 100644 index 000000000..29dcc4b56 --- /dev/null +++ b/docs/material/.icons/material/bell-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-sleep-outline.svg b/docs/material/.icons/material/bell-sleep-outline.svg new file mode 100644 index 000000000..91b963e6b --- /dev/null +++ b/docs/material/.icons/material/bell-sleep-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell-sleep.svg b/docs/material/.icons/material/bell-sleep.svg new file mode 100644 index 000000000..12239bce5 --- /dev/null +++ b/docs/material/.icons/material/bell-sleep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bell.svg b/docs/material/.icons/material/bell.svg new file mode 100644 index 000000000..232b52d51 --- /dev/null +++ b/docs/material/.icons/material/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/beta.svg b/docs/material/.icons/material/beta.svg new file mode 100644 index 000000000..0ede5a5f7 --- /dev/null +++ b/docs/material/.icons/material/beta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/betamax.svg b/docs/material/.icons/material/betamax.svg new file mode 100644 index 000000000..c4cb82aeb --- /dev/null +++ b/docs/material/.icons/material/betamax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/biathlon.svg b/docs/material/.icons/material/biathlon.svg new file mode 100644 index 000000000..c50df2b06 --- /dev/null +++ b/docs/material/.icons/material/biathlon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bicycle-basket.svg b/docs/material/.icons/material/bicycle-basket.svg new file mode 100644 index 000000000..1ff995b6e --- /dev/null +++ b/docs/material/.icons/material/bicycle-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bicycle.svg b/docs/material/.icons/material/bicycle.svg new file mode 100644 index 000000000..039233977 --- /dev/null +++ b/docs/material/.icons/material/bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bike-fast.svg b/docs/material/.icons/material/bike-fast.svg new file mode 100644 index 000000000..361e29655 --- /dev/null +++ b/docs/material/.icons/material/bike-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bike.svg b/docs/material/.icons/material/bike.svg new file mode 100644 index 000000000..3d118b5be --- /dev/null +++ b/docs/material/.icons/material/bike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/billboard.svg b/docs/material/.icons/material/billboard.svg new file mode 100644 index 000000000..0face38d0 --- /dev/null +++ b/docs/material/.icons/material/billboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/billiards-rack.svg b/docs/material/.icons/material/billiards-rack.svg new file mode 100644 index 000000000..2d2f124ff --- /dev/null +++ b/docs/material/.icons/material/billiards-rack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/billiards.svg b/docs/material/.icons/material/billiards.svg new file mode 100644 index 000000000..0f559b402 --- /dev/null +++ b/docs/material/.icons/material/billiards.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/binoculars.svg b/docs/material/.icons/material/binoculars.svg new file mode 100644 index 000000000..f16c51cb6 --- /dev/null +++ b/docs/material/.icons/material/binoculars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bio.svg b/docs/material/.icons/material/bio.svg new file mode 100644 index 000000000..580331901 --- /dev/null +++ b/docs/material/.icons/material/bio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/biohazard.svg b/docs/material/.icons/material/biohazard.svg new file mode 100644 index 000000000..57b6dcf18 --- /dev/null +++ b/docs/material/.icons/material/biohazard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bitbucket.svg b/docs/material/.icons/material/bitbucket.svg new file mode 100644 index 000000000..6b9ac1404 --- /dev/null +++ b/docs/material/.icons/material/bitbucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bitcoin.svg b/docs/material/.icons/material/bitcoin.svg new file mode 100644 index 000000000..3e0d035d7 --- /dev/null +++ b/docs/material/.icons/material/bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/black-mesa.svg b/docs/material/.icons/material/black-mesa.svg new file mode 100644 index 000000000..4b06cd8e1 --- /dev/null +++ b/docs/material/.icons/material/black-mesa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blender-software.svg b/docs/material/.icons/material/blender-software.svg new file mode 100644 index 000000000..6df5f7ae1 --- /dev/null +++ b/docs/material/.icons/material/blender-software.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blender.svg b/docs/material/.icons/material/blender.svg new file mode 100644 index 000000000..5ebee136e --- /dev/null +++ b/docs/material/.icons/material/blender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blinds-open.svg b/docs/material/.icons/material/blinds-open.svg new file mode 100644 index 000000000..46c52603a --- /dev/null +++ b/docs/material/.icons/material/blinds-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blinds.svg b/docs/material/.icons/material/blinds.svg new file mode 100644 index 000000000..74a7ea340 --- /dev/null +++ b/docs/material/.icons/material/blinds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/block-helper.svg b/docs/material/.icons/material/block-helper.svg new file mode 100644 index 000000000..91a083ba0 --- /dev/null +++ b/docs/material/.icons/material/block-helper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blogger.svg b/docs/material/.icons/material/blogger.svg new file mode 100644 index 000000000..80f87c1b4 --- /dev/null +++ b/docs/material/.icons/material/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blood-bag.svg b/docs/material/.icons/material/blood-bag.svg new file mode 100644 index 000000000..8d98f59c0 --- /dev/null +++ b/docs/material/.icons/material/blood-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bluetooth-audio.svg b/docs/material/.icons/material/bluetooth-audio.svg new file mode 100644 index 000000000..1ff78d75d --- /dev/null +++ b/docs/material/.icons/material/bluetooth-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bluetooth-connect.svg b/docs/material/.icons/material/bluetooth-connect.svg new file mode 100644 index 000000000..1410e4d30 --- /dev/null +++ b/docs/material/.icons/material/bluetooth-connect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bluetooth-off.svg b/docs/material/.icons/material/bluetooth-off.svg new file mode 100644 index 000000000..a8619dc19 --- /dev/null +++ b/docs/material/.icons/material/bluetooth-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bluetooth-settings.svg b/docs/material/.icons/material/bluetooth-settings.svg new file mode 100644 index 000000000..99c396329 --- /dev/null +++ b/docs/material/.icons/material/bluetooth-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bluetooth-transfer.svg b/docs/material/.icons/material/bluetooth-transfer.svg new file mode 100644 index 000000000..9e4a650c0 --- /dev/null +++ b/docs/material/.icons/material/bluetooth-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bluetooth.svg b/docs/material/.icons/material/bluetooth.svg new file mode 100644 index 000000000..b83201079 --- /dev/null +++ b/docs/material/.icons/material/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blur-linear.svg b/docs/material/.icons/material/blur-linear.svg new file mode 100644 index 000000000..92f411ce2 --- /dev/null +++ b/docs/material/.icons/material/blur-linear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blur-off.svg b/docs/material/.icons/material/blur-off.svg new file mode 100644 index 000000000..64d405df0 --- /dev/null +++ b/docs/material/.icons/material/blur-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blur-radial.svg b/docs/material/.icons/material/blur-radial.svg new file mode 100644 index 000000000..be4729b71 --- /dev/null +++ b/docs/material/.icons/material/blur-radial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/blur.svg b/docs/material/.icons/material/blur.svg new file mode 100644 index 000000000..30be25827 --- /dev/null +++ b/docs/material/.icons/material/blur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bolnisi-cross.svg b/docs/material/.icons/material/bolnisi-cross.svg new file mode 100644 index 000000000..b4c5a8cd4 --- /dev/null +++ b/docs/material/.icons/material/bolnisi-cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bolt.svg b/docs/material/.icons/material/bolt.svg new file mode 100644 index 000000000..72eb66743 --- /dev/null +++ b/docs/material/.icons/material/bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bomb-off.svg b/docs/material/.icons/material/bomb-off.svg new file mode 100644 index 000000000..1182c7d1a --- /dev/null +++ b/docs/material/.icons/material/bomb-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bomb.svg b/docs/material/.icons/material/bomb.svg new file mode 100644 index 000000000..d8ede823c --- /dev/null +++ b/docs/material/.icons/material/bomb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bone.svg b/docs/material/.icons/material/bone.svg new file mode 100644 index 000000000..a69634103 --- /dev/null +++ b/docs/material/.icons/material/bone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-account-outline.svg b/docs/material/.icons/material/book-account-outline.svg new file mode 100644 index 000000000..1b25c0749 --- /dev/null +++ b/docs/material/.icons/material/book-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-account.svg b/docs/material/.icons/material/book-account.svg new file mode 100644 index 000000000..2604e329f --- /dev/null +++ b/docs/material/.icons/material/book-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-alphabet.svg b/docs/material/.icons/material/book-alphabet.svg new file mode 100644 index 000000000..77f52838c --- /dev/null +++ b/docs/material/.icons/material/book-alphabet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-cross.svg b/docs/material/.icons/material/book-cross.svg new file mode 100644 index 000000000..e2296a9a9 --- /dev/null +++ b/docs/material/.icons/material/book-cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-information-variant.svg b/docs/material/.icons/material/book-information-variant.svg new file mode 100644 index 000000000..07c4a00c6 --- /dev/null +++ b/docs/material/.icons/material/book-information-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-lock-open.svg b/docs/material/.icons/material/book-lock-open.svg new file mode 100644 index 000000000..dc69ea492 --- /dev/null +++ b/docs/material/.icons/material/book-lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-lock.svg b/docs/material/.icons/material/book-lock.svg new file mode 100644 index 000000000..05d46c9e6 --- /dev/null +++ b/docs/material/.icons/material/book-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-minus-multiple-outline.svg b/docs/material/.icons/material/book-minus-multiple-outline.svg new file mode 100644 index 000000000..004a4967a --- /dev/null +++ b/docs/material/.icons/material/book-minus-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-minus-multiple.svg b/docs/material/.icons/material/book-minus-multiple.svg new file mode 100644 index 000000000..63f6d11a7 --- /dev/null +++ b/docs/material/.icons/material/book-minus-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-minus.svg b/docs/material/.icons/material/book-minus.svg new file mode 100644 index 000000000..8054892a2 --- /dev/null +++ b/docs/material/.icons/material/book-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-multiple-outline.svg b/docs/material/.icons/material/book-multiple-outline.svg new file mode 100644 index 000000000..700c224fa --- /dev/null +++ b/docs/material/.icons/material/book-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-multiple.svg b/docs/material/.icons/material/book-multiple.svg new file mode 100644 index 000000000..06a4d9e2f --- /dev/null +++ b/docs/material/.icons/material/book-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-music.svg b/docs/material/.icons/material/book-music.svg new file mode 100644 index 000000000..0d6cc89f5 --- /dev/null +++ b/docs/material/.icons/material/book-music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-open-outline.svg b/docs/material/.icons/material/book-open-outline.svg new file mode 100644 index 000000000..d16ef1c91 --- /dev/null +++ b/docs/material/.icons/material/book-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-open-page-variant.svg b/docs/material/.icons/material/book-open-page-variant.svg new file mode 100644 index 000000000..e90166aa9 --- /dev/null +++ b/docs/material/.icons/material/book-open-page-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-open-variant.svg b/docs/material/.icons/material/book-open-variant.svg new file mode 100644 index 000000000..e082fd2ac --- /dev/null +++ b/docs/material/.icons/material/book-open-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-open.svg b/docs/material/.icons/material/book-open.svg new file mode 100644 index 000000000..039970601 --- /dev/null +++ b/docs/material/.icons/material/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-outline.svg b/docs/material/.icons/material/book-outline.svg new file mode 100644 index 000000000..abacfb8f8 --- /dev/null +++ b/docs/material/.icons/material/book-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-play-outline.svg b/docs/material/.icons/material/book-play-outline.svg new file mode 100644 index 000000000..e930a9885 --- /dev/null +++ b/docs/material/.icons/material/book-play-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-play.svg b/docs/material/.icons/material/book-play.svg new file mode 100644 index 000000000..0ce11c053 --- /dev/null +++ b/docs/material/.icons/material/book-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-plus-multiple-outline.svg b/docs/material/.icons/material/book-plus-multiple-outline.svg new file mode 100644 index 000000000..1a5e9b25a --- /dev/null +++ b/docs/material/.icons/material/book-plus-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-plus-multiple.svg b/docs/material/.icons/material/book-plus-multiple.svg new file mode 100644 index 000000000..695ecacd5 --- /dev/null +++ b/docs/material/.icons/material/book-plus-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-plus.svg b/docs/material/.icons/material/book-plus.svg new file mode 100644 index 000000000..980c0e5bc --- /dev/null +++ b/docs/material/.icons/material/book-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-remove-multiple-outline.svg b/docs/material/.icons/material/book-remove-multiple-outline.svg new file mode 100644 index 000000000..2b3979a23 --- /dev/null +++ b/docs/material/.icons/material/book-remove-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-remove-multiple.svg b/docs/material/.icons/material/book-remove-multiple.svg new file mode 100644 index 000000000..20a496989 --- /dev/null +++ b/docs/material/.icons/material/book-remove-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-remove.svg b/docs/material/.icons/material/book-remove.svg new file mode 100644 index 000000000..8b3eb3a44 --- /dev/null +++ b/docs/material/.icons/material/book-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-search-outline.svg b/docs/material/.icons/material/book-search-outline.svg new file mode 100644 index 000000000..3e57bac89 --- /dev/null +++ b/docs/material/.icons/material/book-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-search.svg b/docs/material/.icons/material/book-search.svg new file mode 100644 index 000000000..7ca56ea0f --- /dev/null +++ b/docs/material/.icons/material/book-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-variant-multiple.svg b/docs/material/.icons/material/book-variant-multiple.svg new file mode 100644 index 000000000..5c15b5946 --- /dev/null +++ b/docs/material/.icons/material/book-variant-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book-variant.svg b/docs/material/.icons/material/book-variant.svg new file mode 100644 index 000000000..eed94a8d0 --- /dev/null +++ b/docs/material/.icons/material/book-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/book.svg b/docs/material/.icons/material/book.svg new file mode 100644 index 000000000..ef7c148be --- /dev/null +++ b/docs/material/.icons/material/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-check-outline.svg b/docs/material/.icons/material/bookmark-check-outline.svg new file mode 100644 index 000000000..eab6a5018 --- /dev/null +++ b/docs/material/.icons/material/bookmark-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-check.svg b/docs/material/.icons/material/bookmark-check.svg new file mode 100644 index 000000000..4c501c5a7 --- /dev/null +++ b/docs/material/.icons/material/bookmark-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-minus-outline.svg b/docs/material/.icons/material/bookmark-minus-outline.svg new file mode 100644 index 000000000..1c9a28c56 --- /dev/null +++ b/docs/material/.icons/material/bookmark-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-minus.svg b/docs/material/.icons/material/bookmark-minus.svg new file mode 100644 index 000000000..b280e84b7 --- /dev/null +++ b/docs/material/.icons/material/bookmark-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-multiple-outline.svg b/docs/material/.icons/material/bookmark-multiple-outline.svg new file mode 100644 index 000000000..9b228361e --- /dev/null +++ b/docs/material/.icons/material/bookmark-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-multiple.svg b/docs/material/.icons/material/bookmark-multiple.svg new file mode 100644 index 000000000..814794aaf --- /dev/null +++ b/docs/material/.icons/material/bookmark-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-music-outline.svg b/docs/material/.icons/material/bookmark-music-outline.svg new file mode 100644 index 000000000..7149718aa --- /dev/null +++ b/docs/material/.icons/material/bookmark-music-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-music.svg b/docs/material/.icons/material/bookmark-music.svg new file mode 100644 index 000000000..a59a564d2 --- /dev/null +++ b/docs/material/.icons/material/bookmark-music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-off-outline.svg b/docs/material/.icons/material/bookmark-off-outline.svg new file mode 100644 index 000000000..26f13f686 --- /dev/null +++ b/docs/material/.icons/material/bookmark-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-off.svg b/docs/material/.icons/material/bookmark-off.svg new file mode 100644 index 000000000..6b11b3558 --- /dev/null +++ b/docs/material/.icons/material/bookmark-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-outline.svg b/docs/material/.icons/material/bookmark-outline.svg new file mode 100644 index 000000000..214543491 --- /dev/null +++ b/docs/material/.icons/material/bookmark-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-plus-outline.svg b/docs/material/.icons/material/bookmark-plus-outline.svg new file mode 100644 index 000000000..7ef987aab --- /dev/null +++ b/docs/material/.icons/material/bookmark-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-plus.svg b/docs/material/.icons/material/bookmark-plus.svg new file mode 100644 index 000000000..ac704fd9f --- /dev/null +++ b/docs/material/.icons/material/bookmark-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-remove-outline.svg b/docs/material/.icons/material/bookmark-remove-outline.svg new file mode 100644 index 000000000..55c847040 --- /dev/null +++ b/docs/material/.icons/material/bookmark-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark-remove.svg b/docs/material/.icons/material/bookmark-remove.svg new file mode 100644 index 000000000..244e49ea6 --- /dev/null +++ b/docs/material/.icons/material/bookmark-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookmark.svg b/docs/material/.icons/material/bookmark.svg new file mode 100644 index 000000000..ac19d189e --- /dev/null +++ b/docs/material/.icons/material/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bookshelf.svg b/docs/material/.icons/material/bookshelf.svg new file mode 100644 index 000000000..1f87ed39f --- /dev/null +++ b/docs/material/.icons/material/bookshelf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate-alert-outline.svg b/docs/material/.icons/material/boom-gate-alert-outline.svg new file mode 100644 index 000000000..07bec0c56 --- /dev/null +++ b/docs/material/.icons/material/boom-gate-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate-alert.svg b/docs/material/.icons/material/boom-gate-alert.svg new file mode 100644 index 000000000..73603ecf1 --- /dev/null +++ b/docs/material/.icons/material/boom-gate-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate-down-outline.svg b/docs/material/.icons/material/boom-gate-down-outline.svg new file mode 100644 index 000000000..f0fcf6b93 --- /dev/null +++ b/docs/material/.icons/material/boom-gate-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate-down.svg b/docs/material/.icons/material/boom-gate-down.svg new file mode 100644 index 000000000..f1d68299e --- /dev/null +++ b/docs/material/.icons/material/boom-gate-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate-outline.svg b/docs/material/.icons/material/boom-gate-outline.svg new file mode 100644 index 000000000..feac8d991 --- /dev/null +++ b/docs/material/.icons/material/boom-gate-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate-up-outline.svg b/docs/material/.icons/material/boom-gate-up-outline.svg new file mode 100644 index 000000000..15c765908 --- /dev/null +++ b/docs/material/.icons/material/boom-gate-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate-up.svg b/docs/material/.icons/material/boom-gate-up.svg new file mode 100644 index 000000000..4f30a973b --- /dev/null +++ b/docs/material/.icons/material/boom-gate-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boom-gate.svg b/docs/material/.icons/material/boom-gate.svg new file mode 100644 index 000000000..fcc816c29 --- /dev/null +++ b/docs/material/.icons/material/boom-gate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boombox.svg b/docs/material/.icons/material/boombox.svg new file mode 100644 index 000000000..ac654b1aa --- /dev/null +++ b/docs/material/.icons/material/boombox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boomerang.svg b/docs/material/.icons/material/boomerang.svg new file mode 100644 index 000000000..ce2f9bd2f --- /dev/null +++ b/docs/material/.icons/material/boomerang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bootstrap.svg b/docs/material/.icons/material/bootstrap.svg new file mode 100644 index 000000000..df5947985 --- /dev/null +++ b/docs/material/.icons/material/bootstrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-all-variant.svg b/docs/material/.icons/material/border-all-variant.svg new file mode 100644 index 000000000..af936cff5 --- /dev/null +++ b/docs/material/.icons/material/border-all-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-all.svg b/docs/material/.icons/material/border-all.svg new file mode 100644 index 000000000..b888f62bc --- /dev/null +++ b/docs/material/.icons/material/border-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-bottom-variant.svg b/docs/material/.icons/material/border-bottom-variant.svg new file mode 100644 index 000000000..9352db39c --- /dev/null +++ b/docs/material/.icons/material/border-bottom-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-bottom.svg b/docs/material/.icons/material/border-bottom.svg new file mode 100644 index 000000000..b0b5ac1d6 --- /dev/null +++ b/docs/material/.icons/material/border-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-color.svg b/docs/material/.icons/material/border-color.svg new file mode 100644 index 000000000..685b11d84 --- /dev/null +++ b/docs/material/.icons/material/border-color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-horizontal.svg b/docs/material/.icons/material/border-horizontal.svg new file mode 100644 index 000000000..d127c396c --- /dev/null +++ b/docs/material/.icons/material/border-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-inside.svg b/docs/material/.icons/material/border-inside.svg new file mode 100644 index 000000000..61233faca --- /dev/null +++ b/docs/material/.icons/material/border-inside.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-left-variant.svg b/docs/material/.icons/material/border-left-variant.svg new file mode 100644 index 000000000..2e3aeee1c --- /dev/null +++ b/docs/material/.icons/material/border-left-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-left.svg b/docs/material/.icons/material/border-left.svg new file mode 100644 index 000000000..c640e4d03 --- /dev/null +++ b/docs/material/.icons/material/border-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-none-variant.svg b/docs/material/.icons/material/border-none-variant.svg new file mode 100644 index 000000000..e1ea4714c --- /dev/null +++ b/docs/material/.icons/material/border-none-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-none.svg b/docs/material/.icons/material/border-none.svg new file mode 100644 index 000000000..9afd75b10 --- /dev/null +++ b/docs/material/.icons/material/border-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-outside.svg b/docs/material/.icons/material/border-outside.svg new file mode 100644 index 000000000..cfb1e5a26 --- /dev/null +++ b/docs/material/.icons/material/border-outside.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-right-variant.svg b/docs/material/.icons/material/border-right-variant.svg new file mode 100644 index 000000000..e412a4542 --- /dev/null +++ b/docs/material/.icons/material/border-right-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-right.svg b/docs/material/.icons/material/border-right.svg new file mode 100644 index 000000000..15ba75988 --- /dev/null +++ b/docs/material/.icons/material/border-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-style.svg b/docs/material/.icons/material/border-style.svg new file mode 100644 index 000000000..ce567a611 --- /dev/null +++ b/docs/material/.icons/material/border-style.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-top-variant.svg b/docs/material/.icons/material/border-top-variant.svg new file mode 100644 index 000000000..7385c92ec --- /dev/null +++ b/docs/material/.icons/material/border-top-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-top.svg b/docs/material/.icons/material/border-top.svg new file mode 100644 index 000000000..f031ab919 --- /dev/null +++ b/docs/material/.icons/material/border-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/border-vertical.svg b/docs/material/.icons/material/border-vertical.svg new file mode 100644 index 000000000..8c068b31b --- /dev/null +++ b/docs/material/.icons/material/border-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-soda-classic-outline.svg b/docs/material/.icons/material/bottle-soda-classic-outline.svg new file mode 100644 index 000000000..f3008e360 --- /dev/null +++ b/docs/material/.icons/material/bottle-soda-classic-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-soda-classic.svg b/docs/material/.icons/material/bottle-soda-classic.svg new file mode 100644 index 000000000..97ff8938c --- /dev/null +++ b/docs/material/.icons/material/bottle-soda-classic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-soda-outline.svg b/docs/material/.icons/material/bottle-soda-outline.svg new file mode 100644 index 000000000..b1e11f8d8 --- /dev/null +++ b/docs/material/.icons/material/bottle-soda-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-soda.svg b/docs/material/.icons/material/bottle-soda.svg new file mode 100644 index 000000000..36d6bb787 --- /dev/null +++ b/docs/material/.icons/material/bottle-soda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-tonic-outline.svg b/docs/material/.icons/material/bottle-tonic-outline.svg new file mode 100644 index 000000000..0d5183152 --- /dev/null +++ b/docs/material/.icons/material/bottle-tonic-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-tonic-plus-outline.svg b/docs/material/.icons/material/bottle-tonic-plus-outline.svg new file mode 100644 index 000000000..598d5f554 --- /dev/null +++ b/docs/material/.icons/material/bottle-tonic-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-tonic-plus.svg b/docs/material/.icons/material/bottle-tonic-plus.svg new file mode 100644 index 000000000..e7e31cde1 --- /dev/null +++ b/docs/material/.icons/material/bottle-tonic-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-tonic-skull-outline.svg b/docs/material/.icons/material/bottle-tonic-skull-outline.svg new file mode 100644 index 000000000..0d15a0bc6 --- /dev/null +++ b/docs/material/.icons/material/bottle-tonic-skull-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-tonic-skull.svg b/docs/material/.icons/material/bottle-tonic-skull.svg new file mode 100644 index 000000000..4cedebd93 --- /dev/null +++ b/docs/material/.icons/material/bottle-tonic-skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-tonic.svg b/docs/material/.icons/material/bottle-tonic.svg new file mode 100644 index 000000000..c152a0400 --- /dev/null +++ b/docs/material/.icons/material/bottle-tonic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-wine-outline.svg b/docs/material/.icons/material/bottle-wine-outline.svg new file mode 100644 index 000000000..ac7bf9ca0 --- /dev/null +++ b/docs/material/.icons/material/bottle-wine-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bottle-wine.svg b/docs/material/.icons/material/bottle-wine.svg new file mode 100644 index 000000000..8120d34ea --- /dev/null +++ b/docs/material/.icons/material/bottle-wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bow-tie.svg b/docs/material/.icons/material/bow-tie.svg new file mode 100644 index 000000000..6016fd42a --- /dev/null +++ b/docs/material/.icons/material/bow-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bowl-mix-outline.svg b/docs/material/.icons/material/bowl-mix-outline.svg new file mode 100644 index 000000000..6f3d9eb5d --- /dev/null +++ b/docs/material/.icons/material/bowl-mix-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bowl-mix.svg b/docs/material/.icons/material/bowl-mix.svg new file mode 100644 index 000000000..707abec04 --- /dev/null +++ b/docs/material/.icons/material/bowl-mix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bowl-outline.svg b/docs/material/.icons/material/bowl-outline.svg new file mode 100644 index 000000000..8c7f2ee28 --- /dev/null +++ b/docs/material/.icons/material/bowl-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bowl.svg b/docs/material/.icons/material/bowl.svg new file mode 100644 index 000000000..b05aac40c --- /dev/null +++ b/docs/material/.icons/material/bowl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bowling.svg b/docs/material/.icons/material/bowling.svg new file mode 100644 index 000000000..696003429 --- /dev/null +++ b/docs/material/.icons/material/bowling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/box-cutter-off.svg b/docs/material/.icons/material/box-cutter-off.svg new file mode 100644 index 000000000..d86753d71 --- /dev/null +++ b/docs/material/.icons/material/box-cutter-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/box-cutter.svg b/docs/material/.icons/material/box-cutter.svg new file mode 100644 index 000000000..0f5e508e1 --- /dev/null +++ b/docs/material/.icons/material/box-cutter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/box-shadow.svg b/docs/material/.icons/material/box-shadow.svg new file mode 100644 index 000000000..36fb97d8b --- /dev/null +++ b/docs/material/.icons/material/box-shadow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/box.svg b/docs/material/.icons/material/box.svg new file mode 100644 index 000000000..1593c7865 --- /dev/null +++ b/docs/material/.icons/material/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/boxing-glove.svg b/docs/material/.icons/material/boxing-glove.svg new file mode 100644 index 000000000..de7137ed4 --- /dev/null +++ b/docs/material/.icons/material/boxing-glove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/braille.svg b/docs/material/.icons/material/braille.svg new file mode 100644 index 000000000..2b25249de --- /dev/null +++ b/docs/material/.icons/material/braille.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brain.svg b/docs/material/.icons/material/brain.svg new file mode 100644 index 000000000..97cfe013b --- /dev/null +++ b/docs/material/.icons/material/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bread-slice-outline.svg b/docs/material/.icons/material/bread-slice-outline.svg new file mode 100644 index 000000000..cf3d5da26 --- /dev/null +++ b/docs/material/.icons/material/bread-slice-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bread-slice.svg b/docs/material/.icons/material/bread-slice.svg new file mode 100644 index 000000000..63308fcf3 --- /dev/null +++ b/docs/material/.icons/material/bread-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bridge.svg b/docs/material/.icons/material/bridge.svg new file mode 100644 index 000000000..4a953eaae --- /dev/null +++ b/docs/material/.icons/material/bridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-account-outline.svg b/docs/material/.icons/material/briefcase-account-outline.svg new file mode 100644 index 000000000..75934eb39 --- /dev/null +++ b/docs/material/.icons/material/briefcase-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-account.svg b/docs/material/.icons/material/briefcase-account.svg new file mode 100644 index 000000000..c1b590cd6 --- /dev/null +++ b/docs/material/.icons/material/briefcase-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-check-outline.svg b/docs/material/.icons/material/briefcase-check-outline.svg new file mode 100644 index 000000000..418e0d142 --- /dev/null +++ b/docs/material/.icons/material/briefcase-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-check.svg b/docs/material/.icons/material/briefcase-check.svg new file mode 100644 index 000000000..bdde48447 --- /dev/null +++ b/docs/material/.icons/material/briefcase-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-clock-outline.svg b/docs/material/.icons/material/briefcase-clock-outline.svg new file mode 100644 index 000000000..1e45d4de8 --- /dev/null +++ b/docs/material/.icons/material/briefcase-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-clock.svg b/docs/material/.icons/material/briefcase-clock.svg new file mode 100644 index 000000000..abb7f669b --- /dev/null +++ b/docs/material/.icons/material/briefcase-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-download-outline.svg b/docs/material/.icons/material/briefcase-download-outline.svg new file mode 100644 index 000000000..818fcca49 --- /dev/null +++ b/docs/material/.icons/material/briefcase-download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-download.svg b/docs/material/.icons/material/briefcase-download.svg new file mode 100644 index 000000000..da244f0b9 --- /dev/null +++ b/docs/material/.icons/material/briefcase-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-edit-outline.svg b/docs/material/.icons/material/briefcase-edit-outline.svg new file mode 100644 index 000000000..58e0138ff --- /dev/null +++ b/docs/material/.icons/material/briefcase-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-edit.svg b/docs/material/.icons/material/briefcase-edit.svg new file mode 100644 index 000000000..4d36f2cff --- /dev/null +++ b/docs/material/.icons/material/briefcase-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-minus-outline.svg b/docs/material/.icons/material/briefcase-minus-outline.svg new file mode 100644 index 000000000..fba82ad36 --- /dev/null +++ b/docs/material/.icons/material/briefcase-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-minus.svg b/docs/material/.icons/material/briefcase-minus.svg new file mode 100644 index 000000000..cfe47a599 --- /dev/null +++ b/docs/material/.icons/material/briefcase-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-outline.svg b/docs/material/.icons/material/briefcase-outline.svg new file mode 100644 index 000000000..b9d5ec24f --- /dev/null +++ b/docs/material/.icons/material/briefcase-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-plus-outline.svg b/docs/material/.icons/material/briefcase-plus-outline.svg new file mode 100644 index 000000000..eff0d4e9d --- /dev/null +++ b/docs/material/.icons/material/briefcase-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-plus.svg b/docs/material/.icons/material/briefcase-plus.svg new file mode 100644 index 000000000..49f1f94f0 --- /dev/null +++ b/docs/material/.icons/material/briefcase-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-remove-outline.svg b/docs/material/.icons/material/briefcase-remove-outline.svg new file mode 100644 index 000000000..345d2ab78 --- /dev/null +++ b/docs/material/.icons/material/briefcase-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-remove.svg b/docs/material/.icons/material/briefcase-remove.svg new file mode 100644 index 000000000..8d063fe09 --- /dev/null +++ b/docs/material/.icons/material/briefcase-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-search-outline.svg b/docs/material/.icons/material/briefcase-search-outline.svg new file mode 100644 index 000000000..137729906 --- /dev/null +++ b/docs/material/.icons/material/briefcase-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-search.svg b/docs/material/.icons/material/briefcase-search.svg new file mode 100644 index 000000000..58f7343ae --- /dev/null +++ b/docs/material/.icons/material/briefcase-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-upload-outline.svg b/docs/material/.icons/material/briefcase-upload-outline.svg new file mode 100644 index 000000000..d4f171891 --- /dev/null +++ b/docs/material/.icons/material/briefcase-upload-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase-upload.svg b/docs/material/.icons/material/briefcase-upload.svg new file mode 100644 index 000000000..a8d78bdbf --- /dev/null +++ b/docs/material/.icons/material/briefcase-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/briefcase.svg b/docs/material/.icons/material/briefcase.svg new file mode 100644 index 000000000..4d18b9d58 --- /dev/null +++ b/docs/material/.icons/material/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-1.svg b/docs/material/.icons/material/brightness-1.svg new file mode 100644 index 000000000..7a824a8eb --- /dev/null +++ b/docs/material/.icons/material/brightness-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-2.svg b/docs/material/.icons/material/brightness-2.svg new file mode 100644 index 000000000..fa448860a --- /dev/null +++ b/docs/material/.icons/material/brightness-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-3.svg b/docs/material/.icons/material/brightness-3.svg new file mode 100644 index 000000000..9f42ded9a --- /dev/null +++ b/docs/material/.icons/material/brightness-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-4.svg b/docs/material/.icons/material/brightness-4.svg new file mode 100644 index 000000000..5fc3613bd --- /dev/null +++ b/docs/material/.icons/material/brightness-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-5.svg b/docs/material/.icons/material/brightness-5.svg new file mode 100644 index 000000000..70b251ba5 --- /dev/null +++ b/docs/material/.icons/material/brightness-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-6.svg b/docs/material/.icons/material/brightness-6.svg new file mode 100644 index 000000000..875d81881 --- /dev/null +++ b/docs/material/.icons/material/brightness-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-7.svg b/docs/material/.icons/material/brightness-7.svg new file mode 100644 index 000000000..7c2e177fd --- /dev/null +++ b/docs/material/.icons/material/brightness-7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-auto.svg b/docs/material/.icons/material/brightness-auto.svg new file mode 100644 index 000000000..e5330418f --- /dev/null +++ b/docs/material/.icons/material/brightness-auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brightness-percent.svg b/docs/material/.icons/material/brightness-percent.svg new file mode 100644 index 000000000..7cc3c4851 --- /dev/null +++ b/docs/material/.icons/material/brightness-percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/broom.svg b/docs/material/.icons/material/broom.svg new file mode 100644 index 000000000..8b144e42a --- /dev/null +++ b/docs/material/.icons/material/broom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/brush.svg b/docs/material/.icons/material/brush.svg new file mode 100644 index 000000000..fc4bd78a5 --- /dev/null +++ b/docs/material/.icons/material/brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bucket-outline.svg b/docs/material/.icons/material/bucket-outline.svg new file mode 100644 index 000000000..05a962cb2 --- /dev/null +++ b/docs/material/.icons/material/bucket-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bucket.svg b/docs/material/.icons/material/bucket.svg new file mode 100644 index 000000000..35944b674 --- /dev/null +++ b/docs/material/.icons/material/bucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/buddhism.svg b/docs/material/.icons/material/buddhism.svg new file mode 100644 index 000000000..85bbc5799 --- /dev/null +++ b/docs/material/.icons/material/buddhism.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/buffer.svg b/docs/material/.icons/material/buffer.svg new file mode 100644 index 000000000..0c8da7642 --- /dev/null +++ b/docs/material/.icons/material/buffer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/buffet.svg b/docs/material/.icons/material/buffet.svg new file mode 100644 index 000000000..20ce406e5 --- /dev/null +++ b/docs/material/.icons/material/buffet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bug-check-outline.svg b/docs/material/.icons/material/bug-check-outline.svg new file mode 100644 index 000000000..82fcc5d06 --- /dev/null +++ b/docs/material/.icons/material/bug-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bug-check.svg b/docs/material/.icons/material/bug-check.svg new file mode 100644 index 000000000..23bb96879 --- /dev/null +++ b/docs/material/.icons/material/bug-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bug-outline.svg b/docs/material/.icons/material/bug-outline.svg new file mode 100644 index 000000000..d4ac67cbb --- /dev/null +++ b/docs/material/.icons/material/bug-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bug.svg b/docs/material/.icons/material/bug.svg new file mode 100644 index 000000000..f2aea3596 --- /dev/null +++ b/docs/material/.icons/material/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bugle.svg b/docs/material/.icons/material/bugle.svg new file mode 100644 index 000000000..afe1d5c51 --- /dev/null +++ b/docs/material/.icons/material/bugle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bulldozer.svg b/docs/material/.icons/material/bulldozer.svg new file mode 100644 index 000000000..0e23d711c --- /dev/null +++ b/docs/material/.icons/material/bulldozer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bullet.svg b/docs/material/.icons/material/bullet.svg new file mode 100644 index 000000000..83e74f3b4 --- /dev/null +++ b/docs/material/.icons/material/bullet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bulletin-board.svg b/docs/material/.icons/material/bulletin-board.svg new file mode 100644 index 000000000..6625b3ece --- /dev/null +++ b/docs/material/.icons/material/bulletin-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bullhorn-outline.svg b/docs/material/.icons/material/bullhorn-outline.svg new file mode 100644 index 000000000..042de5049 --- /dev/null +++ b/docs/material/.icons/material/bullhorn-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bullhorn.svg b/docs/material/.icons/material/bullhorn.svg new file mode 100644 index 000000000..f478d42e6 --- /dev/null +++ b/docs/material/.icons/material/bullhorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bullseye-arrow.svg b/docs/material/.icons/material/bullseye-arrow.svg new file mode 100644 index 000000000..047cfd445 --- /dev/null +++ b/docs/material/.icons/material/bullseye-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bullseye.svg b/docs/material/.icons/material/bullseye.svg new file mode 100644 index 000000000..a615d31ca --- /dev/null +++ b/docs/material/.icons/material/bullseye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bulma.svg b/docs/material/.icons/material/bulma.svg new file mode 100644 index 000000000..acb4f846a --- /dev/null +++ b/docs/material/.icons/material/bulma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bunk-bed-outline.svg b/docs/material/.icons/material/bunk-bed-outline.svg new file mode 100644 index 000000000..ff9e674af --- /dev/null +++ b/docs/material/.icons/material/bunk-bed-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bunk-bed.svg b/docs/material/.icons/material/bunk-bed.svg new file mode 100644 index 000000000..2343acc09 --- /dev/null +++ b/docs/material/.icons/material/bunk-bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-alert.svg b/docs/material/.icons/material/bus-alert.svg new file mode 100644 index 000000000..929596fe2 --- /dev/null +++ b/docs/material/.icons/material/bus-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-articulated-end.svg b/docs/material/.icons/material/bus-articulated-end.svg new file mode 100644 index 000000000..d7349d9ef --- /dev/null +++ b/docs/material/.icons/material/bus-articulated-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-articulated-front.svg b/docs/material/.icons/material/bus-articulated-front.svg new file mode 100644 index 000000000..cc307f78a --- /dev/null +++ b/docs/material/.icons/material/bus-articulated-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-clock.svg b/docs/material/.icons/material/bus-clock.svg new file mode 100644 index 000000000..2a933647f --- /dev/null +++ b/docs/material/.icons/material/bus-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-double-decker.svg b/docs/material/.icons/material/bus-double-decker.svg new file mode 100644 index 000000000..36ecd7626 --- /dev/null +++ b/docs/material/.icons/material/bus-double-decker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-marker.svg b/docs/material/.icons/material/bus-marker.svg new file mode 100644 index 000000000..5e2bd2632 --- /dev/null +++ b/docs/material/.icons/material/bus-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-multiple.svg b/docs/material/.icons/material/bus-multiple.svg new file mode 100644 index 000000000..b6889e52b --- /dev/null +++ b/docs/material/.icons/material/bus-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-school.svg b/docs/material/.icons/material/bus-school.svg new file mode 100644 index 000000000..478cc7b59 --- /dev/null +++ b/docs/material/.icons/material/bus-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-side.svg b/docs/material/.icons/material/bus-side.svg new file mode 100644 index 000000000..e25e02341 --- /dev/null +++ b/docs/material/.icons/material/bus-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-stop-covered.svg b/docs/material/.icons/material/bus-stop-covered.svg new file mode 100644 index 000000000..a6d9c020a --- /dev/null +++ b/docs/material/.icons/material/bus-stop-covered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-stop-uncovered.svg b/docs/material/.icons/material/bus-stop-uncovered.svg new file mode 100644 index 000000000..cac5be91a --- /dev/null +++ b/docs/material/.icons/material/bus-stop-uncovered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus-stop.svg b/docs/material/.icons/material/bus-stop.svg new file mode 100644 index 000000000..0cdccf63f --- /dev/null +++ b/docs/material/.icons/material/bus-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/bus.svg b/docs/material/.icons/material/bus.svg new file mode 100644 index 000000000..67ab70d34 --- /dev/null +++ b/docs/material/.icons/material/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cable-data.svg b/docs/material/.icons/material/cable-data.svg new file mode 100644 index 000000000..87d075570 --- /dev/null +++ b/docs/material/.icons/material/cable-data.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cached.svg b/docs/material/.icons/material/cached.svg new file mode 100644 index 000000000..b749b01b1 --- /dev/null +++ b/docs/material/.icons/material/cached.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cactus.svg b/docs/material/.icons/material/cactus.svg new file mode 100644 index 000000000..0ae564eef --- /dev/null +++ b/docs/material/.icons/material/cactus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cake-layered.svg b/docs/material/.icons/material/cake-layered.svg new file mode 100644 index 000000000..942d48994 --- /dev/null +++ b/docs/material/.icons/material/cake-layered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cake-variant.svg b/docs/material/.icons/material/cake-variant.svg new file mode 100644 index 000000000..48c73b282 --- /dev/null +++ b/docs/material/.icons/material/cake-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cake.svg b/docs/material/.icons/material/cake.svg new file mode 100644 index 000000000..7ef075d65 --- /dev/null +++ b/docs/material/.icons/material/cake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calculator-variant.svg b/docs/material/.icons/material/calculator-variant.svg new file mode 100644 index 000000000..2216695ab --- /dev/null +++ b/docs/material/.icons/material/calculator-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calculator.svg b/docs/material/.icons/material/calculator.svg new file mode 100644 index 000000000..e2593cd2d --- /dev/null +++ b/docs/material/.icons/material/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-account-outline.svg b/docs/material/.icons/material/calendar-account-outline.svg new file mode 100644 index 000000000..892de0679 --- /dev/null +++ b/docs/material/.icons/material/calendar-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-account.svg b/docs/material/.icons/material/calendar-account.svg new file mode 100644 index 000000000..5c954b744 --- /dev/null +++ b/docs/material/.icons/material/calendar-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-alert.svg b/docs/material/.icons/material/calendar-alert.svg new file mode 100644 index 000000000..599d69832 --- /dev/null +++ b/docs/material/.icons/material/calendar-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-arrow-left.svg b/docs/material/.icons/material/calendar-arrow-left.svg new file mode 100644 index 000000000..1290dd801 --- /dev/null +++ b/docs/material/.icons/material/calendar-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-arrow-right.svg b/docs/material/.icons/material/calendar-arrow-right.svg new file mode 100644 index 000000000..57355fa2d --- /dev/null +++ b/docs/material/.icons/material/calendar-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-blank-multiple.svg b/docs/material/.icons/material/calendar-blank-multiple.svg new file mode 100644 index 000000000..9d3c3f8a7 --- /dev/null +++ b/docs/material/.icons/material/calendar-blank-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-blank-outline.svg b/docs/material/.icons/material/calendar-blank-outline.svg new file mode 100644 index 000000000..e19a138a2 --- /dev/null +++ b/docs/material/.icons/material/calendar-blank-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-blank.svg b/docs/material/.icons/material/calendar-blank.svg new file mode 100644 index 000000000..338f349d3 --- /dev/null +++ b/docs/material/.icons/material/calendar-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-check-outline.svg b/docs/material/.icons/material/calendar-check-outline.svg new file mode 100644 index 000000000..8224c4a52 --- /dev/null +++ b/docs/material/.icons/material/calendar-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-check.svg b/docs/material/.icons/material/calendar-check.svg new file mode 100644 index 000000000..47a966552 --- /dev/null +++ b/docs/material/.icons/material/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-clock.svg b/docs/material/.icons/material/calendar-clock.svg new file mode 100644 index 000000000..8efb1f058 --- /dev/null +++ b/docs/material/.icons/material/calendar-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-edit.svg b/docs/material/.icons/material/calendar-edit.svg new file mode 100644 index 000000000..3d630216e --- /dev/null +++ b/docs/material/.icons/material/calendar-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-export.svg b/docs/material/.icons/material/calendar-export.svg new file mode 100644 index 000000000..768e026e8 --- /dev/null +++ b/docs/material/.icons/material/calendar-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-heart.svg b/docs/material/.icons/material/calendar-heart.svg new file mode 100644 index 000000000..ddfb00c37 --- /dev/null +++ b/docs/material/.icons/material/calendar-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-import.svg b/docs/material/.icons/material/calendar-import.svg new file mode 100644 index 000000000..b5998aa5a --- /dev/null +++ b/docs/material/.icons/material/calendar-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-minus.svg b/docs/material/.icons/material/calendar-minus.svg new file mode 100644 index 000000000..d2a757958 --- /dev/null +++ b/docs/material/.icons/material/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-month-outline.svg b/docs/material/.icons/material/calendar-month-outline.svg new file mode 100644 index 000000000..25cd8a446 --- /dev/null +++ b/docs/material/.icons/material/calendar-month-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-month.svg b/docs/material/.icons/material/calendar-month.svg new file mode 100644 index 000000000..43f4213f9 --- /dev/null +++ b/docs/material/.icons/material/calendar-month.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-multiple-check.svg b/docs/material/.icons/material/calendar-multiple-check.svg new file mode 100644 index 000000000..7fdadd886 --- /dev/null +++ b/docs/material/.icons/material/calendar-multiple-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-multiple.svg b/docs/material/.icons/material/calendar-multiple.svg new file mode 100644 index 000000000..c0209455d --- /dev/null +++ b/docs/material/.icons/material/calendar-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-multiselect.svg b/docs/material/.icons/material/calendar-multiselect.svg new file mode 100644 index 000000000..9b905a9a2 --- /dev/null +++ b/docs/material/.icons/material/calendar-multiselect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-outline.svg b/docs/material/.icons/material/calendar-outline.svg new file mode 100644 index 000000000..67c0c6ecd --- /dev/null +++ b/docs/material/.icons/material/calendar-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-plus.svg b/docs/material/.icons/material/calendar-plus.svg new file mode 100644 index 000000000..c217d9fa1 --- /dev/null +++ b/docs/material/.icons/material/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-question.svg b/docs/material/.icons/material/calendar-question.svg new file mode 100644 index 000000000..343e755a5 --- /dev/null +++ b/docs/material/.icons/material/calendar-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-range-outline.svg b/docs/material/.icons/material/calendar-range-outline.svg new file mode 100644 index 000000000..c418d99dd --- /dev/null +++ b/docs/material/.icons/material/calendar-range-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-range.svg b/docs/material/.icons/material/calendar-range.svg new file mode 100644 index 000000000..02e73a0b1 --- /dev/null +++ b/docs/material/.icons/material/calendar-range.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-refresh-outline.svg b/docs/material/.icons/material/calendar-refresh-outline.svg new file mode 100644 index 000000000..508941b20 --- /dev/null +++ b/docs/material/.icons/material/calendar-refresh-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-refresh.svg b/docs/material/.icons/material/calendar-refresh.svg new file mode 100644 index 000000000..bbe6b647d --- /dev/null +++ b/docs/material/.icons/material/calendar-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-remove-outline.svg b/docs/material/.icons/material/calendar-remove-outline.svg new file mode 100644 index 000000000..4a604c28b --- /dev/null +++ b/docs/material/.icons/material/calendar-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-remove.svg b/docs/material/.icons/material/calendar-remove.svg new file mode 100644 index 000000000..fab2227fe --- /dev/null +++ b/docs/material/.icons/material/calendar-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-search.svg b/docs/material/.icons/material/calendar-search.svg new file mode 100644 index 000000000..8f811284a --- /dev/null +++ b/docs/material/.icons/material/calendar-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-star.svg b/docs/material/.icons/material/calendar-star.svg new file mode 100644 index 000000000..869b16592 --- /dev/null +++ b/docs/material/.icons/material/calendar-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-sync-outline.svg b/docs/material/.icons/material/calendar-sync-outline.svg new file mode 100644 index 000000000..a2dd55a49 --- /dev/null +++ b/docs/material/.icons/material/calendar-sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-sync.svg b/docs/material/.icons/material/calendar-sync.svg new file mode 100644 index 000000000..fa241e8c6 --- /dev/null +++ b/docs/material/.icons/material/calendar-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-text-outline.svg b/docs/material/.icons/material/calendar-text-outline.svg new file mode 100644 index 000000000..0f66f19c8 --- /dev/null +++ b/docs/material/.icons/material/calendar-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-text.svg b/docs/material/.icons/material/calendar-text.svg new file mode 100644 index 000000000..b498553d8 --- /dev/null +++ b/docs/material/.icons/material/calendar-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-today.svg b/docs/material/.icons/material/calendar-today.svg new file mode 100644 index 000000000..77dfde059 --- /dev/null +++ b/docs/material/.icons/material/calendar-today.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-week-begin.svg b/docs/material/.icons/material/calendar-week-begin.svg new file mode 100644 index 000000000..1c3f04570 --- /dev/null +++ b/docs/material/.icons/material/calendar-week-begin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-week.svg b/docs/material/.icons/material/calendar-week.svg new file mode 100644 index 000000000..6a262aec7 --- /dev/null +++ b/docs/material/.icons/material/calendar-week.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-weekend-outline.svg b/docs/material/.icons/material/calendar-weekend-outline.svg new file mode 100644 index 000000000..9cd9513a0 --- /dev/null +++ b/docs/material/.icons/material/calendar-weekend-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar-weekend.svg b/docs/material/.icons/material/calendar-weekend.svg new file mode 100644 index 000000000..454546069 --- /dev/null +++ b/docs/material/.icons/material/calendar-weekend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/calendar.svg b/docs/material/.icons/material/calendar.svg new file mode 100644 index 000000000..c423ffc37 --- /dev/null +++ b/docs/material/.icons/material/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/call-made.svg b/docs/material/.icons/material/call-made.svg new file mode 100644 index 000000000..59179a9b4 --- /dev/null +++ b/docs/material/.icons/material/call-made.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/call-merge.svg b/docs/material/.icons/material/call-merge.svg new file mode 100644 index 000000000..71840adf0 --- /dev/null +++ b/docs/material/.icons/material/call-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/call-missed.svg b/docs/material/.icons/material/call-missed.svg new file mode 100644 index 000000000..3955f7eea --- /dev/null +++ b/docs/material/.icons/material/call-missed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/call-received.svg b/docs/material/.icons/material/call-received.svg new file mode 100644 index 000000000..4f1af1c34 --- /dev/null +++ b/docs/material/.icons/material/call-received.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/call-split.svg b/docs/material/.icons/material/call-split.svg new file mode 100644 index 000000000..5e2dc91bb --- /dev/null +++ b/docs/material/.icons/material/call-split.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camcorder-off.svg b/docs/material/.icons/material/camcorder-off.svg new file mode 100644 index 000000000..7f7276664 --- /dev/null +++ b/docs/material/.icons/material/camcorder-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camcorder.svg b/docs/material/.icons/material/camcorder.svg new file mode 100644 index 000000000..e44981a03 --- /dev/null +++ b/docs/material/.icons/material/camcorder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-account.svg b/docs/material/.icons/material/camera-account.svg new file mode 100644 index 000000000..167c69468 --- /dev/null +++ b/docs/material/.icons/material/camera-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-burst.svg b/docs/material/.icons/material/camera-burst.svg new file mode 100644 index 000000000..32dbe1a0b --- /dev/null +++ b/docs/material/.icons/material/camera-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-control.svg b/docs/material/.icons/material/camera-control.svg new file mode 100644 index 000000000..7cf3b075b --- /dev/null +++ b/docs/material/.icons/material/camera-control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-enhance-outline.svg b/docs/material/.icons/material/camera-enhance-outline.svg new file mode 100644 index 000000000..1c39e95b5 --- /dev/null +++ b/docs/material/.icons/material/camera-enhance-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-enhance.svg b/docs/material/.icons/material/camera-enhance.svg new file mode 100644 index 000000000..109346a1d --- /dev/null +++ b/docs/material/.icons/material/camera-enhance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-front-variant.svg b/docs/material/.icons/material/camera-front-variant.svg new file mode 100644 index 000000000..2a9bfc03e --- /dev/null +++ b/docs/material/.icons/material/camera-front-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-front.svg b/docs/material/.icons/material/camera-front.svg new file mode 100644 index 000000000..b712842e2 --- /dev/null +++ b/docs/material/.icons/material/camera-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-gopro.svg b/docs/material/.icons/material/camera-gopro.svg new file mode 100644 index 000000000..2d4b0fc39 --- /dev/null +++ b/docs/material/.icons/material/camera-gopro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-image.svg b/docs/material/.icons/material/camera-image.svg new file mode 100644 index 000000000..b7f3042e4 --- /dev/null +++ b/docs/material/.icons/material/camera-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-iris.svg b/docs/material/.icons/material/camera-iris.svg new file mode 100644 index 000000000..843d897c1 --- /dev/null +++ b/docs/material/.icons/material/camera-iris.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-metering-center.svg b/docs/material/.icons/material/camera-metering-center.svg new file mode 100644 index 000000000..471ab1e8e --- /dev/null +++ b/docs/material/.icons/material/camera-metering-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-metering-matrix.svg b/docs/material/.icons/material/camera-metering-matrix.svg new file mode 100644 index 000000000..148a07bcc --- /dev/null +++ b/docs/material/.icons/material/camera-metering-matrix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-metering-partial.svg b/docs/material/.icons/material/camera-metering-partial.svg new file mode 100644 index 000000000..67717c80c --- /dev/null +++ b/docs/material/.icons/material/camera-metering-partial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-metering-spot.svg b/docs/material/.icons/material/camera-metering-spot.svg new file mode 100644 index 000000000..28f6f8c5f --- /dev/null +++ b/docs/material/.icons/material/camera-metering-spot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-off.svg b/docs/material/.icons/material/camera-off.svg new file mode 100644 index 000000000..18de4f8c4 --- /dev/null +++ b/docs/material/.icons/material/camera-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-outline.svg b/docs/material/.icons/material/camera-outline.svg new file mode 100644 index 000000000..655e5f148 --- /dev/null +++ b/docs/material/.icons/material/camera-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-party-mode.svg b/docs/material/.icons/material/camera-party-mode.svg new file mode 100644 index 000000000..9e159241c --- /dev/null +++ b/docs/material/.icons/material/camera-party-mode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-plus-outline.svg b/docs/material/.icons/material/camera-plus-outline.svg new file mode 100644 index 000000000..3b77bdf1b --- /dev/null +++ b/docs/material/.icons/material/camera-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-plus.svg b/docs/material/.icons/material/camera-plus.svg new file mode 100644 index 000000000..2ac1c6f2c --- /dev/null +++ b/docs/material/.icons/material/camera-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-rear-variant.svg b/docs/material/.icons/material/camera-rear-variant.svg new file mode 100644 index 000000000..1d34386d2 --- /dev/null +++ b/docs/material/.icons/material/camera-rear-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-rear.svg b/docs/material/.icons/material/camera-rear.svg new file mode 100644 index 000000000..4631aaa0a --- /dev/null +++ b/docs/material/.icons/material/camera-rear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-retake-outline.svg b/docs/material/.icons/material/camera-retake-outline.svg new file mode 100644 index 000000000..eb28a722f --- /dev/null +++ b/docs/material/.icons/material/camera-retake-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-retake.svg b/docs/material/.icons/material/camera-retake.svg new file mode 100644 index 000000000..fe8fd1816 --- /dev/null +++ b/docs/material/.icons/material/camera-retake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-switch-outline.svg b/docs/material/.icons/material/camera-switch-outline.svg new file mode 100644 index 000000000..1ae292353 --- /dev/null +++ b/docs/material/.icons/material/camera-switch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-switch.svg b/docs/material/.icons/material/camera-switch.svg new file mode 100644 index 000000000..a0111f517 --- /dev/null +++ b/docs/material/.icons/material/camera-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-timer.svg b/docs/material/.icons/material/camera-timer.svg new file mode 100644 index 000000000..96a49de4c --- /dev/null +++ b/docs/material/.icons/material/camera-timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-wireless-outline.svg b/docs/material/.icons/material/camera-wireless-outline.svg new file mode 100644 index 000000000..57d0817ef --- /dev/null +++ b/docs/material/.icons/material/camera-wireless-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera-wireless.svg b/docs/material/.icons/material/camera-wireless.svg new file mode 100644 index 000000000..25895588d --- /dev/null +++ b/docs/material/.icons/material/camera-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/camera.svg b/docs/material/.icons/material/camera.svg new file mode 100644 index 000000000..444222023 --- /dev/null +++ b/docs/material/.icons/material/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/campfire.svg b/docs/material/.icons/material/campfire.svg new file mode 100644 index 000000000..8e44a6f87 --- /dev/null +++ b/docs/material/.icons/material/campfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cancel.svg b/docs/material/.icons/material/cancel.svg new file mode 100644 index 000000000..d3294292e --- /dev/null +++ b/docs/material/.icons/material/cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/candle.svg b/docs/material/.icons/material/candle.svg new file mode 100644 index 000000000..301bff0c7 --- /dev/null +++ b/docs/material/.icons/material/candle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/candycane.svg b/docs/material/.icons/material/candycane.svg new file mode 100644 index 000000000..71c289835 --- /dev/null +++ b/docs/material/.icons/material/candycane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cannabis.svg b/docs/material/.icons/material/cannabis.svg new file mode 100644 index 000000000..7eae28c4d --- /dev/null +++ b/docs/material/.icons/material/cannabis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/caps-lock.svg b/docs/material/.icons/material/caps-lock.svg new file mode 100644 index 000000000..897346923 --- /dev/null +++ b/docs/material/.icons/material/caps-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-2-plus.svg b/docs/material/.icons/material/car-2-plus.svg new file mode 100644 index 000000000..3b47baf53 --- /dev/null +++ b/docs/material/.icons/material/car-2-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-3-plus.svg b/docs/material/.icons/material/car-3-plus.svg new file mode 100644 index 000000000..d929d548b --- /dev/null +++ b/docs/material/.icons/material/car-3-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-arrow-left.svg b/docs/material/.icons/material/car-arrow-left.svg new file mode 100644 index 000000000..033721b9c --- /dev/null +++ b/docs/material/.icons/material/car-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-arrow-right.svg b/docs/material/.icons/material/car-arrow-right.svg new file mode 100644 index 000000000..903034d05 --- /dev/null +++ b/docs/material/.icons/material/car-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-back.svg b/docs/material/.icons/material/car-back.svg new file mode 100644 index 000000000..4df2d27d1 --- /dev/null +++ b/docs/material/.icons/material/car-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-battery.svg b/docs/material/.icons/material/car-battery.svg new file mode 100644 index 000000000..351a5641e --- /dev/null +++ b/docs/material/.icons/material/car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-brake-abs.svg b/docs/material/.icons/material/car-brake-abs.svg new file mode 100644 index 000000000..1f8e530f3 --- /dev/null +++ b/docs/material/.icons/material/car-brake-abs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-brake-alert.svg b/docs/material/.icons/material/car-brake-alert.svg new file mode 100644 index 000000000..7fb386a8b --- /dev/null +++ b/docs/material/.icons/material/car-brake-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-brake-hold.svg b/docs/material/.icons/material/car-brake-hold.svg new file mode 100644 index 000000000..7846fbdba --- /dev/null +++ b/docs/material/.icons/material/car-brake-hold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-brake-parking.svg b/docs/material/.icons/material/car-brake-parking.svg new file mode 100644 index 000000000..27998bc14 --- /dev/null +++ b/docs/material/.icons/material/car-brake-parking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-brake-retarder.svg b/docs/material/.icons/material/car-brake-retarder.svg new file mode 100644 index 000000000..197785f64 --- /dev/null +++ b/docs/material/.icons/material/car-brake-retarder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-child-seat.svg b/docs/material/.icons/material/car-child-seat.svg new file mode 100644 index 000000000..7f5216864 --- /dev/null +++ b/docs/material/.icons/material/car-child-seat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-clutch.svg b/docs/material/.icons/material/car-clutch.svg new file mode 100644 index 000000000..8f8ade7e3 --- /dev/null +++ b/docs/material/.icons/material/car-clutch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-cog.svg b/docs/material/.icons/material/car-cog.svg new file mode 100644 index 000000000..1b98824f8 --- /dev/null +++ b/docs/material/.icons/material/car-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-connected.svg b/docs/material/.icons/material/car-connected.svg new file mode 100644 index 000000000..aae939579 --- /dev/null +++ b/docs/material/.icons/material/car-connected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-convertible.svg b/docs/material/.icons/material/car-convertible.svg new file mode 100644 index 000000000..f4ccb5547 --- /dev/null +++ b/docs/material/.icons/material/car-convertible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-coolant-level.svg b/docs/material/.icons/material/car-coolant-level.svg new file mode 100644 index 000000000..194b57337 --- /dev/null +++ b/docs/material/.icons/material/car-coolant-level.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-cruise-control.svg b/docs/material/.icons/material/car-cruise-control.svg new file mode 100644 index 000000000..6b90c0bee --- /dev/null +++ b/docs/material/.icons/material/car-cruise-control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-defrost-front.svg b/docs/material/.icons/material/car-defrost-front.svg new file mode 100644 index 000000000..c17e3aac4 --- /dev/null +++ b/docs/material/.icons/material/car-defrost-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-defrost-rear.svg b/docs/material/.icons/material/car-defrost-rear.svg new file mode 100644 index 000000000..044e0df71 --- /dev/null +++ b/docs/material/.icons/material/car-defrost-rear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-door-lock.svg b/docs/material/.icons/material/car-door-lock.svg new file mode 100644 index 000000000..48e5a031d --- /dev/null +++ b/docs/material/.icons/material/car-door-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-door.svg b/docs/material/.icons/material/car-door.svg new file mode 100644 index 000000000..a9f039a32 --- /dev/null +++ b/docs/material/.icons/material/car-door.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-electric.svg b/docs/material/.icons/material/car-electric.svg new file mode 100644 index 000000000..7ec0aae63 --- /dev/null +++ b/docs/material/.icons/material/car-electric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-esp.svg b/docs/material/.icons/material/car-esp.svg new file mode 100644 index 000000000..2e8b7173e --- /dev/null +++ b/docs/material/.icons/material/car-esp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-estate.svg b/docs/material/.icons/material/car-estate.svg new file mode 100644 index 000000000..6e005b7ed --- /dev/null +++ b/docs/material/.icons/material/car-estate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-hatchback.svg b/docs/material/.icons/material/car-hatchback.svg new file mode 100644 index 000000000..ffaa2ee81 --- /dev/null +++ b/docs/material/.icons/material/car-hatchback.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-info.svg b/docs/material/.icons/material/car-info.svg new file mode 100644 index 000000000..fb3221062 --- /dev/null +++ b/docs/material/.icons/material/car-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-key.svg b/docs/material/.icons/material/car-key.svg new file mode 100644 index 000000000..b622dda7b --- /dev/null +++ b/docs/material/.icons/material/car-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-light-dimmed.svg b/docs/material/.icons/material/car-light-dimmed.svg new file mode 100644 index 000000000..c4f36456b --- /dev/null +++ b/docs/material/.icons/material/car-light-dimmed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-light-fog.svg b/docs/material/.icons/material/car-light-fog.svg new file mode 100644 index 000000000..944a4c4e4 --- /dev/null +++ b/docs/material/.icons/material/car-light-fog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-light-high.svg b/docs/material/.icons/material/car-light-high.svg new file mode 100644 index 000000000..da6de4743 --- /dev/null +++ b/docs/material/.icons/material/car-light-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-limousine.svg b/docs/material/.icons/material/car-limousine.svg new file mode 100644 index 000000000..931c47031 --- /dev/null +++ b/docs/material/.icons/material/car-limousine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-multiple.svg b/docs/material/.icons/material/car-multiple.svg new file mode 100644 index 000000000..68c41fe85 --- /dev/null +++ b/docs/material/.icons/material/car-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-off.svg b/docs/material/.icons/material/car-off.svg new file mode 100644 index 000000000..8083aff2d --- /dev/null +++ b/docs/material/.icons/material/car-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-parking-lights.svg b/docs/material/.icons/material/car-parking-lights.svg new file mode 100644 index 000000000..84d3cd1a5 --- /dev/null +++ b/docs/material/.icons/material/car-parking-lights.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-pickup.svg b/docs/material/.icons/material/car-pickup.svg new file mode 100644 index 000000000..9804467c2 --- /dev/null +++ b/docs/material/.icons/material/car-pickup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-seat-cooler.svg b/docs/material/.icons/material/car-seat-cooler.svg new file mode 100644 index 000000000..0860fde19 --- /dev/null +++ b/docs/material/.icons/material/car-seat-cooler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-seat-heater.svg b/docs/material/.icons/material/car-seat-heater.svg new file mode 100644 index 000000000..6c0dbe78d --- /dev/null +++ b/docs/material/.icons/material/car-seat-heater.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-seat.svg b/docs/material/.icons/material/car-seat.svg new file mode 100644 index 000000000..1a4b6603c --- /dev/null +++ b/docs/material/.icons/material/car-seat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-settings.svg b/docs/material/.icons/material/car-settings.svg new file mode 100644 index 000000000..ccefd0408 --- /dev/null +++ b/docs/material/.icons/material/car-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-shift-pattern.svg b/docs/material/.icons/material/car-shift-pattern.svg new file mode 100644 index 000000000..1142e598a --- /dev/null +++ b/docs/material/.icons/material/car-shift-pattern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-side.svg b/docs/material/.icons/material/car-side.svg new file mode 100644 index 000000000..45c8f6cdc --- /dev/null +++ b/docs/material/.icons/material/car-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-sports.svg b/docs/material/.icons/material/car-sports.svg new file mode 100644 index 000000000..66e416874 --- /dev/null +++ b/docs/material/.icons/material/car-sports.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-tire-alert.svg b/docs/material/.icons/material/car-tire-alert.svg new file mode 100644 index 000000000..2310a71de --- /dev/null +++ b/docs/material/.icons/material/car-tire-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-traction-control.svg b/docs/material/.icons/material/car-traction-control.svg new file mode 100644 index 000000000..3870cc814 --- /dev/null +++ b/docs/material/.icons/material/car-traction-control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-turbocharger.svg b/docs/material/.icons/material/car-turbocharger.svg new file mode 100644 index 000000000..3608bf8da --- /dev/null +++ b/docs/material/.icons/material/car-turbocharger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-wash.svg b/docs/material/.icons/material/car-wash.svg new file mode 100644 index 000000000..d64472dee --- /dev/null +++ b/docs/material/.icons/material/car-wash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-windshield-outline.svg b/docs/material/.icons/material/car-windshield-outline.svg new file mode 100644 index 000000000..329e7b4be --- /dev/null +++ b/docs/material/.icons/material/car-windshield-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car-windshield.svg b/docs/material/.icons/material/car-windshield.svg new file mode 100644 index 000000000..918217f29 --- /dev/null +++ b/docs/material/.icons/material/car-windshield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/car.svg b/docs/material/.icons/material/car.svg new file mode 100644 index 000000000..1eb068c84 --- /dev/null +++ b/docs/material/.icons/material/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/caravan.svg b/docs/material/.icons/material/caravan.svg new file mode 100644 index 000000000..5618e71c9 --- /dev/null +++ b/docs/material/.icons/material/caravan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-details-outline.svg b/docs/material/.icons/material/card-account-details-outline.svg new file mode 100644 index 000000000..0cfc3b1f6 --- /dev/null +++ b/docs/material/.icons/material/card-account-details-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-details-star-outline.svg b/docs/material/.icons/material/card-account-details-star-outline.svg new file mode 100644 index 000000000..b04af34f3 --- /dev/null +++ b/docs/material/.icons/material/card-account-details-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-details-star.svg b/docs/material/.icons/material/card-account-details-star.svg new file mode 100644 index 000000000..aee2febd7 --- /dev/null +++ b/docs/material/.icons/material/card-account-details-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-details.svg b/docs/material/.icons/material/card-account-details.svg new file mode 100644 index 000000000..3e2cd20be --- /dev/null +++ b/docs/material/.icons/material/card-account-details.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-mail-outline.svg b/docs/material/.icons/material/card-account-mail-outline.svg new file mode 100644 index 000000000..b3ec2be71 --- /dev/null +++ b/docs/material/.icons/material/card-account-mail-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-mail.svg b/docs/material/.icons/material/card-account-mail.svg new file mode 100644 index 000000000..ed2a7d747 --- /dev/null +++ b/docs/material/.icons/material/card-account-mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-phone-outline.svg b/docs/material/.icons/material/card-account-phone-outline.svg new file mode 100644 index 000000000..6b4adf2da --- /dev/null +++ b/docs/material/.icons/material/card-account-phone-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-account-phone.svg b/docs/material/.icons/material/card-account-phone.svg new file mode 100644 index 000000000..f9860b638 --- /dev/null +++ b/docs/material/.icons/material/card-account-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-bulleted-off-outline.svg b/docs/material/.icons/material/card-bulleted-off-outline.svg new file mode 100644 index 000000000..3e2367627 --- /dev/null +++ b/docs/material/.icons/material/card-bulleted-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-bulleted-off.svg b/docs/material/.icons/material/card-bulleted-off.svg new file mode 100644 index 000000000..70db1fac8 --- /dev/null +++ b/docs/material/.icons/material/card-bulleted-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-bulleted-outline.svg b/docs/material/.icons/material/card-bulleted-outline.svg new file mode 100644 index 000000000..310e71853 --- /dev/null +++ b/docs/material/.icons/material/card-bulleted-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-bulleted-settings-outline.svg b/docs/material/.icons/material/card-bulleted-settings-outline.svg new file mode 100644 index 000000000..a3ab93096 --- /dev/null +++ b/docs/material/.icons/material/card-bulleted-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-bulleted-settings.svg b/docs/material/.icons/material/card-bulleted-settings.svg new file mode 100644 index 000000000..f2b9be34c --- /dev/null +++ b/docs/material/.icons/material/card-bulleted-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-bulleted.svg b/docs/material/.icons/material/card-bulleted.svg new file mode 100644 index 000000000..83574f3f1 --- /dev/null +++ b/docs/material/.icons/material/card-bulleted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-outline.svg b/docs/material/.icons/material/card-outline.svg new file mode 100644 index 000000000..f598d2801 --- /dev/null +++ b/docs/material/.icons/material/card-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-plus-outline.svg b/docs/material/.icons/material/card-plus-outline.svg new file mode 100644 index 000000000..2f7f5d321 --- /dev/null +++ b/docs/material/.icons/material/card-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-plus.svg b/docs/material/.icons/material/card-plus.svg new file mode 100644 index 000000000..52e644539 --- /dev/null +++ b/docs/material/.icons/material/card-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-search-outline.svg b/docs/material/.icons/material/card-search-outline.svg new file mode 100644 index 000000000..389807c55 --- /dev/null +++ b/docs/material/.icons/material/card-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-search.svg b/docs/material/.icons/material/card-search.svg new file mode 100644 index 000000000..d1882aba7 --- /dev/null +++ b/docs/material/.icons/material/card-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-text-outline.svg b/docs/material/.icons/material/card-text-outline.svg new file mode 100644 index 000000000..fbe63cecd --- /dev/null +++ b/docs/material/.icons/material/card-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card-text.svg b/docs/material/.icons/material/card-text.svg new file mode 100644 index 000000000..f5e3f2119 --- /dev/null +++ b/docs/material/.icons/material/card-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/card.svg b/docs/material/.icons/material/card.svg new file mode 100644 index 000000000..7ef6332be --- /dev/null +++ b/docs/material/.icons/material/card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-club.svg b/docs/material/.icons/material/cards-club.svg new file mode 100644 index 000000000..a77ece010 --- /dev/null +++ b/docs/material/.icons/material/cards-club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-diamond-outline.svg b/docs/material/.icons/material/cards-diamond-outline.svg new file mode 100644 index 000000000..e56511000 --- /dev/null +++ b/docs/material/.icons/material/cards-diamond-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-diamond.svg b/docs/material/.icons/material/cards-diamond.svg new file mode 100644 index 000000000..01b5cda2e --- /dev/null +++ b/docs/material/.icons/material/cards-diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-heart.svg b/docs/material/.icons/material/cards-heart.svg new file mode 100644 index 000000000..69d69a0e1 --- /dev/null +++ b/docs/material/.icons/material/cards-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-outline.svg b/docs/material/.icons/material/cards-outline.svg new file mode 100644 index 000000000..e0ecfa798 --- /dev/null +++ b/docs/material/.icons/material/cards-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-playing-outline.svg b/docs/material/.icons/material/cards-playing-outline.svg new file mode 100644 index 000000000..41621783e --- /dev/null +++ b/docs/material/.icons/material/cards-playing-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-spade.svg b/docs/material/.icons/material/cards-spade.svg new file mode 100644 index 000000000..daaf4f74b --- /dev/null +++ b/docs/material/.icons/material/cards-spade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards-variant.svg b/docs/material/.icons/material/cards-variant.svg new file mode 100644 index 000000000..193dcd67a --- /dev/null +++ b/docs/material/.icons/material/cards-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cards.svg b/docs/material/.icons/material/cards.svg new file mode 100644 index 000000000..009e7db6f --- /dev/null +++ b/docs/material/.icons/material/cards.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/carrot.svg b/docs/material/.icons/material/carrot.svg new file mode 100644 index 000000000..0d38cb53c --- /dev/null +++ b/docs/material/.icons/material/carrot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-arrow-down.svg b/docs/material/.icons/material/cart-arrow-down.svg new file mode 100644 index 000000000..fac27672e --- /dev/null +++ b/docs/material/.icons/material/cart-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-arrow-right.svg b/docs/material/.icons/material/cart-arrow-right.svg new file mode 100644 index 000000000..3967ea0d5 --- /dev/null +++ b/docs/material/.icons/material/cart-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-arrow-up.svg b/docs/material/.icons/material/cart-arrow-up.svg new file mode 100644 index 000000000..689af2862 --- /dev/null +++ b/docs/material/.icons/material/cart-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-minus.svg b/docs/material/.icons/material/cart-minus.svg new file mode 100644 index 000000000..9135e077b --- /dev/null +++ b/docs/material/.icons/material/cart-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-off.svg b/docs/material/.icons/material/cart-off.svg new file mode 100644 index 000000000..27ab8f92f --- /dev/null +++ b/docs/material/.icons/material/cart-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-outline.svg b/docs/material/.icons/material/cart-outline.svg new file mode 100644 index 000000000..f82ed2e22 --- /dev/null +++ b/docs/material/.icons/material/cart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-plus.svg b/docs/material/.icons/material/cart-plus.svg new file mode 100644 index 000000000..70be3a4d7 --- /dev/null +++ b/docs/material/.icons/material/cart-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart-remove.svg b/docs/material/.icons/material/cart-remove.svg new file mode 100644 index 000000000..637fc2c0b --- /dev/null +++ b/docs/material/.icons/material/cart-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cart.svg b/docs/material/.icons/material/cart.svg new file mode 100644 index 000000000..a8eb75e2d --- /dev/null +++ b/docs/material/.icons/material/cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/case-sensitive-alt.svg b/docs/material/.icons/material/case-sensitive-alt.svg new file mode 100644 index 000000000..783c6e1f2 --- /dev/null +++ b/docs/material/.icons/material/case-sensitive-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-100.svg b/docs/material/.icons/material/cash-100.svg new file mode 100644 index 000000000..d6baf1773 --- /dev/null +++ b/docs/material/.icons/material/cash-100.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-marker.svg b/docs/material/.icons/material/cash-marker.svg new file mode 100644 index 000000000..82031f48f --- /dev/null +++ b/docs/material/.icons/material/cash-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-minus.svg b/docs/material/.icons/material/cash-minus.svg new file mode 100644 index 000000000..f9d149e89 --- /dev/null +++ b/docs/material/.icons/material/cash-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-multiple.svg b/docs/material/.icons/material/cash-multiple.svg new file mode 100644 index 000000000..059c09c7e --- /dev/null +++ b/docs/material/.icons/material/cash-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-plus.svg b/docs/material/.icons/material/cash-plus.svg new file mode 100644 index 000000000..85beb49c3 --- /dev/null +++ b/docs/material/.icons/material/cash-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-refund.svg b/docs/material/.icons/material/cash-refund.svg new file mode 100644 index 000000000..5714d95ac --- /dev/null +++ b/docs/material/.icons/material/cash-refund.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-register.svg b/docs/material/.icons/material/cash-register.svg new file mode 100644 index 000000000..20a1c7012 --- /dev/null +++ b/docs/material/.icons/material/cash-register.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-remove.svg b/docs/material/.icons/material/cash-remove.svg new file mode 100644 index 000000000..032264981 --- /dev/null +++ b/docs/material/.icons/material/cash-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-usd-outline.svg b/docs/material/.icons/material/cash-usd-outline.svg new file mode 100644 index 000000000..bc170dbe2 --- /dev/null +++ b/docs/material/.icons/material/cash-usd-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash-usd.svg b/docs/material/.icons/material/cash-usd.svg new file mode 100644 index 000000000..66bbb2e71 --- /dev/null +++ b/docs/material/.icons/material/cash-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cash.svg b/docs/material/.icons/material/cash.svg new file mode 100644 index 000000000..30060f208 --- /dev/null +++ b/docs/material/.icons/material/cash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cassette.svg b/docs/material/.icons/material/cassette.svg new file mode 100644 index 000000000..a8c50164e --- /dev/null +++ b/docs/material/.icons/material/cassette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cast-audio.svg b/docs/material/.icons/material/cast-audio.svg new file mode 100644 index 000000000..b0b3ef9dd --- /dev/null +++ b/docs/material/.icons/material/cast-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cast-connected.svg b/docs/material/.icons/material/cast-connected.svg new file mode 100644 index 000000000..5485cc5ed --- /dev/null +++ b/docs/material/.icons/material/cast-connected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cast-education.svg b/docs/material/.icons/material/cast-education.svg new file mode 100644 index 000000000..a720a92de --- /dev/null +++ b/docs/material/.icons/material/cast-education.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cast-off.svg b/docs/material/.icons/material/cast-off.svg new file mode 100644 index 000000000..a622c6bd8 --- /dev/null +++ b/docs/material/.icons/material/cast-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cast.svg b/docs/material/.icons/material/cast.svg new file mode 100644 index 000000000..d8a6d623a --- /dev/null +++ b/docs/material/.icons/material/cast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/castle.svg b/docs/material/.icons/material/castle.svg new file mode 100644 index 000000000..66594a8a6 --- /dev/null +++ b/docs/material/.icons/material/castle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cat.svg b/docs/material/.icons/material/cat.svg new file mode 100644 index 000000000..e117cf313 --- /dev/null +++ b/docs/material/.icons/material/cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cctv.svg b/docs/material/.icons/material/cctv.svg new file mode 100644 index 000000000..3d11a0ee8 --- /dev/null +++ b/docs/material/.icons/material/cctv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ceiling-light.svg b/docs/material/.icons/material/ceiling-light.svg new file mode 100644 index 000000000..7ae8cdabb --- /dev/null +++ b/docs/material/.icons/material/ceiling-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-android.svg b/docs/material/.icons/material/cellphone-android.svg new file mode 100644 index 000000000..4f5b8b019 --- /dev/null +++ b/docs/material/.icons/material/cellphone-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-arrow-down.svg b/docs/material/.icons/material/cellphone-arrow-down.svg new file mode 100644 index 000000000..fc02a00cc --- /dev/null +++ b/docs/material/.icons/material/cellphone-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-basic.svg b/docs/material/.icons/material/cellphone-basic.svg new file mode 100644 index 000000000..802c9e69e --- /dev/null +++ b/docs/material/.icons/material/cellphone-basic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-charging.svg b/docs/material/.icons/material/cellphone-charging.svg new file mode 100644 index 000000000..0b67d1142 --- /dev/null +++ b/docs/material/.icons/material/cellphone-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-cog.svg b/docs/material/.icons/material/cellphone-cog.svg new file mode 100644 index 000000000..7e8a5c708 --- /dev/null +++ b/docs/material/.icons/material/cellphone-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-dock.svg b/docs/material/.icons/material/cellphone-dock.svg new file mode 100644 index 000000000..d336c85dc --- /dev/null +++ b/docs/material/.icons/material/cellphone-dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-erase.svg b/docs/material/.icons/material/cellphone-erase.svg new file mode 100644 index 000000000..c2229ecd5 --- /dev/null +++ b/docs/material/.icons/material/cellphone-erase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-information.svg b/docs/material/.icons/material/cellphone-information.svg new file mode 100644 index 000000000..cf7058903 --- /dev/null +++ b/docs/material/.icons/material/cellphone-information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-iphone.svg b/docs/material/.icons/material/cellphone-iphone.svg new file mode 100644 index 000000000..7f0075c00 --- /dev/null +++ b/docs/material/.icons/material/cellphone-iphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-key.svg b/docs/material/.icons/material/cellphone-key.svg new file mode 100644 index 000000000..8c1417695 --- /dev/null +++ b/docs/material/.icons/material/cellphone-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-link-off.svg b/docs/material/.icons/material/cellphone-link-off.svg new file mode 100644 index 000000000..4d40d5612 --- /dev/null +++ b/docs/material/.icons/material/cellphone-link-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-link.svg b/docs/material/.icons/material/cellphone-link.svg new file mode 100644 index 000000000..3c47b4dc9 --- /dev/null +++ b/docs/material/.icons/material/cellphone-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-lock.svg b/docs/material/.icons/material/cellphone-lock.svg new file mode 100644 index 000000000..fceb322ab --- /dev/null +++ b/docs/material/.icons/material/cellphone-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-message-off.svg b/docs/material/.icons/material/cellphone-message-off.svg new file mode 100644 index 000000000..3478232dd --- /dev/null +++ b/docs/material/.icons/material/cellphone-message-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-message.svg b/docs/material/.icons/material/cellphone-message.svg new file mode 100644 index 000000000..7111606af --- /dev/null +++ b/docs/material/.icons/material/cellphone-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-nfc-off.svg b/docs/material/.icons/material/cellphone-nfc-off.svg new file mode 100644 index 000000000..940da82bf --- /dev/null +++ b/docs/material/.icons/material/cellphone-nfc-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-nfc.svg b/docs/material/.icons/material/cellphone-nfc.svg new file mode 100644 index 000000000..7cb0c8af6 --- /dev/null +++ b/docs/material/.icons/material/cellphone-nfc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-off.svg b/docs/material/.icons/material/cellphone-off.svg new file mode 100644 index 000000000..c575182fe --- /dev/null +++ b/docs/material/.icons/material/cellphone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-play.svg b/docs/material/.icons/material/cellphone-play.svg new file mode 100644 index 000000000..9c37d40c5 --- /dev/null +++ b/docs/material/.icons/material/cellphone-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-screenshot.svg b/docs/material/.icons/material/cellphone-screenshot.svg new file mode 100644 index 000000000..fe8220464 --- /dev/null +++ b/docs/material/.icons/material/cellphone-screenshot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-settings.svg b/docs/material/.icons/material/cellphone-settings.svg new file mode 100644 index 000000000..b51950151 --- /dev/null +++ b/docs/material/.icons/material/cellphone-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-sound.svg b/docs/material/.icons/material/cellphone-sound.svg new file mode 100644 index 000000000..5838679eb --- /dev/null +++ b/docs/material/.icons/material/cellphone-sound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-text.svg b/docs/material/.icons/material/cellphone-text.svg new file mode 100644 index 000000000..4315484ec --- /dev/null +++ b/docs/material/.icons/material/cellphone-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone-wireless.svg b/docs/material/.icons/material/cellphone-wireless.svg new file mode 100644 index 000000000..bbbb05747 --- /dev/null +++ b/docs/material/.icons/material/cellphone-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cellphone.svg b/docs/material/.icons/material/cellphone.svg new file mode 100644 index 000000000..d043f2df7 --- /dev/null +++ b/docs/material/.icons/material/cellphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/celtic-cross.svg b/docs/material/.icons/material/celtic-cross.svg new file mode 100644 index 000000000..21b9c6507 --- /dev/null +++ b/docs/material/.icons/material/celtic-cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/centos.svg b/docs/material/.icons/material/centos.svg new file mode 100644 index 000000000..451301652 --- /dev/null +++ b/docs/material/.icons/material/centos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/certificate-outline.svg b/docs/material/.icons/material/certificate-outline.svg new file mode 100644 index 000000000..3449cebad --- /dev/null +++ b/docs/material/.icons/material/certificate-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/certificate.svg b/docs/material/.icons/material/certificate.svg new file mode 100644 index 000000000..eb6196bb0 --- /dev/null +++ b/docs/material/.icons/material/certificate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chair-rolling.svg b/docs/material/.icons/material/chair-rolling.svg new file mode 100644 index 000000000..edd4ff271 --- /dev/null +++ b/docs/material/.icons/material/chair-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chair-school.svg b/docs/material/.icons/material/chair-school.svg new file mode 100644 index 000000000..a8350cc9c --- /dev/null +++ b/docs/material/.icons/material/chair-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/charity.svg b/docs/material/.icons/material/charity.svg new file mode 100644 index 000000000..b6bf37043 --- /dev/null +++ b/docs/material/.icons/material/charity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-arc.svg b/docs/material/.icons/material/chart-arc.svg new file mode 100644 index 000000000..7a9c7e14b --- /dev/null +++ b/docs/material/.icons/material/chart-arc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-areaspline-variant.svg b/docs/material/.icons/material/chart-areaspline-variant.svg new file mode 100644 index 000000000..ab8ec736f --- /dev/null +++ b/docs/material/.icons/material/chart-areaspline-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-areaspline.svg b/docs/material/.icons/material/chart-areaspline.svg new file mode 100644 index 000000000..f1b8bb5e3 --- /dev/null +++ b/docs/material/.icons/material/chart-areaspline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-bar-stacked.svg b/docs/material/.icons/material/chart-bar-stacked.svg new file mode 100644 index 000000000..7b1e66301 --- /dev/null +++ b/docs/material/.icons/material/chart-bar-stacked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-bar.svg b/docs/material/.icons/material/chart-bar.svg new file mode 100644 index 000000000..2811a9eb2 --- /dev/null +++ b/docs/material/.icons/material/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-bell-curve-cumulative.svg b/docs/material/.icons/material/chart-bell-curve-cumulative.svg new file mode 100644 index 000000000..944e4fecf --- /dev/null +++ b/docs/material/.icons/material/chart-bell-curve-cumulative.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-bell-curve.svg b/docs/material/.icons/material/chart-bell-curve.svg new file mode 100644 index 000000000..9c115ee14 --- /dev/null +++ b/docs/material/.icons/material/chart-bell-curve.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-bubble.svg b/docs/material/.icons/material/chart-bubble.svg new file mode 100644 index 000000000..bbe2b9d68 --- /dev/null +++ b/docs/material/.icons/material/chart-bubble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-donut-variant.svg b/docs/material/.icons/material/chart-donut-variant.svg new file mode 100644 index 000000000..f00966123 --- /dev/null +++ b/docs/material/.icons/material/chart-donut-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-donut.svg b/docs/material/.icons/material/chart-donut.svg new file mode 100644 index 000000000..82761c959 --- /dev/null +++ b/docs/material/.icons/material/chart-donut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-gantt.svg b/docs/material/.icons/material/chart-gantt.svg new file mode 100644 index 000000000..a72f90319 --- /dev/null +++ b/docs/material/.icons/material/chart-gantt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-histogram.svg b/docs/material/.icons/material/chart-histogram.svg new file mode 100644 index 000000000..4dd096b60 --- /dev/null +++ b/docs/material/.icons/material/chart-histogram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-line-stacked.svg b/docs/material/.icons/material/chart-line-stacked.svg new file mode 100644 index 000000000..43f729502 --- /dev/null +++ b/docs/material/.icons/material/chart-line-stacked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-line-variant.svg b/docs/material/.icons/material/chart-line-variant.svg new file mode 100644 index 000000000..d9215b0a7 --- /dev/null +++ b/docs/material/.icons/material/chart-line-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-line.svg b/docs/material/.icons/material/chart-line.svg new file mode 100644 index 000000000..b8c3645e3 --- /dev/null +++ b/docs/material/.icons/material/chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-multiline.svg b/docs/material/.icons/material/chart-multiline.svg new file mode 100644 index 000000000..31c49ba22 --- /dev/null +++ b/docs/material/.icons/material/chart-multiline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-multiple.svg b/docs/material/.icons/material/chart-multiple.svg new file mode 100644 index 000000000..40d98803b --- /dev/null +++ b/docs/material/.icons/material/chart-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-pie.svg b/docs/material/.icons/material/chart-pie.svg new file mode 100644 index 000000000..28df8dd56 --- /dev/null +++ b/docs/material/.icons/material/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-ppf.svg b/docs/material/.icons/material/chart-ppf.svg new file mode 100644 index 000000000..5c080ac0e --- /dev/null +++ b/docs/material/.icons/material/chart-ppf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-sankey-variant.svg b/docs/material/.icons/material/chart-sankey-variant.svg new file mode 100644 index 000000000..36eafbad2 --- /dev/null +++ b/docs/material/.icons/material/chart-sankey-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-sankey.svg b/docs/material/.icons/material/chart-sankey.svg new file mode 100644 index 000000000..220aef6b4 --- /dev/null +++ b/docs/material/.icons/material/chart-sankey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-scatter-plot-hexbin.svg b/docs/material/.icons/material/chart-scatter-plot-hexbin.svg new file mode 100644 index 000000000..f14eba147 --- /dev/null +++ b/docs/material/.icons/material/chart-scatter-plot-hexbin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-scatter-plot.svg b/docs/material/.icons/material/chart-scatter-plot.svg new file mode 100644 index 000000000..1ce486346 --- /dev/null +++ b/docs/material/.icons/material/chart-scatter-plot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-timeline-variant.svg b/docs/material/.icons/material/chart-timeline-variant.svg new file mode 100644 index 000000000..dc1a3e47b --- /dev/null +++ b/docs/material/.icons/material/chart-timeline-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-timeline.svg b/docs/material/.icons/material/chart-timeline.svg new file mode 100644 index 000000000..0294d3b8c --- /dev/null +++ b/docs/material/.icons/material/chart-timeline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chart-tree.svg b/docs/material/.icons/material/chart-tree.svg new file mode 100644 index 000000000..e6876c622 --- /dev/null +++ b/docs/material/.icons/material/chart-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-alert-outline.svg b/docs/material/.icons/material/chat-alert-outline.svg new file mode 100644 index 000000000..572ce06a9 --- /dev/null +++ b/docs/material/.icons/material/chat-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-alert.svg b/docs/material/.icons/material/chat-alert.svg new file mode 100644 index 000000000..1b594cd8b --- /dev/null +++ b/docs/material/.icons/material/chat-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-minus-outline.svg b/docs/material/.icons/material/chat-minus-outline.svg new file mode 100644 index 000000000..74fb6cfbf --- /dev/null +++ b/docs/material/.icons/material/chat-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-minus.svg b/docs/material/.icons/material/chat-minus.svg new file mode 100644 index 000000000..2e19cf9d5 --- /dev/null +++ b/docs/material/.icons/material/chat-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-outline.svg b/docs/material/.icons/material/chat-outline.svg new file mode 100644 index 000000000..e170846dc --- /dev/null +++ b/docs/material/.icons/material/chat-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-plus-outline.svg b/docs/material/.icons/material/chat-plus-outline.svg new file mode 100644 index 000000000..9486cacf3 --- /dev/null +++ b/docs/material/.icons/material/chat-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-plus.svg b/docs/material/.icons/material/chat-plus.svg new file mode 100644 index 000000000..2871f55c5 --- /dev/null +++ b/docs/material/.icons/material/chat-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-processing-outline.svg b/docs/material/.icons/material/chat-processing-outline.svg new file mode 100644 index 000000000..cd7f9c196 --- /dev/null +++ b/docs/material/.icons/material/chat-processing-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-processing.svg b/docs/material/.icons/material/chat-processing.svg new file mode 100644 index 000000000..993cbcd5a --- /dev/null +++ b/docs/material/.icons/material/chat-processing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-remove-outline.svg b/docs/material/.icons/material/chat-remove-outline.svg new file mode 100644 index 000000000..a09929b78 --- /dev/null +++ b/docs/material/.icons/material/chat-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-remove.svg b/docs/material/.icons/material/chat-remove.svg new file mode 100644 index 000000000..2c5bcbfe1 --- /dev/null +++ b/docs/material/.icons/material/chat-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-sleep-outline.svg b/docs/material/.icons/material/chat-sleep-outline.svg new file mode 100644 index 000000000..9f66ede48 --- /dev/null +++ b/docs/material/.icons/material/chat-sleep-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat-sleep.svg b/docs/material/.icons/material/chat-sleep.svg new file mode 100644 index 000000000..23cd33e19 --- /dev/null +++ b/docs/material/.icons/material/chat-sleep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chat.svg b/docs/material/.icons/material/chat.svg new file mode 100644 index 000000000..d89d9f83c --- /dev/null +++ b/docs/material/.icons/material/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-all.svg b/docs/material/.icons/material/check-all.svg new file mode 100644 index 000000000..8de704e1b --- /dev/null +++ b/docs/material/.icons/material/check-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-bold.svg b/docs/material/.icons/material/check-bold.svg new file mode 100644 index 000000000..f6fd9da38 --- /dev/null +++ b/docs/material/.icons/material/check-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-box-multiple-outline.svg b/docs/material/.icons/material/check-box-multiple-outline.svg new file mode 100644 index 000000000..1367c125b --- /dev/null +++ b/docs/material/.icons/material/check-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-box-outline.svg b/docs/material/.icons/material/check-box-outline.svg new file mode 100644 index 000000000..4cba7654f --- /dev/null +++ b/docs/material/.icons/material/check-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-circle-outline.svg b/docs/material/.icons/material/check-circle-outline.svg new file mode 100644 index 000000000..0037f3fd1 --- /dev/null +++ b/docs/material/.icons/material/check-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-circle.svg b/docs/material/.icons/material/check-circle.svg new file mode 100644 index 000000000..6a8235c0e --- /dev/null +++ b/docs/material/.icons/material/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-decagram.svg b/docs/material/.icons/material/check-decagram.svg new file mode 100644 index 000000000..758ef24e9 --- /dev/null +++ b/docs/material/.icons/material/check-decagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-network-outline.svg b/docs/material/.icons/material/check-network-outline.svg new file mode 100644 index 000000000..de4f13bc2 --- /dev/null +++ b/docs/material/.icons/material/check-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-network.svg b/docs/material/.icons/material/check-network.svg new file mode 100644 index 000000000..283988f99 --- /dev/null +++ b/docs/material/.icons/material/check-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-outline.svg b/docs/material/.icons/material/check-outline.svg new file mode 100644 index 000000000..c59012745 --- /dev/null +++ b/docs/material/.icons/material/check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-underline-circle-outline.svg b/docs/material/.icons/material/check-underline-circle-outline.svg new file mode 100644 index 000000000..7095b718b --- /dev/null +++ b/docs/material/.icons/material/check-underline-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-underline-circle.svg b/docs/material/.icons/material/check-underline-circle.svg new file mode 100644 index 000000000..cebdb85a8 --- /dev/null +++ b/docs/material/.icons/material/check-underline-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check-underline.svg b/docs/material/.icons/material/check-underline.svg new file mode 100644 index 000000000..bd5bf3e04 --- /dev/null +++ b/docs/material/.icons/material/check-underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/check.svg b/docs/material/.icons/material/check.svg new file mode 100644 index 000000000..5c123bfd5 --- /dev/null +++ b/docs/material/.icons/material/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbook.svg b/docs/material/.icons/material/checkbook.svg new file mode 100644 index 000000000..f7fc169dd --- /dev/null +++ b/docs/material/.icons/material/checkbook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-blank-circle-outline.svg b/docs/material/.icons/material/checkbox-blank-circle-outline.svg new file mode 100644 index 000000000..e986852fe --- /dev/null +++ b/docs/material/.icons/material/checkbox-blank-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-blank-circle.svg b/docs/material/.icons/material/checkbox-blank-circle.svg new file mode 100644 index 000000000..0f0f814e2 --- /dev/null +++ b/docs/material/.icons/material/checkbox-blank-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-blank-off-outline.svg b/docs/material/.icons/material/checkbox-blank-off-outline.svg new file mode 100644 index 000000000..8dac7027b --- /dev/null +++ b/docs/material/.icons/material/checkbox-blank-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-blank-off.svg b/docs/material/.icons/material/checkbox-blank-off.svg new file mode 100644 index 000000000..0cefc726c --- /dev/null +++ b/docs/material/.icons/material/checkbox-blank-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-blank-outline.svg b/docs/material/.icons/material/checkbox-blank-outline.svg new file mode 100644 index 000000000..7d5babd91 --- /dev/null +++ b/docs/material/.icons/material/checkbox-blank-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-blank.svg b/docs/material/.icons/material/checkbox-blank.svg new file mode 100644 index 000000000..a0537331c --- /dev/null +++ b/docs/material/.icons/material/checkbox-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-intermediate.svg b/docs/material/.icons/material/checkbox-intermediate.svg new file mode 100644 index 000000000..e42241521 --- /dev/null +++ b/docs/material/.icons/material/checkbox-intermediate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-marked-circle-outline.svg b/docs/material/.icons/material/checkbox-marked-circle-outline.svg new file mode 100644 index 000000000..9eafbe84e --- /dev/null +++ b/docs/material/.icons/material/checkbox-marked-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-marked-circle.svg b/docs/material/.icons/material/checkbox-marked-circle.svg new file mode 100644 index 000000000..5cd5a7128 --- /dev/null +++ b/docs/material/.icons/material/checkbox-marked-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-marked-outline.svg b/docs/material/.icons/material/checkbox-marked-outline.svg new file mode 100644 index 000000000..4504a84d7 --- /dev/null +++ b/docs/material/.icons/material/checkbox-marked-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-marked.svg b/docs/material/.icons/material/checkbox-marked.svg new file mode 100644 index 000000000..2417071c3 --- /dev/null +++ b/docs/material/.icons/material/checkbox-marked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-blank-circle-outline.svg b/docs/material/.icons/material/checkbox-multiple-blank-circle-outline.svg new file mode 100644 index 000000000..17ccdb2bc --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-blank-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-blank-circle.svg b/docs/material/.icons/material/checkbox-multiple-blank-circle.svg new file mode 100644 index 000000000..0615d499c --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-blank-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-blank-outline.svg b/docs/material/.icons/material/checkbox-multiple-blank-outline.svg new file mode 100644 index 000000000..0023da2f1 --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-blank-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-blank.svg b/docs/material/.icons/material/checkbox-multiple-blank.svg new file mode 100644 index 000000000..eb804999a --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-marked-circle-outline.svg b/docs/material/.icons/material/checkbox-multiple-marked-circle-outline.svg new file mode 100644 index 000000000..580949390 --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-marked-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-marked-circle.svg b/docs/material/.icons/material/checkbox-multiple-marked-circle.svg new file mode 100644 index 000000000..43e55bb06 --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-marked-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-marked-outline.svg b/docs/material/.icons/material/checkbox-multiple-marked-outline.svg new file mode 100644 index 000000000..55745d0a0 --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-marked-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkbox-multiple-marked.svg b/docs/material/.icons/material/checkbox-multiple-marked.svg new file mode 100644 index 000000000..794a93d56 --- /dev/null +++ b/docs/material/.icons/material/checkbox-multiple-marked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkerboard-minus.svg b/docs/material/.icons/material/checkerboard-minus.svg new file mode 100644 index 000000000..14f3fd44f --- /dev/null +++ b/docs/material/.icons/material/checkerboard-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkerboard-plus.svg b/docs/material/.icons/material/checkerboard-plus.svg new file mode 100644 index 000000000..0d08f2fce --- /dev/null +++ b/docs/material/.icons/material/checkerboard-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkerboard-remove.svg b/docs/material/.icons/material/checkerboard-remove.svg new file mode 100644 index 000000000..7b309268c --- /dev/null +++ b/docs/material/.icons/material/checkerboard-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/checkerboard.svg b/docs/material/.icons/material/checkerboard.svg new file mode 100644 index 000000000..230da1499 --- /dev/null +++ b/docs/material/.icons/material/checkerboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cheese-off.svg b/docs/material/.icons/material/cheese-off.svg new file mode 100644 index 000000000..502e5864d --- /dev/null +++ b/docs/material/.icons/material/cheese-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cheese.svg b/docs/material/.icons/material/cheese.svg new file mode 100644 index 000000000..9b142a580 --- /dev/null +++ b/docs/material/.icons/material/cheese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chef-hat.svg b/docs/material/.icons/material/chef-hat.svg new file mode 100644 index 000000000..ff186d666 --- /dev/null +++ b/docs/material/.icons/material/chef-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chemical-weapon.svg b/docs/material/.icons/material/chemical-weapon.svg new file mode 100644 index 000000000..b69e2cf22 --- /dev/null +++ b/docs/material/.icons/material/chemical-weapon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chess-bishop.svg b/docs/material/.icons/material/chess-bishop.svg new file mode 100644 index 000000000..3852fb75a --- /dev/null +++ b/docs/material/.icons/material/chess-bishop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chess-king.svg b/docs/material/.icons/material/chess-king.svg new file mode 100644 index 000000000..bcc52f4f6 --- /dev/null +++ b/docs/material/.icons/material/chess-king.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chess-knight.svg b/docs/material/.icons/material/chess-knight.svg new file mode 100644 index 000000000..8a90ef1b0 --- /dev/null +++ b/docs/material/.icons/material/chess-knight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chess-pawn.svg b/docs/material/.icons/material/chess-pawn.svg new file mode 100644 index 000000000..487bd0239 --- /dev/null +++ b/docs/material/.icons/material/chess-pawn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chess-queen.svg b/docs/material/.icons/material/chess-queen.svg new file mode 100644 index 000000000..8f425b630 --- /dev/null +++ b/docs/material/.icons/material/chess-queen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chess-rook.svg b/docs/material/.icons/material/chess-rook.svg new file mode 100644 index 000000000..583f9ad92 --- /dev/null +++ b/docs/material/.icons/material/chess-rook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-double-down.svg b/docs/material/.icons/material/chevron-double-down.svg new file mode 100644 index 000000000..6d3d567db --- /dev/null +++ b/docs/material/.icons/material/chevron-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-double-left.svg b/docs/material/.icons/material/chevron-double-left.svg new file mode 100644 index 000000000..f8947a68c --- /dev/null +++ b/docs/material/.icons/material/chevron-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-double-right.svg b/docs/material/.icons/material/chevron-double-right.svg new file mode 100644 index 000000000..6bc99c5fb --- /dev/null +++ b/docs/material/.icons/material/chevron-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-double-up.svg b/docs/material/.icons/material/chevron-double-up.svg new file mode 100644 index 000000000..ce65d4b91 --- /dev/null +++ b/docs/material/.icons/material/chevron-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-down-box-outline.svg b/docs/material/.icons/material/chevron-down-box-outline.svg new file mode 100644 index 000000000..d3f8daa6b --- /dev/null +++ b/docs/material/.icons/material/chevron-down-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-down-box.svg b/docs/material/.icons/material/chevron-down-box.svg new file mode 100644 index 000000000..86f68e3b2 --- /dev/null +++ b/docs/material/.icons/material/chevron-down-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-down-circle-outline.svg b/docs/material/.icons/material/chevron-down-circle-outline.svg new file mode 100644 index 000000000..b447fe1fc --- /dev/null +++ b/docs/material/.icons/material/chevron-down-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-down-circle.svg b/docs/material/.icons/material/chevron-down-circle.svg new file mode 100644 index 000000000..8ff2f075e --- /dev/null +++ b/docs/material/.icons/material/chevron-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-down.svg b/docs/material/.icons/material/chevron-down.svg new file mode 100644 index 000000000..622cbd4f7 --- /dev/null +++ b/docs/material/.icons/material/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-left-box-outline.svg b/docs/material/.icons/material/chevron-left-box-outline.svg new file mode 100644 index 000000000..20e12679a --- /dev/null +++ b/docs/material/.icons/material/chevron-left-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-left-box.svg b/docs/material/.icons/material/chevron-left-box.svg new file mode 100644 index 000000000..5b9e446e9 --- /dev/null +++ b/docs/material/.icons/material/chevron-left-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-left-circle-outline.svg b/docs/material/.icons/material/chevron-left-circle-outline.svg new file mode 100644 index 000000000..5866f07f5 --- /dev/null +++ b/docs/material/.icons/material/chevron-left-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-left-circle.svg b/docs/material/.icons/material/chevron-left-circle.svg new file mode 100644 index 000000000..a123441b9 --- /dev/null +++ b/docs/material/.icons/material/chevron-left-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-left.svg b/docs/material/.icons/material/chevron-left.svg new file mode 100644 index 000000000..2291392ea --- /dev/null +++ b/docs/material/.icons/material/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-right-box-outline.svg b/docs/material/.icons/material/chevron-right-box-outline.svg new file mode 100644 index 000000000..763d29316 --- /dev/null +++ b/docs/material/.icons/material/chevron-right-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-right-box.svg b/docs/material/.icons/material/chevron-right-box.svg new file mode 100644 index 000000000..3f344b501 --- /dev/null +++ b/docs/material/.icons/material/chevron-right-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-right-circle-outline.svg b/docs/material/.icons/material/chevron-right-circle-outline.svg new file mode 100644 index 000000000..ec2484925 --- /dev/null +++ b/docs/material/.icons/material/chevron-right-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-right-circle.svg b/docs/material/.icons/material/chevron-right-circle.svg new file mode 100644 index 000000000..1548d76fd --- /dev/null +++ b/docs/material/.icons/material/chevron-right-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-right.svg b/docs/material/.icons/material/chevron-right.svg new file mode 100644 index 000000000..b8c47d9e2 --- /dev/null +++ b/docs/material/.icons/material/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-triple-down.svg b/docs/material/.icons/material/chevron-triple-down.svg new file mode 100644 index 000000000..104083264 --- /dev/null +++ b/docs/material/.icons/material/chevron-triple-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-triple-left.svg b/docs/material/.icons/material/chevron-triple-left.svg new file mode 100644 index 000000000..d65817c94 --- /dev/null +++ b/docs/material/.icons/material/chevron-triple-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-triple-right.svg b/docs/material/.icons/material/chevron-triple-right.svg new file mode 100644 index 000000000..cbd03e7c8 --- /dev/null +++ b/docs/material/.icons/material/chevron-triple-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-triple-up.svg b/docs/material/.icons/material/chevron-triple-up.svg new file mode 100644 index 000000000..13aac9728 --- /dev/null +++ b/docs/material/.icons/material/chevron-triple-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-up-box-outline.svg b/docs/material/.icons/material/chevron-up-box-outline.svg new file mode 100644 index 000000000..d2dcae07f --- /dev/null +++ b/docs/material/.icons/material/chevron-up-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-up-box.svg b/docs/material/.icons/material/chevron-up-box.svg new file mode 100644 index 000000000..28e2e996c --- /dev/null +++ b/docs/material/.icons/material/chevron-up-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-up-circle-outline.svg b/docs/material/.icons/material/chevron-up-circle-outline.svg new file mode 100644 index 000000000..62f1d44be --- /dev/null +++ b/docs/material/.icons/material/chevron-up-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-up-circle.svg b/docs/material/.icons/material/chevron-up-circle.svg new file mode 100644 index 000000000..78f227ccc --- /dev/null +++ b/docs/material/.icons/material/chevron-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chevron-up.svg b/docs/material/.icons/material/chevron-up.svg new file mode 100644 index 000000000..6c23eaa99 --- /dev/null +++ b/docs/material/.icons/material/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chili-hot.svg b/docs/material/.icons/material/chili-hot.svg new file mode 100644 index 000000000..74f3a234b --- /dev/null +++ b/docs/material/.icons/material/chili-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chili-medium.svg b/docs/material/.icons/material/chili-medium.svg new file mode 100644 index 000000000..f371cd86e --- /dev/null +++ b/docs/material/.icons/material/chili-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chili-mild.svg b/docs/material/.icons/material/chili-mild.svg new file mode 100644 index 000000000..cd0196f2d --- /dev/null +++ b/docs/material/.icons/material/chili-mild.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/chip.svg b/docs/material/.icons/material/chip.svg new file mode 100644 index 000000000..38992b6d0 --- /dev/null +++ b/docs/material/.icons/material/chip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/christianity-outline.svg b/docs/material/.icons/material/christianity-outline.svg new file mode 100644 index 000000000..db706b5ab --- /dev/null +++ b/docs/material/.icons/material/christianity-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/christianity.svg b/docs/material/.icons/material/christianity.svg new file mode 100644 index 000000000..537d734cb --- /dev/null +++ b/docs/material/.icons/material/christianity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/church.svg b/docs/material/.icons/material/church.svg new file mode 100644 index 000000000..5229d03c1 --- /dev/null +++ b/docs/material/.icons/material/church.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cigar.svg b/docs/material/.icons/material/cigar.svg new file mode 100644 index 000000000..a22286b6f --- /dev/null +++ b/docs/material/.icons/material/cigar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-double.svg b/docs/material/.icons/material/circle-double.svg new file mode 100644 index 000000000..3b04567b8 --- /dev/null +++ b/docs/material/.icons/material/circle-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-edit-outline.svg b/docs/material/.icons/material/circle-edit-outline.svg new file mode 100644 index 000000000..fcc5afcbe --- /dev/null +++ b/docs/material/.icons/material/circle-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-expand.svg b/docs/material/.icons/material/circle-expand.svg new file mode 100644 index 000000000..15f2e2002 --- /dev/null +++ b/docs/material/.icons/material/circle-expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-half-full.svg b/docs/material/.icons/material/circle-half-full.svg new file mode 100644 index 000000000..2e77d2cc6 --- /dev/null +++ b/docs/material/.icons/material/circle-half-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-half.svg b/docs/material/.icons/material/circle-half.svg new file mode 100644 index 000000000..463d8c9fe --- /dev/null +++ b/docs/material/.icons/material/circle-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-medium.svg b/docs/material/.icons/material/circle-medium.svg new file mode 100644 index 000000000..5fb75fe39 --- /dev/null +++ b/docs/material/.icons/material/circle-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-multiple-outline.svg b/docs/material/.icons/material/circle-multiple-outline.svg new file mode 100644 index 000000000..db81061d8 --- /dev/null +++ b/docs/material/.icons/material/circle-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-multiple.svg b/docs/material/.icons/material/circle-multiple.svg new file mode 100644 index 000000000..4697d4417 --- /dev/null +++ b/docs/material/.icons/material/circle-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-off-outline.svg b/docs/material/.icons/material/circle-off-outline.svg new file mode 100644 index 000000000..f9218ebfb --- /dev/null +++ b/docs/material/.icons/material/circle-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-outline.svg b/docs/material/.icons/material/circle-outline.svg new file mode 100644 index 000000000..e986852fe --- /dev/null +++ b/docs/material/.icons/material/circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-1.svg b/docs/material/.icons/material/circle-slice-1.svg new file mode 100644 index 000000000..3e15129b0 --- /dev/null +++ b/docs/material/.icons/material/circle-slice-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-2.svg b/docs/material/.icons/material/circle-slice-2.svg new file mode 100644 index 000000000..e9d70ce64 --- /dev/null +++ b/docs/material/.icons/material/circle-slice-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-3.svg b/docs/material/.icons/material/circle-slice-3.svg new file mode 100644 index 000000000..66be5e550 --- /dev/null +++ b/docs/material/.icons/material/circle-slice-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-4.svg b/docs/material/.icons/material/circle-slice-4.svg new file mode 100644 index 000000000..95c19996c --- /dev/null +++ b/docs/material/.icons/material/circle-slice-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-5.svg b/docs/material/.icons/material/circle-slice-5.svg new file mode 100644 index 000000000..c3e8d1df2 --- /dev/null +++ b/docs/material/.icons/material/circle-slice-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-6.svg b/docs/material/.icons/material/circle-slice-6.svg new file mode 100644 index 000000000..f2a1cabb3 --- /dev/null +++ b/docs/material/.icons/material/circle-slice-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-7.svg b/docs/material/.icons/material/circle-slice-7.svg new file mode 100644 index 000000000..86e6944af --- /dev/null +++ b/docs/material/.icons/material/circle-slice-7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-slice-8.svg b/docs/material/.icons/material/circle-slice-8.svg new file mode 100644 index 000000000..abd79c920 --- /dev/null +++ b/docs/material/.icons/material/circle-slice-8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle-small.svg b/docs/material/.icons/material/circle-small.svg new file mode 100644 index 000000000..caaa2678e --- /dev/null +++ b/docs/material/.icons/material/circle-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circle.svg b/docs/material/.icons/material/circle.svg new file mode 100644 index 000000000..0f0f814e2 --- /dev/null +++ b/docs/material/.icons/material/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/circular-saw.svg b/docs/material/.icons/material/circular-saw.svg new file mode 100644 index 000000000..87ce0a503 --- /dev/null +++ b/docs/material/.icons/material/circular-saw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/city-variant-outline.svg b/docs/material/.icons/material/city-variant-outline.svg new file mode 100644 index 000000000..f2a10566a --- /dev/null +++ b/docs/material/.icons/material/city-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/city-variant.svg b/docs/material/.icons/material/city-variant.svg new file mode 100644 index 000000000..f197d0db6 --- /dev/null +++ b/docs/material/.icons/material/city-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/city.svg b/docs/material/.icons/material/city.svg new file mode 100644 index 000000000..cfaf1e0ff --- /dev/null +++ b/docs/material/.icons/material/city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-account-outline.svg b/docs/material/.icons/material/clipboard-account-outline.svg new file mode 100644 index 000000000..0f59464f3 --- /dev/null +++ b/docs/material/.icons/material/clipboard-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-account.svg b/docs/material/.icons/material/clipboard-account.svg new file mode 100644 index 000000000..5a87185c8 --- /dev/null +++ b/docs/material/.icons/material/clipboard-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-alert-outline.svg b/docs/material/.icons/material/clipboard-alert-outline.svg new file mode 100644 index 000000000..c96c04e32 --- /dev/null +++ b/docs/material/.icons/material/clipboard-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-alert.svg b/docs/material/.icons/material/clipboard-alert.svg new file mode 100644 index 000000000..f150b1c65 --- /dev/null +++ b/docs/material/.icons/material/clipboard-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-down-outline.svg b/docs/material/.icons/material/clipboard-arrow-down-outline.svg new file mode 100644 index 000000000..b38f4cc52 --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-down.svg b/docs/material/.icons/material/clipboard-arrow-down.svg new file mode 100644 index 000000000..56338439b --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-left-outline.svg b/docs/material/.icons/material/clipboard-arrow-left-outline.svg new file mode 100644 index 000000000..c24ff5737 --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-left-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-left.svg b/docs/material/.icons/material/clipboard-arrow-left.svg new file mode 100644 index 000000000..f095535f8 --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-right-outline.svg b/docs/material/.icons/material/clipboard-arrow-right-outline.svg new file mode 100644 index 000000000..a679a949f --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-right.svg b/docs/material/.icons/material/clipboard-arrow-right.svg new file mode 100644 index 000000000..ec2743032 --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-up-outline.svg b/docs/material/.icons/material/clipboard-arrow-up-outline.svg new file mode 100644 index 000000000..86185ae46 --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-arrow-up.svg b/docs/material/.icons/material/clipboard-arrow-up.svg new file mode 100644 index 000000000..f3bd24024 --- /dev/null +++ b/docs/material/.icons/material/clipboard-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-check-multiple-outline.svg b/docs/material/.icons/material/clipboard-check-multiple-outline.svg new file mode 100644 index 000000000..40f8e363e --- /dev/null +++ b/docs/material/.icons/material/clipboard-check-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-check-multiple.svg b/docs/material/.icons/material/clipboard-check-multiple.svg new file mode 100644 index 000000000..aa2c51469 --- /dev/null +++ b/docs/material/.icons/material/clipboard-check-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-check-outline.svg b/docs/material/.icons/material/clipboard-check-outline.svg new file mode 100644 index 000000000..092508fe6 --- /dev/null +++ b/docs/material/.icons/material/clipboard-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-check.svg b/docs/material/.icons/material/clipboard-check.svg new file mode 100644 index 000000000..b23250a3f --- /dev/null +++ b/docs/material/.icons/material/clipboard-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-file-outline.svg b/docs/material/.icons/material/clipboard-file-outline.svg new file mode 100644 index 000000000..dc6a49a90 --- /dev/null +++ b/docs/material/.icons/material/clipboard-file-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-file.svg b/docs/material/.icons/material/clipboard-file.svg new file mode 100644 index 000000000..cd7a2efd4 --- /dev/null +++ b/docs/material/.icons/material/clipboard-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-flow-outline.svg b/docs/material/.icons/material/clipboard-flow-outline.svg new file mode 100644 index 000000000..0bf28a4a1 --- /dev/null +++ b/docs/material/.icons/material/clipboard-flow-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-flow.svg b/docs/material/.icons/material/clipboard-flow.svg new file mode 100644 index 000000000..483552e06 --- /dev/null +++ b/docs/material/.icons/material/clipboard-flow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-list-outline.svg b/docs/material/.icons/material/clipboard-list-outline.svg new file mode 100644 index 000000000..f8df2c4a0 --- /dev/null +++ b/docs/material/.icons/material/clipboard-list-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-list.svg b/docs/material/.icons/material/clipboard-list.svg new file mode 100644 index 000000000..e74cf334c --- /dev/null +++ b/docs/material/.icons/material/clipboard-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-multiple-outline.svg b/docs/material/.icons/material/clipboard-multiple-outline.svg new file mode 100644 index 000000000..569208811 --- /dev/null +++ b/docs/material/.icons/material/clipboard-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-multiple.svg b/docs/material/.icons/material/clipboard-multiple.svg new file mode 100644 index 000000000..da2750e3e --- /dev/null +++ b/docs/material/.icons/material/clipboard-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-outline.svg b/docs/material/.icons/material/clipboard-outline.svg new file mode 100644 index 000000000..62b468b3d --- /dev/null +++ b/docs/material/.icons/material/clipboard-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-play-multiple-outline.svg b/docs/material/.icons/material/clipboard-play-multiple-outline.svg new file mode 100644 index 000000000..783d25217 --- /dev/null +++ b/docs/material/.icons/material/clipboard-play-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-play-multiple.svg b/docs/material/.icons/material/clipboard-play-multiple.svg new file mode 100644 index 000000000..7835aee84 --- /dev/null +++ b/docs/material/.icons/material/clipboard-play-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-play-outline.svg b/docs/material/.icons/material/clipboard-play-outline.svg new file mode 100644 index 000000000..b91108e18 --- /dev/null +++ b/docs/material/.icons/material/clipboard-play-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-play.svg b/docs/material/.icons/material/clipboard-play.svg new file mode 100644 index 000000000..0a0cacca5 --- /dev/null +++ b/docs/material/.icons/material/clipboard-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-plus-outline.svg b/docs/material/.icons/material/clipboard-plus-outline.svg new file mode 100644 index 000000000..10b7bc9a6 --- /dev/null +++ b/docs/material/.icons/material/clipboard-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-plus.svg b/docs/material/.icons/material/clipboard-plus.svg new file mode 100644 index 000000000..abaed68c1 --- /dev/null +++ b/docs/material/.icons/material/clipboard-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-pulse-outline.svg b/docs/material/.icons/material/clipboard-pulse-outline.svg new file mode 100644 index 000000000..9cfb2f6d1 --- /dev/null +++ b/docs/material/.icons/material/clipboard-pulse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-pulse.svg b/docs/material/.icons/material/clipboard-pulse.svg new file mode 100644 index 000000000..4e48b19f0 --- /dev/null +++ b/docs/material/.icons/material/clipboard-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-text-multiple-outline.svg b/docs/material/.icons/material/clipboard-text-multiple-outline.svg new file mode 100644 index 000000000..6fa1f9333 --- /dev/null +++ b/docs/material/.icons/material/clipboard-text-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-text-multiple.svg b/docs/material/.icons/material/clipboard-text-multiple.svg new file mode 100644 index 000000000..34f1e0c0d --- /dev/null +++ b/docs/material/.icons/material/clipboard-text-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-text-outline.svg b/docs/material/.icons/material/clipboard-text-outline.svg new file mode 100644 index 000000000..68acec280 --- /dev/null +++ b/docs/material/.icons/material/clipboard-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-text-play-outline.svg b/docs/material/.icons/material/clipboard-text-play-outline.svg new file mode 100644 index 000000000..fc215b0b5 --- /dev/null +++ b/docs/material/.icons/material/clipboard-text-play-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-text-play.svg b/docs/material/.icons/material/clipboard-text-play.svg new file mode 100644 index 000000000..53f12d78d --- /dev/null +++ b/docs/material/.icons/material/clipboard-text-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard-text.svg b/docs/material/.icons/material/clipboard-text.svg new file mode 100644 index 000000000..044a86345 --- /dev/null +++ b/docs/material/.icons/material/clipboard-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clipboard.svg b/docs/material/.icons/material/clipboard.svg new file mode 100644 index 000000000..3321a5f0f --- /dev/null +++ b/docs/material/.icons/material/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clippy.svg b/docs/material/.icons/material/clippy.svg new file mode 100644 index 000000000..7961902c7 --- /dev/null +++ b/docs/material/.icons/material/clippy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-alert-outline.svg b/docs/material/.icons/material/clock-alert-outline.svg new file mode 100644 index 000000000..959db60b1 --- /dev/null +++ b/docs/material/.icons/material/clock-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-alert.svg b/docs/material/.icons/material/clock-alert.svg new file mode 100644 index 000000000..a3bb21728 --- /dev/null +++ b/docs/material/.icons/material/clock-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-check-outline.svg b/docs/material/.icons/material/clock-check-outline.svg new file mode 100644 index 000000000..d9fbf5b6c --- /dev/null +++ b/docs/material/.icons/material/clock-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-check.svg b/docs/material/.icons/material/clock-check.svg new file mode 100644 index 000000000..1611c1efa --- /dev/null +++ b/docs/material/.icons/material/clock-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-digital.svg b/docs/material/.icons/material/clock-digital.svg new file mode 100644 index 000000000..760936d7d --- /dev/null +++ b/docs/material/.icons/material/clock-digital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-end.svg b/docs/material/.icons/material/clock-end.svg new file mode 100644 index 000000000..9c7a8b7b9 --- /dev/null +++ b/docs/material/.icons/material/clock-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-fast.svg b/docs/material/.icons/material/clock-fast.svg new file mode 100644 index 000000000..264625aa5 --- /dev/null +++ b/docs/material/.icons/material/clock-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-in.svg b/docs/material/.icons/material/clock-in.svg new file mode 100644 index 000000000..7b70f7e3f --- /dev/null +++ b/docs/material/.icons/material/clock-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-out.svg b/docs/material/.icons/material/clock-out.svg new file mode 100644 index 000000000..4f38c8f27 --- /dev/null +++ b/docs/material/.icons/material/clock-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-outline.svg b/docs/material/.icons/material/clock-outline.svg new file mode 100644 index 000000000..7c7226355 --- /dev/null +++ b/docs/material/.icons/material/clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock-start.svg b/docs/material/.icons/material/clock-start.svg new file mode 100644 index 000000000..28da38821 --- /dev/null +++ b/docs/material/.icons/material/clock-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clock.svg b/docs/material/.icons/material/clock.svg new file mode 100644 index 000000000..b44f88ae6 --- /dev/null +++ b/docs/material/.icons/material/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-box-multiple-outline.svg b/docs/material/.icons/material/close-box-multiple-outline.svg new file mode 100644 index 000000000..2c16e12a8 --- /dev/null +++ b/docs/material/.icons/material/close-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-box-multiple.svg b/docs/material/.icons/material/close-box-multiple.svg new file mode 100644 index 000000000..0b81a5972 --- /dev/null +++ b/docs/material/.icons/material/close-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-box-outline.svg b/docs/material/.icons/material/close-box-outline.svg new file mode 100644 index 000000000..0df25da89 --- /dev/null +++ b/docs/material/.icons/material/close-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-box.svg b/docs/material/.icons/material/close-box.svg new file mode 100644 index 000000000..182bb6dcb --- /dev/null +++ b/docs/material/.icons/material/close-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-circle-multiple-outline.svg b/docs/material/.icons/material/close-circle-multiple-outline.svg new file mode 100644 index 000000000..407a1996a --- /dev/null +++ b/docs/material/.icons/material/close-circle-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-circle-multiple.svg b/docs/material/.icons/material/close-circle-multiple.svg new file mode 100644 index 000000000..71cc0b859 --- /dev/null +++ b/docs/material/.icons/material/close-circle-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-circle-outline.svg b/docs/material/.icons/material/close-circle-outline.svg new file mode 100644 index 000000000..05d6f7113 --- /dev/null +++ b/docs/material/.icons/material/close-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-circle.svg b/docs/material/.icons/material/close-circle.svg new file mode 100644 index 000000000..7a6746ca4 --- /dev/null +++ b/docs/material/.icons/material/close-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-network-outline.svg b/docs/material/.icons/material/close-network-outline.svg new file mode 100644 index 000000000..292f0b2a3 --- /dev/null +++ b/docs/material/.icons/material/close-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-network.svg b/docs/material/.icons/material/close-network.svg new file mode 100644 index 000000000..d34b1f9f3 --- /dev/null +++ b/docs/material/.icons/material/close-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-octagon-outline.svg b/docs/material/.icons/material/close-octagon-outline.svg new file mode 100644 index 000000000..a705ee38c --- /dev/null +++ b/docs/material/.icons/material/close-octagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-octagon.svg b/docs/material/.icons/material/close-octagon.svg new file mode 100644 index 000000000..aa9a08f53 --- /dev/null +++ b/docs/material/.icons/material/close-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-outline.svg b/docs/material/.icons/material/close-outline.svg new file mode 100644 index 000000000..63c178409 --- /dev/null +++ b/docs/material/.icons/material/close-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close-thick.svg b/docs/material/.icons/material/close-thick.svg new file mode 100644 index 000000000..44d41fe47 --- /dev/null +++ b/docs/material/.icons/material/close-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/close.svg b/docs/material/.icons/material/close.svg new file mode 100644 index 000000000..d6d792fb0 --- /dev/null +++ b/docs/material/.icons/material/close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/closed-caption-outline.svg b/docs/material/.icons/material/closed-caption-outline.svg new file mode 100644 index 000000000..b85044d8c --- /dev/null +++ b/docs/material/.icons/material/closed-caption-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/closed-caption.svg b/docs/material/.icons/material/closed-caption.svg new file mode 100644 index 000000000..9ea3333c2 --- /dev/null +++ b/docs/material/.icons/material/closed-caption.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-alert.svg b/docs/material/.icons/material/cloud-alert.svg new file mode 100644 index 000000000..b5ff1e881 --- /dev/null +++ b/docs/material/.icons/material/cloud-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-braces.svg b/docs/material/.icons/material/cloud-braces.svg new file mode 100644 index 000000000..fe5c02c7c --- /dev/null +++ b/docs/material/.icons/material/cloud-braces.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-check-outline.svg b/docs/material/.icons/material/cloud-check-outline.svg new file mode 100644 index 000000000..9dc4b96d0 --- /dev/null +++ b/docs/material/.icons/material/cloud-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-check.svg b/docs/material/.icons/material/cloud-check.svg new file mode 100644 index 000000000..f52702b21 --- /dev/null +++ b/docs/material/.icons/material/cloud-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-circle.svg b/docs/material/.icons/material/cloud-circle.svg new file mode 100644 index 000000000..f6eab6936 --- /dev/null +++ b/docs/material/.icons/material/cloud-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-download-outline.svg b/docs/material/.icons/material/cloud-download-outline.svg new file mode 100644 index 000000000..7dc488103 --- /dev/null +++ b/docs/material/.icons/material/cloud-download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-download.svg b/docs/material/.icons/material/cloud-download.svg new file mode 100644 index 000000000..87e13fafe --- /dev/null +++ b/docs/material/.icons/material/cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-lock-outline.svg b/docs/material/.icons/material/cloud-lock-outline.svg new file mode 100644 index 000000000..446e0d510 --- /dev/null +++ b/docs/material/.icons/material/cloud-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-lock.svg b/docs/material/.icons/material/cloud-lock.svg new file mode 100644 index 000000000..532603a8a --- /dev/null +++ b/docs/material/.icons/material/cloud-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-off-outline.svg b/docs/material/.icons/material/cloud-off-outline.svg new file mode 100644 index 000000000..9cdb8180f --- /dev/null +++ b/docs/material/.icons/material/cloud-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-outline.svg b/docs/material/.icons/material/cloud-outline.svg new file mode 100644 index 000000000..3b1fcd389 --- /dev/null +++ b/docs/material/.icons/material/cloud-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-print-outline.svg b/docs/material/.icons/material/cloud-print-outline.svg new file mode 100644 index 000000000..c93c872c4 --- /dev/null +++ b/docs/material/.icons/material/cloud-print-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-print.svg b/docs/material/.icons/material/cloud-print.svg new file mode 100644 index 000000000..3f6922802 --- /dev/null +++ b/docs/material/.icons/material/cloud-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-question.svg b/docs/material/.icons/material/cloud-question.svg new file mode 100644 index 000000000..119218a42 --- /dev/null +++ b/docs/material/.icons/material/cloud-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-refresh.svg b/docs/material/.icons/material/cloud-refresh.svg new file mode 100644 index 000000000..df7f43fe3 --- /dev/null +++ b/docs/material/.icons/material/cloud-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-search-outline.svg b/docs/material/.icons/material/cloud-search-outline.svg new file mode 100644 index 000000000..ffd5887bb --- /dev/null +++ b/docs/material/.icons/material/cloud-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-search.svg b/docs/material/.icons/material/cloud-search.svg new file mode 100644 index 000000000..6f61a53d6 --- /dev/null +++ b/docs/material/.icons/material/cloud-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-sync-outline.svg b/docs/material/.icons/material/cloud-sync-outline.svg new file mode 100644 index 000000000..0c09ef8c2 --- /dev/null +++ b/docs/material/.icons/material/cloud-sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-sync.svg b/docs/material/.icons/material/cloud-sync.svg new file mode 100644 index 000000000..3e38c902c --- /dev/null +++ b/docs/material/.icons/material/cloud-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-tags.svg b/docs/material/.icons/material/cloud-tags.svg new file mode 100644 index 000000000..928219324 --- /dev/null +++ b/docs/material/.icons/material/cloud-tags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-upload-outline.svg b/docs/material/.icons/material/cloud-upload-outline.svg new file mode 100644 index 000000000..a2b946eeb --- /dev/null +++ b/docs/material/.icons/material/cloud-upload-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud-upload.svg b/docs/material/.icons/material/cloud-upload.svg new file mode 100644 index 000000000..d06549a65 --- /dev/null +++ b/docs/material/.icons/material/cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cloud.svg b/docs/material/.icons/material/cloud.svg new file mode 100644 index 000000000..ce1396e17 --- /dev/null +++ b/docs/material/.icons/material/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/clover.svg b/docs/material/.icons/material/clover.svg new file mode 100644 index 000000000..f1a696e29 --- /dev/null +++ b/docs/material/.icons/material/clover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coach-lamp.svg b/docs/material/.icons/material/coach-lamp.svg new file mode 100644 index 000000000..bc272bcd3 --- /dev/null +++ b/docs/material/.icons/material/coach-lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coat-rack.svg b/docs/material/.icons/material/coat-rack.svg new file mode 100644 index 000000000..c5df2c16b --- /dev/null +++ b/docs/material/.icons/material/coat-rack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-array.svg b/docs/material/.icons/material/code-array.svg new file mode 100644 index 000000000..2d559ac12 --- /dev/null +++ b/docs/material/.icons/material/code-array.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-braces-box.svg b/docs/material/.icons/material/code-braces-box.svg new file mode 100644 index 000000000..7c9fbee83 --- /dev/null +++ b/docs/material/.icons/material/code-braces-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-braces.svg b/docs/material/.icons/material/code-braces.svg new file mode 100644 index 000000000..0e6661c79 --- /dev/null +++ b/docs/material/.icons/material/code-braces.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-brackets.svg b/docs/material/.icons/material/code-brackets.svg new file mode 100644 index 000000000..58659528f --- /dev/null +++ b/docs/material/.icons/material/code-brackets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-equal.svg b/docs/material/.icons/material/code-equal.svg new file mode 100644 index 000000000..73d28bda8 --- /dev/null +++ b/docs/material/.icons/material/code-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-greater-than-or-equal.svg b/docs/material/.icons/material/code-greater-than-or-equal.svg new file mode 100644 index 000000000..6c23ec7ee --- /dev/null +++ b/docs/material/.icons/material/code-greater-than-or-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-greater-than.svg b/docs/material/.icons/material/code-greater-than.svg new file mode 100644 index 000000000..0b47fafb6 --- /dev/null +++ b/docs/material/.icons/material/code-greater-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-json.svg b/docs/material/.icons/material/code-json.svg new file mode 100644 index 000000000..a2147502c --- /dev/null +++ b/docs/material/.icons/material/code-json.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-less-than-or-equal.svg b/docs/material/.icons/material/code-less-than-or-equal.svg new file mode 100644 index 000000000..c5bf93bc1 --- /dev/null +++ b/docs/material/.icons/material/code-less-than-or-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-less-than.svg b/docs/material/.icons/material/code-less-than.svg new file mode 100644 index 000000000..c73b2290e --- /dev/null +++ b/docs/material/.icons/material/code-less-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-not-equal-variant.svg b/docs/material/.icons/material/code-not-equal-variant.svg new file mode 100644 index 000000000..d97231264 --- /dev/null +++ b/docs/material/.icons/material/code-not-equal-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-not-equal.svg b/docs/material/.icons/material/code-not-equal.svg new file mode 100644 index 000000000..ffde464ca --- /dev/null +++ b/docs/material/.icons/material/code-not-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-parentheses-box.svg b/docs/material/.icons/material/code-parentheses-box.svg new file mode 100644 index 000000000..42ab3d20c --- /dev/null +++ b/docs/material/.icons/material/code-parentheses-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-parentheses.svg b/docs/material/.icons/material/code-parentheses.svg new file mode 100644 index 000000000..c37eaf174 --- /dev/null +++ b/docs/material/.icons/material/code-parentheses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-string.svg b/docs/material/.icons/material/code-string.svg new file mode 100644 index 000000000..6a8d31954 --- /dev/null +++ b/docs/material/.icons/material/code-string.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-tags-check.svg b/docs/material/.icons/material/code-tags-check.svg new file mode 100644 index 000000000..44900905d --- /dev/null +++ b/docs/material/.icons/material/code-tags-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/code-tags.svg b/docs/material/.icons/material/code-tags.svg new file mode 100644 index 000000000..344e3715a --- /dev/null +++ b/docs/material/.icons/material/code-tags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/codepen.svg b/docs/material/.icons/material/codepen.svg new file mode 100644 index 000000000..acd294419 --- /dev/null +++ b/docs/material/.icons/material/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffee-maker.svg b/docs/material/.icons/material/coffee-maker.svg new file mode 100644 index 000000000..36090f798 --- /dev/null +++ b/docs/material/.icons/material/coffee-maker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffee-off-outline.svg b/docs/material/.icons/material/coffee-off-outline.svg new file mode 100644 index 000000000..221053a26 --- /dev/null +++ b/docs/material/.icons/material/coffee-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffee-off.svg b/docs/material/.icons/material/coffee-off.svg new file mode 100644 index 000000000..5b3c6682d --- /dev/null +++ b/docs/material/.icons/material/coffee-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffee-outline.svg b/docs/material/.icons/material/coffee-outline.svg new file mode 100644 index 000000000..912761536 --- /dev/null +++ b/docs/material/.icons/material/coffee-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffee-to-go-outline.svg b/docs/material/.icons/material/coffee-to-go-outline.svg new file mode 100644 index 000000000..cedf7b7de --- /dev/null +++ b/docs/material/.icons/material/coffee-to-go-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffee-to-go.svg b/docs/material/.icons/material/coffee-to-go.svg new file mode 100644 index 000000000..657e11e56 --- /dev/null +++ b/docs/material/.icons/material/coffee-to-go.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffee.svg b/docs/material/.icons/material/coffee.svg new file mode 100644 index 000000000..00ce83f5e --- /dev/null +++ b/docs/material/.icons/material/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coffin.svg b/docs/material/.icons/material/coffin.svg new file mode 100644 index 000000000..894721dc8 --- /dev/null +++ b/docs/material/.icons/material/coffin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-box.svg b/docs/material/.icons/material/cog-box.svg new file mode 100644 index 000000000..1171906c1 --- /dev/null +++ b/docs/material/.icons/material/cog-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-clockwise.svg b/docs/material/.icons/material/cog-clockwise.svg new file mode 100644 index 000000000..0a81cf1c1 --- /dev/null +++ b/docs/material/.icons/material/cog-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-counterclockwise.svg b/docs/material/.icons/material/cog-counterclockwise.svg new file mode 100644 index 000000000..b75bc9d1a --- /dev/null +++ b/docs/material/.icons/material/cog-counterclockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-off-outline.svg b/docs/material/.icons/material/cog-off-outline.svg new file mode 100644 index 000000000..7bf4481b5 --- /dev/null +++ b/docs/material/.icons/material/cog-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-off.svg b/docs/material/.icons/material/cog-off.svg new file mode 100644 index 000000000..1a621447b --- /dev/null +++ b/docs/material/.icons/material/cog-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-outline.svg b/docs/material/.icons/material/cog-outline.svg new file mode 100644 index 000000000..d09ba7341 --- /dev/null +++ b/docs/material/.icons/material/cog-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-transfer-outline.svg b/docs/material/.icons/material/cog-transfer-outline.svg new file mode 100644 index 000000000..973fec891 --- /dev/null +++ b/docs/material/.icons/material/cog-transfer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog-transfer.svg b/docs/material/.icons/material/cog-transfer.svg new file mode 100644 index 000000000..535913174 --- /dev/null +++ b/docs/material/.icons/material/cog-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cog.svg b/docs/material/.icons/material/cog.svg new file mode 100644 index 000000000..5657c3f8e --- /dev/null +++ b/docs/material/.icons/material/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cogs.svg b/docs/material/.icons/material/cogs.svg new file mode 100644 index 000000000..c4590054a --- /dev/null +++ b/docs/material/.icons/material/cogs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/collage.svg b/docs/material/.icons/material/collage.svg new file mode 100644 index 000000000..bab0f2f93 --- /dev/null +++ b/docs/material/.icons/material/collage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/collapse-all-outline.svg b/docs/material/.icons/material/collapse-all-outline.svg new file mode 100644 index 000000000..ab641059b --- /dev/null +++ b/docs/material/.icons/material/collapse-all-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/collapse-all.svg b/docs/material/.icons/material/collapse-all.svg new file mode 100644 index 000000000..bdbf23601 --- /dev/null +++ b/docs/material/.icons/material/collapse-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/color-helper.svg b/docs/material/.icons/material/color-helper.svg new file mode 100644 index 000000000..66028b36e --- /dev/null +++ b/docs/material/.icons/material/color-helper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comma-box-outline.svg b/docs/material/.icons/material/comma-box-outline.svg new file mode 100644 index 000000000..0f7491939 --- /dev/null +++ b/docs/material/.icons/material/comma-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comma-box.svg b/docs/material/.icons/material/comma-box.svg new file mode 100644 index 000000000..42a1c8433 --- /dev/null +++ b/docs/material/.icons/material/comma-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comma-circle-outline.svg b/docs/material/.icons/material/comma-circle-outline.svg new file mode 100644 index 000000000..730ced5bb --- /dev/null +++ b/docs/material/.icons/material/comma-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comma-circle.svg b/docs/material/.icons/material/comma-circle.svg new file mode 100644 index 000000000..5ee9da703 --- /dev/null +++ b/docs/material/.icons/material/comma-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comma.svg b/docs/material/.icons/material/comma.svg new file mode 100644 index 000000000..4c79c3453 --- /dev/null +++ b/docs/material/.icons/material/comma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-account-outline.svg b/docs/material/.icons/material/comment-account-outline.svg new file mode 100644 index 000000000..2b04682ae --- /dev/null +++ b/docs/material/.icons/material/comment-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-account.svg b/docs/material/.icons/material/comment-account.svg new file mode 100644 index 000000000..d77e5e1fd --- /dev/null +++ b/docs/material/.icons/material/comment-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-alert-outline.svg b/docs/material/.icons/material/comment-alert-outline.svg new file mode 100644 index 000000000..79b4cd2e1 --- /dev/null +++ b/docs/material/.icons/material/comment-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-alert.svg b/docs/material/.icons/material/comment-alert.svg new file mode 100644 index 000000000..fba28163e --- /dev/null +++ b/docs/material/.icons/material/comment-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-arrow-left-outline.svg b/docs/material/.icons/material/comment-arrow-left-outline.svg new file mode 100644 index 000000000..a888547e9 --- /dev/null +++ b/docs/material/.icons/material/comment-arrow-left-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-arrow-left.svg b/docs/material/.icons/material/comment-arrow-left.svg new file mode 100644 index 000000000..ff7c340d6 --- /dev/null +++ b/docs/material/.icons/material/comment-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-arrow-right-outline.svg b/docs/material/.icons/material/comment-arrow-right-outline.svg new file mode 100644 index 000000000..e1aedfd4f --- /dev/null +++ b/docs/material/.icons/material/comment-arrow-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-arrow-right.svg b/docs/material/.icons/material/comment-arrow-right.svg new file mode 100644 index 000000000..5d2f97883 --- /dev/null +++ b/docs/material/.icons/material/comment-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-check-outline.svg b/docs/material/.icons/material/comment-check-outline.svg new file mode 100644 index 000000000..bf3b1a951 --- /dev/null +++ b/docs/material/.icons/material/comment-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-check.svg b/docs/material/.icons/material/comment-check.svg new file mode 100644 index 000000000..5fb7e1808 --- /dev/null +++ b/docs/material/.icons/material/comment-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-edit-outline.svg b/docs/material/.icons/material/comment-edit-outline.svg new file mode 100644 index 000000000..d8b769a90 --- /dev/null +++ b/docs/material/.icons/material/comment-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-edit.svg b/docs/material/.icons/material/comment-edit.svg new file mode 100644 index 000000000..de41ccb6b --- /dev/null +++ b/docs/material/.icons/material/comment-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-eye-outline.svg b/docs/material/.icons/material/comment-eye-outline.svg new file mode 100644 index 000000000..877a36330 --- /dev/null +++ b/docs/material/.icons/material/comment-eye-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-eye.svg b/docs/material/.icons/material/comment-eye.svg new file mode 100644 index 000000000..75e428d0e --- /dev/null +++ b/docs/material/.icons/material/comment-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-multiple-outline.svg b/docs/material/.icons/material/comment-multiple-outline.svg new file mode 100644 index 000000000..d6d4b874f --- /dev/null +++ b/docs/material/.icons/material/comment-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-multiple.svg b/docs/material/.icons/material/comment-multiple.svg new file mode 100644 index 000000000..d7ede45fd --- /dev/null +++ b/docs/material/.icons/material/comment-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-outline.svg b/docs/material/.icons/material/comment-outline.svg new file mode 100644 index 000000000..edef540b3 --- /dev/null +++ b/docs/material/.icons/material/comment-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-plus-outline.svg b/docs/material/.icons/material/comment-plus-outline.svg new file mode 100644 index 000000000..53a0d8c62 --- /dev/null +++ b/docs/material/.icons/material/comment-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-plus.svg b/docs/material/.icons/material/comment-plus.svg new file mode 100644 index 000000000..0f24d9b2f --- /dev/null +++ b/docs/material/.icons/material/comment-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-processing-outline.svg b/docs/material/.icons/material/comment-processing-outline.svg new file mode 100644 index 000000000..5a805aa0b --- /dev/null +++ b/docs/material/.icons/material/comment-processing-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-processing.svg b/docs/material/.icons/material/comment-processing.svg new file mode 100644 index 000000000..78ecc8422 --- /dev/null +++ b/docs/material/.icons/material/comment-processing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-question-outline.svg b/docs/material/.icons/material/comment-question-outline.svg new file mode 100644 index 000000000..7a54acb73 --- /dev/null +++ b/docs/material/.icons/material/comment-question-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-question.svg b/docs/material/.icons/material/comment-question.svg new file mode 100644 index 000000000..f66c28c84 --- /dev/null +++ b/docs/material/.icons/material/comment-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-quote-outline.svg b/docs/material/.icons/material/comment-quote-outline.svg new file mode 100644 index 000000000..c9b87519c --- /dev/null +++ b/docs/material/.icons/material/comment-quote-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-quote.svg b/docs/material/.icons/material/comment-quote.svg new file mode 100644 index 000000000..212fc1d98 --- /dev/null +++ b/docs/material/.icons/material/comment-quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-remove-outline.svg b/docs/material/.icons/material/comment-remove-outline.svg new file mode 100644 index 000000000..2f602f1b7 --- /dev/null +++ b/docs/material/.icons/material/comment-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-remove.svg b/docs/material/.icons/material/comment-remove.svg new file mode 100644 index 000000000..175076c04 --- /dev/null +++ b/docs/material/.icons/material/comment-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-search-outline.svg b/docs/material/.icons/material/comment-search-outline.svg new file mode 100644 index 000000000..73f617072 --- /dev/null +++ b/docs/material/.icons/material/comment-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-search.svg b/docs/material/.icons/material/comment-search.svg new file mode 100644 index 000000000..ec7a40eb3 --- /dev/null +++ b/docs/material/.icons/material/comment-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-text-multiple-outline.svg b/docs/material/.icons/material/comment-text-multiple-outline.svg new file mode 100644 index 000000000..4751e4d87 --- /dev/null +++ b/docs/material/.icons/material/comment-text-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-text-multiple.svg b/docs/material/.icons/material/comment-text-multiple.svg new file mode 100644 index 000000000..5ccef3804 --- /dev/null +++ b/docs/material/.icons/material/comment-text-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-text-outline.svg b/docs/material/.icons/material/comment-text-outline.svg new file mode 100644 index 000000000..0572a92c8 --- /dev/null +++ b/docs/material/.icons/material/comment-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment-text.svg b/docs/material/.icons/material/comment-text.svg new file mode 100644 index 000000000..e8a8f4883 --- /dev/null +++ b/docs/material/.icons/material/comment-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/comment.svg b/docs/material/.icons/material/comment.svg new file mode 100644 index 000000000..3273d4b59 --- /dev/null +++ b/docs/material/.icons/material/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/compare.svg b/docs/material/.icons/material/compare.svg new file mode 100644 index 000000000..2b8375112 --- /dev/null +++ b/docs/material/.icons/material/compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/compass-off-outline.svg b/docs/material/.icons/material/compass-off-outline.svg new file mode 100644 index 000000000..087533d5c --- /dev/null +++ b/docs/material/.icons/material/compass-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/compass-off.svg b/docs/material/.icons/material/compass-off.svg new file mode 100644 index 000000000..4e1fd6dd0 --- /dev/null +++ b/docs/material/.icons/material/compass-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/compass-outline.svg b/docs/material/.icons/material/compass-outline.svg new file mode 100644 index 000000000..c3349538f --- /dev/null +++ b/docs/material/.icons/material/compass-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/compass-rose.svg b/docs/material/.icons/material/compass-rose.svg new file mode 100644 index 000000000..9cd9032bd --- /dev/null +++ b/docs/material/.icons/material/compass-rose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/compass.svg b/docs/material/.icons/material/compass.svg new file mode 100644 index 000000000..eee8f9c0b --- /dev/null +++ b/docs/material/.icons/material/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/concourse-ci.svg b/docs/material/.icons/material/concourse-ci.svg new file mode 100644 index 000000000..368e78486 --- /dev/null +++ b/docs/material/.icons/material/concourse-ci.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/console-line.svg b/docs/material/.icons/material/console-line.svg new file mode 100644 index 000000000..9c1aa3157 --- /dev/null +++ b/docs/material/.icons/material/console-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/console-network-outline.svg b/docs/material/.icons/material/console-network-outline.svg new file mode 100644 index 000000000..9f1b85379 --- /dev/null +++ b/docs/material/.icons/material/console-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/console-network.svg b/docs/material/.icons/material/console-network.svg new file mode 100644 index 000000000..657de4bda --- /dev/null +++ b/docs/material/.icons/material/console-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/console.svg b/docs/material/.icons/material/console.svg new file mode 100644 index 000000000..f2e532d28 --- /dev/null +++ b/docs/material/.icons/material/console.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/consolidate.svg b/docs/material/.icons/material/consolidate.svg new file mode 100644 index 000000000..15cca12ff --- /dev/null +++ b/docs/material/.icons/material/consolidate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contactless-payment-circle-outline.svg b/docs/material/.icons/material/contactless-payment-circle-outline.svg new file mode 100644 index 000000000..4959ce9c7 --- /dev/null +++ b/docs/material/.icons/material/contactless-payment-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contactless-payment-circle.svg b/docs/material/.icons/material/contactless-payment-circle.svg new file mode 100644 index 000000000..87c955a45 --- /dev/null +++ b/docs/material/.icons/material/contactless-payment-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contactless-payment.svg b/docs/material/.icons/material/contactless-payment.svg new file mode 100644 index 000000000..e51e1c645 --- /dev/null +++ b/docs/material/.icons/material/contactless-payment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contacts-outline.svg b/docs/material/.icons/material/contacts-outline.svg new file mode 100644 index 000000000..c9ffbe365 --- /dev/null +++ b/docs/material/.icons/material/contacts-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contacts.svg b/docs/material/.icons/material/contacts.svg new file mode 100644 index 000000000..dd04860dd --- /dev/null +++ b/docs/material/.icons/material/contacts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contain-end.svg b/docs/material/.icons/material/contain-end.svg new file mode 100644 index 000000000..c2d8e6b46 --- /dev/null +++ b/docs/material/.icons/material/contain-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contain-start.svg b/docs/material/.icons/material/contain-start.svg new file mode 100644 index 000000000..cb48a2d85 --- /dev/null +++ b/docs/material/.icons/material/contain-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contain.svg b/docs/material/.icons/material/contain.svg new file mode 100644 index 000000000..e1a318ddf --- /dev/null +++ b/docs/material/.icons/material/contain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-copy.svg b/docs/material/.icons/material/content-copy.svg new file mode 100644 index 000000000..75de8edd5 --- /dev/null +++ b/docs/material/.icons/material/content-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-cut.svg b/docs/material/.icons/material/content-cut.svg new file mode 100644 index 000000000..a8bd9eebd --- /dev/null +++ b/docs/material/.icons/material/content-cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-duplicate.svg b/docs/material/.icons/material/content-duplicate.svg new file mode 100644 index 000000000..b06933aa4 --- /dev/null +++ b/docs/material/.icons/material/content-duplicate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-paste.svg b/docs/material/.icons/material/content-paste.svg new file mode 100644 index 000000000..783f7529e --- /dev/null +++ b/docs/material/.icons/material/content-paste.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-alert-outline.svg b/docs/material/.icons/material/content-save-alert-outline.svg new file mode 100644 index 000000000..d4da4e87e --- /dev/null +++ b/docs/material/.icons/material/content-save-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-alert.svg b/docs/material/.icons/material/content-save-alert.svg new file mode 100644 index 000000000..c8bd931af --- /dev/null +++ b/docs/material/.icons/material/content-save-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-all-outline.svg b/docs/material/.icons/material/content-save-all-outline.svg new file mode 100644 index 000000000..489c9bbbb --- /dev/null +++ b/docs/material/.icons/material/content-save-all-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-all.svg b/docs/material/.icons/material/content-save-all.svg new file mode 100644 index 000000000..28decfc9a --- /dev/null +++ b/docs/material/.icons/material/content-save-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-edit-outline.svg b/docs/material/.icons/material/content-save-edit-outline.svg new file mode 100644 index 000000000..fcd0404ce --- /dev/null +++ b/docs/material/.icons/material/content-save-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-edit.svg b/docs/material/.icons/material/content-save-edit.svg new file mode 100644 index 000000000..4f85721f6 --- /dev/null +++ b/docs/material/.icons/material/content-save-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-move-outline.svg b/docs/material/.icons/material/content-save-move-outline.svg new file mode 100644 index 000000000..ffe9221a9 --- /dev/null +++ b/docs/material/.icons/material/content-save-move-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-move.svg b/docs/material/.icons/material/content-save-move.svg new file mode 100644 index 000000000..d857ab12c --- /dev/null +++ b/docs/material/.icons/material/content-save-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-outline.svg b/docs/material/.icons/material/content-save-outline.svg new file mode 100644 index 000000000..3ba1d25db --- /dev/null +++ b/docs/material/.icons/material/content-save-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-settings-outline.svg b/docs/material/.icons/material/content-save-settings-outline.svg new file mode 100644 index 000000000..fd52204cc --- /dev/null +++ b/docs/material/.icons/material/content-save-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save-settings.svg b/docs/material/.icons/material/content-save-settings.svg new file mode 100644 index 000000000..eed86436c --- /dev/null +++ b/docs/material/.icons/material/content-save-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/content-save.svg b/docs/material/.icons/material/content-save.svg new file mode 100644 index 000000000..89f20542a --- /dev/null +++ b/docs/material/.icons/material/content-save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contrast-box.svg b/docs/material/.icons/material/contrast-box.svg new file mode 100644 index 000000000..9bf4998b1 --- /dev/null +++ b/docs/material/.icons/material/contrast-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contrast-circle.svg b/docs/material/.icons/material/contrast-circle.svg new file mode 100644 index 000000000..aec5cb8f0 --- /dev/null +++ b/docs/material/.icons/material/contrast-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/contrast.svg b/docs/material/.icons/material/contrast.svg new file mode 100644 index 000000000..f3a970bf0 --- /dev/null +++ b/docs/material/.icons/material/contrast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/controller-classic-outline.svg b/docs/material/.icons/material/controller-classic-outline.svg new file mode 100644 index 000000000..4ae61402b --- /dev/null +++ b/docs/material/.icons/material/controller-classic-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/controller-classic.svg b/docs/material/.icons/material/controller-classic.svg new file mode 100644 index 000000000..abd68dfb0 --- /dev/null +++ b/docs/material/.icons/material/controller-classic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cookie.svg b/docs/material/.icons/material/cookie.svg new file mode 100644 index 000000000..654edc46f --- /dev/null +++ b/docs/material/.icons/material/cookie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/coolant-temperature.svg b/docs/material/.icons/material/coolant-temperature.svg new file mode 100644 index 000000000..67164759a --- /dev/null +++ b/docs/material/.icons/material/coolant-temperature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/copyright.svg b/docs/material/.icons/material/copyright.svg new file mode 100644 index 000000000..261950514 --- /dev/null +++ b/docs/material/.icons/material/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cordova.svg b/docs/material/.icons/material/cordova.svg new file mode 100644 index 000000000..688cc37c9 --- /dev/null +++ b/docs/material/.icons/material/cordova.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/corn-off.svg b/docs/material/.icons/material/corn-off.svg new file mode 100644 index 000000000..51c1dfb1d --- /dev/null +++ b/docs/material/.icons/material/corn-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/corn.svg b/docs/material/.icons/material/corn.svg new file mode 100644 index 000000000..9fcfd812a --- /dev/null +++ b/docs/material/.icons/material/corn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/counter.svg b/docs/material/.icons/material/counter.svg new file mode 100644 index 000000000..5634b4eb3 --- /dev/null +++ b/docs/material/.icons/material/counter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cow.svg b/docs/material/.icons/material/cow.svg new file mode 100644 index 000000000..d1844e3ea --- /dev/null +++ b/docs/material/.icons/material/cow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cpu-32-bit.svg b/docs/material/.icons/material/cpu-32-bit.svg new file mode 100644 index 000000000..839d6bbea --- /dev/null +++ b/docs/material/.icons/material/cpu-32-bit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cpu-64-bit.svg b/docs/material/.icons/material/cpu-64-bit.svg new file mode 100644 index 000000000..329e24a55 --- /dev/null +++ b/docs/material/.icons/material/cpu-64-bit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crane.svg b/docs/material/.icons/material/crane.svg new file mode 100644 index 000000000..889964ac2 --- /dev/null +++ b/docs/material/.icons/material/crane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/creation.svg b/docs/material/.icons/material/creation.svg new file mode 100644 index 000000000..2980b85b5 --- /dev/null +++ b/docs/material/.icons/material/creation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/creative-commons.svg b/docs/material/.icons/material/creative-commons.svg new file mode 100644 index 000000000..f4b26d2aa --- /dev/null +++ b/docs/material/.icons/material/creative-commons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-check-outline.svg b/docs/material/.icons/material/credit-card-check-outline.svg new file mode 100644 index 000000000..186aebcac --- /dev/null +++ b/docs/material/.icons/material/credit-card-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-check.svg b/docs/material/.icons/material/credit-card-check.svg new file mode 100644 index 000000000..5ebd36a95 --- /dev/null +++ b/docs/material/.icons/material/credit-card-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-clock-outline.svg b/docs/material/.icons/material/credit-card-clock-outline.svg new file mode 100644 index 000000000..d3b803457 --- /dev/null +++ b/docs/material/.icons/material/credit-card-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-clock.svg b/docs/material/.icons/material/credit-card-clock.svg new file mode 100644 index 000000000..91688e57d --- /dev/null +++ b/docs/material/.icons/material/credit-card-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-marker-outline.svg b/docs/material/.icons/material/credit-card-marker-outline.svg new file mode 100644 index 000000000..bb6cb8255 --- /dev/null +++ b/docs/material/.icons/material/credit-card-marker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-marker.svg b/docs/material/.icons/material/credit-card-marker.svg new file mode 100644 index 000000000..52bfcb76e --- /dev/null +++ b/docs/material/.icons/material/credit-card-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-minus-outline.svg b/docs/material/.icons/material/credit-card-minus-outline.svg new file mode 100644 index 000000000..660c2025b --- /dev/null +++ b/docs/material/.icons/material/credit-card-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-minus.svg b/docs/material/.icons/material/credit-card-minus.svg new file mode 100644 index 000000000..d8236030c --- /dev/null +++ b/docs/material/.icons/material/credit-card-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-multiple-outline.svg b/docs/material/.icons/material/credit-card-multiple-outline.svg new file mode 100644 index 000000000..00b9366fd --- /dev/null +++ b/docs/material/.icons/material/credit-card-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-multiple.svg b/docs/material/.icons/material/credit-card-multiple.svg new file mode 100644 index 000000000..dde612c9f --- /dev/null +++ b/docs/material/.icons/material/credit-card-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-off-outline.svg b/docs/material/.icons/material/credit-card-off-outline.svg new file mode 100644 index 000000000..212e4600b --- /dev/null +++ b/docs/material/.icons/material/credit-card-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-off.svg b/docs/material/.icons/material/credit-card-off.svg new file mode 100644 index 000000000..a9994dcb4 --- /dev/null +++ b/docs/material/.icons/material/credit-card-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-outline.svg b/docs/material/.icons/material/credit-card-outline.svg new file mode 100644 index 000000000..5374aa231 --- /dev/null +++ b/docs/material/.icons/material/credit-card-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-plus-outline.svg b/docs/material/.icons/material/credit-card-plus-outline.svg new file mode 100644 index 000000000..b1d512f36 --- /dev/null +++ b/docs/material/.icons/material/credit-card-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-plus.svg b/docs/material/.icons/material/credit-card-plus.svg new file mode 100644 index 000000000..876ed2759 --- /dev/null +++ b/docs/material/.icons/material/credit-card-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-refund-outline.svg b/docs/material/.icons/material/credit-card-refund-outline.svg new file mode 100644 index 000000000..3d990026b --- /dev/null +++ b/docs/material/.icons/material/credit-card-refund-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-refund.svg b/docs/material/.icons/material/credit-card-refund.svg new file mode 100644 index 000000000..81b2b649c --- /dev/null +++ b/docs/material/.icons/material/credit-card-refund.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-remove-outline.svg b/docs/material/.icons/material/credit-card-remove-outline.svg new file mode 100644 index 000000000..4d1c592e4 --- /dev/null +++ b/docs/material/.icons/material/credit-card-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-remove.svg b/docs/material/.icons/material/credit-card-remove.svg new file mode 100644 index 000000000..f80c1e763 --- /dev/null +++ b/docs/material/.icons/material/credit-card-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-scan-outline.svg b/docs/material/.icons/material/credit-card-scan-outline.svg new file mode 100644 index 000000000..c573efb9e --- /dev/null +++ b/docs/material/.icons/material/credit-card-scan-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-scan.svg b/docs/material/.icons/material/credit-card-scan.svg new file mode 100644 index 000000000..347837641 --- /dev/null +++ b/docs/material/.icons/material/credit-card-scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-settings-outline.svg b/docs/material/.icons/material/credit-card-settings-outline.svg new file mode 100644 index 000000000..d9556575f --- /dev/null +++ b/docs/material/.icons/material/credit-card-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-settings.svg b/docs/material/.icons/material/credit-card-settings.svg new file mode 100644 index 000000000..3f91768f2 --- /dev/null +++ b/docs/material/.icons/material/credit-card-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-wireless-off-outline.svg b/docs/material/.icons/material/credit-card-wireless-off-outline.svg new file mode 100644 index 000000000..9b8f9acd3 --- /dev/null +++ b/docs/material/.icons/material/credit-card-wireless-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-wireless-off.svg b/docs/material/.icons/material/credit-card-wireless-off.svg new file mode 100644 index 000000000..0a26274c2 --- /dev/null +++ b/docs/material/.icons/material/credit-card-wireless-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-wireless-outline.svg b/docs/material/.icons/material/credit-card-wireless-outline.svg new file mode 100644 index 000000000..9ac646144 --- /dev/null +++ b/docs/material/.icons/material/credit-card-wireless-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card-wireless.svg b/docs/material/.icons/material/credit-card-wireless.svg new file mode 100644 index 000000000..8257842d7 --- /dev/null +++ b/docs/material/.icons/material/credit-card-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/credit-card.svg b/docs/material/.icons/material/credit-card.svg new file mode 100644 index 000000000..52d2087da --- /dev/null +++ b/docs/material/.icons/material/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cricket.svg b/docs/material/.icons/material/cricket.svg new file mode 100644 index 000000000..7b89283ef --- /dev/null +++ b/docs/material/.icons/material/cricket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crop-free.svg b/docs/material/.icons/material/crop-free.svg new file mode 100644 index 000000000..f8bf59f91 --- /dev/null +++ b/docs/material/.icons/material/crop-free.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crop-landscape.svg b/docs/material/.icons/material/crop-landscape.svg new file mode 100644 index 000000000..4480ae5f0 --- /dev/null +++ b/docs/material/.icons/material/crop-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crop-portrait.svg b/docs/material/.icons/material/crop-portrait.svg new file mode 100644 index 000000000..171db11b8 --- /dev/null +++ b/docs/material/.icons/material/crop-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crop-rotate.svg b/docs/material/.icons/material/crop-rotate.svg new file mode 100644 index 000000000..533ad95fe --- /dev/null +++ b/docs/material/.icons/material/crop-rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crop-square.svg b/docs/material/.icons/material/crop-square.svg new file mode 100644 index 000000000..b45c7c4eb --- /dev/null +++ b/docs/material/.icons/material/crop-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crop.svg b/docs/material/.icons/material/crop.svg new file mode 100644 index 000000000..74a1ab2c2 --- /dev/null +++ b/docs/material/.icons/material/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crosshairs-gps.svg b/docs/material/.icons/material/crosshairs-gps.svg new file mode 100644 index 000000000..f4d38e32c --- /dev/null +++ b/docs/material/.icons/material/crosshairs-gps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crosshairs-off.svg b/docs/material/.icons/material/crosshairs-off.svg new file mode 100644 index 000000000..333cd317f --- /dev/null +++ b/docs/material/.icons/material/crosshairs-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crosshairs-question.svg b/docs/material/.icons/material/crosshairs-question.svg new file mode 100644 index 000000000..07cacf881 --- /dev/null +++ b/docs/material/.icons/material/crosshairs-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crosshairs.svg b/docs/material/.icons/material/crosshairs.svg new file mode 100644 index 000000000..43a3095bc --- /dev/null +++ b/docs/material/.icons/material/crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crown-outline.svg b/docs/material/.icons/material/crown-outline.svg new file mode 100644 index 000000000..6a5344008 --- /dev/null +++ b/docs/material/.icons/material/crown-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crown.svg b/docs/material/.icons/material/crown.svg new file mode 100644 index 000000000..87ef87de3 --- /dev/null +++ b/docs/material/.icons/material/crown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cryengine.svg b/docs/material/.icons/material/cryengine.svg new file mode 100644 index 000000000..44c67033f --- /dev/null +++ b/docs/material/.icons/material/cryengine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/crystal-ball.svg b/docs/material/.icons/material/crystal-ball.svg new file mode 100644 index 000000000..a564538a7 --- /dev/null +++ b/docs/material/.icons/material/crystal-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cube-outline.svg b/docs/material/.icons/material/cube-outline.svg new file mode 100644 index 000000000..9a0d5070e --- /dev/null +++ b/docs/material/.icons/material/cube-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cube-scan.svg b/docs/material/.icons/material/cube-scan.svg new file mode 100644 index 000000000..411047d81 --- /dev/null +++ b/docs/material/.icons/material/cube-scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cube-send.svg b/docs/material/.icons/material/cube-send.svg new file mode 100644 index 000000000..86c6ff638 --- /dev/null +++ b/docs/material/.icons/material/cube-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cube-unfolded.svg b/docs/material/.icons/material/cube-unfolded.svg new file mode 100644 index 000000000..d179b42e8 --- /dev/null +++ b/docs/material/.icons/material/cube-unfolded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cube.svg b/docs/material/.icons/material/cube.svg new file mode 100644 index 000000000..d05e0a1de --- /dev/null +++ b/docs/material/.icons/material/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cup-off-outline.svg b/docs/material/.icons/material/cup-off-outline.svg new file mode 100644 index 000000000..4e791265f --- /dev/null +++ b/docs/material/.icons/material/cup-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cup-off.svg b/docs/material/.icons/material/cup-off.svg new file mode 100644 index 000000000..67ed2a4f8 --- /dev/null +++ b/docs/material/.icons/material/cup-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cup-outline.svg b/docs/material/.icons/material/cup-outline.svg new file mode 100644 index 000000000..28fcff88b --- /dev/null +++ b/docs/material/.icons/material/cup-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cup-water.svg b/docs/material/.icons/material/cup-water.svg new file mode 100644 index 000000000..c1420bfe8 --- /dev/null +++ b/docs/material/.icons/material/cup-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cup.svg b/docs/material/.icons/material/cup.svg new file mode 100644 index 000000000..36f2090fe --- /dev/null +++ b/docs/material/.icons/material/cup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cupboard-outline.svg b/docs/material/.icons/material/cupboard-outline.svg new file mode 100644 index 000000000..2c25efb5c --- /dev/null +++ b/docs/material/.icons/material/cupboard-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cupboard.svg b/docs/material/.icons/material/cupboard.svg new file mode 100644 index 000000000..1ae291661 --- /dev/null +++ b/docs/material/.icons/material/cupboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cupcake.svg b/docs/material/.icons/material/cupcake.svg new file mode 100644 index 000000000..94cf8e945 --- /dev/null +++ b/docs/material/.icons/material/cupcake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/curling.svg b/docs/material/.icons/material/curling.svg new file mode 100644 index 000000000..45129fc15 --- /dev/null +++ b/docs/material/.icons/material/curling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-bdt.svg b/docs/material/.icons/material/currency-bdt.svg new file mode 100644 index 000000000..976989202 --- /dev/null +++ b/docs/material/.icons/material/currency-bdt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-brl.svg b/docs/material/.icons/material/currency-brl.svg new file mode 100644 index 000000000..bb80488ba --- /dev/null +++ b/docs/material/.icons/material/currency-brl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-btc.svg b/docs/material/.icons/material/currency-btc.svg new file mode 100644 index 000000000..ce8aaccd8 --- /dev/null +++ b/docs/material/.icons/material/currency-btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-cny.svg b/docs/material/.icons/material/currency-cny.svg new file mode 100644 index 000000000..99e0d450b --- /dev/null +++ b/docs/material/.icons/material/currency-cny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-eth.svg b/docs/material/.icons/material/currency-eth.svg new file mode 100644 index 000000000..8f047643f --- /dev/null +++ b/docs/material/.icons/material/currency-eth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-eur-off.svg b/docs/material/.icons/material/currency-eur-off.svg new file mode 100644 index 000000000..76fd16a32 --- /dev/null +++ b/docs/material/.icons/material/currency-eur-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-eur.svg b/docs/material/.icons/material/currency-eur.svg new file mode 100644 index 000000000..6116760b3 --- /dev/null +++ b/docs/material/.icons/material/currency-eur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-gbp.svg b/docs/material/.icons/material/currency-gbp.svg new file mode 100644 index 000000000..a8a89a081 --- /dev/null +++ b/docs/material/.icons/material/currency-gbp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-ils.svg b/docs/material/.icons/material/currency-ils.svg new file mode 100644 index 000000000..e16c0a7e9 --- /dev/null +++ b/docs/material/.icons/material/currency-ils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-inr.svg b/docs/material/.icons/material/currency-inr.svg new file mode 100644 index 000000000..c75a20c71 --- /dev/null +++ b/docs/material/.icons/material/currency-inr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-jpy.svg b/docs/material/.icons/material/currency-jpy.svg new file mode 100644 index 000000000..99e0d450b --- /dev/null +++ b/docs/material/.icons/material/currency-jpy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-krw.svg b/docs/material/.icons/material/currency-krw.svg new file mode 100644 index 000000000..e0f093a25 --- /dev/null +++ b/docs/material/.icons/material/currency-krw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-kzt.svg b/docs/material/.icons/material/currency-kzt.svg new file mode 100644 index 000000000..60279f602 --- /dev/null +++ b/docs/material/.icons/material/currency-kzt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-ngn.svg b/docs/material/.icons/material/currency-ngn.svg new file mode 100644 index 000000000..0ceaad214 --- /dev/null +++ b/docs/material/.icons/material/currency-ngn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-php.svg b/docs/material/.icons/material/currency-php.svg new file mode 100644 index 000000000..28244bc66 --- /dev/null +++ b/docs/material/.icons/material/currency-php.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-rial.svg b/docs/material/.icons/material/currency-rial.svg new file mode 100644 index 000000000..822f7778d --- /dev/null +++ b/docs/material/.icons/material/currency-rial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-rub.svg b/docs/material/.icons/material/currency-rub.svg new file mode 100644 index 000000000..70e29de92 --- /dev/null +++ b/docs/material/.icons/material/currency-rub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-sign.svg b/docs/material/.icons/material/currency-sign.svg new file mode 100644 index 000000000..0a96130af --- /dev/null +++ b/docs/material/.icons/material/currency-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-try.svg b/docs/material/.icons/material/currency-try.svg new file mode 100644 index 000000000..60703daf3 --- /dev/null +++ b/docs/material/.icons/material/currency-try.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-twd.svg b/docs/material/.icons/material/currency-twd.svg new file mode 100644 index 000000000..d9a924e08 --- /dev/null +++ b/docs/material/.icons/material/currency-twd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-usd-circle-outline.svg b/docs/material/.icons/material/currency-usd-circle-outline.svg new file mode 100644 index 000000000..4b950627e --- /dev/null +++ b/docs/material/.icons/material/currency-usd-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-usd-circle.svg b/docs/material/.icons/material/currency-usd-circle.svg new file mode 100644 index 000000000..42908112c --- /dev/null +++ b/docs/material/.icons/material/currency-usd-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-usd-off.svg b/docs/material/.icons/material/currency-usd-off.svg new file mode 100644 index 000000000..4cf72064e --- /dev/null +++ b/docs/material/.icons/material/currency-usd-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/currency-usd.svg b/docs/material/.icons/material/currency-usd.svg new file mode 100644 index 000000000..9ba1ef2f6 --- /dev/null +++ b/docs/material/.icons/material/currency-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/current-ac.svg b/docs/material/.icons/material/current-ac.svg new file mode 100644 index 000000000..7f2176d6c --- /dev/null +++ b/docs/material/.icons/material/current-ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/current-dc.svg b/docs/material/.icons/material/current-dc.svg new file mode 100644 index 000000000..282f6ad41 --- /dev/null +++ b/docs/material/.icons/material/current-dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-default-click-outline.svg b/docs/material/.icons/material/cursor-default-click-outline.svg new file mode 100644 index 000000000..830b25227 --- /dev/null +++ b/docs/material/.icons/material/cursor-default-click-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-default-click.svg b/docs/material/.icons/material/cursor-default-click.svg new file mode 100644 index 000000000..f9a9b91ed --- /dev/null +++ b/docs/material/.icons/material/cursor-default-click.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-default-gesture-outline.svg b/docs/material/.icons/material/cursor-default-gesture-outline.svg new file mode 100644 index 000000000..71c6564d3 --- /dev/null +++ b/docs/material/.icons/material/cursor-default-gesture-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-default-gesture.svg b/docs/material/.icons/material/cursor-default-gesture.svg new file mode 100644 index 000000000..dbc661c0b --- /dev/null +++ b/docs/material/.icons/material/cursor-default-gesture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-default-outline.svg b/docs/material/.icons/material/cursor-default-outline.svg new file mode 100644 index 000000000..49d299df5 --- /dev/null +++ b/docs/material/.icons/material/cursor-default-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-default.svg b/docs/material/.icons/material/cursor-default.svg new file mode 100644 index 000000000..03d6173a6 --- /dev/null +++ b/docs/material/.icons/material/cursor-default.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-move.svg b/docs/material/.icons/material/cursor-move.svg new file mode 100644 index 000000000..e504fed8e --- /dev/null +++ b/docs/material/.icons/material/cursor-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-pointer.svg b/docs/material/.icons/material/cursor-pointer.svg new file mode 100644 index 000000000..880edf00f --- /dev/null +++ b/docs/material/.icons/material/cursor-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/cursor-text.svg b/docs/material/.icons/material/cursor-text.svg new file mode 100644 index 000000000..def0b1519 --- /dev/null +++ b/docs/material/.icons/material/cursor-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-check.svg b/docs/material/.icons/material/database-check.svg new file mode 100644 index 000000000..f19d1c1a2 --- /dev/null +++ b/docs/material/.icons/material/database-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-edit.svg b/docs/material/.icons/material/database-edit.svg new file mode 100644 index 000000000..f44a6a3fd --- /dev/null +++ b/docs/material/.icons/material/database-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-export.svg b/docs/material/.icons/material/database-export.svg new file mode 100644 index 000000000..6cbe251fc --- /dev/null +++ b/docs/material/.icons/material/database-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-import.svg b/docs/material/.icons/material/database-import.svg new file mode 100644 index 000000000..2553eb5da --- /dev/null +++ b/docs/material/.icons/material/database-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-lock.svg b/docs/material/.icons/material/database-lock.svg new file mode 100644 index 000000000..198f32ea8 --- /dev/null +++ b/docs/material/.icons/material/database-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-marker.svg b/docs/material/.icons/material/database-marker.svg new file mode 100644 index 000000000..381279928 --- /dev/null +++ b/docs/material/.icons/material/database-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-minus.svg b/docs/material/.icons/material/database-minus.svg new file mode 100644 index 000000000..3c978f2d7 --- /dev/null +++ b/docs/material/.icons/material/database-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-plus.svg b/docs/material/.icons/material/database-plus.svg new file mode 100644 index 000000000..678f53dda --- /dev/null +++ b/docs/material/.icons/material/database-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-refresh.svg b/docs/material/.icons/material/database-refresh.svg new file mode 100644 index 000000000..98a354c72 --- /dev/null +++ b/docs/material/.icons/material/database-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-remove.svg b/docs/material/.icons/material/database-remove.svg new file mode 100644 index 000000000..9eb2a1085 --- /dev/null +++ b/docs/material/.icons/material/database-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-search.svg b/docs/material/.icons/material/database-search.svg new file mode 100644 index 000000000..71a9b9c1f --- /dev/null +++ b/docs/material/.icons/material/database-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-settings.svg b/docs/material/.icons/material/database-settings.svg new file mode 100644 index 000000000..a1f87ebe1 --- /dev/null +++ b/docs/material/.icons/material/database-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database-sync.svg b/docs/material/.icons/material/database-sync.svg new file mode 100644 index 000000000..a884c481e --- /dev/null +++ b/docs/material/.icons/material/database-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/database.svg b/docs/material/.icons/material/database.svg new file mode 100644 index 000000000..6e95c2b53 --- /dev/null +++ b/docs/material/.icons/material/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/death-star-variant.svg b/docs/material/.icons/material/death-star-variant.svg new file mode 100644 index 000000000..df045765f --- /dev/null +++ b/docs/material/.icons/material/death-star-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/death-star.svg b/docs/material/.icons/material/death-star.svg new file mode 100644 index 000000000..9c858b911 --- /dev/null +++ b/docs/material/.icons/material/death-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/deathly-hallows.svg b/docs/material/.icons/material/deathly-hallows.svg new file mode 100644 index 000000000..e5d1ab4a5 --- /dev/null +++ b/docs/material/.icons/material/deathly-hallows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/debian.svg b/docs/material/.icons/material/debian.svg new file mode 100644 index 000000000..b9d3dc137 --- /dev/null +++ b/docs/material/.icons/material/debian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/debug-step-into.svg b/docs/material/.icons/material/debug-step-into.svg new file mode 100644 index 000000000..b5ac7582e --- /dev/null +++ b/docs/material/.icons/material/debug-step-into.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/debug-step-out.svg b/docs/material/.icons/material/debug-step-out.svg new file mode 100644 index 000000000..2097480ef --- /dev/null +++ b/docs/material/.icons/material/debug-step-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/debug-step-over.svg b/docs/material/.icons/material/debug-step-over.svg new file mode 100644 index 000000000..1baf27306 --- /dev/null +++ b/docs/material/.icons/material/debug-step-over.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decagram-outline.svg b/docs/material/.icons/material/decagram-outline.svg new file mode 100644 index 000000000..c99c5263a --- /dev/null +++ b/docs/material/.icons/material/decagram-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decagram.svg b/docs/material/.icons/material/decagram.svg new file mode 100644 index 000000000..03704a899 --- /dev/null +++ b/docs/material/.icons/material/decagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decimal-comma-decrease.svg b/docs/material/.icons/material/decimal-comma-decrease.svg new file mode 100644 index 000000000..7e383abf5 --- /dev/null +++ b/docs/material/.icons/material/decimal-comma-decrease.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decimal-comma-increase.svg b/docs/material/.icons/material/decimal-comma-increase.svg new file mode 100644 index 000000000..9b78718c7 --- /dev/null +++ b/docs/material/.icons/material/decimal-comma-increase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decimal-comma.svg b/docs/material/.icons/material/decimal-comma.svg new file mode 100644 index 000000000..91751dabc --- /dev/null +++ b/docs/material/.icons/material/decimal-comma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decimal-decrease.svg b/docs/material/.icons/material/decimal-decrease.svg new file mode 100644 index 000000000..b97a963a5 --- /dev/null +++ b/docs/material/.icons/material/decimal-decrease.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decimal-increase.svg b/docs/material/.icons/material/decimal-increase.svg new file mode 100644 index 000000000..1fdc76c2d --- /dev/null +++ b/docs/material/.icons/material/decimal-increase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/decimal.svg b/docs/material/.icons/material/decimal.svg new file mode 100644 index 000000000..b233e7738 --- /dev/null +++ b/docs/material/.icons/material/decimal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-alert-outline.svg b/docs/material/.icons/material/delete-alert-outline.svg new file mode 100644 index 000000000..6e426cadc --- /dev/null +++ b/docs/material/.icons/material/delete-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-alert.svg b/docs/material/.icons/material/delete-alert.svg new file mode 100644 index 000000000..819ed06de --- /dev/null +++ b/docs/material/.icons/material/delete-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-circle-outline.svg b/docs/material/.icons/material/delete-circle-outline.svg new file mode 100644 index 000000000..6bd862bb5 --- /dev/null +++ b/docs/material/.icons/material/delete-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-circle.svg b/docs/material/.icons/material/delete-circle.svg new file mode 100644 index 000000000..65209400b --- /dev/null +++ b/docs/material/.icons/material/delete-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-empty-outline.svg b/docs/material/.icons/material/delete-empty-outline.svg new file mode 100644 index 000000000..4b42554de --- /dev/null +++ b/docs/material/.icons/material/delete-empty-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-empty.svg b/docs/material/.icons/material/delete-empty.svg new file mode 100644 index 000000000..46c813e63 --- /dev/null +++ b/docs/material/.icons/material/delete-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-forever-outline.svg b/docs/material/.icons/material/delete-forever-outline.svg new file mode 100644 index 000000000..e93b11d3d --- /dev/null +++ b/docs/material/.icons/material/delete-forever-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-forever.svg b/docs/material/.icons/material/delete-forever.svg new file mode 100644 index 000000000..7949096a9 --- /dev/null +++ b/docs/material/.icons/material/delete-forever.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-off-outline.svg b/docs/material/.icons/material/delete-off-outline.svg new file mode 100644 index 000000000..31461f00e --- /dev/null +++ b/docs/material/.icons/material/delete-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-off.svg b/docs/material/.icons/material/delete-off.svg new file mode 100644 index 000000000..e8f97bb1f --- /dev/null +++ b/docs/material/.icons/material/delete-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-outline.svg b/docs/material/.icons/material/delete-outline.svg new file mode 100644 index 000000000..760738770 --- /dev/null +++ b/docs/material/.icons/material/delete-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-restore.svg b/docs/material/.icons/material/delete-restore.svg new file mode 100644 index 000000000..be6e111d7 --- /dev/null +++ b/docs/material/.icons/material/delete-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-sweep-outline.svg b/docs/material/.icons/material/delete-sweep-outline.svg new file mode 100644 index 000000000..cbbffda29 --- /dev/null +++ b/docs/material/.icons/material/delete-sweep-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-sweep.svg b/docs/material/.icons/material/delete-sweep.svg new file mode 100644 index 000000000..ede08b5e3 --- /dev/null +++ b/docs/material/.icons/material/delete-sweep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete-variant.svg b/docs/material/.icons/material/delete-variant.svg new file mode 100644 index 000000000..65b53bd4a --- /dev/null +++ b/docs/material/.icons/material/delete-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delete.svg b/docs/material/.icons/material/delete.svg new file mode 100644 index 000000000..faf6da349 --- /dev/null +++ b/docs/material/.icons/material/delete.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/delta.svg b/docs/material/.icons/material/delta.svg new file mode 100644 index 000000000..71f40c387 --- /dev/null +++ b/docs/material/.icons/material/delta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/desk-lamp.svg b/docs/material/.icons/material/desk-lamp.svg new file mode 100644 index 000000000..47dc98285 --- /dev/null +++ b/docs/material/.icons/material/desk-lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/desk.svg b/docs/material/.icons/material/desk.svg new file mode 100644 index 000000000..542a2a398 --- /dev/null +++ b/docs/material/.icons/material/desk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/deskphone.svg b/docs/material/.icons/material/deskphone.svg new file mode 100644 index 000000000..e6d07874d --- /dev/null +++ b/docs/material/.icons/material/deskphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/desktop-classic.svg b/docs/material/.icons/material/desktop-classic.svg new file mode 100644 index 000000000..9fd4114ff --- /dev/null +++ b/docs/material/.icons/material/desktop-classic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/desktop-mac-dashboard.svg b/docs/material/.icons/material/desktop-mac-dashboard.svg new file mode 100644 index 000000000..f257e0a0e --- /dev/null +++ b/docs/material/.icons/material/desktop-mac-dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/desktop-mac.svg b/docs/material/.icons/material/desktop-mac.svg new file mode 100644 index 000000000..77f9ea65e --- /dev/null +++ b/docs/material/.icons/material/desktop-mac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/desktop-tower-monitor.svg b/docs/material/.icons/material/desktop-tower-monitor.svg new file mode 100644 index 000000000..afcbe399c --- /dev/null +++ b/docs/material/.icons/material/desktop-tower-monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/desktop-tower.svg b/docs/material/.icons/material/desktop-tower.svg new file mode 100644 index 000000000..1a7bb1314 --- /dev/null +++ b/docs/material/.icons/material/desktop-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/details.svg b/docs/material/.icons/material/details.svg new file mode 100644 index 000000000..8cc7aada8 --- /dev/null +++ b/docs/material/.icons/material/details.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dev-to.svg b/docs/material/.icons/material/dev-to.svg new file mode 100644 index 000000000..3d1d3bc0f --- /dev/null +++ b/docs/material/.icons/material/dev-to.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/developer-board.svg b/docs/material/.icons/material/developer-board.svg new file mode 100644 index 000000000..3bb851f03 --- /dev/null +++ b/docs/material/.icons/material/developer-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/deviantart.svg b/docs/material/.icons/material/deviantart.svg new file mode 100644 index 000000000..affbd3f34 --- /dev/null +++ b/docs/material/.icons/material/deviantart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/devices.svg b/docs/material/.icons/material/devices.svg new file mode 100644 index 000000000..8c9aac939 --- /dev/null +++ b/docs/material/.icons/material/devices.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diabetes.svg b/docs/material/.icons/material/diabetes.svg new file mode 100644 index 000000000..784a7fc05 --- /dev/null +++ b/docs/material/.icons/material/diabetes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dialpad.svg b/docs/material/.icons/material/dialpad.svg new file mode 100644 index 000000000..0d81834d6 --- /dev/null +++ b/docs/material/.icons/material/dialpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diameter-outline.svg b/docs/material/.icons/material/diameter-outline.svg new file mode 100644 index 000000000..3db68ade7 --- /dev/null +++ b/docs/material/.icons/material/diameter-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diameter-variant.svg b/docs/material/.icons/material/diameter-variant.svg new file mode 100644 index 000000000..25d73e4a8 --- /dev/null +++ b/docs/material/.icons/material/diameter-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diameter.svg b/docs/material/.icons/material/diameter.svg new file mode 100644 index 000000000..765970714 --- /dev/null +++ b/docs/material/.icons/material/diameter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diamond-outline.svg b/docs/material/.icons/material/diamond-outline.svg new file mode 100644 index 000000000..9eb6a1c76 --- /dev/null +++ b/docs/material/.icons/material/diamond-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diamond-stone.svg b/docs/material/.icons/material/diamond-stone.svg new file mode 100644 index 000000000..63194e7ca --- /dev/null +++ b/docs/material/.icons/material/diamond-stone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diamond.svg b/docs/material/.icons/material/diamond.svg new file mode 100644 index 000000000..bad24dda1 --- /dev/null +++ b/docs/material/.icons/material/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-1-outline.svg b/docs/material/.icons/material/dice-1-outline.svg new file mode 100644 index 000000000..c7ac00028 --- /dev/null +++ b/docs/material/.icons/material/dice-1-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-1.svg b/docs/material/.icons/material/dice-1.svg new file mode 100644 index 000000000..6c0c27772 --- /dev/null +++ b/docs/material/.icons/material/dice-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-2-outline.svg b/docs/material/.icons/material/dice-2-outline.svg new file mode 100644 index 000000000..f380554c4 --- /dev/null +++ b/docs/material/.icons/material/dice-2-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-2.svg b/docs/material/.icons/material/dice-2.svg new file mode 100644 index 000000000..ecb46a041 --- /dev/null +++ b/docs/material/.icons/material/dice-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-3-outline.svg b/docs/material/.icons/material/dice-3-outline.svg new file mode 100644 index 000000000..904d6e34f --- /dev/null +++ b/docs/material/.icons/material/dice-3-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-3.svg b/docs/material/.icons/material/dice-3.svg new file mode 100644 index 000000000..6ef345483 --- /dev/null +++ b/docs/material/.icons/material/dice-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-4-outline.svg b/docs/material/.icons/material/dice-4-outline.svg new file mode 100644 index 000000000..66cf76ac9 --- /dev/null +++ b/docs/material/.icons/material/dice-4-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-4.svg b/docs/material/.icons/material/dice-4.svg new file mode 100644 index 000000000..760cc74a5 --- /dev/null +++ b/docs/material/.icons/material/dice-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-5-outline.svg b/docs/material/.icons/material/dice-5-outline.svg new file mode 100644 index 000000000..65aeb3469 --- /dev/null +++ b/docs/material/.icons/material/dice-5-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-5.svg b/docs/material/.icons/material/dice-5.svg new file mode 100644 index 000000000..0f03c5aa3 --- /dev/null +++ b/docs/material/.icons/material/dice-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-6-outline.svg b/docs/material/.icons/material/dice-6-outline.svg new file mode 100644 index 000000000..e87d35611 --- /dev/null +++ b/docs/material/.icons/material/dice-6-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-6.svg b/docs/material/.icons/material/dice-6.svg new file mode 100644 index 000000000..f90e3104b --- /dev/null +++ b/docs/material/.icons/material/dice-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d10-outline.svg b/docs/material/.icons/material/dice-d10-outline.svg new file mode 100644 index 000000000..8055354a8 --- /dev/null +++ b/docs/material/.icons/material/dice-d10-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d10.svg b/docs/material/.icons/material/dice-d10.svg new file mode 100644 index 000000000..e5124729a --- /dev/null +++ b/docs/material/.icons/material/dice-d10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d12-outline.svg b/docs/material/.icons/material/dice-d12-outline.svg new file mode 100644 index 000000000..5e80b294a --- /dev/null +++ b/docs/material/.icons/material/dice-d12-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d12.svg b/docs/material/.icons/material/dice-d12.svg new file mode 100644 index 000000000..a496a53c4 --- /dev/null +++ b/docs/material/.icons/material/dice-d12.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d20-outline.svg b/docs/material/.icons/material/dice-d20-outline.svg new file mode 100644 index 000000000..797f4ac4f --- /dev/null +++ b/docs/material/.icons/material/dice-d20-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d20.svg b/docs/material/.icons/material/dice-d20.svg new file mode 100644 index 000000000..86012e48a --- /dev/null +++ b/docs/material/.icons/material/dice-d20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d4-outline.svg b/docs/material/.icons/material/dice-d4-outline.svg new file mode 100644 index 000000000..8434d74d3 --- /dev/null +++ b/docs/material/.icons/material/dice-d4-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d4.svg b/docs/material/.icons/material/dice-d4.svg new file mode 100644 index 000000000..2d8daa5b1 --- /dev/null +++ b/docs/material/.icons/material/dice-d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d6-outline.svg b/docs/material/.icons/material/dice-d6-outline.svg new file mode 100644 index 000000000..ace5755c6 --- /dev/null +++ b/docs/material/.icons/material/dice-d6-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d6.svg b/docs/material/.icons/material/dice-d6.svg new file mode 100644 index 000000000..cda4723d0 --- /dev/null +++ b/docs/material/.icons/material/dice-d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d8-outline.svg b/docs/material/.icons/material/dice-d8-outline.svg new file mode 100644 index 000000000..7d6f0ff7e --- /dev/null +++ b/docs/material/.icons/material/dice-d8-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-d8.svg b/docs/material/.icons/material/dice-d8.svg new file mode 100644 index 000000000..8941b25fe --- /dev/null +++ b/docs/material/.icons/material/dice-d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-multiple-outline.svg b/docs/material/.icons/material/dice-multiple-outline.svg new file mode 100644 index 000000000..5ad947a5d --- /dev/null +++ b/docs/material/.icons/material/dice-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dice-multiple.svg b/docs/material/.icons/material/dice-multiple.svg new file mode 100644 index 000000000..83d939703 --- /dev/null +++ b/docs/material/.icons/material/dice-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/digital-ocean.svg b/docs/material/.icons/material/digital-ocean.svg new file mode 100644 index 000000000..afe7c5c62 --- /dev/null +++ b/docs/material/.icons/material/digital-ocean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dip-switch.svg b/docs/material/.icons/material/dip-switch.svg new file mode 100644 index 000000000..57a9500dc --- /dev/null +++ b/docs/material/.icons/material/dip-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/directions-fork.svg b/docs/material/.icons/material/directions-fork.svg new file mode 100644 index 000000000..000fe4df2 --- /dev/null +++ b/docs/material/.icons/material/directions-fork.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/directions.svg b/docs/material/.icons/material/directions.svg new file mode 100644 index 000000000..75e7395d1 --- /dev/null +++ b/docs/material/.icons/material/directions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/disc-alert.svg b/docs/material/.icons/material/disc-alert.svg new file mode 100644 index 000000000..f03a21278 --- /dev/null +++ b/docs/material/.icons/material/disc-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/disc-player.svg b/docs/material/.icons/material/disc-player.svg new file mode 100644 index 000000000..1339e637d --- /dev/null +++ b/docs/material/.icons/material/disc-player.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/disc.svg b/docs/material/.icons/material/disc.svg new file mode 100644 index 000000000..f4355908b --- /dev/null +++ b/docs/material/.icons/material/disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/discord.svg b/docs/material/.icons/material/discord.svg new file mode 100644 index 000000000..3d84e4d6c --- /dev/null +++ b/docs/material/.icons/material/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dishwasher-alert.svg b/docs/material/.icons/material/dishwasher-alert.svg new file mode 100644 index 000000000..4d94273b0 --- /dev/null +++ b/docs/material/.icons/material/dishwasher-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dishwasher-off.svg b/docs/material/.icons/material/dishwasher-off.svg new file mode 100644 index 000000000..867e0baad --- /dev/null +++ b/docs/material/.icons/material/dishwasher-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dishwasher.svg b/docs/material/.icons/material/dishwasher.svg new file mode 100644 index 000000000..ae9e1e709 --- /dev/null +++ b/docs/material/.icons/material/dishwasher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/disqus.svg b/docs/material/.icons/material/disqus.svg new file mode 100644 index 000000000..06882678c --- /dev/null +++ b/docs/material/.icons/material/disqus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/distribute-horizontal-center.svg b/docs/material/.icons/material/distribute-horizontal-center.svg new file mode 100644 index 000000000..273f2be69 --- /dev/null +++ b/docs/material/.icons/material/distribute-horizontal-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/distribute-horizontal-left.svg b/docs/material/.icons/material/distribute-horizontal-left.svg new file mode 100644 index 000000000..795c45afa --- /dev/null +++ b/docs/material/.icons/material/distribute-horizontal-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/distribute-horizontal-right.svg b/docs/material/.icons/material/distribute-horizontal-right.svg new file mode 100644 index 000000000..292f8eb55 --- /dev/null +++ b/docs/material/.icons/material/distribute-horizontal-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/distribute-vertical-bottom.svg b/docs/material/.icons/material/distribute-vertical-bottom.svg new file mode 100644 index 000000000..1391d366f --- /dev/null +++ b/docs/material/.icons/material/distribute-vertical-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/distribute-vertical-center.svg b/docs/material/.icons/material/distribute-vertical-center.svg new file mode 100644 index 000000000..a5bb7338f --- /dev/null +++ b/docs/material/.icons/material/distribute-vertical-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/distribute-vertical-top.svg b/docs/material/.icons/material/distribute-vertical-top.svg new file mode 100644 index 000000000..d6e91f9af --- /dev/null +++ b/docs/material/.icons/material/distribute-vertical-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diving-flippers.svg b/docs/material/.icons/material/diving-flippers.svg new file mode 100644 index 000000000..6c05f5edf --- /dev/null +++ b/docs/material/.icons/material/diving-flippers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diving-helmet.svg b/docs/material/.icons/material/diving-helmet.svg new file mode 100644 index 000000000..61e8d7968 --- /dev/null +++ b/docs/material/.icons/material/diving-helmet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diving-scuba-flag.svg b/docs/material/.icons/material/diving-scuba-flag.svg new file mode 100644 index 000000000..3271f74a3 --- /dev/null +++ b/docs/material/.icons/material/diving-scuba-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diving-scuba-tank-multiple.svg b/docs/material/.icons/material/diving-scuba-tank-multiple.svg new file mode 100644 index 000000000..110c70e9d --- /dev/null +++ b/docs/material/.icons/material/diving-scuba-tank-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diving-scuba-tank.svg b/docs/material/.icons/material/diving-scuba-tank.svg new file mode 100644 index 000000000..7d8591256 --- /dev/null +++ b/docs/material/.icons/material/diving-scuba-tank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diving-scuba.svg b/docs/material/.icons/material/diving-scuba.svg new file mode 100644 index 000000000..27ddfee33 --- /dev/null +++ b/docs/material/.icons/material/diving-scuba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/diving-snorkel.svg b/docs/material/.icons/material/diving-snorkel.svg new file mode 100644 index 000000000..aa8046d79 --- /dev/null +++ b/docs/material/.icons/material/diving-snorkel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/division-box.svg b/docs/material/.icons/material/division-box.svg new file mode 100644 index 000000000..dd97a7248 --- /dev/null +++ b/docs/material/.icons/material/division-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/division.svg b/docs/material/.icons/material/division.svg new file mode 100644 index 000000000..ca1874484 --- /dev/null +++ b/docs/material/.icons/material/division.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dlna.svg b/docs/material/.icons/material/dlna.svg new file mode 100644 index 000000000..0c6bab17c --- /dev/null +++ b/docs/material/.icons/material/dlna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dna.svg b/docs/material/.icons/material/dna.svg new file mode 100644 index 000000000..b5c061350 --- /dev/null +++ b/docs/material/.icons/material/dna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dns-outline.svg b/docs/material/.icons/material/dns-outline.svg new file mode 100644 index 000000000..010ed09e3 --- /dev/null +++ b/docs/material/.icons/material/dns-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dns.svg b/docs/material/.icons/material/dns.svg new file mode 100644 index 000000000..8aa3656ba --- /dev/null +++ b/docs/material/.icons/material/dns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/do-not-disturb-off.svg b/docs/material/.icons/material/do-not-disturb-off.svg new file mode 100644 index 000000000..d1912fb37 --- /dev/null +++ b/docs/material/.icons/material/do-not-disturb-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/do-not-disturb.svg b/docs/material/.icons/material/do-not-disturb.svg new file mode 100644 index 000000000..ec8c39b49 --- /dev/null +++ b/docs/material/.icons/material/do-not-disturb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dock-bottom.svg b/docs/material/.icons/material/dock-bottom.svg new file mode 100644 index 000000000..8d64f6a0d --- /dev/null +++ b/docs/material/.icons/material/dock-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dock-left.svg b/docs/material/.icons/material/dock-left.svg new file mode 100644 index 000000000..098621c62 --- /dev/null +++ b/docs/material/.icons/material/dock-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dock-right.svg b/docs/material/.icons/material/dock-right.svg new file mode 100644 index 000000000..ceb04a1cd --- /dev/null +++ b/docs/material/.icons/material/dock-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dock-window.svg b/docs/material/.icons/material/dock-window.svg new file mode 100644 index 000000000..8c943ee44 --- /dev/null +++ b/docs/material/.icons/material/dock-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/docker.svg b/docs/material/.icons/material/docker.svg new file mode 100644 index 000000000..e0b3b8ab1 --- /dev/null +++ b/docs/material/.icons/material/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/doctor.svg b/docs/material/.icons/material/doctor.svg new file mode 100644 index 000000000..5269fa050 --- /dev/null +++ b/docs/material/.icons/material/doctor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dog-service.svg b/docs/material/.icons/material/dog-service.svg new file mode 100644 index 000000000..dd873a81f --- /dev/null +++ b/docs/material/.icons/material/dog-service.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dog-side.svg b/docs/material/.icons/material/dog-side.svg new file mode 100644 index 000000000..2016a1000 --- /dev/null +++ b/docs/material/.icons/material/dog-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dog.svg b/docs/material/.icons/material/dog.svg new file mode 100644 index 000000000..fc5cb59af --- /dev/null +++ b/docs/material/.icons/material/dog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dolby.svg b/docs/material/.icons/material/dolby.svg new file mode 100644 index 000000000..73762ca9a --- /dev/null +++ b/docs/material/.icons/material/dolby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dolly.svg b/docs/material/.icons/material/dolly.svg new file mode 100644 index 000000000..b1565ef81 --- /dev/null +++ b/docs/material/.icons/material/dolly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/domain-off.svg b/docs/material/.icons/material/domain-off.svg new file mode 100644 index 000000000..1f10fc1a9 --- /dev/null +++ b/docs/material/.icons/material/domain-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/domain-plus.svg b/docs/material/.icons/material/domain-plus.svg new file mode 100644 index 000000000..1b2871a4b --- /dev/null +++ b/docs/material/.icons/material/domain-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/domain-remove.svg b/docs/material/.icons/material/domain-remove.svg new file mode 100644 index 000000000..eb39debd4 --- /dev/null +++ b/docs/material/.icons/material/domain-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/domain.svg b/docs/material/.icons/material/domain.svg new file mode 100644 index 000000000..7d8a92f22 --- /dev/null +++ b/docs/material/.icons/material/domain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/domino-mask.svg b/docs/material/.icons/material/domino-mask.svg new file mode 100644 index 000000000..969e2844f --- /dev/null +++ b/docs/material/.icons/material/domino-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/donkey.svg b/docs/material/.icons/material/donkey.svg new file mode 100644 index 000000000..232836370 --- /dev/null +++ b/docs/material/.icons/material/donkey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/door-closed-lock.svg b/docs/material/.icons/material/door-closed-lock.svg new file mode 100644 index 000000000..0a33b125e --- /dev/null +++ b/docs/material/.icons/material/door-closed-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/door-closed.svg b/docs/material/.icons/material/door-closed.svg new file mode 100644 index 000000000..591bc7522 --- /dev/null +++ b/docs/material/.icons/material/door-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/door-open.svg b/docs/material/.icons/material/door-open.svg new file mode 100644 index 000000000..93714d8a8 --- /dev/null +++ b/docs/material/.icons/material/door-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/door.svg b/docs/material/.icons/material/door.svg new file mode 100644 index 000000000..ae3c44b5a --- /dev/null +++ b/docs/material/.icons/material/door.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/doorbell-video.svg b/docs/material/.icons/material/doorbell-video.svg new file mode 100644 index 000000000..9f55d8cfc --- /dev/null +++ b/docs/material/.icons/material/doorbell-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/doorbell.svg b/docs/material/.icons/material/doorbell.svg new file mode 100644 index 000000000..7611a15ac --- /dev/null +++ b/docs/material/.icons/material/doorbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dot-net.svg b/docs/material/.icons/material/dot-net.svg new file mode 100644 index 000000000..48af82bc4 --- /dev/null +++ b/docs/material/.icons/material/dot-net.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dots-horizontal-circle-outline.svg b/docs/material/.icons/material/dots-horizontal-circle-outline.svg new file mode 100644 index 000000000..6047d4b05 --- /dev/null +++ b/docs/material/.icons/material/dots-horizontal-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dots-horizontal-circle.svg b/docs/material/.icons/material/dots-horizontal-circle.svg new file mode 100644 index 000000000..ab0796b47 --- /dev/null +++ b/docs/material/.icons/material/dots-horizontal-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dots-horizontal.svg b/docs/material/.icons/material/dots-horizontal.svg new file mode 100644 index 000000000..12ac139cc --- /dev/null +++ b/docs/material/.icons/material/dots-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dots-vertical-circle-outline.svg b/docs/material/.icons/material/dots-vertical-circle-outline.svg new file mode 100644 index 000000000..b0cf493d8 --- /dev/null +++ b/docs/material/.icons/material/dots-vertical-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dots-vertical-circle.svg b/docs/material/.icons/material/dots-vertical-circle.svg new file mode 100644 index 000000000..ba7b8b53f --- /dev/null +++ b/docs/material/.icons/material/dots-vertical-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dots-vertical.svg b/docs/material/.icons/material/dots-vertical.svg new file mode 100644 index 000000000..a6c3d6947 --- /dev/null +++ b/docs/material/.icons/material/dots-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/douban.svg b/docs/material/.icons/material/douban.svg new file mode 100644 index 000000000..c777be882 --- /dev/null +++ b/docs/material/.icons/material/douban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-lock-outline.svg b/docs/material/.icons/material/download-lock-outline.svg new file mode 100644 index 000000000..76b5ba0d7 --- /dev/null +++ b/docs/material/.icons/material/download-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-lock.svg b/docs/material/.icons/material/download-lock.svg new file mode 100644 index 000000000..6ace43f57 --- /dev/null +++ b/docs/material/.icons/material/download-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-multiple.svg b/docs/material/.icons/material/download-multiple.svg new file mode 100644 index 000000000..3bab463ae --- /dev/null +++ b/docs/material/.icons/material/download-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-network-outline.svg b/docs/material/.icons/material/download-network-outline.svg new file mode 100644 index 000000000..6c37dbd1a --- /dev/null +++ b/docs/material/.icons/material/download-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-network.svg b/docs/material/.icons/material/download-network.svg new file mode 100644 index 000000000..5a6b46433 --- /dev/null +++ b/docs/material/.icons/material/download-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-off-outline.svg b/docs/material/.icons/material/download-off-outline.svg new file mode 100644 index 000000000..e6dd5bbd4 --- /dev/null +++ b/docs/material/.icons/material/download-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-off.svg b/docs/material/.icons/material/download-off.svg new file mode 100644 index 000000000..fb6847e37 --- /dev/null +++ b/docs/material/.icons/material/download-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download-outline.svg b/docs/material/.icons/material/download-outline.svg new file mode 100644 index 000000000..405e72eb2 --- /dev/null +++ b/docs/material/.icons/material/download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/download.svg b/docs/material/.icons/material/download.svg new file mode 100644 index 000000000..8ff54628e --- /dev/null +++ b/docs/material/.icons/material/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drag-horizontal-variant.svg b/docs/material/.icons/material/drag-horizontal-variant.svg new file mode 100644 index 000000000..96480e25f --- /dev/null +++ b/docs/material/.icons/material/drag-horizontal-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drag-horizontal.svg b/docs/material/.icons/material/drag-horizontal.svg new file mode 100644 index 000000000..77f65b8e3 --- /dev/null +++ b/docs/material/.icons/material/drag-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drag-variant.svg b/docs/material/.icons/material/drag-variant.svg new file mode 100644 index 000000000..2c9049439 --- /dev/null +++ b/docs/material/.icons/material/drag-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drag-vertical-variant.svg b/docs/material/.icons/material/drag-vertical-variant.svg new file mode 100644 index 000000000..5a98931bb --- /dev/null +++ b/docs/material/.icons/material/drag-vertical-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drag-vertical.svg b/docs/material/.icons/material/drag-vertical.svg new file mode 100644 index 000000000..0f86f74f8 --- /dev/null +++ b/docs/material/.icons/material/drag-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drag.svg b/docs/material/.icons/material/drag.svg new file mode 100644 index 000000000..1cccd3c61 --- /dev/null +++ b/docs/material/.icons/material/drag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drama-masks.svg b/docs/material/.icons/material/drama-masks.svg new file mode 100644 index 000000000..0f8aa1dff --- /dev/null +++ b/docs/material/.icons/material/drama-masks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/draw.svg b/docs/material/.icons/material/draw.svg new file mode 100644 index 000000000..6a21bc432 --- /dev/null +++ b/docs/material/.icons/material/draw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drawing-box.svg b/docs/material/.icons/material/drawing-box.svg new file mode 100644 index 000000000..c4fbb2aaa --- /dev/null +++ b/docs/material/.icons/material/drawing-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drawing.svg b/docs/material/.icons/material/drawing.svg new file mode 100644 index 000000000..a63ef74a8 --- /dev/null +++ b/docs/material/.icons/material/drawing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dresser-outline.svg b/docs/material/.icons/material/dresser-outline.svg new file mode 100644 index 000000000..8e17a2743 --- /dev/null +++ b/docs/material/.icons/material/dresser-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dresser.svg b/docs/material/.icons/material/dresser.svg new file mode 100644 index 000000000..e8d536e05 --- /dev/null +++ b/docs/material/.icons/material/dresser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drone.svg b/docs/material/.icons/material/drone.svg new file mode 100644 index 000000000..ba2fb32c8 --- /dev/null +++ b/docs/material/.icons/material/drone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dropbox.svg b/docs/material/.icons/material/dropbox.svg new file mode 100644 index 000000000..45fb05f81 --- /dev/null +++ b/docs/material/.icons/material/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/drupal.svg b/docs/material/.icons/material/drupal.svg new file mode 100644 index 000000000..50469fcc9 --- /dev/null +++ b/docs/material/.icons/material/drupal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/duck.svg b/docs/material/.icons/material/duck.svg new file mode 100644 index 000000000..01e7613c1 --- /dev/null +++ b/docs/material/.icons/material/duck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dumbbell.svg b/docs/material/.icons/material/dumbbell.svg new file mode 100644 index 000000000..9d6de780b --- /dev/null +++ b/docs/material/.icons/material/dumbbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/dump-truck.svg b/docs/material/.icons/material/dump-truck.svg new file mode 100644 index 000000000..321e4326d --- /dev/null +++ b/docs/material/.icons/material/dump-truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ear-hearing-off.svg b/docs/material/.icons/material/ear-hearing-off.svg new file mode 100644 index 000000000..24ce4373c --- /dev/null +++ b/docs/material/.icons/material/ear-hearing-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ear-hearing.svg b/docs/material/.icons/material/ear-hearing.svg new file mode 100644 index 000000000..9ef61ec58 --- /dev/null +++ b/docs/material/.icons/material/ear-hearing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-arrow-right.svg b/docs/material/.icons/material/earth-arrow-right.svg new file mode 100644 index 000000000..b9270825e --- /dev/null +++ b/docs/material/.icons/material/earth-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-box-minus.svg b/docs/material/.icons/material/earth-box-minus.svg new file mode 100644 index 000000000..20850c616 --- /dev/null +++ b/docs/material/.icons/material/earth-box-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-box-off.svg b/docs/material/.icons/material/earth-box-off.svg new file mode 100644 index 000000000..0ee8ccddd --- /dev/null +++ b/docs/material/.icons/material/earth-box-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-box-plus.svg b/docs/material/.icons/material/earth-box-plus.svg new file mode 100644 index 000000000..060d7eb89 --- /dev/null +++ b/docs/material/.icons/material/earth-box-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-box-remove.svg b/docs/material/.icons/material/earth-box-remove.svg new file mode 100644 index 000000000..b1e83390f --- /dev/null +++ b/docs/material/.icons/material/earth-box-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-box.svg b/docs/material/.icons/material/earth-box.svg new file mode 100644 index 000000000..6ab74968f --- /dev/null +++ b/docs/material/.icons/material/earth-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-minus.svg b/docs/material/.icons/material/earth-minus.svg new file mode 100644 index 000000000..001ef36e2 --- /dev/null +++ b/docs/material/.icons/material/earth-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-off.svg b/docs/material/.icons/material/earth-off.svg new file mode 100644 index 000000000..f6b1568e1 --- /dev/null +++ b/docs/material/.icons/material/earth-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-plus.svg b/docs/material/.icons/material/earth-plus.svg new file mode 100644 index 000000000..ab05a324a --- /dev/null +++ b/docs/material/.icons/material/earth-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth-remove.svg b/docs/material/.icons/material/earth-remove.svg new file mode 100644 index 000000000..c13663ad7 --- /dev/null +++ b/docs/material/.icons/material/earth-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/earth.svg b/docs/material/.icons/material/earth.svg new file mode 100644 index 000000000..980428c82 --- /dev/null +++ b/docs/material/.icons/material/earth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/egg-easter.svg b/docs/material/.icons/material/egg-easter.svg new file mode 100644 index 000000000..309956852 --- /dev/null +++ b/docs/material/.icons/material/egg-easter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/egg-off-outline.svg b/docs/material/.icons/material/egg-off-outline.svg new file mode 100644 index 000000000..2db9c1527 --- /dev/null +++ b/docs/material/.icons/material/egg-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/egg-off.svg b/docs/material/.icons/material/egg-off.svg new file mode 100644 index 000000000..02eb09b34 --- /dev/null +++ b/docs/material/.icons/material/egg-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/egg-outline.svg b/docs/material/.icons/material/egg-outline.svg new file mode 100644 index 000000000..8f498baf0 --- /dev/null +++ b/docs/material/.icons/material/egg-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/egg.svg b/docs/material/.icons/material/egg.svg new file mode 100644 index 000000000..adca6a488 --- /dev/null +++ b/docs/material/.icons/material/egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eight-track.svg b/docs/material/.icons/material/eight-track.svg new file mode 100644 index 000000000..fdb118b7e --- /dev/null +++ b/docs/material/.icons/material/eight-track.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eject-outline.svg b/docs/material/.icons/material/eject-outline.svg new file mode 100644 index 000000000..ff4691a30 --- /dev/null +++ b/docs/material/.icons/material/eject-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eject.svg b/docs/material/.icons/material/eject.svg new file mode 100644 index 000000000..5a6d681ce --- /dev/null +++ b/docs/material/.icons/material/eject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/electric-switch-closed.svg b/docs/material/.icons/material/electric-switch-closed.svg new file mode 100644 index 000000000..162a16f09 --- /dev/null +++ b/docs/material/.icons/material/electric-switch-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/electric-switch.svg b/docs/material/.icons/material/electric-switch.svg new file mode 100644 index 000000000..174995a66 --- /dev/null +++ b/docs/material/.icons/material/electric-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/electron-framework.svg b/docs/material/.icons/material/electron-framework.svg new file mode 100644 index 000000000..17aacb712 --- /dev/null +++ b/docs/material/.icons/material/electron-framework.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/elephant.svg b/docs/material/.icons/material/elephant.svg new file mode 100644 index 000000000..7b1f72f0f --- /dev/null +++ b/docs/material/.icons/material/elephant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/elevation-decline.svg b/docs/material/.icons/material/elevation-decline.svg new file mode 100644 index 000000000..08aa1937a --- /dev/null +++ b/docs/material/.icons/material/elevation-decline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/elevation-rise.svg b/docs/material/.icons/material/elevation-rise.svg new file mode 100644 index 000000000..b4dfe77b0 --- /dev/null +++ b/docs/material/.icons/material/elevation-rise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/elevator-down.svg b/docs/material/.icons/material/elevator-down.svg new file mode 100644 index 000000000..aede85f2f --- /dev/null +++ b/docs/material/.icons/material/elevator-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/elevator-passenger.svg b/docs/material/.icons/material/elevator-passenger.svg new file mode 100644 index 000000000..6931506d6 --- /dev/null +++ b/docs/material/.icons/material/elevator-passenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/elevator-up.svg b/docs/material/.icons/material/elevator-up.svg new file mode 100644 index 000000000..80b22c4a8 --- /dev/null +++ b/docs/material/.icons/material/elevator-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/elevator.svg b/docs/material/.icons/material/elevator.svg new file mode 100644 index 000000000..18dcf37c4 --- /dev/null +++ b/docs/material/.icons/material/elevator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ellipse-outline.svg b/docs/material/.icons/material/ellipse-outline.svg new file mode 100644 index 000000000..be8d4eb79 --- /dev/null +++ b/docs/material/.icons/material/ellipse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ellipse.svg b/docs/material/.icons/material/ellipse.svg new file mode 100644 index 000000000..c8ebdf80d --- /dev/null +++ b/docs/material/.icons/material/ellipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-alert-outline.svg b/docs/material/.icons/material/email-alert-outline.svg new file mode 100644 index 000000000..328e4ef59 --- /dev/null +++ b/docs/material/.icons/material/email-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-alert.svg b/docs/material/.icons/material/email-alert.svg new file mode 100644 index 000000000..714d44022 --- /dev/null +++ b/docs/material/.icons/material/email-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-box.svg b/docs/material/.icons/material/email-box.svg new file mode 100644 index 000000000..a0b0f0a39 --- /dev/null +++ b/docs/material/.icons/material/email-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-check-outline.svg b/docs/material/.icons/material/email-check-outline.svg new file mode 100644 index 000000000..41d1c475b --- /dev/null +++ b/docs/material/.icons/material/email-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-check.svg b/docs/material/.icons/material/email-check.svg new file mode 100644 index 000000000..97d99fcce --- /dev/null +++ b/docs/material/.icons/material/email-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-edit-outline.svg b/docs/material/.icons/material/email-edit-outline.svg new file mode 100644 index 000000000..3a84adee7 --- /dev/null +++ b/docs/material/.icons/material/email-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-edit.svg b/docs/material/.icons/material/email-edit.svg new file mode 100644 index 000000000..debe578ae --- /dev/null +++ b/docs/material/.icons/material/email-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-lock.svg b/docs/material/.icons/material/email-lock.svg new file mode 100644 index 000000000..420d891a4 --- /dev/null +++ b/docs/material/.icons/material/email-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-mark-as-unread.svg b/docs/material/.icons/material/email-mark-as-unread.svg new file mode 100644 index 000000000..3b56410f0 --- /dev/null +++ b/docs/material/.icons/material/email-mark-as-unread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-minus-outline.svg b/docs/material/.icons/material/email-minus-outline.svg new file mode 100644 index 000000000..737a7c1e1 --- /dev/null +++ b/docs/material/.icons/material/email-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-minus.svg b/docs/material/.icons/material/email-minus.svg new file mode 100644 index 000000000..42c605b6c --- /dev/null +++ b/docs/material/.icons/material/email-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-multiple-outline.svg b/docs/material/.icons/material/email-multiple-outline.svg new file mode 100644 index 000000000..05d1377ee --- /dev/null +++ b/docs/material/.icons/material/email-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-multiple.svg b/docs/material/.icons/material/email-multiple.svg new file mode 100644 index 000000000..183eb6128 --- /dev/null +++ b/docs/material/.icons/material/email-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-newsletter.svg b/docs/material/.icons/material/email-newsletter.svg new file mode 100644 index 000000000..d0d7bf4f6 --- /dev/null +++ b/docs/material/.icons/material/email-newsletter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-off-outline.svg b/docs/material/.icons/material/email-off-outline.svg new file mode 100644 index 000000000..e757ed3b3 --- /dev/null +++ b/docs/material/.icons/material/email-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-off.svg b/docs/material/.icons/material/email-off.svg new file mode 100644 index 000000000..d745159b9 --- /dev/null +++ b/docs/material/.icons/material/email-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-open-multiple-outline.svg b/docs/material/.icons/material/email-open-multiple-outline.svg new file mode 100644 index 000000000..41532ea07 --- /dev/null +++ b/docs/material/.icons/material/email-open-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-open-multiple.svg b/docs/material/.icons/material/email-open-multiple.svg new file mode 100644 index 000000000..46bfc0e4c --- /dev/null +++ b/docs/material/.icons/material/email-open-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-open-outline.svg b/docs/material/.icons/material/email-open-outline.svg new file mode 100644 index 000000000..79bc19aab --- /dev/null +++ b/docs/material/.icons/material/email-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-open.svg b/docs/material/.icons/material/email-open.svg new file mode 100644 index 000000000..eba2d3bb1 --- /dev/null +++ b/docs/material/.icons/material/email-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-outline.svg b/docs/material/.icons/material/email-outline.svg new file mode 100644 index 000000000..38de08065 --- /dev/null +++ b/docs/material/.icons/material/email-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-plus-outline.svg b/docs/material/.icons/material/email-plus-outline.svg new file mode 100644 index 000000000..789cce1c1 --- /dev/null +++ b/docs/material/.icons/material/email-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-plus.svg b/docs/material/.icons/material/email-plus.svg new file mode 100644 index 000000000..6e3c3573d --- /dev/null +++ b/docs/material/.icons/material/email-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-receive-outline.svg b/docs/material/.icons/material/email-receive-outline.svg new file mode 100644 index 000000000..16e7fce34 --- /dev/null +++ b/docs/material/.icons/material/email-receive-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-receive.svg b/docs/material/.icons/material/email-receive.svg new file mode 100644 index 000000000..f81b1f8fb --- /dev/null +++ b/docs/material/.icons/material/email-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-search-outline.svg b/docs/material/.icons/material/email-search-outline.svg new file mode 100644 index 000000000..9bf6533cd --- /dev/null +++ b/docs/material/.icons/material/email-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-search.svg b/docs/material/.icons/material/email-search.svg new file mode 100644 index 000000000..50c64d6e3 --- /dev/null +++ b/docs/material/.icons/material/email-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-send-outline.svg b/docs/material/.icons/material/email-send-outline.svg new file mode 100644 index 000000000..ed4d557c9 --- /dev/null +++ b/docs/material/.icons/material/email-send-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-send.svg b/docs/material/.icons/material/email-send.svg new file mode 100644 index 000000000..ca78d7f3c --- /dev/null +++ b/docs/material/.icons/material/email-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-sync-outline.svg b/docs/material/.icons/material/email-sync-outline.svg new file mode 100644 index 000000000..d7cc78764 --- /dev/null +++ b/docs/material/.icons/material/email-sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-sync.svg b/docs/material/.icons/material/email-sync.svg new file mode 100644 index 000000000..d3ec8bc49 --- /dev/null +++ b/docs/material/.icons/material/email-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email-variant.svg b/docs/material/.icons/material/email-variant.svg new file mode 100644 index 000000000..12677180b --- /dev/null +++ b/docs/material/.icons/material/email-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/email.svg b/docs/material/.icons/material/email.svg new file mode 100644 index 000000000..4f9c3de85 --- /dev/null +++ b/docs/material/.icons/material/email.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ember.svg b/docs/material/.icons/material/ember.svg new file mode 100644 index 000000000..dbff395cf --- /dev/null +++ b/docs/material/.icons/material/ember.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emby.svg b/docs/material/.icons/material/emby.svg new file mode 100644 index 000000000..3107f82eb --- /dev/null +++ b/docs/material/.icons/material/emby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-angry-outline.svg b/docs/material/.icons/material/emoticon-angry-outline.svg new file mode 100644 index 000000000..e9679ec17 --- /dev/null +++ b/docs/material/.icons/material/emoticon-angry-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-angry.svg b/docs/material/.icons/material/emoticon-angry.svg new file mode 100644 index 000000000..4d40fe8f9 --- /dev/null +++ b/docs/material/.icons/material/emoticon-angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-confused-outline.svg b/docs/material/.icons/material/emoticon-confused-outline.svg new file mode 100644 index 000000000..5c985bb0a --- /dev/null +++ b/docs/material/.icons/material/emoticon-confused-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-confused.svg b/docs/material/.icons/material/emoticon-confused.svg new file mode 100644 index 000000000..e1059cd76 --- /dev/null +++ b/docs/material/.icons/material/emoticon-confused.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-cool-outline.svg b/docs/material/.icons/material/emoticon-cool-outline.svg new file mode 100644 index 000000000..d76467fb5 --- /dev/null +++ b/docs/material/.icons/material/emoticon-cool-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-cool.svg b/docs/material/.icons/material/emoticon-cool.svg new file mode 100644 index 000000000..4250915d6 --- /dev/null +++ b/docs/material/.icons/material/emoticon-cool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-cry-outline.svg b/docs/material/.icons/material/emoticon-cry-outline.svg new file mode 100644 index 000000000..40846314f --- /dev/null +++ b/docs/material/.icons/material/emoticon-cry-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-cry.svg b/docs/material/.icons/material/emoticon-cry.svg new file mode 100644 index 000000000..d7099c89f --- /dev/null +++ b/docs/material/.icons/material/emoticon-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-dead-outline.svg b/docs/material/.icons/material/emoticon-dead-outline.svg new file mode 100644 index 000000000..32f11a2e3 --- /dev/null +++ b/docs/material/.icons/material/emoticon-dead-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-dead.svg b/docs/material/.icons/material/emoticon-dead.svg new file mode 100644 index 000000000..0ba7681c2 --- /dev/null +++ b/docs/material/.icons/material/emoticon-dead.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-devil-outline.svg b/docs/material/.icons/material/emoticon-devil-outline.svg new file mode 100644 index 000000000..e414e82bf --- /dev/null +++ b/docs/material/.icons/material/emoticon-devil-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-devil.svg b/docs/material/.icons/material/emoticon-devil.svg new file mode 100644 index 000000000..ed9a611f1 --- /dev/null +++ b/docs/material/.icons/material/emoticon-devil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-excited-outline.svg b/docs/material/.icons/material/emoticon-excited-outline.svg new file mode 100644 index 000000000..47e700398 --- /dev/null +++ b/docs/material/.icons/material/emoticon-excited-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-excited.svg b/docs/material/.icons/material/emoticon-excited.svg new file mode 100644 index 000000000..6bd1cda3b --- /dev/null +++ b/docs/material/.icons/material/emoticon-excited.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-frown-outline.svg b/docs/material/.icons/material/emoticon-frown-outline.svg new file mode 100644 index 000000000..34ca565c9 --- /dev/null +++ b/docs/material/.icons/material/emoticon-frown-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-frown.svg b/docs/material/.icons/material/emoticon-frown.svg new file mode 100644 index 000000000..cb0c9bef7 --- /dev/null +++ b/docs/material/.icons/material/emoticon-frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-happy-outline.svg b/docs/material/.icons/material/emoticon-happy-outline.svg new file mode 100644 index 000000000..ea37ea4a3 --- /dev/null +++ b/docs/material/.icons/material/emoticon-happy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-happy.svg b/docs/material/.icons/material/emoticon-happy.svg new file mode 100644 index 000000000..f1eccf2bb --- /dev/null +++ b/docs/material/.icons/material/emoticon-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-kiss-outline.svg b/docs/material/.icons/material/emoticon-kiss-outline.svg new file mode 100644 index 000000000..8fba79aac --- /dev/null +++ b/docs/material/.icons/material/emoticon-kiss-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-kiss.svg b/docs/material/.icons/material/emoticon-kiss.svg new file mode 100644 index 000000000..191a2646a --- /dev/null +++ b/docs/material/.icons/material/emoticon-kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-lol-outline.svg b/docs/material/.icons/material/emoticon-lol-outline.svg new file mode 100644 index 000000000..75cb97d6d --- /dev/null +++ b/docs/material/.icons/material/emoticon-lol-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-lol.svg b/docs/material/.icons/material/emoticon-lol.svg new file mode 100644 index 000000000..74f0377c9 --- /dev/null +++ b/docs/material/.icons/material/emoticon-lol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-neutral-outline.svg b/docs/material/.icons/material/emoticon-neutral-outline.svg new file mode 100644 index 000000000..dfac891bf --- /dev/null +++ b/docs/material/.icons/material/emoticon-neutral-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-neutral.svg b/docs/material/.icons/material/emoticon-neutral.svg new file mode 100644 index 000000000..1ab3b226c --- /dev/null +++ b/docs/material/.icons/material/emoticon-neutral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-outline.svg b/docs/material/.icons/material/emoticon-outline.svg new file mode 100644 index 000000000..d3df3801b --- /dev/null +++ b/docs/material/.icons/material/emoticon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-poop-outline.svg b/docs/material/.icons/material/emoticon-poop-outline.svg new file mode 100644 index 000000000..07a3bd82c --- /dev/null +++ b/docs/material/.icons/material/emoticon-poop-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-poop.svg b/docs/material/.icons/material/emoticon-poop.svg new file mode 100644 index 000000000..78eef4d37 --- /dev/null +++ b/docs/material/.icons/material/emoticon-poop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-sad-outline.svg b/docs/material/.icons/material/emoticon-sad-outline.svg new file mode 100644 index 000000000..866081ce1 --- /dev/null +++ b/docs/material/.icons/material/emoticon-sad-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-sad.svg b/docs/material/.icons/material/emoticon-sad.svg new file mode 100644 index 000000000..096284ac3 --- /dev/null +++ b/docs/material/.icons/material/emoticon-sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-tongue-outline.svg b/docs/material/.icons/material/emoticon-tongue-outline.svg new file mode 100644 index 000000000..1d5c4877d --- /dev/null +++ b/docs/material/.icons/material/emoticon-tongue-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-tongue.svg b/docs/material/.icons/material/emoticon-tongue.svg new file mode 100644 index 000000000..2feb136f8 --- /dev/null +++ b/docs/material/.icons/material/emoticon-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-wink-outline.svg b/docs/material/.icons/material/emoticon-wink-outline.svg new file mode 100644 index 000000000..23d63bdc9 --- /dev/null +++ b/docs/material/.icons/material/emoticon-wink-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon-wink.svg b/docs/material/.icons/material/emoticon-wink.svg new file mode 100644 index 000000000..146e74f92 --- /dev/null +++ b/docs/material/.icons/material/emoticon-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/emoticon.svg b/docs/material/.icons/material/emoticon.svg new file mode 100644 index 000000000..8caf7f445 --- /dev/null +++ b/docs/material/.icons/material/emoticon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/engine-off-outline.svg b/docs/material/.icons/material/engine-off-outline.svg new file mode 100644 index 000000000..95d64f2d8 --- /dev/null +++ b/docs/material/.icons/material/engine-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/engine-off.svg b/docs/material/.icons/material/engine-off.svg new file mode 100644 index 000000000..dfbf382d9 --- /dev/null +++ b/docs/material/.icons/material/engine-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/engine-outline.svg b/docs/material/.icons/material/engine-outline.svg new file mode 100644 index 000000000..a844b7250 --- /dev/null +++ b/docs/material/.icons/material/engine-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/engine.svg b/docs/material/.icons/material/engine.svg new file mode 100644 index 000000000..e84116f8c --- /dev/null +++ b/docs/material/.icons/material/engine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/epsilon.svg b/docs/material/.icons/material/epsilon.svg new file mode 100644 index 000000000..d2664d67d --- /dev/null +++ b/docs/material/.icons/material/epsilon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/equal-box.svg b/docs/material/.icons/material/equal-box.svg new file mode 100644 index 000000000..b4668c399 --- /dev/null +++ b/docs/material/.icons/material/equal-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/equal.svg b/docs/material/.icons/material/equal.svg new file mode 100644 index 000000000..ddc310647 --- /dev/null +++ b/docs/material/.icons/material/equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/equalizer-outline.svg b/docs/material/.icons/material/equalizer-outline.svg new file mode 100644 index 000000000..8da8d0a21 --- /dev/null +++ b/docs/material/.icons/material/equalizer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/equalizer.svg b/docs/material/.icons/material/equalizer.svg new file mode 100644 index 000000000..4d5b9a8de --- /dev/null +++ b/docs/material/.icons/material/equalizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eraser-variant.svg b/docs/material/.icons/material/eraser-variant.svg new file mode 100644 index 000000000..10fd341e3 --- /dev/null +++ b/docs/material/.icons/material/eraser-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eraser.svg b/docs/material/.icons/material/eraser.svg new file mode 100644 index 000000000..0cd034b92 --- /dev/null +++ b/docs/material/.icons/material/eraser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/escalator-box.svg b/docs/material/.icons/material/escalator-box.svg new file mode 100644 index 000000000..387a78e1c --- /dev/null +++ b/docs/material/.icons/material/escalator-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/escalator-down.svg b/docs/material/.icons/material/escalator-down.svg new file mode 100644 index 000000000..ab76d97c9 --- /dev/null +++ b/docs/material/.icons/material/escalator-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/escalator-up.svg b/docs/material/.icons/material/escalator-up.svg new file mode 100644 index 000000000..c11144044 --- /dev/null +++ b/docs/material/.icons/material/escalator-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/escalator.svg b/docs/material/.icons/material/escalator.svg new file mode 100644 index 000000000..fe35fc109 --- /dev/null +++ b/docs/material/.icons/material/escalator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eslint.svg b/docs/material/.icons/material/eslint.svg new file mode 100644 index 000000000..31113a4ff --- /dev/null +++ b/docs/material/.icons/material/eslint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/et.svg b/docs/material/.icons/material/et.svg new file mode 100644 index 000000000..635c48cf6 --- /dev/null +++ b/docs/material/.icons/material/et.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ethereum.svg b/docs/material/.icons/material/ethereum.svg new file mode 100644 index 000000000..2b928366c --- /dev/null +++ b/docs/material/.icons/material/ethereum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ethernet-cable-off.svg b/docs/material/.icons/material/ethernet-cable-off.svg new file mode 100644 index 000000000..fd615e1fe --- /dev/null +++ b/docs/material/.icons/material/ethernet-cable-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ethernet-cable.svg b/docs/material/.icons/material/ethernet-cable.svg new file mode 100644 index 000000000..4f58688c7 --- /dev/null +++ b/docs/material/.icons/material/ethernet-cable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ethernet.svg b/docs/material/.icons/material/ethernet.svg new file mode 100644 index 000000000..5302c27a6 --- /dev/null +++ b/docs/material/.icons/material/ethernet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ev-station.svg b/docs/material/.icons/material/ev-station.svg new file mode 100644 index 000000000..b3d8d503d --- /dev/null +++ b/docs/material/.icons/material/ev-station.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/evernote.svg b/docs/material/.icons/material/evernote.svg new file mode 100644 index 000000000..d554945cf --- /dev/null +++ b/docs/material/.icons/material/evernote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/excavator.svg b/docs/material/.icons/material/excavator.svg new file mode 100644 index 000000000..57425f074 --- /dev/null +++ b/docs/material/.icons/material/excavator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/exclamation-thick.svg b/docs/material/.icons/material/exclamation-thick.svg new file mode 100644 index 000000000..9dcfb0945 --- /dev/null +++ b/docs/material/.icons/material/exclamation-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/exclamation.svg b/docs/material/.icons/material/exclamation.svg new file mode 100644 index 000000000..8288f1bb7 --- /dev/null +++ b/docs/material/.icons/material/exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/exit-run.svg b/docs/material/.icons/material/exit-run.svg new file mode 100644 index 000000000..827a353db --- /dev/null +++ b/docs/material/.icons/material/exit-run.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/exit-to-app.svg b/docs/material/.icons/material/exit-to-app.svg new file mode 100644 index 000000000..f81474153 --- /dev/null +++ b/docs/material/.icons/material/exit-to-app.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/expand-all-outline.svg b/docs/material/.icons/material/expand-all-outline.svg new file mode 100644 index 000000000..840d64528 --- /dev/null +++ b/docs/material/.icons/material/expand-all-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/expand-all.svg b/docs/material/.icons/material/expand-all.svg new file mode 100644 index 000000000..0681d162e --- /dev/null +++ b/docs/material/.icons/material/expand-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/expansion-card-variant.svg b/docs/material/.icons/material/expansion-card-variant.svg new file mode 100644 index 000000000..eb006bc33 --- /dev/null +++ b/docs/material/.icons/material/expansion-card-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/expansion-card.svg b/docs/material/.icons/material/expansion-card.svg new file mode 100644 index 000000000..3ddf4651e --- /dev/null +++ b/docs/material/.icons/material/expansion-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/exponent-box.svg b/docs/material/.icons/material/exponent-box.svg new file mode 100644 index 000000000..e5020b3bd --- /dev/null +++ b/docs/material/.icons/material/exponent-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/exponent.svg b/docs/material/.icons/material/exponent.svg new file mode 100644 index 000000000..11dc82d31 --- /dev/null +++ b/docs/material/.icons/material/exponent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/export-variant.svg b/docs/material/.icons/material/export-variant.svg new file mode 100644 index 000000000..329005401 --- /dev/null +++ b/docs/material/.icons/material/export-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/export.svg b/docs/material/.icons/material/export.svg new file mode 100644 index 000000000..735d4150d --- /dev/null +++ b/docs/material/.icons/material/export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-check-outline.svg b/docs/material/.icons/material/eye-check-outline.svg new file mode 100644 index 000000000..af1cd83ee --- /dev/null +++ b/docs/material/.icons/material/eye-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-check.svg b/docs/material/.icons/material/eye-check.svg new file mode 100644 index 000000000..1a4c799da --- /dev/null +++ b/docs/material/.icons/material/eye-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-circle-outline.svg b/docs/material/.icons/material/eye-circle-outline.svg new file mode 100644 index 000000000..85dd38291 --- /dev/null +++ b/docs/material/.icons/material/eye-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-circle.svg b/docs/material/.icons/material/eye-circle.svg new file mode 100644 index 000000000..3549f0211 --- /dev/null +++ b/docs/material/.icons/material/eye-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-minus-outline.svg b/docs/material/.icons/material/eye-minus-outline.svg new file mode 100644 index 000000000..640633fce --- /dev/null +++ b/docs/material/.icons/material/eye-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-minus.svg b/docs/material/.icons/material/eye-minus.svg new file mode 100644 index 000000000..71e1bfbb5 --- /dev/null +++ b/docs/material/.icons/material/eye-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-off-outline.svg b/docs/material/.icons/material/eye-off-outline.svg new file mode 100644 index 000000000..9319b4e00 --- /dev/null +++ b/docs/material/.icons/material/eye-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-off.svg b/docs/material/.icons/material/eye-off.svg new file mode 100644 index 000000000..80e9a2db8 --- /dev/null +++ b/docs/material/.icons/material/eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-outline.svg b/docs/material/.icons/material/eye-outline.svg new file mode 100644 index 000000000..b29990707 --- /dev/null +++ b/docs/material/.icons/material/eye-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-plus-outline.svg b/docs/material/.icons/material/eye-plus-outline.svg new file mode 100644 index 000000000..e0e0273ab --- /dev/null +++ b/docs/material/.icons/material/eye-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-plus.svg b/docs/material/.icons/material/eye-plus.svg new file mode 100644 index 000000000..a26eddb6b --- /dev/null +++ b/docs/material/.icons/material/eye-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-settings-outline.svg b/docs/material/.icons/material/eye-settings-outline.svg new file mode 100644 index 000000000..ae8c0f936 --- /dev/null +++ b/docs/material/.icons/material/eye-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye-settings.svg b/docs/material/.icons/material/eye-settings.svg new file mode 100644 index 000000000..6a0cbb695 --- /dev/null +++ b/docs/material/.icons/material/eye-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eye.svg b/docs/material/.icons/material/eye.svg new file mode 100644 index 000000000..5c8f02a0e --- /dev/null +++ b/docs/material/.icons/material/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eyedropper-minus.svg b/docs/material/.icons/material/eyedropper-minus.svg new file mode 100644 index 000000000..2b61cc86b --- /dev/null +++ b/docs/material/.icons/material/eyedropper-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eyedropper-off.svg b/docs/material/.icons/material/eyedropper-off.svg new file mode 100644 index 000000000..5e4fdc81f --- /dev/null +++ b/docs/material/.icons/material/eyedropper-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eyedropper-plus.svg b/docs/material/.icons/material/eyedropper-plus.svg new file mode 100644 index 000000000..004e24ec3 --- /dev/null +++ b/docs/material/.icons/material/eyedropper-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eyedropper-remove.svg b/docs/material/.icons/material/eyedropper-remove.svg new file mode 100644 index 000000000..24bbfc501 --- /dev/null +++ b/docs/material/.icons/material/eyedropper-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eyedropper-variant.svg b/docs/material/.icons/material/eyedropper-variant.svg new file mode 100644 index 000000000..51973c4d5 --- /dev/null +++ b/docs/material/.icons/material/eyedropper-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/eyedropper.svg b/docs/material/.icons/material/eyedropper.svg new file mode 100644 index 000000000..31680d066 --- /dev/null +++ b/docs/material/.icons/material/eyedropper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face-agent.svg b/docs/material/.icons/material/face-agent.svg new file mode 100644 index 000000000..c1a420f19 --- /dev/null +++ b/docs/material/.icons/material/face-agent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face-outline.svg b/docs/material/.icons/material/face-outline.svg new file mode 100644 index 000000000..32fb8fea5 --- /dev/null +++ b/docs/material/.icons/material/face-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face-profile-woman.svg b/docs/material/.icons/material/face-profile-woman.svg new file mode 100644 index 000000000..4f2362ba3 --- /dev/null +++ b/docs/material/.icons/material/face-profile-woman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face-profile.svg b/docs/material/.icons/material/face-profile.svg new file mode 100644 index 000000000..c351f2c1c --- /dev/null +++ b/docs/material/.icons/material/face-profile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face-recognition.svg b/docs/material/.icons/material/face-recognition.svg new file mode 100644 index 000000000..ead35f76e --- /dev/null +++ b/docs/material/.icons/material/face-recognition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face-woman-outline.svg b/docs/material/.icons/material/face-woman-outline.svg new file mode 100644 index 000000000..feea3ce27 --- /dev/null +++ b/docs/material/.icons/material/face-woman-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face-woman.svg b/docs/material/.icons/material/face-woman.svg new file mode 100644 index 000000000..5de191e15 --- /dev/null +++ b/docs/material/.icons/material/face-woman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/face.svg b/docs/material/.icons/material/face.svg new file mode 100644 index 000000000..f1f825268 --- /dev/null +++ b/docs/material/.icons/material/face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/facebook-messenger.svg b/docs/material/.icons/material/facebook-messenger.svg new file mode 100644 index 000000000..98c39c941 --- /dev/null +++ b/docs/material/.icons/material/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/facebook-workplace.svg b/docs/material/.icons/material/facebook-workplace.svg new file mode 100644 index 000000000..c1104eeaa --- /dev/null +++ b/docs/material/.icons/material/facebook-workplace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/facebook.svg b/docs/material/.icons/material/facebook.svg new file mode 100644 index 000000000..710064051 --- /dev/null +++ b/docs/material/.icons/material/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/factory.svg b/docs/material/.icons/material/factory.svg new file mode 100644 index 000000000..a455ca64d --- /dev/null +++ b/docs/material/.icons/material/factory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fan-off.svg b/docs/material/.icons/material/fan-off.svg new file mode 100644 index 000000000..c12b0584f --- /dev/null +++ b/docs/material/.icons/material/fan-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fan.svg b/docs/material/.icons/material/fan.svg new file mode 100644 index 000000000..35374cb28 --- /dev/null +++ b/docs/material/.icons/material/fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fast-forward-10.svg b/docs/material/.icons/material/fast-forward-10.svg new file mode 100644 index 000000000..95413f320 --- /dev/null +++ b/docs/material/.icons/material/fast-forward-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fast-forward-30.svg b/docs/material/.icons/material/fast-forward-30.svg new file mode 100644 index 000000000..6fed60a9f --- /dev/null +++ b/docs/material/.icons/material/fast-forward-30.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fast-forward-5.svg b/docs/material/.icons/material/fast-forward-5.svg new file mode 100644 index 000000000..8654742fb --- /dev/null +++ b/docs/material/.icons/material/fast-forward-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fast-forward-outline.svg b/docs/material/.icons/material/fast-forward-outline.svg new file mode 100644 index 000000000..e690ddb40 --- /dev/null +++ b/docs/material/.icons/material/fast-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fast-forward.svg b/docs/material/.icons/material/fast-forward.svg new file mode 100644 index 000000000..75f453146 --- /dev/null +++ b/docs/material/.icons/material/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fax.svg b/docs/material/.icons/material/fax.svg new file mode 100644 index 000000000..4dcdf0076 --- /dev/null +++ b/docs/material/.icons/material/fax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/feather.svg b/docs/material/.icons/material/feather.svg new file mode 100644 index 000000000..b86c5ba13 --- /dev/null +++ b/docs/material/.icons/material/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/feature-search-outline.svg b/docs/material/.icons/material/feature-search-outline.svg new file mode 100644 index 000000000..412fe16c1 --- /dev/null +++ b/docs/material/.icons/material/feature-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/feature-search.svg b/docs/material/.icons/material/feature-search.svg new file mode 100644 index 000000000..79b0943be --- /dev/null +++ b/docs/material/.icons/material/feature-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fedora.svg b/docs/material/.icons/material/fedora.svg new file mode 100644 index 000000000..08854fc84 --- /dev/null +++ b/docs/material/.icons/material/fedora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ferris-wheel.svg b/docs/material/.icons/material/ferris-wheel.svg new file mode 100644 index 000000000..5c039d2ae --- /dev/null +++ b/docs/material/.icons/material/ferris-wheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ferry.svg b/docs/material/.icons/material/ferry.svg new file mode 100644 index 000000000..924fff580 --- /dev/null +++ b/docs/material/.icons/material/ferry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-account-outline.svg b/docs/material/.icons/material/file-account-outline.svg new file mode 100644 index 000000000..921f00f74 --- /dev/null +++ b/docs/material/.icons/material/file-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-account.svg b/docs/material/.icons/material/file-account.svg new file mode 100644 index 000000000..c4ada31f6 --- /dev/null +++ b/docs/material/.icons/material/file-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-alert-outline.svg b/docs/material/.icons/material/file-alert-outline.svg new file mode 100644 index 000000000..c57706255 --- /dev/null +++ b/docs/material/.icons/material/file-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-alert.svg b/docs/material/.icons/material/file-alert.svg new file mode 100644 index 000000000..11ecbcdcf --- /dev/null +++ b/docs/material/.icons/material/file-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cabinet.svg b/docs/material/.icons/material/file-cabinet.svg new file mode 100644 index 000000000..0aa9d95ba --- /dev/null +++ b/docs/material/.icons/material/file-cabinet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cad-box.svg b/docs/material/.icons/material/file-cad-box.svg new file mode 100644 index 000000000..682ab45d9 --- /dev/null +++ b/docs/material/.icons/material/file-cad-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cad.svg b/docs/material/.icons/material/file-cad.svg new file mode 100644 index 000000000..fa0034de3 --- /dev/null +++ b/docs/material/.icons/material/file-cad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cancel-outline.svg b/docs/material/.icons/material/file-cancel-outline.svg new file mode 100644 index 000000000..dbe2ab9a2 --- /dev/null +++ b/docs/material/.icons/material/file-cancel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cancel.svg b/docs/material/.icons/material/file-cancel.svg new file mode 100644 index 000000000..0b0f10fe4 --- /dev/null +++ b/docs/material/.icons/material/file-cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-certificate-outline.svg b/docs/material/.icons/material/file-certificate-outline.svg new file mode 100644 index 000000000..9ff256778 --- /dev/null +++ b/docs/material/.icons/material/file-certificate-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-certificate.svg b/docs/material/.icons/material/file-certificate.svg new file mode 100644 index 000000000..cb053d74f --- /dev/null +++ b/docs/material/.icons/material/file-certificate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-chart-outline.svg b/docs/material/.icons/material/file-chart-outline.svg new file mode 100644 index 000000000..38e3caf3d --- /dev/null +++ b/docs/material/.icons/material/file-chart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-chart.svg b/docs/material/.icons/material/file-chart.svg new file mode 100644 index 000000000..825c164dd --- /dev/null +++ b/docs/material/.icons/material/file-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-check-outline.svg b/docs/material/.icons/material/file-check-outline.svg new file mode 100644 index 000000000..c349b9f02 --- /dev/null +++ b/docs/material/.icons/material/file-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-check.svg b/docs/material/.icons/material/file-check.svg new file mode 100644 index 000000000..a665ba96c --- /dev/null +++ b/docs/material/.icons/material/file-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-clock-outline.svg b/docs/material/.icons/material/file-clock-outline.svg new file mode 100644 index 000000000..aba8d1f68 --- /dev/null +++ b/docs/material/.icons/material/file-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-clock.svg b/docs/material/.icons/material/file-clock.svg new file mode 100644 index 000000000..6c445657d --- /dev/null +++ b/docs/material/.icons/material/file-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cloud-outline.svg b/docs/material/.icons/material/file-cloud-outline.svg new file mode 100644 index 000000000..37e462aad --- /dev/null +++ b/docs/material/.icons/material/file-cloud-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cloud.svg b/docs/material/.icons/material/file-cloud.svg new file mode 100644 index 000000000..5a4d0bb8a --- /dev/null +++ b/docs/material/.icons/material/file-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-code-outline.svg b/docs/material/.icons/material/file-code-outline.svg new file mode 100644 index 000000000..834b14865 --- /dev/null +++ b/docs/material/.icons/material/file-code-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-code.svg b/docs/material/.icons/material/file-code.svg new file mode 100644 index 000000000..48237d6b8 --- /dev/null +++ b/docs/material/.icons/material/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cog-outline.svg b/docs/material/.icons/material/file-cog-outline.svg new file mode 100644 index 000000000..76c81deff --- /dev/null +++ b/docs/material/.icons/material/file-cog-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-cog.svg b/docs/material/.icons/material/file-cog.svg new file mode 100644 index 000000000..a4bd9fb93 --- /dev/null +++ b/docs/material/.icons/material/file-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-compare.svg b/docs/material/.icons/material/file-compare.svg new file mode 100644 index 000000000..a01878b5d --- /dev/null +++ b/docs/material/.icons/material/file-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-delimited-outline.svg b/docs/material/.icons/material/file-delimited-outline.svg new file mode 100644 index 000000000..9972dc9cd --- /dev/null +++ b/docs/material/.icons/material/file-delimited-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-delimited.svg b/docs/material/.icons/material/file-delimited.svg new file mode 100644 index 000000000..e3a94bc6f --- /dev/null +++ b/docs/material/.icons/material/file-delimited.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-document-edit-outline.svg b/docs/material/.icons/material/file-document-edit-outline.svg new file mode 100644 index 000000000..2ed6d7f79 --- /dev/null +++ b/docs/material/.icons/material/file-document-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-document-edit.svg b/docs/material/.icons/material/file-document-edit.svg new file mode 100644 index 000000000..0a6ce0ed9 --- /dev/null +++ b/docs/material/.icons/material/file-document-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-document-outline.svg b/docs/material/.icons/material/file-document-outline.svg new file mode 100644 index 000000000..7da78b247 --- /dev/null +++ b/docs/material/.icons/material/file-document-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-document.svg b/docs/material/.icons/material/file-document.svg new file mode 100644 index 000000000..86b0320ad --- /dev/null +++ b/docs/material/.icons/material/file-document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-download-outline.svg b/docs/material/.icons/material/file-download-outline.svg new file mode 100644 index 000000000..43833cb74 --- /dev/null +++ b/docs/material/.icons/material/file-download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-download.svg b/docs/material/.icons/material/file-download.svg new file mode 100644 index 000000000..870d667b9 --- /dev/null +++ b/docs/material/.icons/material/file-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-edit-outline.svg b/docs/material/.icons/material/file-edit-outline.svg new file mode 100644 index 000000000..fdf3ce902 --- /dev/null +++ b/docs/material/.icons/material/file-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-edit.svg b/docs/material/.icons/material/file-edit.svg new file mode 100644 index 000000000..3846090a3 --- /dev/null +++ b/docs/material/.icons/material/file-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-excel-box-outline.svg b/docs/material/.icons/material/file-excel-box-outline.svg new file mode 100644 index 000000000..cbc2b512f --- /dev/null +++ b/docs/material/.icons/material/file-excel-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-excel-box.svg b/docs/material/.icons/material/file-excel-box.svg new file mode 100644 index 000000000..d88ec1482 --- /dev/null +++ b/docs/material/.icons/material/file-excel-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-excel-outline.svg b/docs/material/.icons/material/file-excel-outline.svg new file mode 100644 index 000000000..329a5be61 --- /dev/null +++ b/docs/material/.icons/material/file-excel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-excel.svg b/docs/material/.icons/material/file-excel.svg new file mode 100644 index 000000000..12bc77343 --- /dev/null +++ b/docs/material/.icons/material/file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-export-outline.svg b/docs/material/.icons/material/file-export-outline.svg new file mode 100644 index 000000000..3206bf61a --- /dev/null +++ b/docs/material/.icons/material/file-export-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-export.svg b/docs/material/.icons/material/file-export.svg new file mode 100644 index 000000000..09dbb20da --- /dev/null +++ b/docs/material/.icons/material/file-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-eye-outline.svg b/docs/material/.icons/material/file-eye-outline.svg new file mode 100644 index 000000000..e11e421d7 --- /dev/null +++ b/docs/material/.icons/material/file-eye-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-eye.svg b/docs/material/.icons/material/file-eye.svg new file mode 100644 index 000000000..1a40e1b93 --- /dev/null +++ b/docs/material/.icons/material/file-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-find-outline.svg b/docs/material/.icons/material/file-find-outline.svg new file mode 100644 index 000000000..f6f608e23 --- /dev/null +++ b/docs/material/.icons/material/file-find-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-find.svg b/docs/material/.icons/material/file-find.svg new file mode 100644 index 000000000..d52ca3116 --- /dev/null +++ b/docs/material/.icons/material/file-find.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-hidden.svg b/docs/material/.icons/material/file-hidden.svg new file mode 100644 index 000000000..93e068215 --- /dev/null +++ b/docs/material/.icons/material/file-hidden.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-image-outline.svg b/docs/material/.icons/material/file-image-outline.svg new file mode 100644 index 000000000..a70e0683d --- /dev/null +++ b/docs/material/.icons/material/file-image-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-image.svg b/docs/material/.icons/material/file-image.svg new file mode 100644 index 000000000..0ac1bda09 --- /dev/null +++ b/docs/material/.icons/material/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-import-outline.svg b/docs/material/.icons/material/file-import-outline.svg new file mode 100644 index 000000000..6b86de935 --- /dev/null +++ b/docs/material/.icons/material/file-import-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-import.svg b/docs/material/.icons/material/file-import.svg new file mode 100644 index 000000000..05338b807 --- /dev/null +++ b/docs/material/.icons/material/file-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-key-outline.svg b/docs/material/.icons/material/file-key-outline.svg new file mode 100644 index 000000000..fd49da16b --- /dev/null +++ b/docs/material/.icons/material/file-key-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-key.svg b/docs/material/.icons/material/file-key.svg new file mode 100644 index 000000000..3d5a314b8 --- /dev/null +++ b/docs/material/.icons/material/file-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-link-outline.svg b/docs/material/.icons/material/file-link-outline.svg new file mode 100644 index 000000000..8bff7c89a --- /dev/null +++ b/docs/material/.icons/material/file-link-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-link.svg b/docs/material/.icons/material/file-link.svg new file mode 100644 index 000000000..20ee84c8f --- /dev/null +++ b/docs/material/.icons/material/file-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-lock-outline.svg b/docs/material/.icons/material/file-lock-outline.svg new file mode 100644 index 000000000..15a020fb6 --- /dev/null +++ b/docs/material/.icons/material/file-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-lock.svg b/docs/material/.icons/material/file-lock.svg new file mode 100644 index 000000000..fa4b42d3c --- /dev/null +++ b/docs/material/.icons/material/file-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-move-outline.svg b/docs/material/.icons/material/file-move-outline.svg new file mode 100644 index 000000000..c5fa8fecc --- /dev/null +++ b/docs/material/.icons/material/file-move-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-move.svg b/docs/material/.icons/material/file-move.svg new file mode 100644 index 000000000..037cf5f73 --- /dev/null +++ b/docs/material/.icons/material/file-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-multiple-outline.svg b/docs/material/.icons/material/file-multiple-outline.svg new file mode 100644 index 000000000..0b3860f0b --- /dev/null +++ b/docs/material/.icons/material/file-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-multiple.svg b/docs/material/.icons/material/file-multiple.svg new file mode 100644 index 000000000..3a950233c --- /dev/null +++ b/docs/material/.icons/material/file-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-music-outline.svg b/docs/material/.icons/material/file-music-outline.svg new file mode 100644 index 000000000..bfdf751b1 --- /dev/null +++ b/docs/material/.icons/material/file-music-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-music.svg b/docs/material/.icons/material/file-music.svg new file mode 100644 index 000000000..c677c283e --- /dev/null +++ b/docs/material/.icons/material/file-music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-outline.svg b/docs/material/.icons/material/file-outline.svg new file mode 100644 index 000000000..dce81c85a --- /dev/null +++ b/docs/material/.icons/material/file-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-pdf-box-outline.svg b/docs/material/.icons/material/file-pdf-box-outline.svg new file mode 100644 index 000000000..3da5ad502 --- /dev/null +++ b/docs/material/.icons/material/file-pdf-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-pdf-box.svg b/docs/material/.icons/material/file-pdf-box.svg new file mode 100644 index 000000000..77de5b82b --- /dev/null +++ b/docs/material/.icons/material/file-pdf-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-pdf-outline.svg b/docs/material/.icons/material/file-pdf-outline.svg new file mode 100644 index 000000000..114197d3a --- /dev/null +++ b/docs/material/.icons/material/file-pdf-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-pdf.svg b/docs/material/.icons/material/file-pdf.svg new file mode 100644 index 000000000..4240e2711 --- /dev/null +++ b/docs/material/.icons/material/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-percent-outline.svg b/docs/material/.icons/material/file-percent-outline.svg new file mode 100644 index 000000000..b7d6cfd42 --- /dev/null +++ b/docs/material/.icons/material/file-percent-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-percent.svg b/docs/material/.icons/material/file-percent.svg new file mode 100644 index 000000000..1b2db9fd0 --- /dev/null +++ b/docs/material/.icons/material/file-percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-phone-outline.svg b/docs/material/.icons/material/file-phone-outline.svg new file mode 100644 index 000000000..864846f41 --- /dev/null +++ b/docs/material/.icons/material/file-phone-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-phone.svg b/docs/material/.icons/material/file-phone.svg new file mode 100644 index 000000000..3ed8d7162 --- /dev/null +++ b/docs/material/.icons/material/file-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-plus-outline.svg b/docs/material/.icons/material/file-plus-outline.svg new file mode 100644 index 000000000..481f5d1ee --- /dev/null +++ b/docs/material/.icons/material/file-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-plus.svg b/docs/material/.icons/material/file-plus.svg new file mode 100644 index 000000000..6d7fa4b3b --- /dev/null +++ b/docs/material/.icons/material/file-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-powerpoint-box-outline.svg b/docs/material/.icons/material/file-powerpoint-box-outline.svg new file mode 100644 index 000000000..674a94dba --- /dev/null +++ b/docs/material/.icons/material/file-powerpoint-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-powerpoint-box.svg b/docs/material/.icons/material/file-powerpoint-box.svg new file mode 100644 index 000000000..3417ae658 --- /dev/null +++ b/docs/material/.icons/material/file-powerpoint-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-powerpoint-outline.svg b/docs/material/.icons/material/file-powerpoint-outline.svg new file mode 100644 index 000000000..6890f2d26 --- /dev/null +++ b/docs/material/.icons/material/file-powerpoint-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-powerpoint.svg b/docs/material/.icons/material/file-powerpoint.svg new file mode 100644 index 000000000..aa8361cc6 --- /dev/null +++ b/docs/material/.icons/material/file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-presentation-box.svg b/docs/material/.icons/material/file-presentation-box.svg new file mode 100644 index 000000000..3b61eb7be --- /dev/null +++ b/docs/material/.icons/material/file-presentation-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-question-outline.svg b/docs/material/.icons/material/file-question-outline.svg new file mode 100644 index 000000000..f23a02d6b --- /dev/null +++ b/docs/material/.icons/material/file-question-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-question.svg b/docs/material/.icons/material/file-question.svg new file mode 100644 index 000000000..36001e6b0 --- /dev/null +++ b/docs/material/.icons/material/file-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-refresh-outline.svg b/docs/material/.icons/material/file-refresh-outline.svg new file mode 100644 index 000000000..c464cf4d3 --- /dev/null +++ b/docs/material/.icons/material/file-refresh-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-refresh.svg b/docs/material/.icons/material/file-refresh.svg new file mode 100644 index 000000000..8efdd602e --- /dev/null +++ b/docs/material/.icons/material/file-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-remove-outline.svg b/docs/material/.icons/material/file-remove-outline.svg new file mode 100644 index 000000000..f25f58243 --- /dev/null +++ b/docs/material/.icons/material/file-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-remove.svg b/docs/material/.icons/material/file-remove.svg new file mode 100644 index 000000000..4bc0651e6 --- /dev/null +++ b/docs/material/.icons/material/file-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-replace-outline.svg b/docs/material/.icons/material/file-replace-outline.svg new file mode 100644 index 000000000..6a67c6004 --- /dev/null +++ b/docs/material/.icons/material/file-replace-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-replace.svg b/docs/material/.icons/material/file-replace.svg new file mode 100644 index 000000000..c15df9361 --- /dev/null +++ b/docs/material/.icons/material/file-replace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-restore-outline.svg b/docs/material/.icons/material/file-restore-outline.svg new file mode 100644 index 000000000..a453fd175 --- /dev/null +++ b/docs/material/.icons/material/file-restore-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-restore.svg b/docs/material/.icons/material/file-restore.svg new file mode 100644 index 000000000..305d2762e --- /dev/null +++ b/docs/material/.icons/material/file-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-search-outline.svg b/docs/material/.icons/material/file-search-outline.svg new file mode 100644 index 000000000..9362e12ea --- /dev/null +++ b/docs/material/.icons/material/file-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-search.svg b/docs/material/.icons/material/file-search.svg new file mode 100644 index 000000000..eae2c7d83 --- /dev/null +++ b/docs/material/.icons/material/file-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-send-outline.svg b/docs/material/.icons/material/file-send-outline.svg new file mode 100644 index 000000000..5f7a0e104 --- /dev/null +++ b/docs/material/.icons/material/file-send-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-send.svg b/docs/material/.icons/material/file-send.svg new file mode 100644 index 000000000..90a412d24 --- /dev/null +++ b/docs/material/.icons/material/file-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-settings-outline.svg b/docs/material/.icons/material/file-settings-outline.svg new file mode 100644 index 000000000..e5581c5e3 --- /dev/null +++ b/docs/material/.icons/material/file-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-settings.svg b/docs/material/.icons/material/file-settings.svg new file mode 100644 index 000000000..adeea637c --- /dev/null +++ b/docs/material/.icons/material/file-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-star-outline.svg b/docs/material/.icons/material/file-star-outline.svg new file mode 100644 index 000000000..f3423d5bd --- /dev/null +++ b/docs/material/.icons/material/file-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-star.svg b/docs/material/.icons/material/file-star.svg new file mode 100644 index 000000000..a78675802 --- /dev/null +++ b/docs/material/.icons/material/file-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-swap-outline.svg b/docs/material/.icons/material/file-swap-outline.svg new file mode 100644 index 000000000..bcdda41c4 --- /dev/null +++ b/docs/material/.icons/material/file-swap-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-swap.svg b/docs/material/.icons/material/file-swap.svg new file mode 100644 index 000000000..03c67055e --- /dev/null +++ b/docs/material/.icons/material/file-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-sync-outline.svg b/docs/material/.icons/material/file-sync-outline.svg new file mode 100644 index 000000000..c874f1101 --- /dev/null +++ b/docs/material/.icons/material/file-sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-sync.svg b/docs/material/.icons/material/file-sync.svg new file mode 100644 index 000000000..798c39133 --- /dev/null +++ b/docs/material/.icons/material/file-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-table-box-multiple-outline.svg b/docs/material/.icons/material/file-table-box-multiple-outline.svg new file mode 100644 index 000000000..fe6d347db --- /dev/null +++ b/docs/material/.icons/material/file-table-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-table-box-multiple.svg b/docs/material/.icons/material/file-table-box-multiple.svg new file mode 100644 index 000000000..092ebca06 --- /dev/null +++ b/docs/material/.icons/material/file-table-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-table-box-outline.svg b/docs/material/.icons/material/file-table-box-outline.svg new file mode 100644 index 000000000..4b25c10bb --- /dev/null +++ b/docs/material/.icons/material/file-table-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-table-box.svg b/docs/material/.icons/material/file-table-box.svg new file mode 100644 index 000000000..9736d0aa3 --- /dev/null +++ b/docs/material/.icons/material/file-table-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-table-outline.svg b/docs/material/.icons/material/file-table-outline.svg new file mode 100644 index 000000000..3f253f870 --- /dev/null +++ b/docs/material/.icons/material/file-table-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-table.svg b/docs/material/.icons/material/file-table.svg new file mode 100644 index 000000000..bf71b14af --- /dev/null +++ b/docs/material/.icons/material/file-table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-tree-outline.svg b/docs/material/.icons/material/file-tree-outline.svg new file mode 100644 index 000000000..0e15430f9 --- /dev/null +++ b/docs/material/.icons/material/file-tree-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-tree.svg b/docs/material/.icons/material/file-tree.svg new file mode 100644 index 000000000..c637d71f1 --- /dev/null +++ b/docs/material/.icons/material/file-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-undo-outline.svg b/docs/material/.icons/material/file-undo-outline.svg new file mode 100644 index 000000000..b6fcae8e0 --- /dev/null +++ b/docs/material/.icons/material/file-undo-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-undo.svg b/docs/material/.icons/material/file-undo.svg new file mode 100644 index 000000000..86f1ffaae --- /dev/null +++ b/docs/material/.icons/material/file-undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-upload-outline.svg b/docs/material/.icons/material/file-upload-outline.svg new file mode 100644 index 000000000..61ba39f76 --- /dev/null +++ b/docs/material/.icons/material/file-upload-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-upload.svg b/docs/material/.icons/material/file-upload.svg new file mode 100644 index 000000000..4e1c60756 --- /dev/null +++ b/docs/material/.icons/material/file-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-video-outline.svg b/docs/material/.icons/material/file-video-outline.svg new file mode 100644 index 000000000..36ac9ba22 --- /dev/null +++ b/docs/material/.icons/material/file-video-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-video.svg b/docs/material/.icons/material/file-video.svg new file mode 100644 index 000000000..4105d9dd5 --- /dev/null +++ b/docs/material/.icons/material/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-word-box-outline.svg b/docs/material/.icons/material/file-word-box-outline.svg new file mode 100644 index 000000000..e77500fa3 --- /dev/null +++ b/docs/material/.icons/material/file-word-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-word-box.svg b/docs/material/.icons/material/file-word-box.svg new file mode 100644 index 000000000..2026e0c44 --- /dev/null +++ b/docs/material/.icons/material/file-word-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-word-outline.svg b/docs/material/.icons/material/file-word-outline.svg new file mode 100644 index 000000000..f82f83aa3 --- /dev/null +++ b/docs/material/.icons/material/file-word-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file-word.svg b/docs/material/.icons/material/file-word.svg new file mode 100644 index 000000000..72311177a --- /dev/null +++ b/docs/material/.icons/material/file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/file.svg b/docs/material/.icons/material/file.svg new file mode 100644 index 000000000..241694b47 --- /dev/null +++ b/docs/material/.icons/material/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/film.svg b/docs/material/.icons/material/film.svg new file mode 100644 index 000000000..4af1ef2fe --- /dev/null +++ b/docs/material/.icons/material/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filmstrip-box-multiple.svg b/docs/material/.icons/material/filmstrip-box-multiple.svg new file mode 100644 index 000000000..df83d54da --- /dev/null +++ b/docs/material/.icons/material/filmstrip-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filmstrip-box.svg b/docs/material/.icons/material/filmstrip-box.svg new file mode 100644 index 000000000..ba5c51768 --- /dev/null +++ b/docs/material/.icons/material/filmstrip-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filmstrip-off.svg b/docs/material/.icons/material/filmstrip-off.svg new file mode 100644 index 000000000..209732ab6 --- /dev/null +++ b/docs/material/.icons/material/filmstrip-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filmstrip.svg b/docs/material/.icons/material/filmstrip.svg new file mode 100644 index 000000000..b21cd9ae6 --- /dev/null +++ b/docs/material/.icons/material/filmstrip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-menu-outline.svg b/docs/material/.icons/material/filter-menu-outline.svg new file mode 100644 index 000000000..aee310af6 --- /dev/null +++ b/docs/material/.icons/material/filter-menu-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-menu.svg b/docs/material/.icons/material/filter-menu.svg new file mode 100644 index 000000000..01c9badc3 --- /dev/null +++ b/docs/material/.icons/material/filter-menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-minus-outline.svg b/docs/material/.icons/material/filter-minus-outline.svg new file mode 100644 index 000000000..18c1d07df --- /dev/null +++ b/docs/material/.icons/material/filter-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-minus.svg b/docs/material/.icons/material/filter-minus.svg new file mode 100644 index 000000000..a2ce26163 --- /dev/null +++ b/docs/material/.icons/material/filter-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-outline.svg b/docs/material/.icons/material/filter-outline.svg new file mode 100644 index 000000000..985da8767 --- /dev/null +++ b/docs/material/.icons/material/filter-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-plus-outline.svg b/docs/material/.icons/material/filter-plus-outline.svg new file mode 100644 index 000000000..e306c2b49 --- /dev/null +++ b/docs/material/.icons/material/filter-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-plus.svg b/docs/material/.icons/material/filter-plus.svg new file mode 100644 index 000000000..303e219c7 --- /dev/null +++ b/docs/material/.icons/material/filter-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-remove-outline.svg b/docs/material/.icons/material/filter-remove-outline.svg new file mode 100644 index 000000000..e97a2a49b --- /dev/null +++ b/docs/material/.icons/material/filter-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-remove.svg b/docs/material/.icons/material/filter-remove.svg new file mode 100644 index 000000000..888d71848 --- /dev/null +++ b/docs/material/.icons/material/filter-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-variant-minus.svg b/docs/material/.icons/material/filter-variant-minus.svg new file mode 100644 index 000000000..4230cc669 --- /dev/null +++ b/docs/material/.icons/material/filter-variant-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-variant-plus.svg b/docs/material/.icons/material/filter-variant-plus.svg new file mode 100644 index 000000000..1dc176652 --- /dev/null +++ b/docs/material/.icons/material/filter-variant-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-variant-remove.svg b/docs/material/.icons/material/filter-variant-remove.svg new file mode 100644 index 000000000..7aee3b720 --- /dev/null +++ b/docs/material/.icons/material/filter-variant-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter-variant.svg b/docs/material/.icons/material/filter-variant.svg new file mode 100644 index 000000000..fd96c28a2 --- /dev/null +++ b/docs/material/.icons/material/filter-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/filter.svg b/docs/material/.icons/material/filter.svg new file mode 100644 index 000000000..42bca90c4 --- /dev/null +++ b/docs/material/.icons/material/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/finance.svg b/docs/material/.icons/material/finance.svg new file mode 100644 index 000000000..ac59d119b --- /dev/null +++ b/docs/material/.icons/material/finance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/find-replace.svg b/docs/material/.icons/material/find-replace.svg new file mode 100644 index 000000000..f672f797f --- /dev/null +++ b/docs/material/.icons/material/find-replace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fingerprint-off.svg b/docs/material/.icons/material/fingerprint-off.svg new file mode 100644 index 000000000..c726b16bb --- /dev/null +++ b/docs/material/.icons/material/fingerprint-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fingerprint.svg b/docs/material/.icons/material/fingerprint.svg new file mode 100644 index 000000000..463d6a69a --- /dev/null +++ b/docs/material/.icons/material/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fire-extinguisher.svg b/docs/material/.icons/material/fire-extinguisher.svg new file mode 100644 index 000000000..92c606186 --- /dev/null +++ b/docs/material/.icons/material/fire-extinguisher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fire-hydrant-alert.svg b/docs/material/.icons/material/fire-hydrant-alert.svg new file mode 100644 index 000000000..9177e7df3 --- /dev/null +++ b/docs/material/.icons/material/fire-hydrant-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fire-hydrant-off.svg b/docs/material/.icons/material/fire-hydrant-off.svg new file mode 100644 index 000000000..5a4e13d04 --- /dev/null +++ b/docs/material/.icons/material/fire-hydrant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fire-hydrant.svg b/docs/material/.icons/material/fire-hydrant.svg new file mode 100644 index 000000000..bc28a86df --- /dev/null +++ b/docs/material/.icons/material/fire-hydrant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fire-truck.svg b/docs/material/.icons/material/fire-truck.svg new file mode 100644 index 000000000..9c69f1360 --- /dev/null +++ b/docs/material/.icons/material/fire-truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fire.svg b/docs/material/.icons/material/fire.svg new file mode 100644 index 000000000..354333d40 --- /dev/null +++ b/docs/material/.icons/material/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/firebase.svg b/docs/material/.icons/material/firebase.svg new file mode 100644 index 000000000..4bba065df --- /dev/null +++ b/docs/material/.icons/material/firebase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/firefox.svg b/docs/material/.icons/material/firefox.svg new file mode 100644 index 000000000..56e02bd10 --- /dev/null +++ b/docs/material/.icons/material/firefox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fireplace-off.svg b/docs/material/.icons/material/fireplace-off.svg new file mode 100644 index 000000000..b864c79ff --- /dev/null +++ b/docs/material/.icons/material/fireplace-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fireplace.svg b/docs/material/.icons/material/fireplace.svg new file mode 100644 index 000000000..fbd2a19ec --- /dev/null +++ b/docs/material/.icons/material/fireplace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/firework.svg b/docs/material/.icons/material/firework.svg new file mode 100644 index 000000000..c7edad683 --- /dev/null +++ b/docs/material/.icons/material/firework.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fish-off.svg b/docs/material/.icons/material/fish-off.svg new file mode 100644 index 000000000..c9e0b98f7 --- /dev/null +++ b/docs/material/.icons/material/fish-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fish.svg b/docs/material/.icons/material/fish.svg new file mode 100644 index 000000000..484a06a89 --- /dev/null +++ b/docs/material/.icons/material/fish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fishbowl-outline.svg b/docs/material/.icons/material/fishbowl-outline.svg new file mode 100644 index 000000000..d3998852c --- /dev/null +++ b/docs/material/.icons/material/fishbowl-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fishbowl.svg b/docs/material/.icons/material/fishbowl.svg new file mode 100644 index 000000000..fc001d7cb --- /dev/null +++ b/docs/material/.icons/material/fishbowl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fit-to-page-outline.svg b/docs/material/.icons/material/fit-to-page-outline.svg new file mode 100644 index 000000000..e277a3bde --- /dev/null +++ b/docs/material/.icons/material/fit-to-page-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fit-to-page.svg b/docs/material/.icons/material/fit-to-page.svg new file mode 100644 index 000000000..89e166361 --- /dev/null +++ b/docs/material/.icons/material/fit-to-page.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-checkered.svg b/docs/material/.icons/material/flag-checkered.svg new file mode 100644 index 000000000..73ed4f843 --- /dev/null +++ b/docs/material/.icons/material/flag-checkered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-minus-outline.svg b/docs/material/.icons/material/flag-minus-outline.svg new file mode 100644 index 000000000..9ac78a489 --- /dev/null +++ b/docs/material/.icons/material/flag-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-minus.svg b/docs/material/.icons/material/flag-minus.svg new file mode 100644 index 000000000..243280f8a --- /dev/null +++ b/docs/material/.icons/material/flag-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-outline.svg b/docs/material/.icons/material/flag-outline.svg new file mode 100644 index 000000000..a3445b19c --- /dev/null +++ b/docs/material/.icons/material/flag-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-plus-outline.svg b/docs/material/.icons/material/flag-plus-outline.svg new file mode 100644 index 000000000..13b47a45c --- /dev/null +++ b/docs/material/.icons/material/flag-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-plus.svg b/docs/material/.icons/material/flag-plus.svg new file mode 100644 index 000000000..160aee3f3 --- /dev/null +++ b/docs/material/.icons/material/flag-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-remove-outline.svg b/docs/material/.icons/material/flag-remove-outline.svg new file mode 100644 index 000000000..65b21c87b --- /dev/null +++ b/docs/material/.icons/material/flag-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-remove.svg b/docs/material/.icons/material/flag-remove.svg new file mode 100644 index 000000000..6ac45be4e --- /dev/null +++ b/docs/material/.icons/material/flag-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-triangle.svg b/docs/material/.icons/material/flag-triangle.svg new file mode 100644 index 000000000..c716ac762 --- /dev/null +++ b/docs/material/.icons/material/flag-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-variant-outline.svg b/docs/material/.icons/material/flag-variant-outline.svg new file mode 100644 index 000000000..e6158796e --- /dev/null +++ b/docs/material/.icons/material/flag-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag-variant.svg b/docs/material/.icons/material/flag-variant.svg new file mode 100644 index 000000000..af01c3795 --- /dev/null +++ b/docs/material/.icons/material/flag-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flag.svg b/docs/material/.icons/material/flag.svg new file mode 100644 index 000000000..edb9e252c --- /dev/null +++ b/docs/material/.icons/material/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flare.svg b/docs/material/.icons/material/flare.svg new file mode 100644 index 000000000..fedecbbf2 --- /dev/null +++ b/docs/material/.icons/material/flare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash-alert-outline.svg b/docs/material/.icons/material/flash-alert-outline.svg new file mode 100644 index 000000000..c9b1f344a --- /dev/null +++ b/docs/material/.icons/material/flash-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash-alert.svg b/docs/material/.icons/material/flash-alert.svg new file mode 100644 index 000000000..09ac1f455 --- /dev/null +++ b/docs/material/.icons/material/flash-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash-auto.svg b/docs/material/.icons/material/flash-auto.svg new file mode 100644 index 000000000..0bc60553b --- /dev/null +++ b/docs/material/.icons/material/flash-auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash-circle.svg b/docs/material/.icons/material/flash-circle.svg new file mode 100644 index 000000000..34bc0d63c --- /dev/null +++ b/docs/material/.icons/material/flash-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash-off.svg b/docs/material/.icons/material/flash-off.svg new file mode 100644 index 000000000..b94f2d0a1 --- /dev/null +++ b/docs/material/.icons/material/flash-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash-outline.svg b/docs/material/.icons/material/flash-outline.svg new file mode 100644 index 000000000..2cbb706b2 --- /dev/null +++ b/docs/material/.icons/material/flash-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash-red-eye.svg b/docs/material/.icons/material/flash-red-eye.svg new file mode 100644 index 000000000..a7da97c84 --- /dev/null +++ b/docs/material/.icons/material/flash-red-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flash.svg b/docs/material/.icons/material/flash.svg new file mode 100644 index 000000000..73f182a48 --- /dev/null +++ b/docs/material/.icons/material/flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flashlight-off.svg b/docs/material/.icons/material/flashlight-off.svg new file mode 100644 index 000000000..1e64773eb --- /dev/null +++ b/docs/material/.icons/material/flashlight-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flashlight.svg b/docs/material/.icons/material/flashlight.svg new file mode 100644 index 000000000..f9b4bc136 --- /dev/null +++ b/docs/material/.icons/material/flashlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-minus-outline.svg b/docs/material/.icons/material/flask-empty-minus-outline.svg new file mode 100644 index 000000000..ae594e614 --- /dev/null +++ b/docs/material/.icons/material/flask-empty-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-minus.svg b/docs/material/.icons/material/flask-empty-minus.svg new file mode 100644 index 000000000..dc0a6d9d3 --- /dev/null +++ b/docs/material/.icons/material/flask-empty-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-off-outline.svg b/docs/material/.icons/material/flask-empty-off-outline.svg new file mode 100644 index 000000000..b88977e46 --- /dev/null +++ b/docs/material/.icons/material/flask-empty-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-off.svg b/docs/material/.icons/material/flask-empty-off.svg new file mode 100644 index 000000000..ea1a91771 --- /dev/null +++ b/docs/material/.icons/material/flask-empty-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-outline.svg b/docs/material/.icons/material/flask-empty-outline.svg new file mode 100644 index 000000000..96f9c098c --- /dev/null +++ b/docs/material/.icons/material/flask-empty-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-plus-outline.svg b/docs/material/.icons/material/flask-empty-plus-outline.svg new file mode 100644 index 000000000..0edf98ae1 --- /dev/null +++ b/docs/material/.icons/material/flask-empty-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-plus.svg b/docs/material/.icons/material/flask-empty-plus.svg new file mode 100644 index 000000000..4fa3f28cd --- /dev/null +++ b/docs/material/.icons/material/flask-empty-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-remove-outline.svg b/docs/material/.icons/material/flask-empty-remove-outline.svg new file mode 100644 index 000000000..e6fd7e8a6 --- /dev/null +++ b/docs/material/.icons/material/flask-empty-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty-remove.svg b/docs/material/.icons/material/flask-empty-remove.svg new file mode 100644 index 000000000..99bdb1f82 --- /dev/null +++ b/docs/material/.icons/material/flask-empty-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-empty.svg b/docs/material/.icons/material/flask-empty.svg new file mode 100644 index 000000000..805df7612 --- /dev/null +++ b/docs/material/.icons/material/flask-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-minus-outline.svg b/docs/material/.icons/material/flask-minus-outline.svg new file mode 100644 index 000000000..d8b6fb725 --- /dev/null +++ b/docs/material/.icons/material/flask-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-minus.svg b/docs/material/.icons/material/flask-minus.svg new file mode 100644 index 000000000..64af4e139 --- /dev/null +++ b/docs/material/.icons/material/flask-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-off-outline.svg b/docs/material/.icons/material/flask-off-outline.svg new file mode 100644 index 000000000..a8b57b4b3 --- /dev/null +++ b/docs/material/.icons/material/flask-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-off.svg b/docs/material/.icons/material/flask-off.svg new file mode 100644 index 000000000..12411c4bc --- /dev/null +++ b/docs/material/.icons/material/flask-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-outline.svg b/docs/material/.icons/material/flask-outline.svg new file mode 100644 index 000000000..5888a04b1 --- /dev/null +++ b/docs/material/.icons/material/flask-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-plus-outline.svg b/docs/material/.icons/material/flask-plus-outline.svg new file mode 100644 index 000000000..c3d04318f --- /dev/null +++ b/docs/material/.icons/material/flask-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-plus.svg b/docs/material/.icons/material/flask-plus.svg new file mode 100644 index 000000000..9a715da6d --- /dev/null +++ b/docs/material/.icons/material/flask-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-remove-outline.svg b/docs/material/.icons/material/flask-remove-outline.svg new file mode 100644 index 000000000..756b5a4b2 --- /dev/null +++ b/docs/material/.icons/material/flask-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-remove.svg b/docs/material/.icons/material/flask-remove.svg new file mode 100644 index 000000000..8ddaa4206 --- /dev/null +++ b/docs/material/.icons/material/flask-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-round-bottom-empty-outline.svg b/docs/material/.icons/material/flask-round-bottom-empty-outline.svg new file mode 100644 index 000000000..1a55c7650 --- /dev/null +++ b/docs/material/.icons/material/flask-round-bottom-empty-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-round-bottom-empty.svg b/docs/material/.icons/material/flask-round-bottom-empty.svg new file mode 100644 index 000000000..fc94f8197 --- /dev/null +++ b/docs/material/.icons/material/flask-round-bottom-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-round-bottom-outline.svg b/docs/material/.icons/material/flask-round-bottom-outline.svg new file mode 100644 index 000000000..dfd2d05aa --- /dev/null +++ b/docs/material/.icons/material/flask-round-bottom-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask-round-bottom.svg b/docs/material/.icons/material/flask-round-bottom.svg new file mode 100644 index 000000000..10d45e728 --- /dev/null +++ b/docs/material/.icons/material/flask-round-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flask.svg b/docs/material/.icons/material/flask.svg new file mode 100644 index 000000000..2db47f5d4 --- /dev/null +++ b/docs/material/.icons/material/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fleur-de-lis.svg b/docs/material/.icons/material/fleur-de-lis.svg new file mode 100644 index 000000000..90c36ce93 --- /dev/null +++ b/docs/material/.icons/material/fleur-de-lis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flip-horizontal.svg b/docs/material/.icons/material/flip-horizontal.svg new file mode 100644 index 000000000..9518e5eef --- /dev/null +++ b/docs/material/.icons/material/flip-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flip-to-back.svg b/docs/material/.icons/material/flip-to-back.svg new file mode 100644 index 000000000..a6cbe0391 --- /dev/null +++ b/docs/material/.icons/material/flip-to-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flip-to-front.svg b/docs/material/.icons/material/flip-to-front.svg new file mode 100644 index 000000000..c24e4210b --- /dev/null +++ b/docs/material/.icons/material/flip-to-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flip-vertical.svg b/docs/material/.icons/material/flip-vertical.svg new file mode 100644 index 000000000..88110c3ac --- /dev/null +++ b/docs/material/.icons/material/flip-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/floor-lamp-dual.svg b/docs/material/.icons/material/floor-lamp-dual.svg new file mode 100644 index 000000000..a665a3db3 --- /dev/null +++ b/docs/material/.icons/material/floor-lamp-dual.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/floor-lamp-variant.svg b/docs/material/.icons/material/floor-lamp-variant.svg new file mode 100644 index 000000000..13e85b40d --- /dev/null +++ b/docs/material/.icons/material/floor-lamp-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/floor-lamp.svg b/docs/material/.icons/material/floor-lamp.svg new file mode 100644 index 000000000..aac6eef49 --- /dev/null +++ b/docs/material/.icons/material/floor-lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/floor-plan.svg b/docs/material/.icons/material/floor-plan.svg new file mode 100644 index 000000000..c1814dca4 --- /dev/null +++ b/docs/material/.icons/material/floor-plan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/floppy-variant.svg b/docs/material/.icons/material/floppy-variant.svg new file mode 100644 index 000000000..fbd9c733b --- /dev/null +++ b/docs/material/.icons/material/floppy-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/floppy.svg b/docs/material/.icons/material/floppy.svg new file mode 100644 index 000000000..74ba41f67 --- /dev/null +++ b/docs/material/.icons/material/floppy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flower-outline.svg b/docs/material/.icons/material/flower-outline.svg new file mode 100644 index 000000000..a75af02ba --- /dev/null +++ b/docs/material/.icons/material/flower-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flower-poppy.svg b/docs/material/.icons/material/flower-poppy.svg new file mode 100644 index 000000000..20d273fce --- /dev/null +++ b/docs/material/.icons/material/flower-poppy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flower-tulip-outline.svg b/docs/material/.icons/material/flower-tulip-outline.svg new file mode 100644 index 000000000..0cc6f502f --- /dev/null +++ b/docs/material/.icons/material/flower-tulip-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flower-tulip.svg b/docs/material/.icons/material/flower-tulip.svg new file mode 100644 index 000000000..2bbcc0131 --- /dev/null +++ b/docs/material/.icons/material/flower-tulip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/flower.svg b/docs/material/.icons/material/flower.svg new file mode 100644 index 000000000..b86c8530a --- /dev/null +++ b/docs/material/.icons/material/flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/focus-auto.svg b/docs/material/.icons/material/focus-auto.svg new file mode 100644 index 000000000..8311329e9 --- /dev/null +++ b/docs/material/.icons/material/focus-auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/focus-field-horizontal.svg b/docs/material/.icons/material/focus-field-horizontal.svg new file mode 100644 index 000000000..c91b27d7f --- /dev/null +++ b/docs/material/.icons/material/focus-field-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/focus-field-vertical.svg b/docs/material/.icons/material/focus-field-vertical.svg new file mode 100644 index 000000000..22a74b79b --- /dev/null +++ b/docs/material/.icons/material/focus-field-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/focus-field.svg b/docs/material/.icons/material/focus-field.svg new file mode 100644 index 000000000..4ce5c9d0b --- /dev/null +++ b/docs/material/.icons/material/focus-field.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-account-outline.svg b/docs/material/.icons/material/folder-account-outline.svg new file mode 100644 index 000000000..b7fbaa4bd --- /dev/null +++ b/docs/material/.icons/material/folder-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-account.svg b/docs/material/.icons/material/folder-account.svg new file mode 100644 index 000000000..d290245a0 --- /dev/null +++ b/docs/material/.icons/material/folder-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-alert-outline.svg b/docs/material/.icons/material/folder-alert-outline.svg new file mode 100644 index 000000000..3caf61fbc --- /dev/null +++ b/docs/material/.icons/material/folder-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-alert.svg b/docs/material/.icons/material/folder-alert.svg new file mode 100644 index 000000000..29e758b23 --- /dev/null +++ b/docs/material/.icons/material/folder-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-clock-outline.svg b/docs/material/.icons/material/folder-clock-outline.svg new file mode 100644 index 000000000..a0e219291 --- /dev/null +++ b/docs/material/.icons/material/folder-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-clock.svg b/docs/material/.icons/material/folder-clock.svg new file mode 100644 index 000000000..9330a7a27 --- /dev/null +++ b/docs/material/.icons/material/folder-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-cog-outline.svg b/docs/material/.icons/material/folder-cog-outline.svg new file mode 100644 index 000000000..9b5e6f30e --- /dev/null +++ b/docs/material/.icons/material/folder-cog-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-cog.svg b/docs/material/.icons/material/folder-cog.svg new file mode 100644 index 000000000..022c52167 --- /dev/null +++ b/docs/material/.icons/material/folder-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-download-outline.svg b/docs/material/.icons/material/folder-download-outline.svg new file mode 100644 index 000000000..afafe5cb3 --- /dev/null +++ b/docs/material/.icons/material/folder-download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-download.svg b/docs/material/.icons/material/folder-download.svg new file mode 100644 index 000000000..1c35afa92 --- /dev/null +++ b/docs/material/.icons/material/folder-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-edit-outline.svg b/docs/material/.icons/material/folder-edit-outline.svg new file mode 100644 index 000000000..eae51f1ff --- /dev/null +++ b/docs/material/.icons/material/folder-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-edit.svg b/docs/material/.icons/material/folder-edit.svg new file mode 100644 index 000000000..05788e171 --- /dev/null +++ b/docs/material/.icons/material/folder-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-google-drive.svg b/docs/material/.icons/material/folder-google-drive.svg new file mode 100644 index 000000000..1f3534b96 --- /dev/null +++ b/docs/material/.icons/material/folder-google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-heart-outline.svg b/docs/material/.icons/material/folder-heart-outline.svg new file mode 100644 index 000000000..ad967a341 --- /dev/null +++ b/docs/material/.icons/material/folder-heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-heart.svg b/docs/material/.icons/material/folder-heart.svg new file mode 100644 index 000000000..ba685bd56 --- /dev/null +++ b/docs/material/.icons/material/folder-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-home-outline.svg b/docs/material/.icons/material/folder-home-outline.svg new file mode 100644 index 000000000..7cab12b58 --- /dev/null +++ b/docs/material/.icons/material/folder-home-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-home.svg b/docs/material/.icons/material/folder-home.svg new file mode 100644 index 000000000..9467841bc --- /dev/null +++ b/docs/material/.icons/material/folder-home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-image.svg b/docs/material/.icons/material/folder-image.svg new file mode 100644 index 000000000..f85a93d42 --- /dev/null +++ b/docs/material/.icons/material/folder-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-information-outline.svg b/docs/material/.icons/material/folder-information-outline.svg new file mode 100644 index 000000000..094fd81a2 --- /dev/null +++ b/docs/material/.icons/material/folder-information-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-information.svg b/docs/material/.icons/material/folder-information.svg new file mode 100644 index 000000000..f7abacc64 --- /dev/null +++ b/docs/material/.icons/material/folder-information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-key-network-outline.svg b/docs/material/.icons/material/folder-key-network-outline.svg new file mode 100644 index 000000000..43fe52ebb --- /dev/null +++ b/docs/material/.icons/material/folder-key-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-key-network.svg b/docs/material/.icons/material/folder-key-network.svg new file mode 100644 index 000000000..f43fff2d1 --- /dev/null +++ b/docs/material/.icons/material/folder-key-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-key-outline.svg b/docs/material/.icons/material/folder-key-outline.svg new file mode 100644 index 000000000..edf122f4b --- /dev/null +++ b/docs/material/.icons/material/folder-key-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-key.svg b/docs/material/.icons/material/folder-key.svg new file mode 100644 index 000000000..f955fc1df --- /dev/null +++ b/docs/material/.icons/material/folder-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-lock-open.svg b/docs/material/.icons/material/folder-lock-open.svg new file mode 100644 index 000000000..853601947 --- /dev/null +++ b/docs/material/.icons/material/folder-lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-lock.svg b/docs/material/.icons/material/folder-lock.svg new file mode 100644 index 000000000..f9ecffba4 --- /dev/null +++ b/docs/material/.icons/material/folder-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-marker-outline.svg b/docs/material/.icons/material/folder-marker-outline.svg new file mode 100644 index 000000000..d33c3bc8b --- /dev/null +++ b/docs/material/.icons/material/folder-marker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-marker.svg b/docs/material/.icons/material/folder-marker.svg new file mode 100644 index 000000000..99131cad8 --- /dev/null +++ b/docs/material/.icons/material/folder-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-move-outline.svg b/docs/material/.icons/material/folder-move-outline.svg new file mode 100644 index 000000000..65c24ebf7 --- /dev/null +++ b/docs/material/.icons/material/folder-move-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-move.svg b/docs/material/.icons/material/folder-move.svg new file mode 100644 index 000000000..0857ef04b --- /dev/null +++ b/docs/material/.icons/material/folder-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-multiple-image.svg b/docs/material/.icons/material/folder-multiple-image.svg new file mode 100644 index 000000000..9ef363c67 --- /dev/null +++ b/docs/material/.icons/material/folder-multiple-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-multiple-outline.svg b/docs/material/.icons/material/folder-multiple-outline.svg new file mode 100644 index 000000000..f0406db66 --- /dev/null +++ b/docs/material/.icons/material/folder-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-multiple.svg b/docs/material/.icons/material/folder-multiple.svg new file mode 100644 index 000000000..13843fa75 --- /dev/null +++ b/docs/material/.icons/material/folder-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-music-outline.svg b/docs/material/.icons/material/folder-music-outline.svg new file mode 100644 index 000000000..c5fe7aaef --- /dev/null +++ b/docs/material/.icons/material/folder-music-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-music.svg b/docs/material/.icons/material/folder-music.svg new file mode 100644 index 000000000..b686e9744 --- /dev/null +++ b/docs/material/.icons/material/folder-music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-network-outline.svg b/docs/material/.icons/material/folder-network-outline.svg new file mode 100644 index 000000000..67b343bf5 --- /dev/null +++ b/docs/material/.icons/material/folder-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-network.svg b/docs/material/.icons/material/folder-network.svg new file mode 100644 index 000000000..6ab7364f2 --- /dev/null +++ b/docs/material/.icons/material/folder-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-open-outline.svg b/docs/material/.icons/material/folder-open-outline.svg new file mode 100644 index 000000000..3d524f473 --- /dev/null +++ b/docs/material/.icons/material/folder-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-open.svg b/docs/material/.icons/material/folder-open.svg new file mode 100644 index 000000000..e5de90672 --- /dev/null +++ b/docs/material/.icons/material/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-outline.svg b/docs/material/.icons/material/folder-outline.svg new file mode 100644 index 000000000..a95f4dfd0 --- /dev/null +++ b/docs/material/.icons/material/folder-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-plus-outline.svg b/docs/material/.icons/material/folder-plus-outline.svg new file mode 100644 index 000000000..ceadd8d92 --- /dev/null +++ b/docs/material/.icons/material/folder-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-plus.svg b/docs/material/.icons/material/folder-plus.svg new file mode 100644 index 000000000..d4f28c69b --- /dev/null +++ b/docs/material/.icons/material/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-pound-outline.svg b/docs/material/.icons/material/folder-pound-outline.svg new file mode 100644 index 000000000..cfe16da72 --- /dev/null +++ b/docs/material/.icons/material/folder-pound-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-pound.svg b/docs/material/.icons/material/folder-pound.svg new file mode 100644 index 000000000..dfd9c6ccc --- /dev/null +++ b/docs/material/.icons/material/folder-pound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-refresh-outline.svg b/docs/material/.icons/material/folder-refresh-outline.svg new file mode 100644 index 000000000..e9fcb3b64 --- /dev/null +++ b/docs/material/.icons/material/folder-refresh-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-refresh.svg b/docs/material/.icons/material/folder-refresh.svg new file mode 100644 index 000000000..294e72f13 --- /dev/null +++ b/docs/material/.icons/material/folder-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-remove-outline.svg b/docs/material/.icons/material/folder-remove-outline.svg new file mode 100644 index 000000000..8a5ad11d7 --- /dev/null +++ b/docs/material/.icons/material/folder-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-remove.svg b/docs/material/.icons/material/folder-remove.svg new file mode 100644 index 000000000..e7435e735 --- /dev/null +++ b/docs/material/.icons/material/folder-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-search-outline.svg b/docs/material/.icons/material/folder-search-outline.svg new file mode 100644 index 000000000..17c327e80 --- /dev/null +++ b/docs/material/.icons/material/folder-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-search.svg b/docs/material/.icons/material/folder-search.svg new file mode 100644 index 000000000..285cb370b --- /dev/null +++ b/docs/material/.icons/material/folder-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-settings-outline.svg b/docs/material/.icons/material/folder-settings-outline.svg new file mode 100644 index 000000000..7db27ba7b --- /dev/null +++ b/docs/material/.icons/material/folder-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-settings.svg b/docs/material/.icons/material/folder-settings.svg new file mode 100644 index 000000000..7fd1ed6a3 --- /dev/null +++ b/docs/material/.icons/material/folder-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-star-multiple-outline.svg b/docs/material/.icons/material/folder-star-multiple-outline.svg new file mode 100644 index 000000000..a06e7d7df --- /dev/null +++ b/docs/material/.icons/material/folder-star-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-star-multiple.svg b/docs/material/.icons/material/folder-star-multiple.svg new file mode 100644 index 000000000..62e98d58c --- /dev/null +++ b/docs/material/.icons/material/folder-star-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-star-outline.svg b/docs/material/.icons/material/folder-star-outline.svg new file mode 100644 index 000000000..34dcc8493 --- /dev/null +++ b/docs/material/.icons/material/folder-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-star.svg b/docs/material/.icons/material/folder-star.svg new file mode 100644 index 000000000..dc9ceed03 --- /dev/null +++ b/docs/material/.icons/material/folder-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-swap-outline.svg b/docs/material/.icons/material/folder-swap-outline.svg new file mode 100644 index 000000000..119321039 --- /dev/null +++ b/docs/material/.icons/material/folder-swap-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-swap.svg b/docs/material/.icons/material/folder-swap.svg new file mode 100644 index 000000000..2d568a42e --- /dev/null +++ b/docs/material/.icons/material/folder-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-sync-outline.svg b/docs/material/.icons/material/folder-sync-outline.svg new file mode 100644 index 000000000..88c8135ad --- /dev/null +++ b/docs/material/.icons/material/folder-sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-sync.svg b/docs/material/.icons/material/folder-sync.svg new file mode 100644 index 000000000..1afd2dfd7 --- /dev/null +++ b/docs/material/.icons/material/folder-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-table-outline.svg b/docs/material/.icons/material/folder-table-outline.svg new file mode 100644 index 000000000..d02f89829 --- /dev/null +++ b/docs/material/.icons/material/folder-table-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-table.svg b/docs/material/.icons/material/folder-table.svg new file mode 100644 index 000000000..5bee5d652 --- /dev/null +++ b/docs/material/.icons/material/folder-table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-text-outline.svg b/docs/material/.icons/material/folder-text-outline.svg new file mode 100644 index 000000000..b4b1a2282 --- /dev/null +++ b/docs/material/.icons/material/folder-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-text.svg b/docs/material/.icons/material/folder-text.svg new file mode 100644 index 000000000..10320c9ba --- /dev/null +++ b/docs/material/.icons/material/folder-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-upload-outline.svg b/docs/material/.icons/material/folder-upload-outline.svg new file mode 100644 index 000000000..ba01ec027 --- /dev/null +++ b/docs/material/.icons/material/folder-upload-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-upload.svg b/docs/material/.icons/material/folder-upload.svg new file mode 100644 index 000000000..70ebd346d --- /dev/null +++ b/docs/material/.icons/material/folder-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-zip-outline.svg b/docs/material/.icons/material/folder-zip-outline.svg new file mode 100644 index 000000000..e04961683 --- /dev/null +++ b/docs/material/.icons/material/folder-zip-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder-zip.svg b/docs/material/.icons/material/folder-zip.svg new file mode 100644 index 000000000..06f884554 --- /dev/null +++ b/docs/material/.icons/material/folder-zip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/folder.svg b/docs/material/.icons/material/folder.svg new file mode 100644 index 000000000..463ca9797 --- /dev/null +++ b/docs/material/.icons/material/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/font-awesome.svg b/docs/material/.icons/material/font-awesome.svg new file mode 100644 index 000000000..85ffc0178 --- /dev/null +++ b/docs/material/.icons/material/font-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food-apple-outline.svg b/docs/material/.icons/material/food-apple-outline.svg new file mode 100644 index 000000000..e15e129ff --- /dev/null +++ b/docs/material/.icons/material/food-apple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food-apple.svg b/docs/material/.icons/material/food-apple.svg new file mode 100644 index 000000000..a58e8c6a7 --- /dev/null +++ b/docs/material/.icons/material/food-apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food-croissant.svg b/docs/material/.icons/material/food-croissant.svg new file mode 100644 index 000000000..b00878670 --- /dev/null +++ b/docs/material/.icons/material/food-croissant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food-fork-drink.svg b/docs/material/.icons/material/food-fork-drink.svg new file mode 100644 index 000000000..502d5999f --- /dev/null +++ b/docs/material/.icons/material/food-fork-drink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food-off.svg b/docs/material/.icons/material/food-off.svg new file mode 100644 index 000000000..7ea222b87 --- /dev/null +++ b/docs/material/.icons/material/food-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food-variant-off.svg b/docs/material/.icons/material/food-variant-off.svg new file mode 100644 index 000000000..3d9dfbf8d --- /dev/null +++ b/docs/material/.icons/material/food-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food-variant.svg b/docs/material/.icons/material/food-variant.svg new file mode 100644 index 000000000..84bb05354 --- /dev/null +++ b/docs/material/.icons/material/food-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/food.svg b/docs/material/.icons/material/food.svg new file mode 100644 index 000000000..0103952bb --- /dev/null +++ b/docs/material/.icons/material/food.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/foot-print.svg b/docs/material/.icons/material/foot-print.svg new file mode 100644 index 000000000..db9f8c821 --- /dev/null +++ b/docs/material/.icons/material/foot-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/football-australian.svg b/docs/material/.icons/material/football-australian.svg new file mode 100644 index 000000000..72dfe8d5c --- /dev/null +++ b/docs/material/.icons/material/football-australian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/football-helmet.svg b/docs/material/.icons/material/football-helmet.svg new file mode 100644 index 000000000..8296b52d0 --- /dev/null +++ b/docs/material/.icons/material/football-helmet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/football.svg b/docs/material/.icons/material/football.svg new file mode 100644 index 000000000..205354eb7 --- /dev/null +++ b/docs/material/.icons/material/football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/forklift.svg b/docs/material/.icons/material/forklift.svg new file mode 100644 index 000000000..61c35e56b --- /dev/null +++ b/docs/material/.icons/material/forklift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/form-dropdown.svg b/docs/material/.icons/material/form-dropdown.svg new file mode 100644 index 000000000..e3d5d7e4a --- /dev/null +++ b/docs/material/.icons/material/form-dropdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/form-select.svg b/docs/material/.icons/material/form-select.svg new file mode 100644 index 000000000..d1346724b --- /dev/null +++ b/docs/material/.icons/material/form-select.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/form-textarea.svg b/docs/material/.icons/material/form-textarea.svg new file mode 100644 index 000000000..a064cd671 --- /dev/null +++ b/docs/material/.icons/material/form-textarea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/form-textbox-lock.svg b/docs/material/.icons/material/form-textbox-lock.svg new file mode 100644 index 000000000..298978fe6 --- /dev/null +++ b/docs/material/.icons/material/form-textbox-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/form-textbox-password.svg b/docs/material/.icons/material/form-textbox-password.svg new file mode 100644 index 000000000..37e526998 --- /dev/null +++ b/docs/material/.icons/material/form-textbox-password.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/form-textbox.svg b/docs/material/.icons/material/form-textbox.svg new file mode 100644 index 000000000..f8397c87b --- /dev/null +++ b/docs/material/.icons/material/form-textbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-align-bottom.svg b/docs/material/.icons/material/format-align-bottom.svg new file mode 100644 index 000000000..37787f8c2 --- /dev/null +++ b/docs/material/.icons/material/format-align-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-align-center.svg b/docs/material/.icons/material/format-align-center.svg new file mode 100644 index 000000000..9ca2c15de --- /dev/null +++ b/docs/material/.icons/material/format-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-align-justify.svg b/docs/material/.icons/material/format-align-justify.svg new file mode 100644 index 000000000..5c8cf208b --- /dev/null +++ b/docs/material/.icons/material/format-align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-align-left.svg b/docs/material/.icons/material/format-align-left.svg new file mode 100644 index 000000000..e003c3f8f --- /dev/null +++ b/docs/material/.icons/material/format-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-align-middle.svg b/docs/material/.icons/material/format-align-middle.svg new file mode 100644 index 000000000..b2c97ca05 --- /dev/null +++ b/docs/material/.icons/material/format-align-middle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-align-right.svg b/docs/material/.icons/material/format-align-right.svg new file mode 100644 index 000000000..e60bae708 --- /dev/null +++ b/docs/material/.icons/material/format-align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-align-top.svg b/docs/material/.icons/material/format-align-top.svg new file mode 100644 index 000000000..a80257e3a --- /dev/null +++ b/docs/material/.icons/material/format-align-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-annotation-minus.svg b/docs/material/.icons/material/format-annotation-minus.svg new file mode 100644 index 000000000..bc73b2b0f --- /dev/null +++ b/docs/material/.icons/material/format-annotation-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-annotation-plus.svg b/docs/material/.icons/material/format-annotation-plus.svg new file mode 100644 index 000000000..42b1dc4f2 --- /dev/null +++ b/docs/material/.icons/material/format-annotation-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-bold.svg b/docs/material/.icons/material/format-bold.svg new file mode 100644 index 000000000..1e01a57dc --- /dev/null +++ b/docs/material/.icons/material/format-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-clear.svg b/docs/material/.icons/material/format-clear.svg new file mode 100644 index 000000000..ea67e1338 --- /dev/null +++ b/docs/material/.icons/material/format-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-color-fill.svg b/docs/material/.icons/material/format-color-fill.svg new file mode 100644 index 000000000..d2b8705c6 --- /dev/null +++ b/docs/material/.icons/material/format-color-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-color-highlight.svg b/docs/material/.icons/material/format-color-highlight.svg new file mode 100644 index 000000000..06aca931d --- /dev/null +++ b/docs/material/.icons/material/format-color-highlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-color-marker-cancel.svg b/docs/material/.icons/material/format-color-marker-cancel.svg new file mode 100644 index 000000000..5be5db5e6 --- /dev/null +++ b/docs/material/.icons/material/format-color-marker-cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-color-text.svg b/docs/material/.icons/material/format-color-text.svg new file mode 100644 index 000000000..5e4832fa1 --- /dev/null +++ b/docs/material/.icons/material/format-color-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-columns.svg b/docs/material/.icons/material/format-columns.svg new file mode 100644 index 000000000..699461f54 --- /dev/null +++ b/docs/material/.icons/material/format-columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-float-center.svg b/docs/material/.icons/material/format-float-center.svg new file mode 100644 index 000000000..4e2c1f02a --- /dev/null +++ b/docs/material/.icons/material/format-float-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-float-left.svg b/docs/material/.icons/material/format-float-left.svg new file mode 100644 index 000000000..3acc92c03 --- /dev/null +++ b/docs/material/.icons/material/format-float-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-float-none.svg b/docs/material/.icons/material/format-float-none.svg new file mode 100644 index 000000000..fdd128fc8 --- /dev/null +++ b/docs/material/.icons/material/format-float-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-float-right.svg b/docs/material/.icons/material/format-float-right.svg new file mode 100644 index 000000000..180cb8241 --- /dev/null +++ b/docs/material/.icons/material/format-float-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-font-size-decrease.svg b/docs/material/.icons/material/format-font-size-decrease.svg new file mode 100644 index 000000000..f30f1f448 --- /dev/null +++ b/docs/material/.icons/material/format-font-size-decrease.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-font-size-increase.svg b/docs/material/.icons/material/format-font-size-increase.svg new file mode 100644 index 000000000..cd388b74c --- /dev/null +++ b/docs/material/.icons/material/format-font-size-increase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-font.svg b/docs/material/.icons/material/format-font.svg new file mode 100644 index 000000000..658febf0e --- /dev/null +++ b/docs/material/.icons/material/format-font.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-1.svg b/docs/material/.icons/material/format-header-1.svg new file mode 100644 index 000000000..f00b2b92f --- /dev/null +++ b/docs/material/.icons/material/format-header-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-2.svg b/docs/material/.icons/material/format-header-2.svg new file mode 100644 index 000000000..cb4db3ccb --- /dev/null +++ b/docs/material/.icons/material/format-header-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-3.svg b/docs/material/.icons/material/format-header-3.svg new file mode 100644 index 000000000..ad8ed3d1b --- /dev/null +++ b/docs/material/.icons/material/format-header-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-4.svg b/docs/material/.icons/material/format-header-4.svg new file mode 100644 index 000000000..940a983d9 --- /dev/null +++ b/docs/material/.icons/material/format-header-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-5.svg b/docs/material/.icons/material/format-header-5.svg new file mode 100644 index 000000000..47c23a0ce --- /dev/null +++ b/docs/material/.icons/material/format-header-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-6.svg b/docs/material/.icons/material/format-header-6.svg new file mode 100644 index 000000000..eed818a08 --- /dev/null +++ b/docs/material/.icons/material/format-header-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-decrease.svg b/docs/material/.icons/material/format-header-decrease.svg new file mode 100644 index 000000000..972ac4c6c --- /dev/null +++ b/docs/material/.icons/material/format-header-decrease.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-equal.svg b/docs/material/.icons/material/format-header-equal.svg new file mode 100644 index 000000000..eb362ba90 --- /dev/null +++ b/docs/material/.icons/material/format-header-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-increase.svg b/docs/material/.icons/material/format-header-increase.svg new file mode 100644 index 000000000..81f5fe700 --- /dev/null +++ b/docs/material/.icons/material/format-header-increase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-header-pound.svg b/docs/material/.icons/material/format-header-pound.svg new file mode 100644 index 000000000..1369e7199 --- /dev/null +++ b/docs/material/.icons/material/format-header-pound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-horizontal-align-center.svg b/docs/material/.icons/material/format-horizontal-align-center.svg new file mode 100644 index 000000000..10b6dadd5 --- /dev/null +++ b/docs/material/.icons/material/format-horizontal-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-horizontal-align-left.svg b/docs/material/.icons/material/format-horizontal-align-left.svg new file mode 100644 index 000000000..59a36346d --- /dev/null +++ b/docs/material/.icons/material/format-horizontal-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-horizontal-align-right.svg b/docs/material/.icons/material/format-horizontal-align-right.svg new file mode 100644 index 000000000..6f90ef198 --- /dev/null +++ b/docs/material/.icons/material/format-horizontal-align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-indent-decrease.svg b/docs/material/.icons/material/format-indent-decrease.svg new file mode 100644 index 000000000..ccbfaf896 --- /dev/null +++ b/docs/material/.icons/material/format-indent-decrease.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-indent-increase.svg b/docs/material/.icons/material/format-indent-increase.svg new file mode 100644 index 000000000..34b8c1456 --- /dev/null +++ b/docs/material/.icons/material/format-indent-increase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-italic.svg b/docs/material/.icons/material/format-italic.svg new file mode 100644 index 000000000..acf7c87aa --- /dev/null +++ b/docs/material/.icons/material/format-italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-letter-case-lower.svg b/docs/material/.icons/material/format-letter-case-lower.svg new file mode 100644 index 000000000..7665b77de --- /dev/null +++ b/docs/material/.icons/material/format-letter-case-lower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-letter-case-upper.svg b/docs/material/.icons/material/format-letter-case-upper.svg new file mode 100644 index 000000000..9dec6e73e --- /dev/null +++ b/docs/material/.icons/material/format-letter-case-upper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-letter-case.svg b/docs/material/.icons/material/format-letter-case.svg new file mode 100644 index 000000000..1f2568f79 --- /dev/null +++ b/docs/material/.icons/material/format-letter-case.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-letter-ends-with.svg b/docs/material/.icons/material/format-letter-ends-with.svg new file mode 100644 index 000000000..787f60cc9 --- /dev/null +++ b/docs/material/.icons/material/format-letter-ends-with.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-letter-matches.svg b/docs/material/.icons/material/format-letter-matches.svg new file mode 100644 index 000000000..cb37b487a --- /dev/null +++ b/docs/material/.icons/material/format-letter-matches.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-letter-starts-with.svg b/docs/material/.icons/material/format-letter-starts-with.svg new file mode 100644 index 000000000..6700c8707 --- /dev/null +++ b/docs/material/.icons/material/format-letter-starts-with.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-line-spacing.svg b/docs/material/.icons/material/format-line-spacing.svg new file mode 100644 index 000000000..281674224 --- /dev/null +++ b/docs/material/.icons/material/format-line-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-line-style.svg b/docs/material/.icons/material/format-line-style.svg new file mode 100644 index 000000000..61b5e58d4 --- /dev/null +++ b/docs/material/.icons/material/format-line-style.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-line-weight.svg b/docs/material/.icons/material/format-line-weight.svg new file mode 100644 index 000000000..f1143abec --- /dev/null +++ b/docs/material/.icons/material/format-line-weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-bulleted-square.svg b/docs/material/.icons/material/format-list-bulleted-square.svg new file mode 100644 index 000000000..cc42e4a90 --- /dev/null +++ b/docs/material/.icons/material/format-list-bulleted-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-bulleted-triangle.svg b/docs/material/.icons/material/format-list-bulleted-triangle.svg new file mode 100644 index 000000000..7fd388ceb --- /dev/null +++ b/docs/material/.icons/material/format-list-bulleted-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-bulleted-type.svg b/docs/material/.icons/material/format-list-bulleted-type.svg new file mode 100644 index 000000000..4901ae0d4 --- /dev/null +++ b/docs/material/.icons/material/format-list-bulleted-type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-bulleted.svg b/docs/material/.icons/material/format-list-bulleted.svg new file mode 100644 index 000000000..10ecd34c6 --- /dev/null +++ b/docs/material/.icons/material/format-list-bulleted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-checkbox.svg b/docs/material/.icons/material/format-list-checkbox.svg new file mode 100644 index 000000000..1444a4f89 --- /dev/null +++ b/docs/material/.icons/material/format-list-checkbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-checks.svg b/docs/material/.icons/material/format-list-checks.svg new file mode 100644 index 000000000..6b3892f63 --- /dev/null +++ b/docs/material/.icons/material/format-list-checks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-numbered-rtl.svg b/docs/material/.icons/material/format-list-numbered-rtl.svg new file mode 100644 index 000000000..1ec5e8304 --- /dev/null +++ b/docs/material/.icons/material/format-list-numbered-rtl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-numbered.svg b/docs/material/.icons/material/format-list-numbered.svg new file mode 100644 index 000000000..1734c2a86 --- /dev/null +++ b/docs/material/.icons/material/format-list-numbered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-list-text.svg b/docs/material/.icons/material/format-list-text.svg new file mode 100644 index 000000000..60d6b1a0b --- /dev/null +++ b/docs/material/.icons/material/format-list-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-overline.svg b/docs/material/.icons/material/format-overline.svg new file mode 100644 index 000000000..2eb5deb9b --- /dev/null +++ b/docs/material/.icons/material/format-overline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-page-break.svg b/docs/material/.icons/material/format-page-break.svg new file mode 100644 index 000000000..f6da2a818 --- /dev/null +++ b/docs/material/.icons/material/format-page-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-paint.svg b/docs/material/.icons/material/format-paint.svg new file mode 100644 index 000000000..97af13654 --- /dev/null +++ b/docs/material/.icons/material/format-paint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-paragraph.svg b/docs/material/.icons/material/format-paragraph.svg new file mode 100644 index 000000000..580509b0d --- /dev/null +++ b/docs/material/.icons/material/format-paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-pilcrow.svg b/docs/material/.icons/material/format-pilcrow.svg new file mode 100644 index 000000000..3db2dbacb --- /dev/null +++ b/docs/material/.icons/material/format-pilcrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-quote-close-outline.svg b/docs/material/.icons/material/format-quote-close-outline.svg new file mode 100644 index 000000000..ede2f930d --- /dev/null +++ b/docs/material/.icons/material/format-quote-close-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-quote-close.svg b/docs/material/.icons/material/format-quote-close.svg new file mode 100644 index 000000000..e95118a95 --- /dev/null +++ b/docs/material/.icons/material/format-quote-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-quote-open-outline.svg b/docs/material/.icons/material/format-quote-open-outline.svg new file mode 100644 index 000000000..5376a360d --- /dev/null +++ b/docs/material/.icons/material/format-quote-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-quote-open.svg b/docs/material/.icons/material/format-quote-open.svg new file mode 100644 index 000000000..2a56d690d --- /dev/null +++ b/docs/material/.icons/material/format-quote-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-rotate-90.svg b/docs/material/.icons/material/format-rotate-90.svg new file mode 100644 index 000000000..adb079765 --- /dev/null +++ b/docs/material/.icons/material/format-rotate-90.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-section.svg b/docs/material/.icons/material/format-section.svg new file mode 100644 index 000000000..631a33228 --- /dev/null +++ b/docs/material/.icons/material/format-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-size.svg b/docs/material/.icons/material/format-size.svg new file mode 100644 index 000000000..3556ab39c --- /dev/null +++ b/docs/material/.icons/material/format-size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-strikethrough-variant.svg b/docs/material/.icons/material/format-strikethrough-variant.svg new file mode 100644 index 000000000..7d83ff8ab --- /dev/null +++ b/docs/material/.icons/material/format-strikethrough-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-strikethrough.svg b/docs/material/.icons/material/format-strikethrough.svg new file mode 100644 index 000000000..60c07b5f5 --- /dev/null +++ b/docs/material/.icons/material/format-strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-subscript.svg b/docs/material/.icons/material/format-subscript.svg new file mode 100644 index 000000000..a5db42661 --- /dev/null +++ b/docs/material/.icons/material/format-subscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-superscript.svg b/docs/material/.icons/material/format-superscript.svg new file mode 100644 index 000000000..ee5fd17ef --- /dev/null +++ b/docs/material/.icons/material/format-superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-rotation-angle-down.svg b/docs/material/.icons/material/format-text-rotation-angle-down.svg new file mode 100644 index 000000000..ecd5d16a6 --- /dev/null +++ b/docs/material/.icons/material/format-text-rotation-angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-rotation-angle-up.svg b/docs/material/.icons/material/format-text-rotation-angle-up.svg new file mode 100644 index 000000000..e958e14f7 --- /dev/null +++ b/docs/material/.icons/material/format-text-rotation-angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-rotation-down-vertical.svg b/docs/material/.icons/material/format-text-rotation-down-vertical.svg new file mode 100644 index 000000000..daf66ca46 --- /dev/null +++ b/docs/material/.icons/material/format-text-rotation-down-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-rotation-down.svg b/docs/material/.icons/material/format-text-rotation-down.svg new file mode 100644 index 000000000..05c2b06d0 --- /dev/null +++ b/docs/material/.icons/material/format-text-rotation-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-rotation-none.svg b/docs/material/.icons/material/format-text-rotation-none.svg new file mode 100644 index 000000000..34bf1df98 --- /dev/null +++ b/docs/material/.icons/material/format-text-rotation-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-rotation-up.svg b/docs/material/.icons/material/format-text-rotation-up.svg new file mode 100644 index 000000000..3eeb17133 --- /dev/null +++ b/docs/material/.icons/material/format-text-rotation-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-rotation-vertical.svg b/docs/material/.icons/material/format-text-rotation-vertical.svg new file mode 100644 index 000000000..e4a2c1cc9 --- /dev/null +++ b/docs/material/.icons/material/format-text-rotation-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-variant.svg b/docs/material/.icons/material/format-text-variant.svg new file mode 100644 index 000000000..8828a88c7 --- /dev/null +++ b/docs/material/.icons/material/format-text-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-wrapping-clip.svg b/docs/material/.icons/material/format-text-wrapping-clip.svg new file mode 100644 index 000000000..1c543feaf --- /dev/null +++ b/docs/material/.icons/material/format-text-wrapping-clip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-wrapping-overflow.svg b/docs/material/.icons/material/format-text-wrapping-overflow.svg new file mode 100644 index 000000000..5d48608f9 --- /dev/null +++ b/docs/material/.icons/material/format-text-wrapping-overflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text-wrapping-wrap.svg b/docs/material/.icons/material/format-text-wrapping-wrap.svg new file mode 100644 index 000000000..3b2ed4a95 --- /dev/null +++ b/docs/material/.icons/material/format-text-wrapping-wrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-text.svg b/docs/material/.icons/material/format-text.svg new file mode 100644 index 000000000..84a5f1842 --- /dev/null +++ b/docs/material/.icons/material/format-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-textbox.svg b/docs/material/.icons/material/format-textbox.svg new file mode 100644 index 000000000..c9b2880a9 --- /dev/null +++ b/docs/material/.icons/material/format-textbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-textdirection-l-to-r.svg b/docs/material/.icons/material/format-textdirection-l-to-r.svg new file mode 100644 index 000000000..6a598387e --- /dev/null +++ b/docs/material/.icons/material/format-textdirection-l-to-r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-textdirection-r-to-l.svg b/docs/material/.icons/material/format-textdirection-r-to-l.svg new file mode 100644 index 000000000..13f5d9f31 --- /dev/null +++ b/docs/material/.icons/material/format-textdirection-r-to-l.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-title.svg b/docs/material/.icons/material/format-title.svg new file mode 100644 index 000000000..03728aa51 --- /dev/null +++ b/docs/material/.icons/material/format-title.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-underline.svg b/docs/material/.icons/material/format-underline.svg new file mode 100644 index 000000000..12ba959e1 --- /dev/null +++ b/docs/material/.icons/material/format-underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-vertical-align-bottom.svg b/docs/material/.icons/material/format-vertical-align-bottom.svg new file mode 100644 index 000000000..c1f66a3c9 --- /dev/null +++ b/docs/material/.icons/material/format-vertical-align-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-vertical-align-center.svg b/docs/material/.icons/material/format-vertical-align-center.svg new file mode 100644 index 000000000..1f05a7714 --- /dev/null +++ b/docs/material/.icons/material/format-vertical-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-vertical-align-top.svg b/docs/material/.icons/material/format-vertical-align-top.svg new file mode 100644 index 000000000..fe5e0ad2a --- /dev/null +++ b/docs/material/.icons/material/format-vertical-align-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-wrap-inline.svg b/docs/material/.icons/material/format-wrap-inline.svg new file mode 100644 index 000000000..eb434fa4a --- /dev/null +++ b/docs/material/.icons/material/format-wrap-inline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-wrap-square.svg b/docs/material/.icons/material/format-wrap-square.svg new file mode 100644 index 000000000..2d08baac1 --- /dev/null +++ b/docs/material/.icons/material/format-wrap-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-wrap-tight.svg b/docs/material/.icons/material/format-wrap-tight.svg new file mode 100644 index 000000000..850799b31 --- /dev/null +++ b/docs/material/.icons/material/format-wrap-tight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/format-wrap-top-bottom.svg b/docs/material/.icons/material/format-wrap-top-bottom.svg new file mode 100644 index 000000000..6816e8475 --- /dev/null +++ b/docs/material/.icons/material/format-wrap-top-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/forum-outline.svg b/docs/material/.icons/material/forum-outline.svg new file mode 100644 index 000000000..299aef82c --- /dev/null +++ b/docs/material/.icons/material/forum-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/forum.svg b/docs/material/.icons/material/forum.svg new file mode 100644 index 000000000..31e650147 --- /dev/null +++ b/docs/material/.icons/material/forum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/forward.svg b/docs/material/.icons/material/forward.svg new file mode 100644 index 000000000..2a7e17209 --- /dev/null +++ b/docs/material/.icons/material/forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/forwardburger.svg b/docs/material/.icons/material/forwardburger.svg new file mode 100644 index 000000000..1f58e4cb0 --- /dev/null +++ b/docs/material/.icons/material/forwardburger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fountain-pen-tip.svg b/docs/material/.icons/material/fountain-pen-tip.svg new file mode 100644 index 000000000..8dc452a8b --- /dev/null +++ b/docs/material/.icons/material/fountain-pen-tip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fountain-pen.svg b/docs/material/.icons/material/fountain-pen.svg new file mode 100644 index 000000000..6873e73b8 --- /dev/null +++ b/docs/material/.icons/material/fountain-pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fountain.svg b/docs/material/.icons/material/fountain.svg new file mode 100644 index 000000000..1cdcd3f77 --- /dev/null +++ b/docs/material/.icons/material/fountain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/freebsd.svg b/docs/material/.icons/material/freebsd.svg new file mode 100644 index 000000000..5f04279d9 --- /dev/null +++ b/docs/material/.icons/material/freebsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/frequently-asked-questions.svg b/docs/material/.icons/material/frequently-asked-questions.svg new file mode 100644 index 000000000..a624f1f0f --- /dev/null +++ b/docs/material/.icons/material/frequently-asked-questions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge-alert-outline.svg b/docs/material/.icons/material/fridge-alert-outline.svg new file mode 100644 index 000000000..7a94e36ef --- /dev/null +++ b/docs/material/.icons/material/fridge-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge-alert.svg b/docs/material/.icons/material/fridge-alert.svg new file mode 100644 index 000000000..cb4215383 --- /dev/null +++ b/docs/material/.icons/material/fridge-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge-bottom.svg b/docs/material/.icons/material/fridge-bottom.svg new file mode 100644 index 000000000..271d1c425 --- /dev/null +++ b/docs/material/.icons/material/fridge-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge-off-outline.svg b/docs/material/.icons/material/fridge-off-outline.svg new file mode 100644 index 000000000..80807c3b1 --- /dev/null +++ b/docs/material/.icons/material/fridge-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge-off.svg b/docs/material/.icons/material/fridge-off.svg new file mode 100644 index 000000000..c255acd8c --- /dev/null +++ b/docs/material/.icons/material/fridge-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge-outline.svg b/docs/material/.icons/material/fridge-outline.svg new file mode 100644 index 000000000..086d1aa32 --- /dev/null +++ b/docs/material/.icons/material/fridge-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge-top.svg b/docs/material/.icons/material/fridge-top.svg new file mode 100644 index 000000000..3d6ec1632 --- /dev/null +++ b/docs/material/.icons/material/fridge-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fridge.svg b/docs/material/.icons/material/fridge.svg new file mode 100644 index 000000000..60ffd841e --- /dev/null +++ b/docs/material/.icons/material/fridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-cherries-off.svg b/docs/material/.icons/material/fruit-cherries-off.svg new file mode 100644 index 000000000..cd3d1fe94 --- /dev/null +++ b/docs/material/.icons/material/fruit-cherries-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-cherries.svg b/docs/material/.icons/material/fruit-cherries.svg new file mode 100644 index 000000000..cf2b21a92 --- /dev/null +++ b/docs/material/.icons/material/fruit-cherries.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-citrus-off.svg b/docs/material/.icons/material/fruit-citrus-off.svg new file mode 100644 index 000000000..54a9ba722 --- /dev/null +++ b/docs/material/.icons/material/fruit-citrus-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-citrus.svg b/docs/material/.icons/material/fruit-citrus.svg new file mode 100644 index 000000000..e2e94dc51 --- /dev/null +++ b/docs/material/.icons/material/fruit-citrus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-grapes-outline.svg b/docs/material/.icons/material/fruit-grapes-outline.svg new file mode 100644 index 000000000..eaf2082bc --- /dev/null +++ b/docs/material/.icons/material/fruit-grapes-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-grapes.svg b/docs/material/.icons/material/fruit-grapes.svg new file mode 100644 index 000000000..18bd9f90f --- /dev/null +++ b/docs/material/.icons/material/fruit-grapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-pineapple.svg b/docs/material/.icons/material/fruit-pineapple.svg new file mode 100644 index 000000000..b174a57ad --- /dev/null +++ b/docs/material/.icons/material/fruit-pineapple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fruit-watermelon.svg b/docs/material/.icons/material/fruit-watermelon.svg new file mode 100644 index 000000000..3111019d3 --- /dev/null +++ b/docs/material/.icons/material/fruit-watermelon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fuel.svg b/docs/material/.icons/material/fuel.svg new file mode 100644 index 000000000..4ae0e411e --- /dev/null +++ b/docs/material/.icons/material/fuel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fullscreen-exit.svg b/docs/material/.icons/material/fullscreen-exit.svg new file mode 100644 index 000000000..51f6547e2 --- /dev/null +++ b/docs/material/.icons/material/fullscreen-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fullscreen.svg b/docs/material/.icons/material/fullscreen.svg new file mode 100644 index 000000000..58054ae32 --- /dev/null +++ b/docs/material/.icons/material/fullscreen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/function-variant.svg b/docs/material/.icons/material/function-variant.svg new file mode 100644 index 000000000..e9618a59f --- /dev/null +++ b/docs/material/.icons/material/function-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/function.svg b/docs/material/.icons/material/function.svg new file mode 100644 index 000000000..b387d3f6d --- /dev/null +++ b/docs/material/.icons/material/function.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/furigana-horizontal.svg b/docs/material/.icons/material/furigana-horizontal.svg new file mode 100644 index 000000000..66d6c5cca --- /dev/null +++ b/docs/material/.icons/material/furigana-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/furigana-vertical.svg b/docs/material/.icons/material/furigana-vertical.svg new file mode 100644 index 000000000..cc11d3793 --- /dev/null +++ b/docs/material/.icons/material/furigana-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fuse-blade.svg b/docs/material/.icons/material/fuse-blade.svg new file mode 100644 index 000000000..39b232d0d --- /dev/null +++ b/docs/material/.icons/material/fuse-blade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/fuse.svg b/docs/material/.icons/material/fuse.svg new file mode 100644 index 000000000..5bdaac0a1 --- /dev/null +++ b/docs/material/.icons/material/fuse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-circle-down.svg b/docs/material/.icons/material/gamepad-circle-down.svg new file mode 100644 index 000000000..ab3cc04c6 --- /dev/null +++ b/docs/material/.icons/material/gamepad-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-circle-left.svg b/docs/material/.icons/material/gamepad-circle-left.svg new file mode 100644 index 000000000..5538dca25 --- /dev/null +++ b/docs/material/.icons/material/gamepad-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-circle-outline.svg b/docs/material/.icons/material/gamepad-circle-outline.svg new file mode 100644 index 000000000..8ed9f6962 --- /dev/null +++ b/docs/material/.icons/material/gamepad-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-circle-right.svg b/docs/material/.icons/material/gamepad-circle-right.svg new file mode 100644 index 000000000..3726fcfc0 --- /dev/null +++ b/docs/material/.icons/material/gamepad-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-circle-up.svg b/docs/material/.icons/material/gamepad-circle-up.svg new file mode 100644 index 000000000..17bb29899 --- /dev/null +++ b/docs/material/.icons/material/gamepad-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-circle.svg b/docs/material/.icons/material/gamepad-circle.svg new file mode 100644 index 000000000..a6b174f56 --- /dev/null +++ b/docs/material/.icons/material/gamepad-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-down.svg b/docs/material/.icons/material/gamepad-down.svg new file mode 100644 index 000000000..faf240ae3 --- /dev/null +++ b/docs/material/.icons/material/gamepad-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-left.svg b/docs/material/.icons/material/gamepad-left.svg new file mode 100644 index 000000000..0bf9bff77 --- /dev/null +++ b/docs/material/.icons/material/gamepad-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-right.svg b/docs/material/.icons/material/gamepad-right.svg new file mode 100644 index 000000000..1d81e699c --- /dev/null +++ b/docs/material/.icons/material/gamepad-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-round-down.svg b/docs/material/.icons/material/gamepad-round-down.svg new file mode 100644 index 000000000..120d7a5a6 --- /dev/null +++ b/docs/material/.icons/material/gamepad-round-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-round-left.svg b/docs/material/.icons/material/gamepad-round-left.svg new file mode 100644 index 000000000..4db31447d --- /dev/null +++ b/docs/material/.icons/material/gamepad-round-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-round-outline.svg b/docs/material/.icons/material/gamepad-round-outline.svg new file mode 100644 index 000000000..65a360953 --- /dev/null +++ b/docs/material/.icons/material/gamepad-round-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-round-right.svg b/docs/material/.icons/material/gamepad-round-right.svg new file mode 100644 index 000000000..b88331dd4 --- /dev/null +++ b/docs/material/.icons/material/gamepad-round-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-round-up.svg b/docs/material/.icons/material/gamepad-round-up.svg new file mode 100644 index 000000000..ebaf164f1 --- /dev/null +++ b/docs/material/.icons/material/gamepad-round-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-round.svg b/docs/material/.icons/material/gamepad-round.svg new file mode 100644 index 000000000..c3f13037d --- /dev/null +++ b/docs/material/.icons/material/gamepad-round.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-square-outline.svg b/docs/material/.icons/material/gamepad-square-outline.svg new file mode 100644 index 000000000..5096ac6e0 --- /dev/null +++ b/docs/material/.icons/material/gamepad-square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-square.svg b/docs/material/.icons/material/gamepad-square.svg new file mode 100644 index 000000000..3b971780a --- /dev/null +++ b/docs/material/.icons/material/gamepad-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-up.svg b/docs/material/.icons/material/gamepad-up.svg new file mode 100644 index 000000000..f4f1510d7 --- /dev/null +++ b/docs/material/.icons/material/gamepad-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-variant-outline.svg b/docs/material/.icons/material/gamepad-variant-outline.svg new file mode 100644 index 000000000..0d42c4a7c --- /dev/null +++ b/docs/material/.icons/material/gamepad-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad-variant.svg b/docs/material/.icons/material/gamepad-variant.svg new file mode 100644 index 000000000..d85013f93 --- /dev/null +++ b/docs/material/.icons/material/gamepad-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamepad.svg b/docs/material/.icons/material/gamepad.svg new file mode 100644 index 000000000..93c683e94 --- /dev/null +++ b/docs/material/.icons/material/gamepad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gamma.svg b/docs/material/.icons/material/gamma.svg new file mode 100644 index 000000000..79d96bc9c --- /dev/null +++ b/docs/material/.icons/material/gamma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gantry-crane.svg b/docs/material/.icons/material/gantry-crane.svg new file mode 100644 index 000000000..34539793a --- /dev/null +++ b/docs/material/.icons/material/gantry-crane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/garage-alert-variant.svg b/docs/material/.icons/material/garage-alert-variant.svg new file mode 100644 index 000000000..7b6fb0d44 --- /dev/null +++ b/docs/material/.icons/material/garage-alert-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/garage-alert.svg b/docs/material/.icons/material/garage-alert.svg new file mode 100644 index 000000000..7cdcdf214 --- /dev/null +++ b/docs/material/.icons/material/garage-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/garage-open-variant.svg b/docs/material/.icons/material/garage-open-variant.svg new file mode 100644 index 000000000..10a70caac --- /dev/null +++ b/docs/material/.icons/material/garage-open-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/garage-open.svg b/docs/material/.icons/material/garage-open.svg new file mode 100644 index 000000000..35e87573a --- /dev/null +++ b/docs/material/.icons/material/garage-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/garage-variant.svg b/docs/material/.icons/material/garage-variant.svg new file mode 100644 index 000000000..d0988d8d4 --- /dev/null +++ b/docs/material/.icons/material/garage-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/garage.svg b/docs/material/.icons/material/garage.svg new file mode 100644 index 000000000..3ff1e2e0e --- /dev/null +++ b/docs/material/.icons/material/garage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gas-cylinder.svg b/docs/material/.icons/material/gas-cylinder.svg new file mode 100644 index 000000000..8eeef1c9a --- /dev/null +++ b/docs/material/.icons/material/gas-cylinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gas-station-off-outline.svg b/docs/material/.icons/material/gas-station-off-outline.svg new file mode 100644 index 000000000..ac90d8d8a --- /dev/null +++ b/docs/material/.icons/material/gas-station-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gas-station-off.svg b/docs/material/.icons/material/gas-station-off.svg new file mode 100644 index 000000000..595b6ca96 --- /dev/null +++ b/docs/material/.icons/material/gas-station-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gas-station-outline.svg b/docs/material/.icons/material/gas-station-outline.svg new file mode 100644 index 000000000..05f7b4712 --- /dev/null +++ b/docs/material/.icons/material/gas-station-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gas-station.svg b/docs/material/.icons/material/gas-station.svg new file mode 100644 index 000000000..7badb69de --- /dev/null +++ b/docs/material/.icons/material/gas-station.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-and.svg b/docs/material/.icons/material/gate-and.svg new file mode 100644 index 000000000..afe6ab4d7 --- /dev/null +++ b/docs/material/.icons/material/gate-and.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-arrow-right.svg b/docs/material/.icons/material/gate-arrow-right.svg new file mode 100644 index 000000000..0eb2f29e8 --- /dev/null +++ b/docs/material/.icons/material/gate-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-nand.svg b/docs/material/.icons/material/gate-nand.svg new file mode 100644 index 000000000..39dc7d0dd --- /dev/null +++ b/docs/material/.icons/material/gate-nand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-nor.svg b/docs/material/.icons/material/gate-nor.svg new file mode 100644 index 000000000..ca54a11cb --- /dev/null +++ b/docs/material/.icons/material/gate-nor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-not.svg b/docs/material/.icons/material/gate-not.svg new file mode 100644 index 000000000..1560334fc --- /dev/null +++ b/docs/material/.icons/material/gate-not.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-open.svg b/docs/material/.icons/material/gate-open.svg new file mode 100644 index 000000000..a231171eb --- /dev/null +++ b/docs/material/.icons/material/gate-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-or.svg b/docs/material/.icons/material/gate-or.svg new file mode 100644 index 000000000..2f39a38cd --- /dev/null +++ b/docs/material/.icons/material/gate-or.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-xnor.svg b/docs/material/.icons/material/gate-xnor.svg new file mode 100644 index 000000000..080ba7da2 --- /dev/null +++ b/docs/material/.icons/material/gate-xnor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate-xor.svg b/docs/material/.icons/material/gate-xor.svg new file mode 100644 index 000000000..1c063accd --- /dev/null +++ b/docs/material/.icons/material/gate-xor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gate.svg b/docs/material/.icons/material/gate.svg new file mode 100644 index 000000000..ff9fff194 --- /dev/null +++ b/docs/material/.icons/material/gate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gatsby.svg b/docs/material/.icons/material/gatsby.svg new file mode 100644 index 000000000..ca823730e --- /dev/null +++ b/docs/material/.icons/material/gatsby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gauge-empty.svg b/docs/material/.icons/material/gauge-empty.svg new file mode 100644 index 000000000..c918b200c --- /dev/null +++ b/docs/material/.icons/material/gauge-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gauge-full.svg b/docs/material/.icons/material/gauge-full.svg new file mode 100644 index 000000000..6fb15fb89 --- /dev/null +++ b/docs/material/.icons/material/gauge-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gauge-low.svg b/docs/material/.icons/material/gauge-low.svg new file mode 100644 index 000000000..3f4aed860 --- /dev/null +++ b/docs/material/.icons/material/gauge-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gauge.svg b/docs/material/.icons/material/gauge.svg new file mode 100644 index 000000000..ae600823e --- /dev/null +++ b/docs/material/.icons/material/gauge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gavel.svg b/docs/material/.icons/material/gavel.svg new file mode 100644 index 000000000..e7c1a1a07 --- /dev/null +++ b/docs/material/.icons/material/gavel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gender-female.svg b/docs/material/.icons/material/gender-female.svg new file mode 100644 index 000000000..46b79e502 --- /dev/null +++ b/docs/material/.icons/material/gender-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gender-male-female-variant.svg b/docs/material/.icons/material/gender-male-female-variant.svg new file mode 100644 index 000000000..68f08380a --- /dev/null +++ b/docs/material/.icons/material/gender-male-female-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gender-male-female.svg b/docs/material/.icons/material/gender-male-female.svg new file mode 100644 index 000000000..fb1dea3d2 --- /dev/null +++ b/docs/material/.icons/material/gender-male-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gender-male.svg b/docs/material/.icons/material/gender-male.svg new file mode 100644 index 000000000..575415801 --- /dev/null +++ b/docs/material/.icons/material/gender-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gender-non-binary.svg b/docs/material/.icons/material/gender-non-binary.svg new file mode 100644 index 000000000..e6818bf07 --- /dev/null +++ b/docs/material/.icons/material/gender-non-binary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gender-transgender.svg b/docs/material/.icons/material/gender-transgender.svg new file mode 100644 index 000000000..d602ce64b --- /dev/null +++ b/docs/material/.icons/material/gender-transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gentoo.svg b/docs/material/.icons/material/gentoo.svg new file mode 100644 index 000000000..1bd1c67da --- /dev/null +++ b/docs/material/.icons/material/gentoo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-double-tap.svg b/docs/material/.icons/material/gesture-double-tap.svg new file mode 100644 index 000000000..c03251656 --- /dev/null +++ b/docs/material/.icons/material/gesture-double-tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-pinch.svg b/docs/material/.icons/material/gesture-pinch.svg new file mode 100644 index 000000000..eb04037b0 --- /dev/null +++ b/docs/material/.icons/material/gesture-pinch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-spread.svg b/docs/material/.icons/material/gesture-spread.svg new file mode 100644 index 000000000..cab3dd26e --- /dev/null +++ b/docs/material/.icons/material/gesture-spread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-swipe-down.svg b/docs/material/.icons/material/gesture-swipe-down.svg new file mode 100644 index 000000000..57121cd30 --- /dev/null +++ b/docs/material/.icons/material/gesture-swipe-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-swipe-horizontal.svg b/docs/material/.icons/material/gesture-swipe-horizontal.svg new file mode 100644 index 000000000..b99dad94b --- /dev/null +++ b/docs/material/.icons/material/gesture-swipe-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-swipe-left.svg b/docs/material/.icons/material/gesture-swipe-left.svg new file mode 100644 index 000000000..13cf37994 --- /dev/null +++ b/docs/material/.icons/material/gesture-swipe-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-swipe-right.svg b/docs/material/.icons/material/gesture-swipe-right.svg new file mode 100644 index 000000000..7355a502d --- /dev/null +++ b/docs/material/.icons/material/gesture-swipe-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-swipe-up.svg b/docs/material/.icons/material/gesture-swipe-up.svg new file mode 100644 index 000000000..f714046e1 --- /dev/null +++ b/docs/material/.icons/material/gesture-swipe-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-swipe-vertical.svg b/docs/material/.icons/material/gesture-swipe-vertical.svg new file mode 100644 index 000000000..f26502b85 --- /dev/null +++ b/docs/material/.icons/material/gesture-swipe-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-swipe.svg b/docs/material/.icons/material/gesture-swipe.svg new file mode 100644 index 000000000..dab8db6ed --- /dev/null +++ b/docs/material/.icons/material/gesture-swipe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-tap-box.svg b/docs/material/.icons/material/gesture-tap-box.svg new file mode 100644 index 000000000..d09baf073 --- /dev/null +++ b/docs/material/.icons/material/gesture-tap-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-tap-button.svg b/docs/material/.icons/material/gesture-tap-button.svg new file mode 100644 index 000000000..fe5b9e4b1 --- /dev/null +++ b/docs/material/.icons/material/gesture-tap-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-tap-hold.svg b/docs/material/.icons/material/gesture-tap-hold.svg new file mode 100644 index 000000000..8f5ffde66 --- /dev/null +++ b/docs/material/.icons/material/gesture-tap-hold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-tap.svg b/docs/material/.icons/material/gesture-tap.svg new file mode 100644 index 000000000..729483fea --- /dev/null +++ b/docs/material/.icons/material/gesture-tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-two-double-tap.svg b/docs/material/.icons/material/gesture-two-double-tap.svg new file mode 100644 index 000000000..d35d9102b --- /dev/null +++ b/docs/material/.icons/material/gesture-two-double-tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture-two-tap.svg b/docs/material/.icons/material/gesture-two-tap.svg new file mode 100644 index 000000000..e8164f836 --- /dev/null +++ b/docs/material/.icons/material/gesture-two-tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gesture.svg b/docs/material/.icons/material/gesture.svg new file mode 100644 index 000000000..4d1476b85 --- /dev/null +++ b/docs/material/.icons/material/gesture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ghost-off.svg b/docs/material/.icons/material/ghost-off.svg new file mode 100644 index 000000000..43db2bd38 --- /dev/null +++ b/docs/material/.icons/material/ghost-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ghost.svg b/docs/material/.icons/material/ghost.svg new file mode 100644 index 000000000..bbeee8227 --- /dev/null +++ b/docs/material/.icons/material/ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gif.svg b/docs/material/.icons/material/gif.svg new file mode 100644 index 000000000..e9f922889 --- /dev/null +++ b/docs/material/.icons/material/gif.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gift-outline.svg b/docs/material/.icons/material/gift-outline.svg new file mode 100644 index 000000000..016d59e53 --- /dev/null +++ b/docs/material/.icons/material/gift-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gift.svg b/docs/material/.icons/material/gift.svg new file mode 100644 index 000000000..19535cfa6 --- /dev/null +++ b/docs/material/.icons/material/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/git.svg b/docs/material/.icons/material/git.svg new file mode 100644 index 000000000..ffd7c4a84 --- /dev/null +++ b/docs/material/.icons/material/git.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/github.svg b/docs/material/.icons/material/github.svg new file mode 100644 index 000000000..9333993bf --- /dev/null +++ b/docs/material/.icons/material/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gitlab.svg b/docs/material/.icons/material/gitlab.svg new file mode 100644 index 000000000..1689781f7 --- /dev/null +++ b/docs/material/.icons/material/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-cocktail.svg b/docs/material/.icons/material/glass-cocktail.svg new file mode 100644 index 000000000..fde521da0 --- /dev/null +++ b/docs/material/.icons/material/glass-cocktail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-flute.svg b/docs/material/.icons/material/glass-flute.svg new file mode 100644 index 000000000..bc41ce89f --- /dev/null +++ b/docs/material/.icons/material/glass-flute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-mug-variant.svg b/docs/material/.icons/material/glass-mug-variant.svg new file mode 100644 index 000000000..8197c6a10 --- /dev/null +++ b/docs/material/.icons/material/glass-mug-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-mug.svg b/docs/material/.icons/material/glass-mug.svg new file mode 100644 index 000000000..e2d7de9ba --- /dev/null +++ b/docs/material/.icons/material/glass-mug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-pint-outline.svg b/docs/material/.icons/material/glass-pint-outline.svg new file mode 100644 index 000000000..5bc872120 --- /dev/null +++ b/docs/material/.icons/material/glass-pint-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-stange.svg b/docs/material/.icons/material/glass-stange.svg new file mode 100644 index 000000000..b72ae51fa --- /dev/null +++ b/docs/material/.icons/material/glass-stange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-tulip.svg b/docs/material/.icons/material/glass-tulip.svg new file mode 100644 index 000000000..b4bacb77a --- /dev/null +++ b/docs/material/.icons/material/glass-tulip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glass-wine.svg b/docs/material/.icons/material/glass-wine.svg new file mode 100644 index 000000000..8dc94fea7 --- /dev/null +++ b/docs/material/.icons/material/glass-wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/glasses.svg b/docs/material/.icons/material/glasses.svg new file mode 100644 index 000000000..09619aca5 --- /dev/null +++ b/docs/material/.icons/material/glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/globe-light.svg b/docs/material/.icons/material/globe-light.svg new file mode 100644 index 000000000..bbbca0e86 --- /dev/null +++ b/docs/material/.icons/material/globe-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/globe-model.svg b/docs/material/.icons/material/globe-model.svg new file mode 100644 index 000000000..9d6be4fae --- /dev/null +++ b/docs/material/.icons/material/globe-model.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gmail.svg b/docs/material/.icons/material/gmail.svg new file mode 100644 index 000000000..0bf32cb95 --- /dev/null +++ b/docs/material/.icons/material/gmail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gnome.svg b/docs/material/.icons/material/gnome.svg new file mode 100644 index 000000000..3ce291b21 --- /dev/null +++ b/docs/material/.icons/material/gnome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/go-kart-track.svg b/docs/material/.icons/material/go-kart-track.svg new file mode 100644 index 000000000..7bce942d5 --- /dev/null +++ b/docs/material/.icons/material/go-kart-track.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/go-kart.svg b/docs/material/.icons/material/go-kart.svg new file mode 100644 index 000000000..635ef1c33 --- /dev/null +++ b/docs/material/.icons/material/go-kart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gog.svg b/docs/material/.icons/material/gog.svg new file mode 100644 index 000000000..cf92cff48 --- /dev/null +++ b/docs/material/.icons/material/gog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gold.svg b/docs/material/.icons/material/gold.svg new file mode 100644 index 000000000..6d186708d --- /dev/null +++ b/docs/material/.icons/material/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/golf-cart.svg b/docs/material/.icons/material/golf-cart.svg new file mode 100644 index 000000000..c3ea59cf1 --- /dev/null +++ b/docs/material/.icons/material/golf-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/golf-tee.svg b/docs/material/.icons/material/golf-tee.svg new file mode 100644 index 000000000..9d7b45280 --- /dev/null +++ b/docs/material/.icons/material/golf-tee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/golf.svg b/docs/material/.icons/material/golf.svg new file mode 100644 index 000000000..ed47a4e69 --- /dev/null +++ b/docs/material/.icons/material/golf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gondola.svg b/docs/material/.icons/material/gondola.svg new file mode 100644 index 000000000..50d323c36 --- /dev/null +++ b/docs/material/.icons/material/gondola.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/goodreads.svg b/docs/material/.icons/material/goodreads.svg new file mode 100644 index 000000000..7db4d6451 --- /dev/null +++ b/docs/material/.icons/material/goodreads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-ads.svg b/docs/material/.icons/material/google-ads.svg new file mode 100644 index 000000000..2c194dca6 --- /dev/null +++ b/docs/material/.icons/material/google-ads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-analytics.svg b/docs/material/.icons/material/google-analytics.svg new file mode 100644 index 000000000..7c15c78b7 --- /dev/null +++ b/docs/material/.icons/material/google-analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-assistant.svg b/docs/material/.icons/material/google-assistant.svg new file mode 100644 index 000000000..bf688e99a --- /dev/null +++ b/docs/material/.icons/material/google-assistant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-cardboard.svg b/docs/material/.icons/material/google-cardboard.svg new file mode 100644 index 000000000..c0b4e3be4 --- /dev/null +++ b/docs/material/.icons/material/google-cardboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-chrome.svg b/docs/material/.icons/material/google-chrome.svg new file mode 100644 index 000000000..2845cb968 --- /dev/null +++ b/docs/material/.icons/material/google-chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-circles-communities.svg b/docs/material/.icons/material/google-circles-communities.svg new file mode 100644 index 000000000..5b7f91fe2 --- /dev/null +++ b/docs/material/.icons/material/google-circles-communities.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-circles-extended.svg b/docs/material/.icons/material/google-circles-extended.svg new file mode 100644 index 000000000..330dc9b79 --- /dev/null +++ b/docs/material/.icons/material/google-circles-extended.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-circles-group.svg b/docs/material/.icons/material/google-circles-group.svg new file mode 100644 index 000000000..bd56e9cee --- /dev/null +++ b/docs/material/.icons/material/google-circles-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-circles.svg b/docs/material/.icons/material/google-circles.svg new file mode 100644 index 000000000..1d1175b64 --- /dev/null +++ b/docs/material/.icons/material/google-circles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-classroom.svg b/docs/material/.icons/material/google-classroom.svg new file mode 100644 index 000000000..448c983a3 --- /dev/null +++ b/docs/material/.icons/material/google-classroom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-cloud.svg b/docs/material/.icons/material/google-cloud.svg new file mode 100644 index 000000000..9b32027b4 --- /dev/null +++ b/docs/material/.icons/material/google-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-controller-off.svg b/docs/material/.icons/material/google-controller-off.svg new file mode 100644 index 000000000..c8ed3685b --- /dev/null +++ b/docs/material/.icons/material/google-controller-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-controller.svg b/docs/material/.icons/material/google-controller.svg new file mode 100644 index 000000000..31e3f7139 --- /dev/null +++ b/docs/material/.icons/material/google-controller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-downasaur.svg b/docs/material/.icons/material/google-downasaur.svg new file mode 100644 index 000000000..cdad5534a --- /dev/null +++ b/docs/material/.icons/material/google-downasaur.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-drive.svg b/docs/material/.icons/material/google-drive.svg new file mode 100644 index 000000000..9fb6fd24b --- /dev/null +++ b/docs/material/.icons/material/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-earth.svg b/docs/material/.icons/material/google-earth.svg new file mode 100644 index 000000000..f0c8fd0c6 --- /dev/null +++ b/docs/material/.icons/material/google-earth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-fit.svg b/docs/material/.icons/material/google-fit.svg new file mode 100644 index 000000000..7d6f7cdc8 --- /dev/null +++ b/docs/material/.icons/material/google-fit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-glass.svg b/docs/material/.icons/material/google-glass.svg new file mode 100644 index 000000000..79955fbce --- /dev/null +++ b/docs/material/.icons/material/google-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-hangouts.svg b/docs/material/.icons/material/google-hangouts.svg new file mode 100644 index 000000000..6b5b0f58e --- /dev/null +++ b/docs/material/.icons/material/google-hangouts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-home.svg b/docs/material/.icons/material/google-home.svg new file mode 100644 index 000000000..874948e39 --- /dev/null +++ b/docs/material/.icons/material/google-home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-keep.svg b/docs/material/.icons/material/google-keep.svg new file mode 100644 index 000000000..31e0d384d --- /dev/null +++ b/docs/material/.icons/material/google-keep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-lens.svg b/docs/material/.icons/material/google-lens.svg new file mode 100644 index 000000000..6067b0f7d --- /dev/null +++ b/docs/material/.icons/material/google-lens.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-maps.svg b/docs/material/.icons/material/google-maps.svg new file mode 100644 index 000000000..0239b7e94 --- /dev/null +++ b/docs/material/.icons/material/google-maps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-my-business.svg b/docs/material/.icons/material/google-my-business.svg new file mode 100644 index 000000000..c43197761 --- /dev/null +++ b/docs/material/.icons/material/google-my-business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-nearby.svg b/docs/material/.icons/material/google-nearby.svg new file mode 100644 index 000000000..3353e1f0c --- /dev/null +++ b/docs/material/.icons/material/google-nearby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-photos.svg b/docs/material/.icons/material/google-photos.svg new file mode 100644 index 000000000..162cc6308 --- /dev/null +++ b/docs/material/.icons/material/google-photos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-play.svg b/docs/material/.icons/material/google-play.svg new file mode 100644 index 000000000..b3cf11506 --- /dev/null +++ b/docs/material/.icons/material/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-plus.svg b/docs/material/.icons/material/google-plus.svg new file mode 100644 index 000000000..685d02587 --- /dev/null +++ b/docs/material/.icons/material/google-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-podcast.svg b/docs/material/.icons/material/google-podcast.svg new file mode 100644 index 000000000..9d26d3f10 --- /dev/null +++ b/docs/material/.icons/material/google-podcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-spreadsheet.svg b/docs/material/.icons/material/google-spreadsheet.svg new file mode 100644 index 000000000..3eac6dee4 --- /dev/null +++ b/docs/material/.icons/material/google-spreadsheet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-street-view.svg b/docs/material/.icons/material/google-street-view.svg new file mode 100644 index 000000000..436b7d53a --- /dev/null +++ b/docs/material/.icons/material/google-street-view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google-translate.svg b/docs/material/.icons/material/google-translate.svg new file mode 100644 index 000000000..c3da097dd --- /dev/null +++ b/docs/material/.icons/material/google-translate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/google.svg b/docs/material/.icons/material/google.svg new file mode 100644 index 000000000..7be010f75 --- /dev/null +++ b/docs/material/.icons/material/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/gradient.svg b/docs/material/.icons/material/gradient.svg new file mode 100644 index 000000000..7fd346178 --- /dev/null +++ b/docs/material/.icons/material/gradient.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grain.svg b/docs/material/.icons/material/grain.svg new file mode 100644 index 000000000..29dc77fc9 --- /dev/null +++ b/docs/material/.icons/material/grain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/graph-outline.svg b/docs/material/.icons/material/graph-outline.svg new file mode 100644 index 000000000..3418c64d4 --- /dev/null +++ b/docs/material/.icons/material/graph-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/graph.svg b/docs/material/.icons/material/graph.svg new file mode 100644 index 000000000..44dbcae53 --- /dev/null +++ b/docs/material/.icons/material/graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/graphql.svg b/docs/material/.icons/material/graphql.svg new file mode 100644 index 000000000..8699eac5d --- /dev/null +++ b/docs/material/.icons/material/graphql.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grave-stone.svg b/docs/material/.icons/material/grave-stone.svg new file mode 100644 index 000000000..1151abea7 --- /dev/null +++ b/docs/material/.icons/material/grave-stone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grease-pencil.svg b/docs/material/.icons/material/grease-pencil.svg new file mode 100644 index 000000000..61af40884 --- /dev/null +++ b/docs/material/.icons/material/grease-pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/greater-than-or-equal.svg b/docs/material/.icons/material/greater-than-or-equal.svg new file mode 100644 index 000000000..475e59d1a --- /dev/null +++ b/docs/material/.icons/material/greater-than-or-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/greater-than.svg b/docs/material/.icons/material/greater-than.svg new file mode 100644 index 000000000..08fa05a8c --- /dev/null +++ b/docs/material/.icons/material/greater-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grid-large.svg b/docs/material/.icons/material/grid-large.svg new file mode 100644 index 000000000..efb413e22 --- /dev/null +++ b/docs/material/.icons/material/grid-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grid-off.svg b/docs/material/.icons/material/grid-off.svg new file mode 100644 index 000000000..311d2c4d3 --- /dev/null +++ b/docs/material/.icons/material/grid-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grid.svg b/docs/material/.icons/material/grid.svg new file mode 100644 index 000000000..abead3864 --- /dev/null +++ b/docs/material/.icons/material/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grill-outline.svg b/docs/material/.icons/material/grill-outline.svg new file mode 100644 index 000000000..29a9177e3 --- /dev/null +++ b/docs/material/.icons/material/grill-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/grill.svg b/docs/material/.icons/material/grill.svg new file mode 100644 index 000000000..e33318dd3 --- /dev/null +++ b/docs/material/.icons/material/grill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/group.svg b/docs/material/.icons/material/group.svg new file mode 100644 index 000000000..e25bcc6d0 --- /dev/null +++ b/docs/material/.icons/material/group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/guitar-acoustic.svg b/docs/material/.icons/material/guitar-acoustic.svg new file mode 100644 index 000000000..2ab387354 --- /dev/null +++ b/docs/material/.icons/material/guitar-acoustic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/guitar-electric.svg b/docs/material/.icons/material/guitar-electric.svg new file mode 100644 index 000000000..7a451a9b3 --- /dev/null +++ b/docs/material/.icons/material/guitar-electric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/guitar-pick-outline.svg b/docs/material/.icons/material/guitar-pick-outline.svg new file mode 100644 index 000000000..001aa589d --- /dev/null +++ b/docs/material/.icons/material/guitar-pick-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/guitar-pick.svg b/docs/material/.icons/material/guitar-pick.svg new file mode 100644 index 000000000..aacf2da9a --- /dev/null +++ b/docs/material/.icons/material/guitar-pick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/guy-fawkes-mask.svg b/docs/material/.icons/material/guy-fawkes-mask.svg new file mode 100644 index 000000000..e2680d55c --- /dev/null +++ b/docs/material/.icons/material/guy-fawkes-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hail.svg b/docs/material/.icons/material/hail.svg new file mode 100644 index 000000000..54f0ab041 --- /dev/null +++ b/docs/material/.icons/material/hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hair-dryer-outline.svg b/docs/material/.icons/material/hair-dryer-outline.svg new file mode 100644 index 000000000..c6b135460 --- /dev/null +++ b/docs/material/.icons/material/hair-dryer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hair-dryer.svg b/docs/material/.icons/material/hair-dryer.svg new file mode 100644 index 000000000..68ac3ab8d --- /dev/null +++ b/docs/material/.icons/material/hair-dryer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/halloween.svg b/docs/material/.icons/material/halloween.svg new file mode 100644 index 000000000..5046e4b15 --- /dev/null +++ b/docs/material/.icons/material/halloween.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hamburger.svg b/docs/material/.icons/material/hamburger.svg new file mode 100644 index 000000000..7537b1c7d --- /dev/null +++ b/docs/material/.icons/material/hamburger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hammer-screwdriver.svg b/docs/material/.icons/material/hammer-screwdriver.svg new file mode 100644 index 000000000..18bee75d5 --- /dev/null +++ b/docs/material/.icons/material/hammer-screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hammer-wrench.svg b/docs/material/.icons/material/hammer-wrench.svg new file mode 100644 index 000000000..ac1c85771 --- /dev/null +++ b/docs/material/.icons/material/hammer-wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hammer.svg b/docs/material/.icons/material/hammer.svg new file mode 100644 index 000000000..ae7c6abf8 --- /dev/null +++ b/docs/material/.icons/material/hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-heart.svg b/docs/material/.icons/material/hand-heart.svg new file mode 100644 index 000000000..2665a18cb --- /dev/null +++ b/docs/material/.icons/material/hand-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-left.svg b/docs/material/.icons/material/hand-left.svg new file mode 100644 index 000000000..966516be1 --- /dev/null +++ b/docs/material/.icons/material/hand-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-okay.svg b/docs/material/.icons/material/hand-okay.svg new file mode 100644 index 000000000..5cb2eb842 --- /dev/null +++ b/docs/material/.icons/material/hand-okay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-peace-variant.svg b/docs/material/.icons/material/hand-peace-variant.svg new file mode 100644 index 000000000..7a9aa1a9d --- /dev/null +++ b/docs/material/.icons/material/hand-peace-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-peace.svg b/docs/material/.icons/material/hand-peace.svg new file mode 100644 index 000000000..828653f6e --- /dev/null +++ b/docs/material/.icons/material/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-pointing-down.svg b/docs/material/.icons/material/hand-pointing-down.svg new file mode 100644 index 000000000..78ac9393b --- /dev/null +++ b/docs/material/.icons/material/hand-pointing-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-pointing-left.svg b/docs/material/.icons/material/hand-pointing-left.svg new file mode 100644 index 000000000..ddc2fb53a --- /dev/null +++ b/docs/material/.icons/material/hand-pointing-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-pointing-right.svg b/docs/material/.icons/material/hand-pointing-right.svg new file mode 100644 index 000000000..3b423ed3e --- /dev/null +++ b/docs/material/.icons/material/hand-pointing-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-pointing-up.svg b/docs/material/.icons/material/hand-pointing-up.svg new file mode 100644 index 000000000..cad9e25e8 --- /dev/null +++ b/docs/material/.icons/material/hand-pointing-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-right.svg b/docs/material/.icons/material/hand-right.svg new file mode 100644 index 000000000..e46b2b53e --- /dev/null +++ b/docs/material/.icons/material/hand-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-saw.svg b/docs/material/.icons/material/hand-saw.svg new file mode 100644 index 000000000..1c305b91e --- /dev/null +++ b/docs/material/.icons/material/hand-saw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand-water.svg b/docs/material/.icons/material/hand-water.svg new file mode 100644 index 000000000..69ab45754 --- /dev/null +++ b/docs/material/.icons/material/hand-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hand.svg b/docs/material/.icons/material/hand.svg new file mode 100644 index 000000000..171912e69 --- /dev/null +++ b/docs/material/.icons/material/hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/handball.svg b/docs/material/.icons/material/handball.svg new file mode 100644 index 000000000..2233c0f74 --- /dev/null +++ b/docs/material/.icons/material/handball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/handcuffs.svg b/docs/material/.icons/material/handcuffs.svg new file mode 100644 index 000000000..daf72e1d3 --- /dev/null +++ b/docs/material/.icons/material/handcuffs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/handshake.svg b/docs/material/.icons/material/handshake.svg new file mode 100644 index 000000000..ad68e36c3 --- /dev/null +++ b/docs/material/.icons/material/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hanger.svg b/docs/material/.icons/material/hanger.svg new file mode 100644 index 000000000..09775e70e --- /dev/null +++ b/docs/material/.icons/material/hanger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hard-hat.svg b/docs/material/.icons/material/hard-hat.svg new file mode 100644 index 000000000..13bbb6fe3 --- /dev/null +++ b/docs/material/.icons/material/hard-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/harddisk-plus.svg b/docs/material/.icons/material/harddisk-plus.svg new file mode 100644 index 000000000..d4a13af4c --- /dev/null +++ b/docs/material/.icons/material/harddisk-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/harddisk-remove.svg b/docs/material/.icons/material/harddisk-remove.svg new file mode 100644 index 000000000..7bede6cd1 --- /dev/null +++ b/docs/material/.icons/material/harddisk-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/harddisk.svg b/docs/material/.icons/material/harddisk.svg new file mode 100644 index 000000000..09c9b937b --- /dev/null +++ b/docs/material/.icons/material/harddisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hat-fedora.svg b/docs/material/.icons/material/hat-fedora.svg new file mode 100644 index 000000000..b78565d97 --- /dev/null +++ b/docs/material/.icons/material/hat-fedora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hazard-lights.svg b/docs/material/.icons/material/hazard-lights.svg new file mode 100644 index 000000000..8e0762662 --- /dev/null +++ b/docs/material/.icons/material/hazard-lights.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hdr-off.svg b/docs/material/.icons/material/hdr-off.svg new file mode 100644 index 000000000..e92c89300 --- /dev/null +++ b/docs/material/.icons/material/hdr-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hdr.svg b/docs/material/.icons/material/hdr.svg new file mode 100644 index 000000000..8b2a1463f --- /dev/null +++ b/docs/material/.icons/material/hdr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-alert-outline.svg b/docs/material/.icons/material/head-alert-outline.svg new file mode 100644 index 000000000..110f9195d --- /dev/null +++ b/docs/material/.icons/material/head-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-alert.svg b/docs/material/.icons/material/head-alert.svg new file mode 100644 index 000000000..269319526 --- /dev/null +++ b/docs/material/.icons/material/head-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-check-outline.svg b/docs/material/.icons/material/head-check-outline.svg new file mode 100644 index 000000000..8655ae7f0 --- /dev/null +++ b/docs/material/.icons/material/head-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-check.svg b/docs/material/.icons/material/head-check.svg new file mode 100644 index 000000000..7d934eb6c --- /dev/null +++ b/docs/material/.icons/material/head-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-cog-outline.svg b/docs/material/.icons/material/head-cog-outline.svg new file mode 100644 index 000000000..e625d2c80 --- /dev/null +++ b/docs/material/.icons/material/head-cog-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-cog.svg b/docs/material/.icons/material/head-cog.svg new file mode 100644 index 000000000..af0f90c6b --- /dev/null +++ b/docs/material/.icons/material/head-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-dots-horizontal-outline.svg b/docs/material/.icons/material/head-dots-horizontal-outline.svg new file mode 100644 index 000000000..609fc2c11 --- /dev/null +++ b/docs/material/.icons/material/head-dots-horizontal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-dots-horizontal.svg b/docs/material/.icons/material/head-dots-horizontal.svg new file mode 100644 index 000000000..432e475dc --- /dev/null +++ b/docs/material/.icons/material/head-dots-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-flash-outline.svg b/docs/material/.icons/material/head-flash-outline.svg new file mode 100644 index 000000000..43074eb4d --- /dev/null +++ b/docs/material/.icons/material/head-flash-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-flash.svg b/docs/material/.icons/material/head-flash.svg new file mode 100644 index 000000000..931cc8835 --- /dev/null +++ b/docs/material/.icons/material/head-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-heart-outline.svg b/docs/material/.icons/material/head-heart-outline.svg new file mode 100644 index 000000000..55e6819a0 --- /dev/null +++ b/docs/material/.icons/material/head-heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-heart.svg b/docs/material/.icons/material/head-heart.svg new file mode 100644 index 000000000..68a9c1a5f --- /dev/null +++ b/docs/material/.icons/material/head-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-lightbulb-outline.svg b/docs/material/.icons/material/head-lightbulb-outline.svg new file mode 100644 index 000000000..dad1d30c7 --- /dev/null +++ b/docs/material/.icons/material/head-lightbulb-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-lightbulb.svg b/docs/material/.icons/material/head-lightbulb.svg new file mode 100644 index 000000000..0b04c7895 --- /dev/null +++ b/docs/material/.icons/material/head-lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-minus-outline.svg b/docs/material/.icons/material/head-minus-outline.svg new file mode 100644 index 000000000..6928fb739 --- /dev/null +++ b/docs/material/.icons/material/head-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-minus.svg b/docs/material/.icons/material/head-minus.svg new file mode 100644 index 000000000..979a4f7d0 --- /dev/null +++ b/docs/material/.icons/material/head-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-outline.svg b/docs/material/.icons/material/head-outline.svg new file mode 100644 index 000000000..1320523d9 --- /dev/null +++ b/docs/material/.icons/material/head-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-plus-outline.svg b/docs/material/.icons/material/head-plus-outline.svg new file mode 100644 index 000000000..9d77caef9 --- /dev/null +++ b/docs/material/.icons/material/head-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-plus.svg b/docs/material/.icons/material/head-plus.svg new file mode 100644 index 000000000..5a0ae5f52 --- /dev/null +++ b/docs/material/.icons/material/head-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-question-outline.svg b/docs/material/.icons/material/head-question-outline.svg new file mode 100644 index 000000000..92f7e15a0 --- /dev/null +++ b/docs/material/.icons/material/head-question-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-question.svg b/docs/material/.icons/material/head-question.svg new file mode 100644 index 000000000..52b77de11 --- /dev/null +++ b/docs/material/.icons/material/head-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-remove-outline.svg b/docs/material/.icons/material/head-remove-outline.svg new file mode 100644 index 000000000..c68497041 --- /dev/null +++ b/docs/material/.icons/material/head-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-remove.svg b/docs/material/.icons/material/head-remove.svg new file mode 100644 index 000000000..e5650ab83 --- /dev/null +++ b/docs/material/.icons/material/head-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-snowflake-outline.svg b/docs/material/.icons/material/head-snowflake-outline.svg new file mode 100644 index 000000000..9b14c9703 --- /dev/null +++ b/docs/material/.icons/material/head-snowflake-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-snowflake.svg b/docs/material/.icons/material/head-snowflake.svg new file mode 100644 index 000000000..f9324d799 --- /dev/null +++ b/docs/material/.icons/material/head-snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-sync-outline.svg b/docs/material/.icons/material/head-sync-outline.svg new file mode 100644 index 000000000..7245b12f7 --- /dev/null +++ b/docs/material/.icons/material/head-sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head-sync.svg b/docs/material/.icons/material/head-sync.svg new file mode 100644 index 000000000..9b808f2ca --- /dev/null +++ b/docs/material/.icons/material/head-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/head.svg b/docs/material/.icons/material/head.svg new file mode 100644 index 000000000..f1a43695f --- /dev/null +++ b/docs/material/.icons/material/head.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headphones-bluetooth.svg b/docs/material/.icons/material/headphones-bluetooth.svg new file mode 100644 index 000000000..c9ddac168 --- /dev/null +++ b/docs/material/.icons/material/headphones-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headphones-box.svg b/docs/material/.icons/material/headphones-box.svg new file mode 100644 index 000000000..c6debb585 --- /dev/null +++ b/docs/material/.icons/material/headphones-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headphones-off.svg b/docs/material/.icons/material/headphones-off.svg new file mode 100644 index 000000000..239fea85c --- /dev/null +++ b/docs/material/.icons/material/headphones-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headphones-settings.svg b/docs/material/.icons/material/headphones-settings.svg new file mode 100644 index 000000000..1cacd36a0 --- /dev/null +++ b/docs/material/.icons/material/headphones-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headphones.svg b/docs/material/.icons/material/headphones.svg new file mode 100644 index 000000000..5ae302d72 --- /dev/null +++ b/docs/material/.icons/material/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headset-dock.svg b/docs/material/.icons/material/headset-dock.svg new file mode 100644 index 000000000..5ec72ff9b --- /dev/null +++ b/docs/material/.icons/material/headset-dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headset-off.svg b/docs/material/.icons/material/headset-off.svg new file mode 100644 index 000000000..46d5b32f8 --- /dev/null +++ b/docs/material/.icons/material/headset-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/headset.svg b/docs/material/.icons/material/headset.svg new file mode 100644 index 000000000..5b2d3a33b --- /dev/null +++ b/docs/material/.icons/material/headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-box-outline.svg b/docs/material/.icons/material/heart-box-outline.svg new file mode 100644 index 000000000..e80bc84c1 --- /dev/null +++ b/docs/material/.icons/material/heart-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-box.svg b/docs/material/.icons/material/heart-box.svg new file mode 100644 index 000000000..ca6466a64 --- /dev/null +++ b/docs/material/.icons/material/heart-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-broken-outline.svg b/docs/material/.icons/material/heart-broken-outline.svg new file mode 100644 index 000000000..293f7f901 --- /dev/null +++ b/docs/material/.icons/material/heart-broken-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-broken.svg b/docs/material/.icons/material/heart-broken.svg new file mode 100644 index 000000000..cc326554e --- /dev/null +++ b/docs/material/.icons/material/heart-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-circle-outline.svg b/docs/material/.icons/material/heart-circle-outline.svg new file mode 100644 index 000000000..11b83041f --- /dev/null +++ b/docs/material/.icons/material/heart-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-circle.svg b/docs/material/.icons/material/heart-circle.svg new file mode 100644 index 000000000..0f057f756 --- /dev/null +++ b/docs/material/.icons/material/heart-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-flash.svg b/docs/material/.icons/material/heart-flash.svg new file mode 100644 index 000000000..5f18dca58 --- /dev/null +++ b/docs/material/.icons/material/heart-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-half-full.svg b/docs/material/.icons/material/heart-half-full.svg new file mode 100644 index 000000000..a3f9704a1 --- /dev/null +++ b/docs/material/.icons/material/heart-half-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-half-outline.svg b/docs/material/.icons/material/heart-half-outline.svg new file mode 100644 index 000000000..d1fdc1fcb --- /dev/null +++ b/docs/material/.icons/material/heart-half-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-half.svg b/docs/material/.icons/material/heart-half.svg new file mode 100644 index 000000000..a52490fa8 --- /dev/null +++ b/docs/material/.icons/material/heart-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-multiple-outline.svg b/docs/material/.icons/material/heart-multiple-outline.svg new file mode 100644 index 000000000..5577df278 --- /dev/null +++ b/docs/material/.icons/material/heart-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-multiple.svg b/docs/material/.icons/material/heart-multiple.svg new file mode 100644 index 000000000..fa9b3a6d1 --- /dev/null +++ b/docs/material/.icons/material/heart-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-off.svg b/docs/material/.icons/material/heart-off.svg new file mode 100644 index 000000000..d17dd53d4 --- /dev/null +++ b/docs/material/.icons/material/heart-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-outline.svg b/docs/material/.icons/material/heart-outline.svg new file mode 100644 index 000000000..098364414 --- /dev/null +++ b/docs/material/.icons/material/heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart-pulse.svg b/docs/material/.icons/material/heart-pulse.svg new file mode 100644 index 000000000..3cacf9896 --- /dev/null +++ b/docs/material/.icons/material/heart-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/heart.svg b/docs/material/.icons/material/heart.svg new file mode 100644 index 000000000..69d69a0e1 --- /dev/null +++ b/docs/material/.icons/material/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/helicopter.svg b/docs/material/.icons/material/helicopter.svg new file mode 100644 index 000000000..0e1d6ae87 --- /dev/null +++ b/docs/material/.icons/material/helicopter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help-box.svg b/docs/material/.icons/material/help-box.svg new file mode 100644 index 000000000..e916ef187 --- /dev/null +++ b/docs/material/.icons/material/help-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help-circle-outline.svg b/docs/material/.icons/material/help-circle-outline.svg new file mode 100644 index 000000000..9f5515ab5 --- /dev/null +++ b/docs/material/.icons/material/help-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help-circle.svg b/docs/material/.icons/material/help-circle.svg new file mode 100644 index 000000000..8e4dd2fcf --- /dev/null +++ b/docs/material/.icons/material/help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help-network-outline.svg b/docs/material/.icons/material/help-network-outline.svg new file mode 100644 index 000000000..7ea8eaf8b --- /dev/null +++ b/docs/material/.icons/material/help-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help-network.svg b/docs/material/.icons/material/help-network.svg new file mode 100644 index 000000000..6c9e70ad4 --- /dev/null +++ b/docs/material/.icons/material/help-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help-rhombus-outline.svg b/docs/material/.icons/material/help-rhombus-outline.svg new file mode 100644 index 000000000..3918d4ec7 --- /dev/null +++ b/docs/material/.icons/material/help-rhombus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help-rhombus.svg b/docs/material/.icons/material/help-rhombus.svg new file mode 100644 index 000000000..0e19d8198 --- /dev/null +++ b/docs/material/.icons/material/help-rhombus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/help.svg b/docs/material/.icons/material/help.svg new file mode 100644 index 000000000..c6b50367e --- /dev/null +++ b/docs/material/.icons/material/help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexadecimal.svg b/docs/material/.icons/material/hexadecimal.svg new file mode 100644 index 000000000..9dfee5af3 --- /dev/null +++ b/docs/material/.icons/material/hexadecimal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-multiple-outline.svg b/docs/material/.icons/material/hexagon-multiple-outline.svg new file mode 100644 index 000000000..ff22f1d77 --- /dev/null +++ b/docs/material/.icons/material/hexagon-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-multiple.svg b/docs/material/.icons/material/hexagon-multiple.svg new file mode 100644 index 000000000..f0d13d58e --- /dev/null +++ b/docs/material/.icons/material/hexagon-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-outline.svg b/docs/material/.icons/material/hexagon-outline.svg new file mode 100644 index 000000000..24e893dd7 --- /dev/null +++ b/docs/material/.icons/material/hexagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-slice-1.svg b/docs/material/.icons/material/hexagon-slice-1.svg new file mode 100644 index 000000000..7b73486db --- /dev/null +++ b/docs/material/.icons/material/hexagon-slice-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-slice-2.svg b/docs/material/.icons/material/hexagon-slice-2.svg new file mode 100644 index 000000000..b34ce8bed --- /dev/null +++ b/docs/material/.icons/material/hexagon-slice-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-slice-3.svg b/docs/material/.icons/material/hexagon-slice-3.svg new file mode 100644 index 000000000..5f828be01 --- /dev/null +++ b/docs/material/.icons/material/hexagon-slice-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-slice-4.svg b/docs/material/.icons/material/hexagon-slice-4.svg new file mode 100644 index 000000000..a7f096782 --- /dev/null +++ b/docs/material/.icons/material/hexagon-slice-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-slice-5.svg b/docs/material/.icons/material/hexagon-slice-5.svg new file mode 100644 index 000000000..32a37528e --- /dev/null +++ b/docs/material/.icons/material/hexagon-slice-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon-slice-6.svg b/docs/material/.icons/material/hexagon-slice-6.svg new file mode 100644 index 000000000..4117b6358 --- /dev/null +++ b/docs/material/.icons/material/hexagon-slice-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagon.svg b/docs/material/.icons/material/hexagon.svg new file mode 100644 index 000000000..087ca6ad2 --- /dev/null +++ b/docs/material/.icons/material/hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagram-outline.svg b/docs/material/.icons/material/hexagram-outline.svg new file mode 100644 index 000000000..a55306765 --- /dev/null +++ b/docs/material/.icons/material/hexagram-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hexagram.svg b/docs/material/.icons/material/hexagram.svg new file mode 100644 index 000000000..b4531b565 --- /dev/null +++ b/docs/material/.icons/material/hexagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/high-definition-box.svg b/docs/material/.icons/material/high-definition-box.svg new file mode 100644 index 000000000..dd6092fdc --- /dev/null +++ b/docs/material/.icons/material/high-definition-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/high-definition.svg b/docs/material/.icons/material/high-definition.svg new file mode 100644 index 000000000..5965a2442 --- /dev/null +++ b/docs/material/.icons/material/high-definition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/highway.svg b/docs/material/.icons/material/highway.svg new file mode 100644 index 000000000..91f7791b8 --- /dev/null +++ b/docs/material/.icons/material/highway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hiking.svg b/docs/material/.icons/material/hiking.svg new file mode 100644 index 000000000..05ddae04f --- /dev/null +++ b/docs/material/.icons/material/hiking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hinduism.svg b/docs/material/.icons/material/hinduism.svg new file mode 100644 index 000000000..f02567723 --- /dev/null +++ b/docs/material/.icons/material/hinduism.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/history.svg b/docs/material/.icons/material/history.svg new file mode 100644 index 000000000..93bf7bf24 --- /dev/null +++ b/docs/material/.icons/material/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hockey-puck.svg b/docs/material/.icons/material/hockey-puck.svg new file mode 100644 index 000000000..5564466fe --- /dev/null +++ b/docs/material/.icons/material/hockey-puck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hockey-sticks.svg b/docs/material/.icons/material/hockey-sticks.svg new file mode 100644 index 000000000..6761a7a72 --- /dev/null +++ b/docs/material/.icons/material/hockey-sticks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hololens.svg b/docs/material/.icons/material/hololens.svg new file mode 100644 index 000000000..325f9f578 --- /dev/null +++ b/docs/material/.icons/material/hololens.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-account.svg b/docs/material/.icons/material/home-account.svg new file mode 100644 index 000000000..9182e9a22 --- /dev/null +++ b/docs/material/.icons/material/home-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-alert.svg b/docs/material/.icons/material/home-alert.svg new file mode 100644 index 000000000..1d89644b3 --- /dev/null +++ b/docs/material/.icons/material/home-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-analytics.svg b/docs/material/.icons/material/home-analytics.svg new file mode 100644 index 000000000..2b370f4d4 --- /dev/null +++ b/docs/material/.icons/material/home-analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-assistant.svg b/docs/material/.icons/material/home-assistant.svg new file mode 100644 index 000000000..852a14202 --- /dev/null +++ b/docs/material/.icons/material/home-assistant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-automation.svg b/docs/material/.icons/material/home-automation.svg new file mode 100644 index 000000000..d269a7b5e --- /dev/null +++ b/docs/material/.icons/material/home-automation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-circle-outline.svg b/docs/material/.icons/material/home-circle-outline.svg new file mode 100644 index 000000000..fe6c53196 --- /dev/null +++ b/docs/material/.icons/material/home-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-circle.svg b/docs/material/.icons/material/home-circle.svg new file mode 100644 index 000000000..7998e9b5f --- /dev/null +++ b/docs/material/.icons/material/home-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-city-outline.svg b/docs/material/.icons/material/home-city-outline.svg new file mode 100644 index 000000000..b2d11c2ec --- /dev/null +++ b/docs/material/.icons/material/home-city-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-city.svg b/docs/material/.icons/material/home-city.svg new file mode 100644 index 000000000..0a19b0b0b --- /dev/null +++ b/docs/material/.icons/material/home-city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-currency-usd.svg b/docs/material/.icons/material/home-currency-usd.svg new file mode 100644 index 000000000..ad897dc06 --- /dev/null +++ b/docs/material/.icons/material/home-currency-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-edit-outline.svg b/docs/material/.icons/material/home-edit-outline.svg new file mode 100644 index 000000000..b881f2d23 --- /dev/null +++ b/docs/material/.icons/material/home-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-edit.svg b/docs/material/.icons/material/home-edit.svg new file mode 100644 index 000000000..edb8a3633 --- /dev/null +++ b/docs/material/.icons/material/home-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-export-outline.svg b/docs/material/.icons/material/home-export-outline.svg new file mode 100644 index 000000000..45046adb7 --- /dev/null +++ b/docs/material/.icons/material/home-export-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-flood.svg b/docs/material/.icons/material/home-flood.svg new file mode 100644 index 000000000..5b04dbd91 --- /dev/null +++ b/docs/material/.icons/material/home-flood.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-0.svg b/docs/material/.icons/material/home-floor-0.svg new file mode 100644 index 000000000..30c77c2c9 --- /dev/null +++ b/docs/material/.icons/material/home-floor-0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-1.svg b/docs/material/.icons/material/home-floor-1.svg new file mode 100644 index 000000000..b87eb3543 --- /dev/null +++ b/docs/material/.icons/material/home-floor-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-2.svg b/docs/material/.icons/material/home-floor-2.svg new file mode 100644 index 000000000..cf8f410b0 --- /dev/null +++ b/docs/material/.icons/material/home-floor-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-3.svg b/docs/material/.icons/material/home-floor-3.svg new file mode 100644 index 000000000..54665daab --- /dev/null +++ b/docs/material/.icons/material/home-floor-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-a.svg b/docs/material/.icons/material/home-floor-a.svg new file mode 100644 index 000000000..e17e61da5 --- /dev/null +++ b/docs/material/.icons/material/home-floor-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-b.svg b/docs/material/.icons/material/home-floor-b.svg new file mode 100644 index 000000000..7d5a63173 --- /dev/null +++ b/docs/material/.icons/material/home-floor-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-g.svg b/docs/material/.icons/material/home-floor-g.svg new file mode 100644 index 000000000..0cc707438 --- /dev/null +++ b/docs/material/.icons/material/home-floor-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-l.svg b/docs/material/.icons/material/home-floor-l.svg new file mode 100644 index 000000000..92d7b5ad2 --- /dev/null +++ b/docs/material/.icons/material/home-floor-l.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-floor-negative-1.svg b/docs/material/.icons/material/home-floor-negative-1.svg new file mode 100644 index 000000000..6a3782dd6 --- /dev/null +++ b/docs/material/.icons/material/home-floor-negative-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-group.svg b/docs/material/.icons/material/home-group.svg new file mode 100644 index 000000000..1ddd4ffcc --- /dev/null +++ b/docs/material/.icons/material/home-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-heart.svg b/docs/material/.icons/material/home-heart.svg new file mode 100644 index 000000000..850ad96b9 --- /dev/null +++ b/docs/material/.icons/material/home-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-import-outline.svg b/docs/material/.icons/material/home-import-outline.svg new file mode 100644 index 000000000..7e09c5d5f --- /dev/null +++ b/docs/material/.icons/material/home-import-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-lightbulb-outline.svg b/docs/material/.icons/material/home-lightbulb-outline.svg new file mode 100644 index 000000000..969a1f354 --- /dev/null +++ b/docs/material/.icons/material/home-lightbulb-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-lightbulb.svg b/docs/material/.icons/material/home-lightbulb.svg new file mode 100644 index 000000000..4cc9fef77 --- /dev/null +++ b/docs/material/.icons/material/home-lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-lock-open.svg b/docs/material/.icons/material/home-lock-open.svg new file mode 100644 index 000000000..fba7ee57e --- /dev/null +++ b/docs/material/.icons/material/home-lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-lock.svg b/docs/material/.icons/material/home-lock.svg new file mode 100644 index 000000000..9522402fc --- /dev/null +++ b/docs/material/.icons/material/home-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-map-marker.svg b/docs/material/.icons/material/home-map-marker.svg new file mode 100644 index 000000000..d0df2a4cf --- /dev/null +++ b/docs/material/.icons/material/home-map-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-minus-outline.svg b/docs/material/.icons/material/home-minus-outline.svg new file mode 100644 index 000000000..ed7a73ee7 --- /dev/null +++ b/docs/material/.icons/material/home-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-minus.svg b/docs/material/.icons/material/home-minus.svg new file mode 100644 index 000000000..e95fd977a --- /dev/null +++ b/docs/material/.icons/material/home-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-modern.svg b/docs/material/.icons/material/home-modern.svg new file mode 100644 index 000000000..0d292736d --- /dev/null +++ b/docs/material/.icons/material/home-modern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-outline.svg b/docs/material/.icons/material/home-outline.svg new file mode 100644 index 000000000..2c3eb6ef0 --- /dev/null +++ b/docs/material/.icons/material/home-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-plus-outline.svg b/docs/material/.icons/material/home-plus-outline.svg new file mode 100644 index 000000000..ac0c5dc06 --- /dev/null +++ b/docs/material/.icons/material/home-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-plus.svg b/docs/material/.icons/material/home-plus.svg new file mode 100644 index 000000000..124d66c5c --- /dev/null +++ b/docs/material/.icons/material/home-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-remove-outline.svg b/docs/material/.icons/material/home-remove-outline.svg new file mode 100644 index 000000000..47e2ccf66 --- /dev/null +++ b/docs/material/.icons/material/home-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-remove.svg b/docs/material/.icons/material/home-remove.svg new file mode 100644 index 000000000..6fd3fa30e --- /dev/null +++ b/docs/material/.icons/material/home-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-roof.svg b/docs/material/.icons/material/home-roof.svg new file mode 100644 index 000000000..9a4632303 --- /dev/null +++ b/docs/material/.icons/material/home-roof.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-search-outline.svg b/docs/material/.icons/material/home-search-outline.svg new file mode 100644 index 000000000..6bb63642a --- /dev/null +++ b/docs/material/.icons/material/home-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-search.svg b/docs/material/.icons/material/home-search.svg new file mode 100644 index 000000000..27b43d00c --- /dev/null +++ b/docs/material/.icons/material/home-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-thermometer-outline.svg b/docs/material/.icons/material/home-thermometer-outline.svg new file mode 100644 index 000000000..ba76da707 --- /dev/null +++ b/docs/material/.icons/material/home-thermometer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-thermometer.svg b/docs/material/.icons/material/home-thermometer.svg new file mode 100644 index 000000000..9d4f2f2a1 --- /dev/null +++ b/docs/material/.icons/material/home-thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-variant-outline.svg b/docs/material/.icons/material/home-variant-outline.svg new file mode 100644 index 000000000..3e6a703dd --- /dev/null +++ b/docs/material/.icons/material/home-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home-variant.svg b/docs/material/.icons/material/home-variant.svg new file mode 100644 index 000000000..3b5369e2c --- /dev/null +++ b/docs/material/.icons/material/home-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/home.svg b/docs/material/.icons/material/home.svg new file mode 100644 index 000000000..814d34e27 --- /dev/null +++ b/docs/material/.icons/material/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hook-off.svg b/docs/material/.icons/material/hook-off.svg new file mode 100644 index 000000000..905ac42be --- /dev/null +++ b/docs/material/.icons/material/hook-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hook.svg b/docs/material/.icons/material/hook.svg new file mode 100644 index 000000000..fda1de76f --- /dev/null +++ b/docs/material/.icons/material/hook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hops.svg b/docs/material/.icons/material/hops.svg new file mode 100644 index 000000000..504a45348 --- /dev/null +++ b/docs/material/.icons/material/hops.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/horizontal-rotate-clockwise.svg b/docs/material/.icons/material/horizontal-rotate-clockwise.svg new file mode 100644 index 000000000..048c2a548 --- /dev/null +++ b/docs/material/.icons/material/horizontal-rotate-clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/horizontal-rotate-counterclockwise.svg b/docs/material/.icons/material/horizontal-rotate-counterclockwise.svg new file mode 100644 index 000000000..6ddeed233 --- /dev/null +++ b/docs/material/.icons/material/horizontal-rotate-counterclockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/horseshoe.svg b/docs/material/.icons/material/horseshoe.svg new file mode 100644 index 000000000..d22104db6 --- /dev/null +++ b/docs/material/.icons/material/horseshoe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hospital-box-outline.svg b/docs/material/.icons/material/hospital-box-outline.svg new file mode 100644 index 000000000..b7457c512 --- /dev/null +++ b/docs/material/.icons/material/hospital-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hospital-box.svg b/docs/material/.icons/material/hospital-box.svg new file mode 100644 index 000000000..68c26c08e --- /dev/null +++ b/docs/material/.icons/material/hospital-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hospital-building.svg b/docs/material/.icons/material/hospital-building.svg new file mode 100644 index 000000000..a8e040e71 --- /dev/null +++ b/docs/material/.icons/material/hospital-building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hospital-marker.svg b/docs/material/.icons/material/hospital-marker.svg new file mode 100644 index 000000000..3d249aafb --- /dev/null +++ b/docs/material/.icons/material/hospital-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hospital.svg b/docs/material/.icons/material/hospital.svg new file mode 100644 index 000000000..9aa85bc12 --- /dev/null +++ b/docs/material/.icons/material/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hot-tub.svg b/docs/material/.icons/material/hot-tub.svg new file mode 100644 index 000000000..a5c4f1069 --- /dev/null +++ b/docs/material/.icons/material/hot-tub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hubspot.svg b/docs/material/.icons/material/hubspot.svg new file mode 100644 index 000000000..3c9e75db4 --- /dev/null +++ b/docs/material/.icons/material/hubspot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hulu.svg b/docs/material/.icons/material/hulu.svg new file mode 100644 index 000000000..2df0bb52f --- /dev/null +++ b/docs/material/.icons/material/hulu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-baby-changing-table.svg b/docs/material/.icons/material/human-baby-changing-table.svg new file mode 100644 index 000000000..41c576d04 --- /dev/null +++ b/docs/material/.icons/material/human-baby-changing-table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-child.svg b/docs/material/.icons/material/human-child.svg new file mode 100644 index 000000000..39dce2e1f --- /dev/null +++ b/docs/material/.icons/material/human-child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-female-boy.svg b/docs/material/.icons/material/human-female-boy.svg new file mode 100644 index 000000000..c060fd658 --- /dev/null +++ b/docs/material/.icons/material/human-female-boy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-female-female.svg b/docs/material/.icons/material/human-female-female.svg new file mode 100644 index 000000000..520776074 --- /dev/null +++ b/docs/material/.icons/material/human-female-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-female-girl.svg b/docs/material/.icons/material/human-female-girl.svg new file mode 100644 index 000000000..35e5d2568 --- /dev/null +++ b/docs/material/.icons/material/human-female-girl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-female.svg b/docs/material/.icons/material/human-female.svg new file mode 100644 index 000000000..776a3d003 --- /dev/null +++ b/docs/material/.icons/material/human-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-greeting.svg b/docs/material/.icons/material/human-greeting.svg new file mode 100644 index 000000000..bee493cf0 --- /dev/null +++ b/docs/material/.icons/material/human-greeting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-handsdown.svg b/docs/material/.icons/material/human-handsdown.svg new file mode 100644 index 000000000..bb260738c --- /dev/null +++ b/docs/material/.icons/material/human-handsdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-handsup.svg b/docs/material/.icons/material/human-handsup.svg new file mode 100644 index 000000000..30fd292a4 --- /dev/null +++ b/docs/material/.icons/material/human-handsup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male-boy.svg b/docs/material/.icons/material/human-male-boy.svg new file mode 100644 index 000000000..d9df613ed --- /dev/null +++ b/docs/material/.icons/material/human-male-boy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male-child.svg b/docs/material/.icons/material/human-male-child.svg new file mode 100644 index 000000000..8583a2aaa --- /dev/null +++ b/docs/material/.icons/material/human-male-child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male-female.svg b/docs/material/.icons/material/human-male-female.svg new file mode 100644 index 000000000..ea32ae27d --- /dev/null +++ b/docs/material/.icons/material/human-male-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male-girl.svg b/docs/material/.icons/material/human-male-girl.svg new file mode 100644 index 000000000..4de802d69 --- /dev/null +++ b/docs/material/.icons/material/human-male-girl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male-height-variant.svg b/docs/material/.icons/material/human-male-height-variant.svg new file mode 100644 index 000000000..9e45fd56f --- /dev/null +++ b/docs/material/.icons/material/human-male-height-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male-height.svg b/docs/material/.icons/material/human-male-height.svg new file mode 100644 index 000000000..de3c4af51 --- /dev/null +++ b/docs/material/.icons/material/human-male-height.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male-male.svg b/docs/material/.icons/material/human-male-male.svg new file mode 100644 index 000000000..5a16c3f27 --- /dev/null +++ b/docs/material/.icons/material/human-male-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-male.svg b/docs/material/.icons/material/human-male.svg new file mode 100644 index 000000000..ada8cff25 --- /dev/null +++ b/docs/material/.icons/material/human-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-pregnant.svg b/docs/material/.icons/material/human-pregnant.svg new file mode 100644 index 000000000..eb263f485 --- /dev/null +++ b/docs/material/.icons/material/human-pregnant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human-wheelchair.svg b/docs/material/.icons/material/human-wheelchair.svg new file mode 100644 index 000000000..1276a6abd --- /dev/null +++ b/docs/material/.icons/material/human-wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/human.svg b/docs/material/.icons/material/human.svg new file mode 100644 index 000000000..b1dc18491 --- /dev/null +++ b/docs/material/.icons/material/human.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/humble-bundle.svg b/docs/material/.icons/material/humble-bundle.svg new file mode 100644 index 000000000..010279b9e --- /dev/null +++ b/docs/material/.icons/material/humble-bundle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hvac.svg b/docs/material/.icons/material/hvac.svg new file mode 100644 index 000000000..476fca681 --- /dev/null +++ b/docs/material/.icons/material/hvac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hydraulic-oil-level.svg b/docs/material/.icons/material/hydraulic-oil-level.svg new file mode 100644 index 000000000..209c8a212 --- /dev/null +++ b/docs/material/.icons/material/hydraulic-oil-level.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hydraulic-oil-temperature.svg b/docs/material/.icons/material/hydraulic-oil-temperature.svg new file mode 100644 index 000000000..d6b79744f --- /dev/null +++ b/docs/material/.icons/material/hydraulic-oil-temperature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/hydro-power.svg b/docs/material/.icons/material/hydro-power.svg new file mode 100644 index 000000000..15b11cbf1 --- /dev/null +++ b/docs/material/.icons/material/hydro-power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ice-cream-off.svg b/docs/material/.icons/material/ice-cream-off.svg new file mode 100644 index 000000000..62ec2a288 --- /dev/null +++ b/docs/material/.icons/material/ice-cream-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ice-cream.svg b/docs/material/.icons/material/ice-cream.svg new file mode 100644 index 000000000..007aca2d3 --- /dev/null +++ b/docs/material/.icons/material/ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ice-pop.svg b/docs/material/.icons/material/ice-pop.svg new file mode 100644 index 000000000..5cec3d4f5 --- /dev/null +++ b/docs/material/.icons/material/ice-pop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/id-card.svg b/docs/material/.icons/material/id-card.svg new file mode 100644 index 000000000..6ee5e1714 --- /dev/null +++ b/docs/material/.icons/material/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/identifier.svg b/docs/material/.icons/material/identifier.svg new file mode 100644 index 000000000..439a7b732 --- /dev/null +++ b/docs/material/.icons/material/identifier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ideogram-cjk-variant.svg b/docs/material/.icons/material/ideogram-cjk-variant.svg new file mode 100644 index 000000000..89d4d3a3a --- /dev/null +++ b/docs/material/.icons/material/ideogram-cjk-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ideogram-cjk.svg b/docs/material/.icons/material/ideogram-cjk.svg new file mode 100644 index 000000000..6761cb059 --- /dev/null +++ b/docs/material/.icons/material/ideogram-cjk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-array-outline.svg b/docs/material/.icons/material/iframe-array-outline.svg new file mode 100644 index 000000000..9774732dc --- /dev/null +++ b/docs/material/.icons/material/iframe-array-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-array.svg b/docs/material/.icons/material/iframe-array.svg new file mode 100644 index 000000000..4ddd38922 --- /dev/null +++ b/docs/material/.icons/material/iframe-array.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-braces-outline.svg b/docs/material/.icons/material/iframe-braces-outline.svg new file mode 100644 index 000000000..9fbfafac2 --- /dev/null +++ b/docs/material/.icons/material/iframe-braces-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-braces.svg b/docs/material/.icons/material/iframe-braces.svg new file mode 100644 index 000000000..c20cbf04b --- /dev/null +++ b/docs/material/.icons/material/iframe-braces.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-outline.svg b/docs/material/.icons/material/iframe-outline.svg new file mode 100644 index 000000000..3b9b0ec5a --- /dev/null +++ b/docs/material/.icons/material/iframe-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-parentheses-outline.svg b/docs/material/.icons/material/iframe-parentheses-outline.svg new file mode 100644 index 000000000..8a3aff3f2 --- /dev/null +++ b/docs/material/.icons/material/iframe-parentheses-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-parentheses.svg b/docs/material/.icons/material/iframe-parentheses.svg new file mode 100644 index 000000000..1c3e9c806 --- /dev/null +++ b/docs/material/.icons/material/iframe-parentheses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-variable-outline.svg b/docs/material/.icons/material/iframe-variable-outline.svg new file mode 100644 index 000000000..cfae26a97 --- /dev/null +++ b/docs/material/.icons/material/iframe-variable-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe-variable.svg b/docs/material/.icons/material/iframe-variable.svg new file mode 100644 index 000000000..71f80b99b --- /dev/null +++ b/docs/material/.icons/material/iframe-variable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iframe.svg b/docs/material/.icons/material/iframe.svg new file mode 100644 index 000000000..e2fe1d61d --- /dev/null +++ b/docs/material/.icons/material/iframe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-album.svg b/docs/material/.icons/material/image-album.svg new file mode 100644 index 000000000..93de425fd --- /dev/null +++ b/docs/material/.icons/material/image-album.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-area-close.svg b/docs/material/.icons/material/image-area-close.svg new file mode 100644 index 000000000..4b73bd73f --- /dev/null +++ b/docs/material/.icons/material/image-area-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-area.svg b/docs/material/.icons/material/image-area.svg new file mode 100644 index 000000000..b5b4f2425 --- /dev/null +++ b/docs/material/.icons/material/image-area.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-auto-adjust.svg b/docs/material/.icons/material/image-auto-adjust.svg new file mode 100644 index 000000000..497bb9242 --- /dev/null +++ b/docs/material/.icons/material/image-auto-adjust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-broken-variant.svg b/docs/material/.icons/material/image-broken-variant.svg new file mode 100644 index 000000000..cce86f260 --- /dev/null +++ b/docs/material/.icons/material/image-broken-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-broken.svg b/docs/material/.icons/material/image-broken.svg new file mode 100644 index 000000000..5209f387f --- /dev/null +++ b/docs/material/.icons/material/image-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-edit-outline.svg b/docs/material/.icons/material/image-edit-outline.svg new file mode 100644 index 000000000..fe2e948ab --- /dev/null +++ b/docs/material/.icons/material/image-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-edit.svg b/docs/material/.icons/material/image-edit.svg new file mode 100644 index 000000000..25195b5b6 --- /dev/null +++ b/docs/material/.icons/material/image-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-black-white.svg b/docs/material/.icons/material/image-filter-black-white.svg new file mode 100644 index 000000000..ec3ab47ac --- /dev/null +++ b/docs/material/.icons/material/image-filter-black-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-center-focus-strong-outline.svg b/docs/material/.icons/material/image-filter-center-focus-strong-outline.svg new file mode 100644 index 000000000..b1205fd44 --- /dev/null +++ b/docs/material/.icons/material/image-filter-center-focus-strong-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-center-focus-strong.svg b/docs/material/.icons/material/image-filter-center-focus-strong.svg new file mode 100644 index 000000000..b7046117f --- /dev/null +++ b/docs/material/.icons/material/image-filter-center-focus-strong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-center-focus-weak.svg b/docs/material/.icons/material/image-filter-center-focus-weak.svg new file mode 100644 index 000000000..61575bd34 --- /dev/null +++ b/docs/material/.icons/material/image-filter-center-focus-weak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-center-focus.svg b/docs/material/.icons/material/image-filter-center-focus.svg new file mode 100644 index 000000000..35784a408 --- /dev/null +++ b/docs/material/.icons/material/image-filter-center-focus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-drama.svg b/docs/material/.icons/material/image-filter-drama.svg new file mode 100644 index 000000000..e99f0e616 --- /dev/null +++ b/docs/material/.icons/material/image-filter-drama.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-frames.svg b/docs/material/.icons/material/image-filter-frames.svg new file mode 100644 index 000000000..fc0c3ec9d --- /dev/null +++ b/docs/material/.icons/material/image-filter-frames.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-hdr.svg b/docs/material/.icons/material/image-filter-hdr.svg new file mode 100644 index 000000000..d5a500d85 --- /dev/null +++ b/docs/material/.icons/material/image-filter-hdr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-none.svg b/docs/material/.icons/material/image-filter-none.svg new file mode 100644 index 000000000..5d018e02c --- /dev/null +++ b/docs/material/.icons/material/image-filter-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-tilt-shift.svg b/docs/material/.icons/material/image-filter-tilt-shift.svg new file mode 100644 index 000000000..cb4ead64a --- /dev/null +++ b/docs/material/.icons/material/image-filter-tilt-shift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-filter-vintage.svg b/docs/material/.icons/material/image-filter-vintage.svg new file mode 100644 index 000000000..250354f55 --- /dev/null +++ b/docs/material/.icons/material/image-filter-vintage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-frame.svg b/docs/material/.icons/material/image-frame.svg new file mode 100644 index 000000000..0fe13daf3 --- /dev/null +++ b/docs/material/.icons/material/image-frame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-minus.svg b/docs/material/.icons/material/image-minus.svg new file mode 100644 index 000000000..f6d8ea584 --- /dev/null +++ b/docs/material/.icons/material/image-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-move.svg b/docs/material/.icons/material/image-move.svg new file mode 100644 index 000000000..e613eaba0 --- /dev/null +++ b/docs/material/.icons/material/image-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-multiple-outline.svg b/docs/material/.icons/material/image-multiple-outline.svg new file mode 100644 index 000000000..8270d598a --- /dev/null +++ b/docs/material/.icons/material/image-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-multiple.svg b/docs/material/.icons/material/image-multiple.svg new file mode 100644 index 000000000..ae310042e --- /dev/null +++ b/docs/material/.icons/material/image-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-off-outline.svg b/docs/material/.icons/material/image-off-outline.svg new file mode 100644 index 000000000..330bec85d --- /dev/null +++ b/docs/material/.icons/material/image-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-off.svg b/docs/material/.icons/material/image-off.svg new file mode 100644 index 000000000..e50739537 --- /dev/null +++ b/docs/material/.icons/material/image-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-outline.svg b/docs/material/.icons/material/image-outline.svg new file mode 100644 index 000000000..b75a5b809 --- /dev/null +++ b/docs/material/.icons/material/image-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-plus.svg b/docs/material/.icons/material/image-plus.svg new file mode 100644 index 000000000..735834e49 --- /dev/null +++ b/docs/material/.icons/material/image-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-remove.svg b/docs/material/.icons/material/image-remove.svg new file mode 100644 index 000000000..339bd52e6 --- /dev/null +++ b/docs/material/.icons/material/image-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-search-outline.svg b/docs/material/.icons/material/image-search-outline.svg new file mode 100644 index 000000000..562a8935f --- /dev/null +++ b/docs/material/.icons/material/image-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-search.svg b/docs/material/.icons/material/image-search.svg new file mode 100644 index 000000000..053cf644f --- /dev/null +++ b/docs/material/.icons/material/image-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-size-select-actual.svg b/docs/material/.icons/material/image-size-select-actual.svg new file mode 100644 index 000000000..115cabc05 --- /dev/null +++ b/docs/material/.icons/material/image-size-select-actual.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-size-select-large.svg b/docs/material/.icons/material/image-size-select-large.svg new file mode 100644 index 000000000..4985574e6 --- /dev/null +++ b/docs/material/.icons/material/image-size-select-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image-size-select-small.svg b/docs/material/.icons/material/image-size-select-small.svg new file mode 100644 index 000000000..1765a4345 --- /dev/null +++ b/docs/material/.icons/material/image-size-select-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/image.svg b/docs/material/.icons/material/image.svg new file mode 100644 index 000000000..e452dc3c7 --- /dev/null +++ b/docs/material/.icons/material/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/import.svg b/docs/material/.icons/material/import.svg new file mode 100644 index 000000000..a1bff1e5b --- /dev/null +++ b/docs/material/.icons/material/import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-arrow-down-outline.svg b/docs/material/.icons/material/inbox-arrow-down-outline.svg new file mode 100644 index 000000000..b493e7320 --- /dev/null +++ b/docs/material/.icons/material/inbox-arrow-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-arrow-down.svg b/docs/material/.icons/material/inbox-arrow-down.svg new file mode 100644 index 000000000..dc91e062f --- /dev/null +++ b/docs/material/.icons/material/inbox-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-arrow-up-outline.svg b/docs/material/.icons/material/inbox-arrow-up-outline.svg new file mode 100644 index 000000000..2bf922d58 --- /dev/null +++ b/docs/material/.icons/material/inbox-arrow-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-arrow-up.svg b/docs/material/.icons/material/inbox-arrow-up.svg new file mode 100644 index 000000000..b822f9762 --- /dev/null +++ b/docs/material/.icons/material/inbox-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-full-outline.svg b/docs/material/.icons/material/inbox-full-outline.svg new file mode 100644 index 000000000..6539c0a0e --- /dev/null +++ b/docs/material/.icons/material/inbox-full-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-full.svg b/docs/material/.icons/material/inbox-full.svg new file mode 100644 index 000000000..2e6bce01f --- /dev/null +++ b/docs/material/.icons/material/inbox-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-multiple-outline.svg b/docs/material/.icons/material/inbox-multiple-outline.svg new file mode 100644 index 000000000..ad512c43f --- /dev/null +++ b/docs/material/.icons/material/inbox-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-multiple.svg b/docs/material/.icons/material/inbox-multiple.svg new file mode 100644 index 000000000..7e3405580 --- /dev/null +++ b/docs/material/.icons/material/inbox-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox-outline.svg b/docs/material/.icons/material/inbox-outline.svg new file mode 100644 index 000000000..49754bacf --- /dev/null +++ b/docs/material/.icons/material/inbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/inbox.svg b/docs/material/.icons/material/inbox.svg new file mode 100644 index 000000000..6e925e89a --- /dev/null +++ b/docs/material/.icons/material/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/incognito-off.svg b/docs/material/.icons/material/incognito-off.svg new file mode 100644 index 000000000..db420f617 --- /dev/null +++ b/docs/material/.icons/material/incognito-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/incognito.svg b/docs/material/.icons/material/incognito.svg new file mode 100644 index 000000000..e6945ff00 --- /dev/null +++ b/docs/material/.icons/material/incognito.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/infinity.svg b/docs/material/.icons/material/infinity.svg new file mode 100644 index 000000000..08dd1755e --- /dev/null +++ b/docs/material/.icons/material/infinity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/information-outline.svg b/docs/material/.icons/material/information-outline.svg new file mode 100644 index 000000000..3b9ae8a54 --- /dev/null +++ b/docs/material/.icons/material/information-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/information-variant.svg b/docs/material/.icons/material/information-variant.svg new file mode 100644 index 000000000..30425b799 --- /dev/null +++ b/docs/material/.icons/material/information-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/information.svg b/docs/material/.icons/material/information.svg new file mode 100644 index 000000000..8a7224d70 --- /dev/null +++ b/docs/material/.icons/material/information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/instagram.svg b/docs/material/.icons/material/instagram.svg new file mode 100644 index 000000000..9fc51f83e --- /dev/null +++ b/docs/material/.icons/material/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/instrument-triangle.svg b/docs/material/.icons/material/instrument-triangle.svg new file mode 100644 index 000000000..b4dc3b1c1 --- /dev/null +++ b/docs/material/.icons/material/instrument-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/invert-colors-off.svg b/docs/material/.icons/material/invert-colors-off.svg new file mode 100644 index 000000000..3c352de27 --- /dev/null +++ b/docs/material/.icons/material/invert-colors-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/invert-colors.svg b/docs/material/.icons/material/invert-colors.svg new file mode 100644 index 000000000..947486856 --- /dev/null +++ b/docs/material/.icons/material/invert-colors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iobroker.svg b/docs/material/.icons/material/iobroker.svg new file mode 100644 index 000000000..dd4bc67e0 --- /dev/null +++ b/docs/material/.icons/material/iobroker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ip-network-outline.svg b/docs/material/.icons/material/ip-network-outline.svg new file mode 100644 index 000000000..5d0948740 --- /dev/null +++ b/docs/material/.icons/material/ip-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ip-network.svg b/docs/material/.icons/material/ip-network.svg new file mode 100644 index 000000000..2660fe067 --- /dev/null +++ b/docs/material/.icons/material/ip-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ip.svg b/docs/material/.icons/material/ip.svg new file mode 100644 index 000000000..1e27e8342 --- /dev/null +++ b/docs/material/.icons/material/ip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ipod.svg b/docs/material/.icons/material/ipod.svg new file mode 100644 index 000000000..90f3a667b --- /dev/null +++ b/docs/material/.icons/material/ipod.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/islam.svg b/docs/material/.icons/material/islam.svg new file mode 100644 index 000000000..c8891f0f1 --- /dev/null +++ b/docs/material/.icons/material/islam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/island.svg b/docs/material/.icons/material/island.svg new file mode 100644 index 000000000..aaa3ac477 --- /dev/null +++ b/docs/material/.icons/material/island.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/iv-bag.svg b/docs/material/.icons/material/iv-bag.svg new file mode 100644 index 000000000..6b2239c52 --- /dev/null +++ b/docs/material/.icons/material/iv-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jabber.svg b/docs/material/.icons/material/jabber.svg new file mode 100644 index 000000000..c08f945f4 --- /dev/null +++ b/docs/material/.icons/material/jabber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jeepney.svg b/docs/material/.icons/material/jeepney.svg new file mode 100644 index 000000000..3dc76ebed --- /dev/null +++ b/docs/material/.icons/material/jeepney.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jellyfish-outline.svg b/docs/material/.icons/material/jellyfish-outline.svg new file mode 100644 index 000000000..3ab7f2901 --- /dev/null +++ b/docs/material/.icons/material/jellyfish-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jellyfish.svg b/docs/material/.icons/material/jellyfish.svg new file mode 100644 index 000000000..f25ca8091 --- /dev/null +++ b/docs/material/.icons/material/jellyfish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jira.svg b/docs/material/.icons/material/jira.svg new file mode 100644 index 000000000..d6850f9e5 --- /dev/null +++ b/docs/material/.icons/material/jira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jquery.svg b/docs/material/.icons/material/jquery.svg new file mode 100644 index 000000000..b702cc38f --- /dev/null +++ b/docs/material/.icons/material/jquery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jsfiddle.svg b/docs/material/.icons/material/jsfiddle.svg new file mode 100644 index 000000000..f564e59d2 --- /dev/null +++ b/docs/material/.icons/material/jsfiddle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/judaism.svg b/docs/material/.icons/material/judaism.svg new file mode 100644 index 000000000..22ea93bae --- /dev/null +++ b/docs/material/.icons/material/judaism.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/jump-rope.svg b/docs/material/.icons/material/jump-rope.svg new file mode 100644 index 000000000..488f77645 --- /dev/null +++ b/docs/material/.icons/material/jump-rope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kabaddi.svg b/docs/material/.icons/material/kabaddi.svg new file mode 100644 index 000000000..e0a766ef9 --- /dev/null +++ b/docs/material/.icons/material/kabaddi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/karate.svg b/docs/material/.icons/material/karate.svg new file mode 100644 index 000000000..76ec5af7d --- /dev/null +++ b/docs/material/.icons/material/karate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keg.svg b/docs/material/.icons/material/keg.svg new file mode 100644 index 000000000..9c8bad642 --- /dev/null +++ b/docs/material/.icons/material/keg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle-alert-outline.svg b/docs/material/.icons/material/kettle-alert-outline.svg new file mode 100644 index 000000000..784b4438d --- /dev/null +++ b/docs/material/.icons/material/kettle-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle-alert.svg b/docs/material/.icons/material/kettle-alert.svg new file mode 100644 index 000000000..70555b0f6 --- /dev/null +++ b/docs/material/.icons/material/kettle-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle-off-outline.svg b/docs/material/.icons/material/kettle-off-outline.svg new file mode 100644 index 000000000..6d6de0fd6 --- /dev/null +++ b/docs/material/.icons/material/kettle-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle-off.svg b/docs/material/.icons/material/kettle-off.svg new file mode 100644 index 000000000..2c4515151 --- /dev/null +++ b/docs/material/.icons/material/kettle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle-outline.svg b/docs/material/.icons/material/kettle-outline.svg new file mode 100644 index 000000000..8174c6510 --- /dev/null +++ b/docs/material/.icons/material/kettle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle-steam-outline.svg b/docs/material/.icons/material/kettle-steam-outline.svg new file mode 100644 index 000000000..fd97ed128 --- /dev/null +++ b/docs/material/.icons/material/kettle-steam-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle-steam.svg b/docs/material/.icons/material/kettle-steam.svg new file mode 100644 index 000000000..991616162 --- /dev/null +++ b/docs/material/.icons/material/kettle-steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettle.svg b/docs/material/.icons/material/kettle.svg new file mode 100644 index 000000000..9eb16a041 --- /dev/null +++ b/docs/material/.icons/material/kettle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kettlebell.svg b/docs/material/.icons/material/kettlebell.svg new file mode 100644 index 000000000..e808b71bc --- /dev/null +++ b/docs/material/.icons/material/kettlebell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-arrow-right.svg b/docs/material/.icons/material/key-arrow-right.svg new file mode 100644 index 000000000..7394fd33f --- /dev/null +++ b/docs/material/.icons/material/key-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-change.svg b/docs/material/.icons/material/key-change.svg new file mode 100644 index 000000000..93ea5692e --- /dev/null +++ b/docs/material/.icons/material/key-change.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-link.svg b/docs/material/.icons/material/key-link.svg new file mode 100644 index 000000000..969ca6c5b --- /dev/null +++ b/docs/material/.icons/material/key-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-minus.svg b/docs/material/.icons/material/key-minus.svg new file mode 100644 index 000000000..47d656899 --- /dev/null +++ b/docs/material/.icons/material/key-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-outline.svg b/docs/material/.icons/material/key-outline.svg new file mode 100644 index 000000000..1183fa629 --- /dev/null +++ b/docs/material/.icons/material/key-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-plus.svg b/docs/material/.icons/material/key-plus.svg new file mode 100644 index 000000000..27f276aa5 --- /dev/null +++ b/docs/material/.icons/material/key-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-remove.svg b/docs/material/.icons/material/key-remove.svg new file mode 100644 index 000000000..a1505720a --- /dev/null +++ b/docs/material/.icons/material/key-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-star.svg b/docs/material/.icons/material/key-star.svg new file mode 100644 index 000000000..8d8383a12 --- /dev/null +++ b/docs/material/.icons/material/key-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-variant.svg b/docs/material/.icons/material/key-variant.svg new file mode 100644 index 000000000..3655c7500 --- /dev/null +++ b/docs/material/.icons/material/key-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key-wireless.svg b/docs/material/.icons/material/key-wireless.svg new file mode 100644 index 000000000..0c62f77e8 --- /dev/null +++ b/docs/material/.icons/material/key-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/key.svg b/docs/material/.icons/material/key.svg new file mode 100644 index 000000000..7b815425d --- /dev/null +++ b/docs/material/.icons/material/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-backspace.svg b/docs/material/.icons/material/keyboard-backspace.svg new file mode 100644 index 000000000..c2b202ee7 --- /dev/null +++ b/docs/material/.icons/material/keyboard-backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-caps.svg b/docs/material/.icons/material/keyboard-caps.svg new file mode 100644 index 000000000..342e77f46 --- /dev/null +++ b/docs/material/.icons/material/keyboard-caps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-close.svg b/docs/material/.icons/material/keyboard-close.svg new file mode 100644 index 000000000..a3b0bb651 --- /dev/null +++ b/docs/material/.icons/material/keyboard-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-esc.svg b/docs/material/.icons/material/keyboard-esc.svg new file mode 100644 index 000000000..044cafa13 --- /dev/null +++ b/docs/material/.icons/material/keyboard-esc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f1.svg b/docs/material/.icons/material/keyboard-f1.svg new file mode 100644 index 000000000..1223859bb --- /dev/null +++ b/docs/material/.icons/material/keyboard-f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f10.svg b/docs/material/.icons/material/keyboard-f10.svg new file mode 100644 index 000000000..fff4e7f6e --- /dev/null +++ b/docs/material/.icons/material/keyboard-f10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f11.svg b/docs/material/.icons/material/keyboard-f11.svg new file mode 100644 index 000000000..58a1e2930 --- /dev/null +++ b/docs/material/.icons/material/keyboard-f11.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f12.svg b/docs/material/.icons/material/keyboard-f12.svg new file mode 100644 index 000000000..cd81fd038 --- /dev/null +++ b/docs/material/.icons/material/keyboard-f12.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f2.svg b/docs/material/.icons/material/keyboard-f2.svg new file mode 100644 index 000000000..9271c553f --- /dev/null +++ b/docs/material/.icons/material/keyboard-f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f3.svg b/docs/material/.icons/material/keyboard-f3.svg new file mode 100644 index 000000000..d107ae3cb --- /dev/null +++ b/docs/material/.icons/material/keyboard-f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f4.svg b/docs/material/.icons/material/keyboard-f4.svg new file mode 100644 index 000000000..40e173965 --- /dev/null +++ b/docs/material/.icons/material/keyboard-f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f5.svg b/docs/material/.icons/material/keyboard-f5.svg new file mode 100644 index 000000000..26c5b174f --- /dev/null +++ b/docs/material/.icons/material/keyboard-f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f6.svg b/docs/material/.icons/material/keyboard-f6.svg new file mode 100644 index 000000000..b9a1b3cbe --- /dev/null +++ b/docs/material/.icons/material/keyboard-f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f7.svg b/docs/material/.icons/material/keyboard-f7.svg new file mode 100644 index 000000000..8d433955a --- /dev/null +++ b/docs/material/.icons/material/keyboard-f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f8.svg b/docs/material/.icons/material/keyboard-f8.svg new file mode 100644 index 000000000..05a14d570 --- /dev/null +++ b/docs/material/.icons/material/keyboard-f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-f9.svg b/docs/material/.icons/material/keyboard-f9.svg new file mode 100644 index 000000000..b922746e6 --- /dev/null +++ b/docs/material/.icons/material/keyboard-f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-off-outline.svg b/docs/material/.icons/material/keyboard-off-outline.svg new file mode 100644 index 000000000..ee1bac862 --- /dev/null +++ b/docs/material/.icons/material/keyboard-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-off.svg b/docs/material/.icons/material/keyboard-off.svg new file mode 100644 index 000000000..2d8b96afb --- /dev/null +++ b/docs/material/.icons/material/keyboard-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-outline.svg b/docs/material/.icons/material/keyboard-outline.svg new file mode 100644 index 000000000..e1a4b8dec --- /dev/null +++ b/docs/material/.icons/material/keyboard-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-return.svg b/docs/material/.icons/material/keyboard-return.svg new file mode 100644 index 000000000..0bfba024d --- /dev/null +++ b/docs/material/.icons/material/keyboard-return.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-settings-outline.svg b/docs/material/.icons/material/keyboard-settings-outline.svg new file mode 100644 index 000000000..600757c99 --- /dev/null +++ b/docs/material/.icons/material/keyboard-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-settings.svg b/docs/material/.icons/material/keyboard-settings.svg new file mode 100644 index 000000000..f83ca9e4d --- /dev/null +++ b/docs/material/.icons/material/keyboard-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-space.svg b/docs/material/.icons/material/keyboard-space.svg new file mode 100644 index 000000000..e513fdb80 --- /dev/null +++ b/docs/material/.icons/material/keyboard-space.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-tab.svg b/docs/material/.icons/material/keyboard-tab.svg new file mode 100644 index 000000000..01c12773d --- /dev/null +++ b/docs/material/.icons/material/keyboard-tab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard-variant.svg b/docs/material/.icons/material/keyboard-variant.svg new file mode 100644 index 000000000..f47044876 --- /dev/null +++ b/docs/material/.icons/material/keyboard-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/keyboard.svg b/docs/material/.icons/material/keyboard.svg new file mode 100644 index 000000000..7279e80f9 --- /dev/null +++ b/docs/material/.icons/material/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/khanda.svg b/docs/material/.icons/material/khanda.svg new file mode 100644 index 000000000..7d1d74d97 --- /dev/null +++ b/docs/material/.icons/material/khanda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kickstarter.svg b/docs/material/.icons/material/kickstarter.svg new file mode 100644 index 000000000..2370194e6 --- /dev/null +++ b/docs/material/.icons/material/kickstarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/klingon.svg b/docs/material/.icons/material/klingon.svg new file mode 100644 index 000000000..a695119eb --- /dev/null +++ b/docs/material/.icons/material/klingon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/knife-military.svg b/docs/material/.icons/material/knife-military.svg new file mode 100644 index 000000000..fb76180fd --- /dev/null +++ b/docs/material/.icons/material/knife-military.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/knife.svg b/docs/material/.icons/material/knife.svg new file mode 100644 index 000000000..761909fde --- /dev/null +++ b/docs/material/.icons/material/knife.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kodi.svg b/docs/material/.icons/material/kodi.svg new file mode 100644 index 000000000..918d90c8c --- /dev/null +++ b/docs/material/.icons/material/kodi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/kubernetes.svg b/docs/material/.icons/material/kubernetes.svg new file mode 100644 index 000000000..495529b8b --- /dev/null +++ b/docs/material/.icons/material/kubernetes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-multiple-outline.svg b/docs/material/.icons/material/label-multiple-outline.svg new file mode 100644 index 000000000..4dcd7a713 --- /dev/null +++ b/docs/material/.icons/material/label-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-multiple.svg b/docs/material/.icons/material/label-multiple.svg new file mode 100644 index 000000000..e1eedba34 --- /dev/null +++ b/docs/material/.icons/material/label-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-off-outline.svg b/docs/material/.icons/material/label-off-outline.svg new file mode 100644 index 000000000..289ece68c --- /dev/null +++ b/docs/material/.icons/material/label-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-off.svg b/docs/material/.icons/material/label-off.svg new file mode 100644 index 000000000..1764b4f7a --- /dev/null +++ b/docs/material/.icons/material/label-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-outline.svg b/docs/material/.icons/material/label-outline.svg new file mode 100644 index 000000000..49bffa204 --- /dev/null +++ b/docs/material/.icons/material/label-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-percent-outline.svg b/docs/material/.icons/material/label-percent-outline.svg new file mode 100644 index 000000000..a54c20f5f --- /dev/null +++ b/docs/material/.icons/material/label-percent-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-percent.svg b/docs/material/.icons/material/label-percent.svg new file mode 100644 index 000000000..142600979 --- /dev/null +++ b/docs/material/.icons/material/label-percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-variant-outline.svg b/docs/material/.icons/material/label-variant-outline.svg new file mode 100644 index 000000000..2b8690e0f --- /dev/null +++ b/docs/material/.icons/material/label-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label-variant.svg b/docs/material/.icons/material/label-variant.svg new file mode 100644 index 000000000..16524262f --- /dev/null +++ b/docs/material/.icons/material/label-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/label.svg b/docs/material/.icons/material/label.svg new file mode 100644 index 000000000..ae4dfa037 --- /dev/null +++ b/docs/material/.icons/material/label.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ladybug.svg b/docs/material/.icons/material/ladybug.svg new file mode 100644 index 000000000..db4c03ac2 --- /dev/null +++ b/docs/material/.icons/material/ladybug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lambda.svg b/docs/material/.icons/material/lambda.svg new file mode 100644 index 000000000..2cf72ad31 --- /dev/null +++ b/docs/material/.icons/material/lambda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lamp.svg b/docs/material/.icons/material/lamp.svg new file mode 100644 index 000000000..6aa7fe66a --- /dev/null +++ b/docs/material/.icons/material/lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lan-check.svg b/docs/material/.icons/material/lan-check.svg new file mode 100644 index 000000000..3ee4e5bc2 --- /dev/null +++ b/docs/material/.icons/material/lan-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lan-connect.svg b/docs/material/.icons/material/lan-connect.svg new file mode 100644 index 000000000..fe21829c5 --- /dev/null +++ b/docs/material/.icons/material/lan-connect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lan-disconnect.svg b/docs/material/.icons/material/lan-disconnect.svg new file mode 100644 index 000000000..bc5180289 --- /dev/null +++ b/docs/material/.icons/material/lan-disconnect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lan-pending.svg b/docs/material/.icons/material/lan-pending.svg new file mode 100644 index 000000000..8cb48c404 --- /dev/null +++ b/docs/material/.icons/material/lan-pending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lan.svg b/docs/material/.icons/material/lan.svg new file mode 100644 index 000000000..84ded0dfd --- /dev/null +++ b/docs/material/.icons/material/lan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-c.svg b/docs/material/.icons/material/language-c.svg new file mode 100644 index 000000000..1575535a4 --- /dev/null +++ b/docs/material/.icons/material/language-c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-cpp.svg b/docs/material/.icons/material/language-cpp.svg new file mode 100644 index 000000000..b3f74e9b3 --- /dev/null +++ b/docs/material/.icons/material/language-cpp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-csharp.svg b/docs/material/.icons/material/language-csharp.svg new file mode 100644 index 000000000..f1e498a1f --- /dev/null +++ b/docs/material/.icons/material/language-csharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-css3.svg b/docs/material/.icons/material/language-css3.svg new file mode 100644 index 000000000..0204b2cc5 --- /dev/null +++ b/docs/material/.icons/material/language-css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-fortran.svg b/docs/material/.icons/material/language-fortran.svg new file mode 100644 index 000000000..531d03e41 --- /dev/null +++ b/docs/material/.icons/material/language-fortran.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-go.svg b/docs/material/.icons/material/language-go.svg new file mode 100644 index 000000000..70fb58bd1 --- /dev/null +++ b/docs/material/.icons/material/language-go.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-haskell.svg b/docs/material/.icons/material/language-haskell.svg new file mode 100644 index 000000000..fd5759ba9 --- /dev/null +++ b/docs/material/.icons/material/language-haskell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-html5.svg b/docs/material/.icons/material/language-html5.svg new file mode 100644 index 000000000..36ed86b99 --- /dev/null +++ b/docs/material/.icons/material/language-html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-java.svg b/docs/material/.icons/material/language-java.svg new file mode 100644 index 000000000..64781a08f --- /dev/null +++ b/docs/material/.icons/material/language-java.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-javascript.svg b/docs/material/.icons/material/language-javascript.svg new file mode 100644 index 000000000..277eca4e0 --- /dev/null +++ b/docs/material/.icons/material/language-javascript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-kotlin.svg b/docs/material/.icons/material/language-kotlin.svg new file mode 100644 index 000000000..2308b7ab7 --- /dev/null +++ b/docs/material/.icons/material/language-kotlin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-lua.svg b/docs/material/.icons/material/language-lua.svg new file mode 100644 index 000000000..673ddf4e3 --- /dev/null +++ b/docs/material/.icons/material/language-lua.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-markdown-outline.svg b/docs/material/.icons/material/language-markdown-outline.svg new file mode 100644 index 000000000..55fce1c83 --- /dev/null +++ b/docs/material/.icons/material/language-markdown-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-markdown.svg b/docs/material/.icons/material/language-markdown.svg new file mode 100644 index 000000000..de373dfd1 --- /dev/null +++ b/docs/material/.icons/material/language-markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-php.svg b/docs/material/.icons/material/language-php.svg new file mode 100644 index 000000000..0ec5f0da0 --- /dev/null +++ b/docs/material/.icons/material/language-php.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-python.svg b/docs/material/.icons/material/language-python.svg new file mode 100644 index 000000000..efd2c95fa --- /dev/null +++ b/docs/material/.icons/material/language-python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-r.svg b/docs/material/.icons/material/language-r.svg new file mode 100644 index 000000000..ff13d942c --- /dev/null +++ b/docs/material/.icons/material/language-r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-ruby-on-rails.svg b/docs/material/.icons/material/language-ruby-on-rails.svg new file mode 100644 index 000000000..183b12e48 --- /dev/null +++ b/docs/material/.icons/material/language-ruby-on-rails.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-ruby.svg b/docs/material/.icons/material/language-ruby.svg new file mode 100644 index 000000000..6b4a39ec2 --- /dev/null +++ b/docs/material/.icons/material/language-ruby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-swift.svg b/docs/material/.icons/material/language-swift.svg new file mode 100644 index 000000000..4aac4657f --- /dev/null +++ b/docs/material/.icons/material/language-swift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-typescript.svg b/docs/material/.icons/material/language-typescript.svg new file mode 100644 index 000000000..6faa9609f --- /dev/null +++ b/docs/material/.icons/material/language-typescript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/language-xaml.svg b/docs/material/.icons/material/language-xaml.svg new file mode 100644 index 000000000..96ceca5ab --- /dev/null +++ b/docs/material/.icons/material/language-xaml.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/laptop-chromebook.svg b/docs/material/.icons/material/laptop-chromebook.svg new file mode 100644 index 000000000..c540ffa62 --- /dev/null +++ b/docs/material/.icons/material/laptop-chromebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/laptop-mac.svg b/docs/material/.icons/material/laptop-mac.svg new file mode 100644 index 000000000..0b4b1804c --- /dev/null +++ b/docs/material/.icons/material/laptop-mac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/laptop-off.svg b/docs/material/.icons/material/laptop-off.svg new file mode 100644 index 000000000..a689e2fc4 --- /dev/null +++ b/docs/material/.icons/material/laptop-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/laptop-windows.svg b/docs/material/.icons/material/laptop-windows.svg new file mode 100644 index 000000000..f0e9df7da --- /dev/null +++ b/docs/material/.icons/material/laptop-windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/laptop.svg b/docs/material/.icons/material/laptop.svg new file mode 100644 index 000000000..1fc9d9a3d --- /dev/null +++ b/docs/material/.icons/material/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/laravel.svg b/docs/material/.icons/material/laravel.svg new file mode 100644 index 000000000..535719c82 --- /dev/null +++ b/docs/material/.icons/material/laravel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lasso.svg b/docs/material/.icons/material/lasso.svg new file mode 100644 index 000000000..0dd4893c3 --- /dev/null +++ b/docs/material/.icons/material/lasso.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lastpass.svg b/docs/material/.icons/material/lastpass.svg new file mode 100644 index 000000000..79cb2cd0a --- /dev/null +++ b/docs/material/.icons/material/lastpass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/latitude.svg b/docs/material/.icons/material/latitude.svg new file mode 100644 index 000000000..a4b81c0ce --- /dev/null +++ b/docs/material/.icons/material/latitude.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/launch.svg b/docs/material/.icons/material/launch.svg new file mode 100644 index 000000000..e0612fe68 --- /dev/null +++ b/docs/material/.icons/material/launch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lava-lamp.svg b/docs/material/.icons/material/lava-lamp.svg new file mode 100644 index 000000000..25dfbfb6a --- /dev/null +++ b/docs/material/.icons/material/lava-lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-minus.svg b/docs/material/.icons/material/layers-minus.svg new file mode 100644 index 000000000..797211b2d --- /dev/null +++ b/docs/material/.icons/material/layers-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-off-outline.svg b/docs/material/.icons/material/layers-off-outline.svg new file mode 100644 index 000000000..3577ed7f5 --- /dev/null +++ b/docs/material/.icons/material/layers-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-off.svg b/docs/material/.icons/material/layers-off.svg new file mode 100644 index 000000000..64f70bc30 --- /dev/null +++ b/docs/material/.icons/material/layers-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-outline.svg b/docs/material/.icons/material/layers-outline.svg new file mode 100644 index 000000000..03c78df65 --- /dev/null +++ b/docs/material/.icons/material/layers-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-plus.svg b/docs/material/.icons/material/layers-plus.svg new file mode 100644 index 000000000..9a23b6098 --- /dev/null +++ b/docs/material/.icons/material/layers-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-remove.svg b/docs/material/.icons/material/layers-remove.svg new file mode 100644 index 000000000..532f71e43 --- /dev/null +++ b/docs/material/.icons/material/layers-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-search-outline.svg b/docs/material/.icons/material/layers-search-outline.svg new file mode 100644 index 000000000..99536ba4d --- /dev/null +++ b/docs/material/.icons/material/layers-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-search.svg b/docs/material/.icons/material/layers-search.svg new file mode 100644 index 000000000..c47d83588 --- /dev/null +++ b/docs/material/.icons/material/layers-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-triple-outline.svg b/docs/material/.icons/material/layers-triple-outline.svg new file mode 100644 index 000000000..a0f8f872b --- /dev/null +++ b/docs/material/.icons/material/layers-triple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers-triple.svg b/docs/material/.icons/material/layers-triple.svg new file mode 100644 index 000000000..eb37ee21b --- /dev/null +++ b/docs/material/.icons/material/layers-triple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/layers.svg b/docs/material/.icons/material/layers.svg new file mode 100644 index 000000000..d766c4eb0 --- /dev/null +++ b/docs/material/.icons/material/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lead-pencil.svg b/docs/material/.icons/material/lead-pencil.svg new file mode 100644 index 000000000..8d9908a1b --- /dev/null +++ b/docs/material/.icons/material/lead-pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/leaf-maple-off.svg b/docs/material/.icons/material/leaf-maple-off.svg new file mode 100644 index 000000000..db7165e0b --- /dev/null +++ b/docs/material/.icons/material/leaf-maple-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/leaf-maple.svg b/docs/material/.icons/material/leaf-maple.svg new file mode 100644 index 000000000..d25de493e --- /dev/null +++ b/docs/material/.icons/material/leaf-maple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/leaf-off.svg b/docs/material/.icons/material/leaf-off.svg new file mode 100644 index 000000000..e11f0ab92 --- /dev/null +++ b/docs/material/.icons/material/leaf-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/leaf.svg b/docs/material/.icons/material/leaf.svg new file mode 100644 index 000000000..b0b3ac061 --- /dev/null +++ b/docs/material/.icons/material/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/leak-off.svg b/docs/material/.icons/material/leak-off.svg new file mode 100644 index 000000000..146d66b2e --- /dev/null +++ b/docs/material/.icons/material/leak-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/leak.svg b/docs/material/.icons/material/leak.svg new file mode 100644 index 000000000..d6a1bf1e3 --- /dev/null +++ b/docs/material/.icons/material/leak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-off.svg b/docs/material/.icons/material/led-off.svg new file mode 100644 index 000000000..aeb347e86 --- /dev/null +++ b/docs/material/.icons/material/led-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-on.svg b/docs/material/.icons/material/led-on.svg new file mode 100644 index 000000000..b3d4de639 --- /dev/null +++ b/docs/material/.icons/material/led-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-outline.svg b/docs/material/.icons/material/led-outline.svg new file mode 100644 index 000000000..eaa320471 --- /dev/null +++ b/docs/material/.icons/material/led-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-strip-variant.svg b/docs/material/.icons/material/led-strip-variant.svg new file mode 100644 index 000000000..2c064caaf --- /dev/null +++ b/docs/material/.icons/material/led-strip-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-strip.svg b/docs/material/.icons/material/led-strip.svg new file mode 100644 index 000000000..eaac5e4eb --- /dev/null +++ b/docs/material/.icons/material/led-strip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-variant-off.svg b/docs/material/.icons/material/led-variant-off.svg new file mode 100644 index 000000000..31d91c022 --- /dev/null +++ b/docs/material/.icons/material/led-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-variant-on.svg b/docs/material/.icons/material/led-variant-on.svg new file mode 100644 index 000000000..3100a7675 --- /dev/null +++ b/docs/material/.icons/material/led-variant-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/led-variant-outline.svg b/docs/material/.icons/material/led-variant-outline.svg new file mode 100644 index 000000000..2f7c4e185 --- /dev/null +++ b/docs/material/.icons/material/led-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/leek.svg b/docs/material/.icons/material/leek.svg new file mode 100644 index 000000000..b7697a17c --- /dev/null +++ b/docs/material/.icons/material/leek.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/less-than-or-equal.svg b/docs/material/.icons/material/less-than-or-equal.svg new file mode 100644 index 000000000..274416513 --- /dev/null +++ b/docs/material/.icons/material/less-than-or-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/less-than.svg b/docs/material/.icons/material/less-than.svg new file mode 100644 index 000000000..2718fa72f --- /dev/null +++ b/docs/material/.icons/material/less-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/library-shelves.svg b/docs/material/.icons/material/library-shelves.svg new file mode 100644 index 000000000..87069e272 --- /dev/null +++ b/docs/material/.icons/material/library-shelves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/library.svg b/docs/material/.icons/material/library.svg new file mode 100644 index 000000000..67ce04650 --- /dev/null +++ b/docs/material/.icons/material/library.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/license.svg b/docs/material/.icons/material/license.svg new file mode 100644 index 000000000..179b40979 --- /dev/null +++ b/docs/material/.icons/material/license.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lifebuoy.svg b/docs/material/.icons/material/lifebuoy.svg new file mode 100644 index 000000000..b94d60836 --- /dev/null +++ b/docs/material/.icons/material/lifebuoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/light-switch.svg b/docs/material/.icons/material/light-switch.svg new file mode 100644 index 000000000..45112ebbe --- /dev/null +++ b/docs/material/.icons/material/light-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-cfl-off.svg b/docs/material/.icons/material/lightbulb-cfl-off.svg new file mode 100644 index 000000000..c6f98d7ca --- /dev/null +++ b/docs/material/.icons/material/lightbulb-cfl-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-cfl-spiral-off.svg b/docs/material/.icons/material/lightbulb-cfl-spiral-off.svg new file mode 100644 index 000000000..5fc22f967 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-cfl-spiral-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-cfl-spiral.svg b/docs/material/.icons/material/lightbulb-cfl-spiral.svg new file mode 100644 index 000000000..228a07a46 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-cfl-spiral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-cfl.svg b/docs/material/.icons/material/lightbulb-cfl.svg new file mode 100644 index 000000000..fa81edfe0 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-cfl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-group-off-outline.svg b/docs/material/.icons/material/lightbulb-group-off-outline.svg new file mode 100644 index 000000000..45ca07b29 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-group-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-group-off.svg b/docs/material/.icons/material/lightbulb-group-off.svg new file mode 100644 index 000000000..01f77a69d --- /dev/null +++ b/docs/material/.icons/material/lightbulb-group-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-group-outline.svg b/docs/material/.icons/material/lightbulb-group-outline.svg new file mode 100644 index 000000000..d7b1498b2 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-group-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-group.svg b/docs/material/.icons/material/lightbulb-group.svg new file mode 100644 index 000000000..e5c4cac1b --- /dev/null +++ b/docs/material/.icons/material/lightbulb-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-multiple-off-outline.svg b/docs/material/.icons/material/lightbulb-multiple-off-outline.svg new file mode 100644 index 000000000..81bec765a --- /dev/null +++ b/docs/material/.icons/material/lightbulb-multiple-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-multiple-off.svg b/docs/material/.icons/material/lightbulb-multiple-off.svg new file mode 100644 index 000000000..2f99e05af --- /dev/null +++ b/docs/material/.icons/material/lightbulb-multiple-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-multiple-outline.svg b/docs/material/.icons/material/lightbulb-multiple-outline.svg new file mode 100644 index 000000000..fe1d3d0d9 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-multiple.svg b/docs/material/.icons/material/lightbulb-multiple.svg new file mode 100644 index 000000000..8c0c847eb --- /dev/null +++ b/docs/material/.icons/material/lightbulb-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-off-outline.svg b/docs/material/.icons/material/lightbulb-off-outline.svg new file mode 100644 index 000000000..43f8a28a4 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-off.svg b/docs/material/.icons/material/lightbulb-off.svg new file mode 100644 index 000000000..1c665ff0d --- /dev/null +++ b/docs/material/.icons/material/lightbulb-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-on-outline.svg b/docs/material/.icons/material/lightbulb-on-outline.svg new file mode 100644 index 000000000..dd7033f34 --- /dev/null +++ b/docs/material/.icons/material/lightbulb-on-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-on.svg b/docs/material/.icons/material/lightbulb-on.svg new file mode 100644 index 000000000..bfd141f4a --- /dev/null +++ b/docs/material/.icons/material/lightbulb-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb-outline.svg b/docs/material/.icons/material/lightbulb-outline.svg new file mode 100644 index 000000000..58a72df8d --- /dev/null +++ b/docs/material/.icons/material/lightbulb-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightbulb.svg b/docs/material/.icons/material/lightbulb.svg new file mode 100644 index 000000000..9b724516b --- /dev/null +++ b/docs/material/.icons/material/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lighthouse-on.svg b/docs/material/.icons/material/lighthouse-on.svg new file mode 100644 index 000000000..a1e7b6312 --- /dev/null +++ b/docs/material/.icons/material/lighthouse-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lighthouse.svg b/docs/material/.icons/material/lighthouse.svg new file mode 100644 index 000000000..d5619ca63 --- /dev/null +++ b/docs/material/.icons/material/lighthouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightning-bolt-outline.svg b/docs/material/.icons/material/lightning-bolt-outline.svg new file mode 100644 index 000000000..8fc624b15 --- /dev/null +++ b/docs/material/.icons/material/lightning-bolt-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lightning-bolt.svg b/docs/material/.icons/material/lightning-bolt.svg new file mode 100644 index 000000000..dc8d997c3 --- /dev/null +++ b/docs/material/.icons/material/lightning-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-box-outline.svg b/docs/material/.icons/material/link-box-outline.svg new file mode 100644 index 000000000..3d509f46b --- /dev/null +++ b/docs/material/.icons/material/link-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-box-variant-outline.svg b/docs/material/.icons/material/link-box-variant-outline.svg new file mode 100644 index 000000000..89705e030 --- /dev/null +++ b/docs/material/.icons/material/link-box-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-box-variant.svg b/docs/material/.icons/material/link-box-variant.svg new file mode 100644 index 000000000..b450d24f1 --- /dev/null +++ b/docs/material/.icons/material/link-box-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-box.svg b/docs/material/.icons/material/link-box.svg new file mode 100644 index 000000000..07b14ccf4 --- /dev/null +++ b/docs/material/.icons/material/link-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-lock.svg b/docs/material/.icons/material/link-lock.svg new file mode 100644 index 000000000..2df551882 --- /dev/null +++ b/docs/material/.icons/material/link-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-off.svg b/docs/material/.icons/material/link-off.svg new file mode 100644 index 000000000..e779aa55a --- /dev/null +++ b/docs/material/.icons/material/link-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-plus.svg b/docs/material/.icons/material/link-plus.svg new file mode 100644 index 000000000..a4b91a113 --- /dev/null +++ b/docs/material/.icons/material/link-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-variant-minus.svg b/docs/material/.icons/material/link-variant-minus.svg new file mode 100644 index 000000000..a47e65235 --- /dev/null +++ b/docs/material/.icons/material/link-variant-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-variant-off.svg b/docs/material/.icons/material/link-variant-off.svg new file mode 100644 index 000000000..669f05485 --- /dev/null +++ b/docs/material/.icons/material/link-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-variant-plus.svg b/docs/material/.icons/material/link-variant-plus.svg new file mode 100644 index 000000000..d9708297e --- /dev/null +++ b/docs/material/.icons/material/link-variant-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-variant-remove.svg b/docs/material/.icons/material/link-variant-remove.svg new file mode 100644 index 000000000..638e284b7 --- /dev/null +++ b/docs/material/.icons/material/link-variant-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link-variant.svg b/docs/material/.icons/material/link-variant.svg new file mode 100644 index 000000000..5f598f74f --- /dev/null +++ b/docs/material/.icons/material/link-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/link.svg b/docs/material/.icons/material/link.svg new file mode 100644 index 000000000..7829d65b2 --- /dev/null +++ b/docs/material/.icons/material/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/linkedin.svg b/docs/material/.icons/material/linkedin.svg new file mode 100644 index 000000000..cfd1cd923 --- /dev/null +++ b/docs/material/.icons/material/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/linux-mint.svg b/docs/material/.icons/material/linux-mint.svg new file mode 100644 index 000000000..11c3686cd --- /dev/null +++ b/docs/material/.icons/material/linux-mint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/linux.svg b/docs/material/.icons/material/linux.svg new file mode 100644 index 000000000..747cb869c --- /dev/null +++ b/docs/material/.icons/material/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lipstick.svg b/docs/material/.icons/material/lipstick.svg new file mode 100644 index 000000000..4f69b28e5 --- /dev/null +++ b/docs/material/.icons/material/lipstick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/litecoin.svg b/docs/material/.icons/material/litecoin.svg new file mode 100644 index 000000000..78b61f1ca --- /dev/null +++ b/docs/material/.icons/material/litecoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/loading.svg b/docs/material/.icons/material/loading.svg new file mode 100644 index 000000000..944531cf8 --- /dev/null +++ b/docs/material/.icons/material/loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/location-enter.svg b/docs/material/.icons/material/location-enter.svg new file mode 100644 index 000000000..4c5c93542 --- /dev/null +++ b/docs/material/.icons/material/location-enter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/location-exit.svg b/docs/material/.icons/material/location-exit.svg new file mode 100644 index 000000000..8341fd673 --- /dev/null +++ b/docs/material/.icons/material/location-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-alert.svg b/docs/material/.icons/material/lock-alert.svg new file mode 100644 index 000000000..64d28340e --- /dev/null +++ b/docs/material/.icons/material/lock-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-check.svg b/docs/material/.icons/material/lock-check.svg new file mode 100644 index 000000000..f66f2bc01 --- /dev/null +++ b/docs/material/.icons/material/lock-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-clock.svg b/docs/material/.icons/material/lock-clock.svg new file mode 100644 index 000000000..7dd4236c3 --- /dev/null +++ b/docs/material/.icons/material/lock-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-open-alert.svg b/docs/material/.icons/material/lock-open-alert.svg new file mode 100644 index 000000000..1f5d37ac0 --- /dev/null +++ b/docs/material/.icons/material/lock-open-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-open-check.svg b/docs/material/.icons/material/lock-open-check.svg new file mode 100644 index 000000000..3823e079d --- /dev/null +++ b/docs/material/.icons/material/lock-open-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-open-outline.svg b/docs/material/.icons/material/lock-open-outline.svg new file mode 100644 index 000000000..824549463 --- /dev/null +++ b/docs/material/.icons/material/lock-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-open-variant-outline.svg b/docs/material/.icons/material/lock-open-variant-outline.svg new file mode 100644 index 000000000..3200f7f7a --- /dev/null +++ b/docs/material/.icons/material/lock-open-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-open-variant.svg b/docs/material/.icons/material/lock-open-variant.svg new file mode 100644 index 000000000..1422b194f --- /dev/null +++ b/docs/material/.icons/material/lock-open-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-open.svg b/docs/material/.icons/material/lock-open.svg new file mode 100644 index 000000000..9d545e1b7 --- /dev/null +++ b/docs/material/.icons/material/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-outline.svg b/docs/material/.icons/material/lock-outline.svg new file mode 100644 index 000000000..1523b7dd6 --- /dev/null +++ b/docs/material/.icons/material/lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-pattern.svg b/docs/material/.icons/material/lock-pattern.svg new file mode 100644 index 000000000..d9650a99e --- /dev/null +++ b/docs/material/.icons/material/lock-pattern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-plus.svg b/docs/material/.icons/material/lock-plus.svg new file mode 100644 index 000000000..67be939ca --- /dev/null +++ b/docs/material/.icons/material/lock-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-question.svg b/docs/material/.icons/material/lock-question.svg new file mode 100644 index 000000000..d03e8f85a --- /dev/null +++ b/docs/material/.icons/material/lock-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-reset.svg b/docs/material/.icons/material/lock-reset.svg new file mode 100644 index 000000000..326b05af7 --- /dev/null +++ b/docs/material/.icons/material/lock-reset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock-smart.svg b/docs/material/.icons/material/lock-smart.svg new file mode 100644 index 000000000..560c612a5 --- /dev/null +++ b/docs/material/.icons/material/lock-smart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lock.svg b/docs/material/.icons/material/lock.svg new file mode 100644 index 000000000..31e07a32d --- /dev/null +++ b/docs/material/.icons/material/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/locker-multiple.svg b/docs/material/.icons/material/locker-multiple.svg new file mode 100644 index 000000000..278e74e7b --- /dev/null +++ b/docs/material/.icons/material/locker-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/locker.svg b/docs/material/.icons/material/locker.svg new file mode 100644 index 000000000..106a81373 --- /dev/null +++ b/docs/material/.icons/material/locker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/login-variant.svg b/docs/material/.icons/material/login-variant.svg new file mode 100644 index 000000000..f81474153 --- /dev/null +++ b/docs/material/.icons/material/login-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/login.svg b/docs/material/.icons/material/login.svg new file mode 100644 index 000000000..0d34fe38b --- /dev/null +++ b/docs/material/.icons/material/login.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/logout-variant.svg b/docs/material/.icons/material/logout-variant.svg new file mode 100644 index 000000000..8ffadaa7b --- /dev/null +++ b/docs/material/.icons/material/logout-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/logout.svg b/docs/material/.icons/material/logout.svg new file mode 100644 index 000000000..928b38e95 --- /dev/null +++ b/docs/material/.icons/material/logout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/longitude.svg b/docs/material/.icons/material/longitude.svg new file mode 100644 index 000000000..85e0b7f9a --- /dev/null +++ b/docs/material/.icons/material/longitude.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/looks.svg b/docs/material/.icons/material/looks.svg new file mode 100644 index 000000000..c3d960071 --- /dev/null +++ b/docs/material/.icons/material/looks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/loupe.svg b/docs/material/.icons/material/loupe.svg new file mode 100644 index 000000000..5f70239c8 --- /dev/null +++ b/docs/material/.icons/material/loupe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lumx.svg b/docs/material/.icons/material/lumx.svg new file mode 100644 index 000000000..71a1433a7 --- /dev/null +++ b/docs/material/.icons/material/lumx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/lungs.svg b/docs/material/.icons/material/lungs.svg new file mode 100644 index 000000000..e0111a922 --- /dev/null +++ b/docs/material/.icons/material/lungs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnet-on.svg b/docs/material/.icons/material/magnet-on.svg new file mode 100644 index 000000000..bc7a60b89 --- /dev/null +++ b/docs/material/.icons/material/magnet-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnet.svg b/docs/material/.icons/material/magnet.svg new file mode 100644 index 000000000..366655a03 --- /dev/null +++ b/docs/material/.icons/material/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-close.svg b/docs/material/.icons/material/magnify-close.svg new file mode 100644 index 000000000..52a724749 --- /dev/null +++ b/docs/material/.icons/material/magnify-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-minus-cursor.svg b/docs/material/.icons/material/magnify-minus-cursor.svg new file mode 100644 index 000000000..ae3c28627 --- /dev/null +++ b/docs/material/.icons/material/magnify-minus-cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-minus-outline.svg b/docs/material/.icons/material/magnify-minus-outline.svg new file mode 100644 index 000000000..7e304ec5d --- /dev/null +++ b/docs/material/.icons/material/magnify-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-minus.svg b/docs/material/.icons/material/magnify-minus.svg new file mode 100644 index 000000000..c10ba3cc8 --- /dev/null +++ b/docs/material/.icons/material/magnify-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-plus-cursor.svg b/docs/material/.icons/material/magnify-plus-cursor.svg new file mode 100644 index 000000000..aebcb1650 --- /dev/null +++ b/docs/material/.icons/material/magnify-plus-cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-plus-outline.svg b/docs/material/.icons/material/magnify-plus-outline.svg new file mode 100644 index 000000000..0d836a88d --- /dev/null +++ b/docs/material/.icons/material/magnify-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-plus.svg b/docs/material/.icons/material/magnify-plus.svg new file mode 100644 index 000000000..771212e2c --- /dev/null +++ b/docs/material/.icons/material/magnify-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-remove-cursor.svg b/docs/material/.icons/material/magnify-remove-cursor.svg new file mode 100644 index 000000000..11d0b33a9 --- /dev/null +++ b/docs/material/.icons/material/magnify-remove-cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-remove-outline.svg b/docs/material/.icons/material/magnify-remove-outline.svg new file mode 100644 index 000000000..65440fb6f --- /dev/null +++ b/docs/material/.icons/material/magnify-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify-scan.svg b/docs/material/.icons/material/magnify-scan.svg new file mode 100644 index 000000000..bf5d77ea9 --- /dev/null +++ b/docs/material/.icons/material/magnify-scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/magnify.svg b/docs/material/.icons/material/magnify.svg new file mode 100644 index 000000000..c05f129aa --- /dev/null +++ b/docs/material/.icons/material/magnify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mail.svg b/docs/material/.icons/material/mail.svg new file mode 100644 index 000000000..4fdaaebae --- /dev/null +++ b/docs/material/.icons/material/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox-open-outline.svg b/docs/material/.icons/material/mailbox-open-outline.svg new file mode 100644 index 000000000..9e3dda076 --- /dev/null +++ b/docs/material/.icons/material/mailbox-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox-open-up-outline.svg b/docs/material/.icons/material/mailbox-open-up-outline.svg new file mode 100644 index 000000000..f97406e78 --- /dev/null +++ b/docs/material/.icons/material/mailbox-open-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox-open-up.svg b/docs/material/.icons/material/mailbox-open-up.svg new file mode 100644 index 000000000..2f41f38bc --- /dev/null +++ b/docs/material/.icons/material/mailbox-open-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox-open.svg b/docs/material/.icons/material/mailbox-open.svg new file mode 100644 index 000000000..6b687c5d6 --- /dev/null +++ b/docs/material/.icons/material/mailbox-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox-outline.svg b/docs/material/.icons/material/mailbox-outline.svg new file mode 100644 index 000000000..7582d37cb --- /dev/null +++ b/docs/material/.icons/material/mailbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox-up-outline.svg b/docs/material/.icons/material/mailbox-up-outline.svg new file mode 100644 index 000000000..59e35ca1b --- /dev/null +++ b/docs/material/.icons/material/mailbox-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox-up.svg b/docs/material/.icons/material/mailbox-up.svg new file mode 100644 index 000000000..9d15b5692 --- /dev/null +++ b/docs/material/.icons/material/mailbox-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mailbox.svg b/docs/material/.icons/material/mailbox.svg new file mode 100644 index 000000000..3da2b5e11 --- /dev/null +++ b/docs/material/.icons/material/mailbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-check-outline.svg b/docs/material/.icons/material/map-check-outline.svg new file mode 100644 index 000000000..aa899dbb2 --- /dev/null +++ b/docs/material/.icons/material/map-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-check.svg b/docs/material/.icons/material/map-check.svg new file mode 100644 index 000000000..036b41f61 --- /dev/null +++ b/docs/material/.icons/material/map-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-clock-outline.svg b/docs/material/.icons/material/map-clock-outline.svg new file mode 100644 index 000000000..8f54bbc92 --- /dev/null +++ b/docs/material/.icons/material/map-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-clock.svg b/docs/material/.icons/material/map-clock.svg new file mode 100644 index 000000000..2c00203c5 --- /dev/null +++ b/docs/material/.icons/material/map-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-legend.svg b/docs/material/.icons/material/map-legend.svg new file mode 100644 index 000000000..118418c0e --- /dev/null +++ b/docs/material/.icons/material/map-legend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-alert-outline.svg b/docs/material/.icons/material/map-marker-alert-outline.svg new file mode 100644 index 000000000..b70ecb581 --- /dev/null +++ b/docs/material/.icons/material/map-marker-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-alert.svg b/docs/material/.icons/material/map-marker-alert.svg new file mode 100644 index 000000000..d19a31696 --- /dev/null +++ b/docs/material/.icons/material/map-marker-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-check-outline.svg b/docs/material/.icons/material/map-marker-check-outline.svg new file mode 100644 index 000000000..3d3e93c6a --- /dev/null +++ b/docs/material/.icons/material/map-marker-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-check.svg b/docs/material/.icons/material/map-marker-check.svg new file mode 100644 index 000000000..e7d29dd2e --- /dev/null +++ b/docs/material/.icons/material/map-marker-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-circle.svg b/docs/material/.icons/material/map-marker-circle.svg new file mode 100644 index 000000000..ca8f94295 --- /dev/null +++ b/docs/material/.icons/material/map-marker-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-distance.svg b/docs/material/.icons/material/map-marker-distance.svg new file mode 100644 index 000000000..fc7ccd324 --- /dev/null +++ b/docs/material/.icons/material/map-marker-distance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-down.svg b/docs/material/.icons/material/map-marker-down.svg new file mode 100644 index 000000000..0271ae6c2 --- /dev/null +++ b/docs/material/.icons/material/map-marker-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-left-outline.svg b/docs/material/.icons/material/map-marker-left-outline.svg new file mode 100644 index 000000000..a86e81076 --- /dev/null +++ b/docs/material/.icons/material/map-marker-left-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-left.svg b/docs/material/.icons/material/map-marker-left.svg new file mode 100644 index 000000000..19870f6be --- /dev/null +++ b/docs/material/.icons/material/map-marker-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-minus-outline.svg b/docs/material/.icons/material/map-marker-minus-outline.svg new file mode 100644 index 000000000..51a86621e --- /dev/null +++ b/docs/material/.icons/material/map-marker-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-minus.svg b/docs/material/.icons/material/map-marker-minus.svg new file mode 100644 index 000000000..50827b68c --- /dev/null +++ b/docs/material/.icons/material/map-marker-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-multiple-outline.svg b/docs/material/.icons/material/map-marker-multiple-outline.svg new file mode 100644 index 000000000..4139e2896 --- /dev/null +++ b/docs/material/.icons/material/map-marker-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-multiple.svg b/docs/material/.icons/material/map-marker-multiple.svg new file mode 100644 index 000000000..8b253312a --- /dev/null +++ b/docs/material/.icons/material/map-marker-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-off-outline.svg b/docs/material/.icons/material/map-marker-off-outline.svg new file mode 100644 index 000000000..88822f148 --- /dev/null +++ b/docs/material/.icons/material/map-marker-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-off.svg b/docs/material/.icons/material/map-marker-off.svg new file mode 100644 index 000000000..9e7b449b9 --- /dev/null +++ b/docs/material/.icons/material/map-marker-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-outline.svg b/docs/material/.icons/material/map-marker-outline.svg new file mode 100644 index 000000000..0f0241920 --- /dev/null +++ b/docs/material/.icons/material/map-marker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-path.svg b/docs/material/.icons/material/map-marker-path.svg new file mode 100644 index 000000000..e69a63f10 --- /dev/null +++ b/docs/material/.icons/material/map-marker-path.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-plus-outline.svg b/docs/material/.icons/material/map-marker-plus-outline.svg new file mode 100644 index 000000000..d76438bb4 --- /dev/null +++ b/docs/material/.icons/material/map-marker-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-plus.svg b/docs/material/.icons/material/map-marker-plus.svg new file mode 100644 index 000000000..fde107840 --- /dev/null +++ b/docs/material/.icons/material/map-marker-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-question-outline.svg b/docs/material/.icons/material/map-marker-question-outline.svg new file mode 100644 index 000000000..a97667c31 --- /dev/null +++ b/docs/material/.icons/material/map-marker-question-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-question.svg b/docs/material/.icons/material/map-marker-question.svg new file mode 100644 index 000000000..0f1b4158f --- /dev/null +++ b/docs/material/.icons/material/map-marker-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-radius-outline.svg b/docs/material/.icons/material/map-marker-radius-outline.svg new file mode 100644 index 000000000..8b87423e2 --- /dev/null +++ b/docs/material/.icons/material/map-marker-radius-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-radius.svg b/docs/material/.icons/material/map-marker-radius.svg new file mode 100644 index 000000000..1365309d7 --- /dev/null +++ b/docs/material/.icons/material/map-marker-radius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-remove-outline.svg b/docs/material/.icons/material/map-marker-remove-outline.svg new file mode 100644 index 000000000..34506d76a --- /dev/null +++ b/docs/material/.icons/material/map-marker-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-remove-variant.svg b/docs/material/.icons/material/map-marker-remove-variant.svg new file mode 100644 index 000000000..98fcf40ca --- /dev/null +++ b/docs/material/.icons/material/map-marker-remove-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-remove.svg b/docs/material/.icons/material/map-marker-remove.svg new file mode 100644 index 000000000..b0ea6faf8 --- /dev/null +++ b/docs/material/.icons/material/map-marker-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-right-outline.svg b/docs/material/.icons/material/map-marker-right-outline.svg new file mode 100644 index 000000000..acdc42738 --- /dev/null +++ b/docs/material/.icons/material/map-marker-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-right.svg b/docs/material/.icons/material/map-marker-right.svg new file mode 100644 index 000000000..f489ac75b --- /dev/null +++ b/docs/material/.icons/material/map-marker-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker-up.svg b/docs/material/.icons/material/map-marker-up.svg new file mode 100644 index 000000000..3fc103905 --- /dev/null +++ b/docs/material/.icons/material/map-marker-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-marker.svg b/docs/material/.icons/material/map-marker.svg new file mode 100644 index 000000000..7320fb154 --- /dev/null +++ b/docs/material/.icons/material/map-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-minus.svg b/docs/material/.icons/material/map-minus.svg new file mode 100644 index 000000000..1a08d342a --- /dev/null +++ b/docs/material/.icons/material/map-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-outline.svg b/docs/material/.icons/material/map-outline.svg new file mode 100644 index 000000000..f4993ecf4 --- /dev/null +++ b/docs/material/.icons/material/map-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-plus.svg b/docs/material/.icons/material/map-plus.svg new file mode 100644 index 000000000..b9fe648eb --- /dev/null +++ b/docs/material/.icons/material/map-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-search-outline.svg b/docs/material/.icons/material/map-search-outline.svg new file mode 100644 index 000000000..fe2865a47 --- /dev/null +++ b/docs/material/.icons/material/map-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map-search.svg b/docs/material/.icons/material/map-search.svg new file mode 100644 index 000000000..4e5ee6a50 --- /dev/null +++ b/docs/material/.icons/material/map-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/map.svg b/docs/material/.icons/material/map.svg new file mode 100644 index 000000000..dcc7f24ac --- /dev/null +++ b/docs/material/.icons/material/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mapbox.svg b/docs/material/.icons/material/mapbox.svg new file mode 100644 index 000000000..145ee31f3 --- /dev/null +++ b/docs/material/.icons/material/mapbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/margin.svg b/docs/material/.icons/material/margin.svg new file mode 100644 index 000000000..0481f02e0 --- /dev/null +++ b/docs/material/.icons/material/margin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/marker-cancel.svg b/docs/material/.icons/material/marker-cancel.svg new file mode 100644 index 000000000..8c0a558ed --- /dev/null +++ b/docs/material/.icons/material/marker-cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/marker-check.svg b/docs/material/.icons/material/marker-check.svg new file mode 100644 index 000000000..5950933cd --- /dev/null +++ b/docs/material/.icons/material/marker-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/marker.svg b/docs/material/.icons/material/marker.svg new file mode 100644 index 000000000..24563d676 --- /dev/null +++ b/docs/material/.icons/material/marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mastodon.svg b/docs/material/.icons/material/mastodon.svg new file mode 100644 index 000000000..7356623ff --- /dev/null +++ b/docs/material/.icons/material/mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/material-design.svg b/docs/material/.icons/material/material-design.svg new file mode 100644 index 000000000..66521d78a --- /dev/null +++ b/docs/material/.icons/material/material-design.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/material-ui.svg b/docs/material/.icons/material/material-ui.svg new file mode 100644 index 000000000..ebca4708f --- /dev/null +++ b/docs/material/.icons/material/material-ui.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-compass.svg b/docs/material/.icons/material/math-compass.svg new file mode 100644 index 000000000..480f3ff2e --- /dev/null +++ b/docs/material/.icons/material/math-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-cos.svg b/docs/material/.icons/material/math-cos.svg new file mode 100644 index 000000000..852ba1821 --- /dev/null +++ b/docs/material/.icons/material/math-cos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-integral-box.svg b/docs/material/.icons/material/math-integral-box.svg new file mode 100644 index 000000000..e2bff8c91 --- /dev/null +++ b/docs/material/.icons/material/math-integral-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-integral.svg b/docs/material/.icons/material/math-integral.svg new file mode 100644 index 000000000..8a35ed052 --- /dev/null +++ b/docs/material/.icons/material/math-integral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-log.svg b/docs/material/.icons/material/math-log.svg new file mode 100644 index 000000000..7db54bd0e --- /dev/null +++ b/docs/material/.icons/material/math-log.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-norm-box.svg b/docs/material/.icons/material/math-norm-box.svg new file mode 100644 index 000000000..77be0c816 --- /dev/null +++ b/docs/material/.icons/material/math-norm-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-norm.svg b/docs/material/.icons/material/math-norm.svg new file mode 100644 index 000000000..cd90c340c --- /dev/null +++ b/docs/material/.icons/material/math-norm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-sin.svg b/docs/material/.icons/material/math-sin.svg new file mode 100644 index 000000000..36b1666da --- /dev/null +++ b/docs/material/.icons/material/math-sin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/math-tan.svg b/docs/material/.icons/material/math-tan.svg new file mode 100644 index 000000000..c66ad8d26 --- /dev/null +++ b/docs/material/.icons/material/math-tan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/matrix.svg b/docs/material/.icons/material/matrix.svg new file mode 100644 index 000000000..4e6ac1562 --- /dev/null +++ b/docs/material/.icons/material/matrix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/medal-outline.svg b/docs/material/.icons/material/medal-outline.svg new file mode 100644 index 000000000..a89e5aee9 --- /dev/null +++ b/docs/material/.icons/material/medal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/medal.svg b/docs/material/.icons/material/medal.svg new file mode 100644 index 000000000..505ca71c9 --- /dev/null +++ b/docs/material/.icons/material/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/medical-bag.svg b/docs/material/.icons/material/medical-bag.svg new file mode 100644 index 000000000..22a873a8a --- /dev/null +++ b/docs/material/.icons/material/medical-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/meditation.svg b/docs/material/.icons/material/meditation.svg new file mode 100644 index 000000000..3e087af1d --- /dev/null +++ b/docs/material/.icons/material/meditation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/memory.svg b/docs/material/.icons/material/memory.svg new file mode 100644 index 000000000..e197bbbef --- /dev/null +++ b/docs/material/.icons/material/memory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-down-outline.svg b/docs/material/.icons/material/menu-down-outline.svg new file mode 100644 index 000000000..edb501104 --- /dev/null +++ b/docs/material/.icons/material/menu-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-down.svg b/docs/material/.icons/material/menu-down.svg new file mode 100644 index 000000000..e0d20ed7d --- /dev/null +++ b/docs/material/.icons/material/menu-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-left-outline.svg b/docs/material/.icons/material/menu-left-outline.svg new file mode 100644 index 000000000..7b6539607 --- /dev/null +++ b/docs/material/.icons/material/menu-left-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-left.svg b/docs/material/.icons/material/menu-left.svg new file mode 100644 index 000000000..8b66930d4 --- /dev/null +++ b/docs/material/.icons/material/menu-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-open.svg b/docs/material/.icons/material/menu-open.svg new file mode 100644 index 000000000..33319dc31 --- /dev/null +++ b/docs/material/.icons/material/menu-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-right-outline.svg b/docs/material/.icons/material/menu-right-outline.svg new file mode 100644 index 000000000..8fbaade04 --- /dev/null +++ b/docs/material/.icons/material/menu-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-right.svg b/docs/material/.icons/material/menu-right.svg new file mode 100644 index 000000000..449b0bd22 --- /dev/null +++ b/docs/material/.icons/material/menu-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-swap-outline.svg b/docs/material/.icons/material/menu-swap-outline.svg new file mode 100644 index 000000000..ade9e6f9c --- /dev/null +++ b/docs/material/.icons/material/menu-swap-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-swap.svg b/docs/material/.icons/material/menu-swap.svg new file mode 100644 index 000000000..af7a83676 --- /dev/null +++ b/docs/material/.icons/material/menu-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-up-outline.svg b/docs/material/.icons/material/menu-up-outline.svg new file mode 100644 index 000000000..9c0889318 --- /dev/null +++ b/docs/material/.icons/material/menu-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu-up.svg b/docs/material/.icons/material/menu-up.svg new file mode 100644 index 000000000..d4191c121 --- /dev/null +++ b/docs/material/.icons/material/menu-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/menu.svg b/docs/material/.icons/material/menu.svg new file mode 100644 index 000000000..6d2135e17 --- /dev/null +++ b/docs/material/.icons/material/menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/merge.svg b/docs/material/.icons/material/merge.svg new file mode 100644 index 000000000..e1b0be8b3 --- /dev/null +++ b/docs/material/.icons/material/merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-alert-outline.svg b/docs/material/.icons/material/message-alert-outline.svg new file mode 100644 index 000000000..316eb5564 --- /dev/null +++ b/docs/material/.icons/material/message-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-alert.svg b/docs/material/.icons/material/message-alert.svg new file mode 100644 index 000000000..2c5d7df17 --- /dev/null +++ b/docs/material/.icons/material/message-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-arrow-left-outline.svg b/docs/material/.icons/material/message-arrow-left-outline.svg new file mode 100644 index 000000000..dbd78eac4 --- /dev/null +++ b/docs/material/.icons/material/message-arrow-left-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-arrow-left.svg b/docs/material/.icons/material/message-arrow-left.svg new file mode 100644 index 000000000..593ef0fd9 --- /dev/null +++ b/docs/material/.icons/material/message-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-arrow-right-outline.svg b/docs/material/.icons/material/message-arrow-right-outline.svg new file mode 100644 index 000000000..4b1f48dc0 --- /dev/null +++ b/docs/material/.icons/material/message-arrow-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-arrow-right.svg b/docs/material/.icons/material/message-arrow-right.svg new file mode 100644 index 000000000..64307498b --- /dev/null +++ b/docs/material/.icons/material/message-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-bulleted-off.svg b/docs/material/.icons/material/message-bulleted-off.svg new file mode 100644 index 000000000..8d6f3b6b9 --- /dev/null +++ b/docs/material/.icons/material/message-bulleted-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-bulleted.svg b/docs/material/.icons/material/message-bulleted.svg new file mode 100644 index 000000000..955dc270c --- /dev/null +++ b/docs/material/.icons/material/message-bulleted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-cog-outline.svg b/docs/material/.icons/material/message-cog-outline.svg new file mode 100644 index 000000000..19e9022f9 --- /dev/null +++ b/docs/material/.icons/material/message-cog-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-cog.svg b/docs/material/.icons/material/message-cog.svg new file mode 100644 index 000000000..16ed33ed6 --- /dev/null +++ b/docs/material/.icons/material/message-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-draw.svg b/docs/material/.icons/material/message-draw.svg new file mode 100644 index 000000000..34c4fa522 --- /dev/null +++ b/docs/material/.icons/material/message-draw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-image-outline.svg b/docs/material/.icons/material/message-image-outline.svg new file mode 100644 index 000000000..c3b094c11 --- /dev/null +++ b/docs/material/.icons/material/message-image-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-image.svg b/docs/material/.icons/material/message-image.svg new file mode 100644 index 000000000..385ff3445 --- /dev/null +++ b/docs/material/.icons/material/message-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-lock-outline.svg b/docs/material/.icons/material/message-lock-outline.svg new file mode 100644 index 000000000..5632810f5 --- /dev/null +++ b/docs/material/.icons/material/message-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-lock.svg b/docs/material/.icons/material/message-lock.svg new file mode 100644 index 000000000..32c7e32e8 --- /dev/null +++ b/docs/material/.icons/material/message-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-minus-outline.svg b/docs/material/.icons/material/message-minus-outline.svg new file mode 100644 index 000000000..8024fe12c --- /dev/null +++ b/docs/material/.icons/material/message-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-minus.svg b/docs/material/.icons/material/message-minus.svg new file mode 100644 index 000000000..cceaeb638 --- /dev/null +++ b/docs/material/.icons/material/message-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-outline.svg b/docs/material/.icons/material/message-outline.svg new file mode 100644 index 000000000..318275255 --- /dev/null +++ b/docs/material/.icons/material/message-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-plus-outline.svg b/docs/material/.icons/material/message-plus-outline.svg new file mode 100644 index 000000000..e731f7bc2 --- /dev/null +++ b/docs/material/.icons/material/message-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-plus.svg b/docs/material/.icons/material/message-plus.svg new file mode 100644 index 000000000..a49bf61e7 --- /dev/null +++ b/docs/material/.icons/material/message-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-processing-outline.svg b/docs/material/.icons/material/message-processing-outline.svg new file mode 100644 index 000000000..a88e8e252 --- /dev/null +++ b/docs/material/.icons/material/message-processing-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-processing.svg b/docs/material/.icons/material/message-processing.svg new file mode 100644 index 000000000..ebe66d82b --- /dev/null +++ b/docs/material/.icons/material/message-processing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-reply-text.svg b/docs/material/.icons/material/message-reply-text.svg new file mode 100644 index 000000000..039cdadcc --- /dev/null +++ b/docs/material/.icons/material/message-reply-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-reply.svg b/docs/material/.icons/material/message-reply.svg new file mode 100644 index 000000000..430a6ed8a --- /dev/null +++ b/docs/material/.icons/material/message-reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-settings-outline.svg b/docs/material/.icons/material/message-settings-outline.svg new file mode 100644 index 000000000..62ee43a83 --- /dev/null +++ b/docs/material/.icons/material/message-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-settings.svg b/docs/material/.icons/material/message-settings.svg new file mode 100644 index 000000000..ba1ddd2f8 --- /dev/null +++ b/docs/material/.icons/material/message-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-text-clock-outline.svg b/docs/material/.icons/material/message-text-clock-outline.svg new file mode 100644 index 000000000..431e39792 --- /dev/null +++ b/docs/material/.icons/material/message-text-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-text-clock.svg b/docs/material/.icons/material/message-text-clock.svg new file mode 100644 index 000000000..76c5a6679 --- /dev/null +++ b/docs/material/.icons/material/message-text-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-text-lock-outline.svg b/docs/material/.icons/material/message-text-lock-outline.svg new file mode 100644 index 000000000..04678de97 --- /dev/null +++ b/docs/material/.icons/material/message-text-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-text-lock.svg b/docs/material/.icons/material/message-text-lock.svg new file mode 100644 index 000000000..b60f6cdf6 --- /dev/null +++ b/docs/material/.icons/material/message-text-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-text-outline.svg b/docs/material/.icons/material/message-text-outline.svg new file mode 100644 index 000000000..e3e9b7483 --- /dev/null +++ b/docs/material/.icons/material/message-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-text.svg b/docs/material/.icons/material/message-text.svg new file mode 100644 index 000000000..dac6d0b7a --- /dev/null +++ b/docs/material/.icons/material/message-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message-video.svg b/docs/material/.icons/material/message-video.svg new file mode 100644 index 000000000..97c3264b1 --- /dev/null +++ b/docs/material/.icons/material/message-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/message.svg b/docs/material/.icons/material/message.svg new file mode 100644 index 000000000..c81fbc787 --- /dev/null +++ b/docs/material/.icons/material/message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/meteor.svg b/docs/material/.icons/material/meteor.svg new file mode 100644 index 000000000..55f5131ae --- /dev/null +++ b/docs/material/.icons/material/meteor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/metronome-tick.svg b/docs/material/.icons/material/metronome-tick.svg new file mode 100644 index 000000000..222c583d3 --- /dev/null +++ b/docs/material/.icons/material/metronome-tick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/metronome.svg b/docs/material/.icons/material/metronome.svg new file mode 100644 index 000000000..fd509114a --- /dev/null +++ b/docs/material/.icons/material/metronome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/micro-sd.svg b/docs/material/.icons/material/micro-sd.svg new file mode 100644 index 000000000..f7ab32386 --- /dev/null +++ b/docs/material/.icons/material/micro-sd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone-minus.svg b/docs/material/.icons/material/microphone-minus.svg new file mode 100644 index 000000000..73c1cf2e2 --- /dev/null +++ b/docs/material/.icons/material/microphone-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone-off.svg b/docs/material/.icons/material/microphone-off.svg new file mode 100644 index 000000000..354dc3c89 --- /dev/null +++ b/docs/material/.icons/material/microphone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone-outline.svg b/docs/material/.icons/material/microphone-outline.svg new file mode 100644 index 000000000..9b34cdf41 --- /dev/null +++ b/docs/material/.icons/material/microphone-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone-plus.svg b/docs/material/.icons/material/microphone-plus.svg new file mode 100644 index 000000000..be516d345 --- /dev/null +++ b/docs/material/.icons/material/microphone-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone-settings.svg b/docs/material/.icons/material/microphone-settings.svg new file mode 100644 index 000000000..e8507dd9e --- /dev/null +++ b/docs/material/.icons/material/microphone-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone-variant-off.svg b/docs/material/.icons/material/microphone-variant-off.svg new file mode 100644 index 000000000..b084bca03 --- /dev/null +++ b/docs/material/.icons/material/microphone-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone-variant.svg b/docs/material/.icons/material/microphone-variant.svg new file mode 100644 index 000000000..b5ee05da7 --- /dev/null +++ b/docs/material/.icons/material/microphone-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microphone.svg b/docs/material/.icons/material/microphone.svg new file mode 100644 index 000000000..895f0e4da --- /dev/null +++ b/docs/material/.icons/material/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microscope.svg b/docs/material/.icons/material/microscope.svg new file mode 100644 index 000000000..5e81844bc --- /dev/null +++ b/docs/material/.icons/material/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-access.svg b/docs/material/.icons/material/microsoft-access.svg new file mode 100644 index 000000000..0d144867b --- /dev/null +++ b/docs/material/.icons/material/microsoft-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-azure-devops.svg b/docs/material/.icons/material/microsoft-azure-devops.svg new file mode 100644 index 000000000..4b7e5b358 --- /dev/null +++ b/docs/material/.icons/material/microsoft-azure-devops.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-azure.svg b/docs/material/.icons/material/microsoft-azure.svg new file mode 100644 index 000000000..3f5110085 --- /dev/null +++ b/docs/material/.icons/material/microsoft-azure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-bing.svg b/docs/material/.icons/material/microsoft-bing.svg new file mode 100644 index 000000000..0371962ee --- /dev/null +++ b/docs/material/.icons/material/microsoft-bing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-dynamics-365.svg b/docs/material/.icons/material/microsoft-dynamics-365.svg new file mode 100644 index 000000000..7e19b8a88 --- /dev/null +++ b/docs/material/.icons/material/microsoft-dynamics-365.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-edge-legacy.svg b/docs/material/.icons/material/microsoft-edge-legacy.svg new file mode 100644 index 000000000..e43ff58d1 --- /dev/null +++ b/docs/material/.icons/material/microsoft-edge-legacy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-edge.svg b/docs/material/.icons/material/microsoft-edge.svg new file mode 100644 index 000000000..fc63e89c1 --- /dev/null +++ b/docs/material/.icons/material/microsoft-edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-excel.svg b/docs/material/.icons/material/microsoft-excel.svg new file mode 100644 index 000000000..1350c1a8d --- /dev/null +++ b/docs/material/.icons/material/microsoft-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-internet-explorer.svg b/docs/material/.icons/material/microsoft-internet-explorer.svg new file mode 100644 index 000000000..5b9a010e8 --- /dev/null +++ b/docs/material/.icons/material/microsoft-internet-explorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-office.svg b/docs/material/.icons/material/microsoft-office.svg new file mode 100644 index 000000000..24157f4eb --- /dev/null +++ b/docs/material/.icons/material/microsoft-office.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-onedrive.svg b/docs/material/.icons/material/microsoft-onedrive.svg new file mode 100644 index 000000000..19fe51591 --- /dev/null +++ b/docs/material/.icons/material/microsoft-onedrive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-onenote.svg b/docs/material/.icons/material/microsoft-onenote.svg new file mode 100644 index 000000000..a22d4128f --- /dev/null +++ b/docs/material/.icons/material/microsoft-onenote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-outlook.svg b/docs/material/.icons/material/microsoft-outlook.svg new file mode 100644 index 000000000..241ba4890 --- /dev/null +++ b/docs/material/.icons/material/microsoft-outlook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-powerpoint.svg b/docs/material/.icons/material/microsoft-powerpoint.svg new file mode 100644 index 000000000..bee4c033f --- /dev/null +++ b/docs/material/.icons/material/microsoft-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-sharepoint.svg b/docs/material/.icons/material/microsoft-sharepoint.svg new file mode 100644 index 000000000..88b9c46ca --- /dev/null +++ b/docs/material/.icons/material/microsoft-sharepoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-teams.svg b/docs/material/.icons/material/microsoft-teams.svg new file mode 100644 index 000000000..12354f7ea --- /dev/null +++ b/docs/material/.icons/material/microsoft-teams.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-visual-studio-code.svg b/docs/material/.icons/material/microsoft-visual-studio-code.svg new file mode 100644 index 000000000..11b85b5d7 --- /dev/null +++ b/docs/material/.icons/material/microsoft-visual-studio-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-visual-studio.svg b/docs/material/.icons/material/microsoft-visual-studio.svg new file mode 100644 index 000000000..37e897661 --- /dev/null +++ b/docs/material/.icons/material/microsoft-visual-studio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-windows-classic.svg b/docs/material/.icons/material/microsoft-windows-classic.svg new file mode 100644 index 000000000..f26c373bb --- /dev/null +++ b/docs/material/.icons/material/microsoft-windows-classic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-windows.svg b/docs/material/.icons/material/microsoft-windows.svg new file mode 100644 index 000000000..96c2e6d2e --- /dev/null +++ b/docs/material/.icons/material/microsoft-windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-word.svg b/docs/material/.icons/material/microsoft-word.svg new file mode 100644 index 000000000..77f46e771 --- /dev/null +++ b/docs/material/.icons/material/microsoft-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-battery-alert.svg b/docs/material/.icons/material/microsoft-xbox-controller-battery-alert.svg new file mode 100644 index 000000000..3b6e0dfbc --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-battery-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-battery-charging.svg b/docs/material/.icons/material/microsoft-xbox-controller-battery-charging.svg new file mode 100644 index 000000000..0b3d69fbb --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-battery-empty.svg b/docs/material/.icons/material/microsoft-xbox-controller-battery-empty.svg new file mode 100644 index 000000000..c713a94c9 --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-battery-full.svg b/docs/material/.icons/material/microsoft-xbox-controller-battery-full.svg new file mode 100644 index 000000000..c3a86d688 --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-battery-low.svg b/docs/material/.icons/material/microsoft-xbox-controller-battery-low.svg new file mode 100644 index 000000000..2e786f4fe --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-battery-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-battery-medium.svg b/docs/material/.icons/material/microsoft-xbox-controller-battery-medium.svg new file mode 100644 index 000000000..59e859cc0 --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-battery-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-battery-unknown.svg b/docs/material/.icons/material/microsoft-xbox-controller-battery-unknown.svg new file mode 100644 index 000000000..5df1b52e4 --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-battery-unknown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-menu.svg b/docs/material/.icons/material/microsoft-xbox-controller-menu.svg new file mode 100644 index 000000000..e38f1707f --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-off.svg b/docs/material/.icons/material/microsoft-xbox-controller-off.svg new file mode 100644 index 000000000..3539b0c95 --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller-view.svg b/docs/material/.icons/material/microsoft-xbox-controller-view.svg new file mode 100644 index 000000000..1bd41a774 --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller-view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox-controller.svg b/docs/material/.icons/material/microsoft-xbox-controller.svg new file mode 100644 index 000000000..2596479a8 --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox-controller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-xbox.svg b/docs/material/.icons/material/microsoft-xbox.svg new file mode 100644 index 000000000..94baee2ed --- /dev/null +++ b/docs/material/.icons/material/microsoft-xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft-yammer.svg b/docs/material/.icons/material/microsoft-yammer.svg new file mode 100644 index 000000000..9b1dbb304 --- /dev/null +++ b/docs/material/.icons/material/microsoft-yammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microsoft.svg b/docs/material/.icons/material/microsoft.svg new file mode 100644 index 000000000..35f563d73 --- /dev/null +++ b/docs/material/.icons/material/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/microwave.svg b/docs/material/.icons/material/microwave.svg new file mode 100644 index 000000000..d655971ba --- /dev/null +++ b/docs/material/.icons/material/microwave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/middleware-outline.svg b/docs/material/.icons/material/middleware-outline.svg new file mode 100644 index 000000000..6671a27be --- /dev/null +++ b/docs/material/.icons/material/middleware-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/middleware.svg b/docs/material/.icons/material/middleware.svg new file mode 100644 index 000000000..69e876038 --- /dev/null +++ b/docs/material/.icons/material/middleware.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/midi-port.svg b/docs/material/.icons/material/midi-port.svg new file mode 100644 index 000000000..1ba0f45a6 --- /dev/null +++ b/docs/material/.icons/material/midi-port.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/midi.svg b/docs/material/.icons/material/midi.svg new file mode 100644 index 000000000..6fa120f85 --- /dev/null +++ b/docs/material/.icons/material/midi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mine.svg b/docs/material/.icons/material/mine.svg new file mode 100644 index 000000000..4af35c3e2 --- /dev/null +++ b/docs/material/.icons/material/mine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minecraft.svg b/docs/material/.icons/material/minecraft.svg new file mode 100644 index 000000000..d4bf2ba5a --- /dev/null +++ b/docs/material/.icons/material/minecraft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mini-sd.svg b/docs/material/.icons/material/mini-sd.svg new file mode 100644 index 000000000..3c788eaf8 --- /dev/null +++ b/docs/material/.icons/material/mini-sd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minidisc.svg b/docs/material/.icons/material/minidisc.svg new file mode 100644 index 000000000..1f829a347 --- /dev/null +++ b/docs/material/.icons/material/minidisc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-box-multiple-outline.svg b/docs/material/.icons/material/minus-box-multiple-outline.svg new file mode 100644 index 000000000..3634e379c --- /dev/null +++ b/docs/material/.icons/material/minus-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-box-multiple.svg b/docs/material/.icons/material/minus-box-multiple.svg new file mode 100644 index 000000000..c8b3d2f12 --- /dev/null +++ b/docs/material/.icons/material/minus-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-box-outline.svg b/docs/material/.icons/material/minus-box-outline.svg new file mode 100644 index 000000000..5b2d0bff0 --- /dev/null +++ b/docs/material/.icons/material/minus-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-box.svg b/docs/material/.icons/material/minus-box.svg new file mode 100644 index 000000000..a62d2513c --- /dev/null +++ b/docs/material/.icons/material/minus-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-circle-multiple-outline.svg b/docs/material/.icons/material/minus-circle-multiple-outline.svg new file mode 100644 index 000000000..62a4cd53c --- /dev/null +++ b/docs/material/.icons/material/minus-circle-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-circle-multiple.svg b/docs/material/.icons/material/minus-circle-multiple.svg new file mode 100644 index 000000000..15d9022b2 --- /dev/null +++ b/docs/material/.icons/material/minus-circle-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-circle-outline.svg b/docs/material/.icons/material/minus-circle-outline.svg new file mode 100644 index 000000000..31e5934a4 --- /dev/null +++ b/docs/material/.icons/material/minus-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-circle.svg b/docs/material/.icons/material/minus-circle.svg new file mode 100644 index 000000000..9f237f754 --- /dev/null +++ b/docs/material/.icons/material/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-network-outline.svg b/docs/material/.icons/material/minus-network-outline.svg new file mode 100644 index 000000000..2f04b5ce3 --- /dev/null +++ b/docs/material/.icons/material/minus-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus-network.svg b/docs/material/.icons/material/minus-network.svg new file mode 100644 index 000000000..5606ebd44 --- /dev/null +++ b/docs/material/.icons/material/minus-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/minus.svg b/docs/material/.icons/material/minus.svg new file mode 100644 index 000000000..c2c08749d --- /dev/null +++ b/docs/material/.icons/material/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mirror.svg b/docs/material/.icons/material/mirror.svg new file mode 100644 index 000000000..2eb97141d --- /dev/null +++ b/docs/material/.icons/material/mirror.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mixed-martial-arts.svg b/docs/material/.icons/material/mixed-martial-arts.svg new file mode 100644 index 000000000..6ce0e12ee --- /dev/null +++ b/docs/material/.icons/material/mixed-martial-arts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mixed-reality.svg b/docs/material/.icons/material/mixed-reality.svg new file mode 100644 index 000000000..4be6be9fc --- /dev/null +++ b/docs/material/.icons/material/mixed-reality.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mixer.svg b/docs/material/.icons/material/mixer.svg new file mode 100644 index 000000000..2f692ef7f --- /dev/null +++ b/docs/material/.icons/material/mixer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/molecule-co.svg b/docs/material/.icons/material/molecule-co.svg new file mode 100644 index 000000000..bb54108c5 --- /dev/null +++ b/docs/material/.icons/material/molecule-co.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/molecule-co2.svg b/docs/material/.icons/material/molecule-co2.svg new file mode 100644 index 000000000..a9269781c --- /dev/null +++ b/docs/material/.icons/material/molecule-co2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/molecule.svg b/docs/material/.icons/material/molecule.svg new file mode 100644 index 000000000..738a32d77 --- /dev/null +++ b/docs/material/.icons/material/molecule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-cellphone-star.svg b/docs/material/.icons/material/monitor-cellphone-star.svg new file mode 100644 index 000000000..2219875f6 --- /dev/null +++ b/docs/material/.icons/material/monitor-cellphone-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-cellphone.svg b/docs/material/.icons/material/monitor-cellphone.svg new file mode 100644 index 000000000..b6e8b7c37 --- /dev/null +++ b/docs/material/.icons/material/monitor-cellphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-clean.svg b/docs/material/.icons/material/monitor-clean.svg new file mode 100644 index 000000000..f9861dc46 --- /dev/null +++ b/docs/material/.icons/material/monitor-clean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-dashboard.svg b/docs/material/.icons/material/monitor-dashboard.svg new file mode 100644 index 000000000..c96d27353 --- /dev/null +++ b/docs/material/.icons/material/monitor-dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-edit.svg b/docs/material/.icons/material/monitor-edit.svg new file mode 100644 index 000000000..4380cc685 --- /dev/null +++ b/docs/material/.icons/material/monitor-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-eye.svg b/docs/material/.icons/material/monitor-eye.svg new file mode 100644 index 000000000..405588254 --- /dev/null +++ b/docs/material/.icons/material/monitor-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-lock.svg b/docs/material/.icons/material/monitor-lock.svg new file mode 100644 index 000000000..a8532f692 --- /dev/null +++ b/docs/material/.icons/material/monitor-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-multiple.svg b/docs/material/.icons/material/monitor-multiple.svg new file mode 100644 index 000000000..3c38589ae --- /dev/null +++ b/docs/material/.icons/material/monitor-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-off.svg b/docs/material/.icons/material/monitor-off.svg new file mode 100644 index 000000000..8450dfc58 --- /dev/null +++ b/docs/material/.icons/material/monitor-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-screenshot.svg b/docs/material/.icons/material/monitor-screenshot.svg new file mode 100644 index 000000000..178eeacb2 --- /dev/null +++ b/docs/material/.icons/material/monitor-screenshot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-speaker-off.svg b/docs/material/.icons/material/monitor-speaker-off.svg new file mode 100644 index 000000000..16bf30d6d --- /dev/null +++ b/docs/material/.icons/material/monitor-speaker-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-speaker.svg b/docs/material/.icons/material/monitor-speaker.svg new file mode 100644 index 000000000..632a99539 --- /dev/null +++ b/docs/material/.icons/material/monitor-speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor-star.svg b/docs/material/.icons/material/monitor-star.svg new file mode 100644 index 000000000..6f8049649 --- /dev/null +++ b/docs/material/.icons/material/monitor-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/monitor.svg b/docs/material/.icons/material/monitor.svg new file mode 100644 index 000000000..e59f73627 --- /dev/null +++ b/docs/material/.icons/material/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-first-quarter.svg b/docs/material/.icons/material/moon-first-quarter.svg new file mode 100644 index 000000000..bebbd544b --- /dev/null +++ b/docs/material/.icons/material/moon-first-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-full.svg b/docs/material/.icons/material/moon-full.svg new file mode 100644 index 000000000..809fbfd07 --- /dev/null +++ b/docs/material/.icons/material/moon-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-last-quarter.svg b/docs/material/.icons/material/moon-last-quarter.svg new file mode 100644 index 000000000..1a247f07d --- /dev/null +++ b/docs/material/.icons/material/moon-last-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-new.svg b/docs/material/.icons/material/moon-new.svg new file mode 100644 index 000000000..c7661dce1 --- /dev/null +++ b/docs/material/.icons/material/moon-new.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-waning-crescent.svg b/docs/material/.icons/material/moon-waning-crescent.svg new file mode 100644 index 000000000..f4b4087c1 --- /dev/null +++ b/docs/material/.icons/material/moon-waning-crescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-waning-gibbous.svg b/docs/material/.icons/material/moon-waning-gibbous.svg new file mode 100644 index 000000000..917969e69 --- /dev/null +++ b/docs/material/.icons/material/moon-waning-gibbous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-waxing-crescent.svg b/docs/material/.icons/material/moon-waxing-crescent.svg new file mode 100644 index 000000000..043b6c34d --- /dev/null +++ b/docs/material/.icons/material/moon-waxing-crescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moon-waxing-gibbous.svg b/docs/material/.icons/material/moon-waxing-gibbous.svg new file mode 100644 index 000000000..52ae79d92 --- /dev/null +++ b/docs/material/.icons/material/moon-waxing-gibbous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/moped.svg b/docs/material/.icons/material/moped.svg new file mode 100644 index 000000000..ca5c0d551 --- /dev/null +++ b/docs/material/.icons/material/moped.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/more.svg b/docs/material/.icons/material/more.svg new file mode 100644 index 000000000..b0e428f21 --- /dev/null +++ b/docs/material/.icons/material/more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mother-heart.svg b/docs/material/.icons/material/mother-heart.svg new file mode 100644 index 000000000..8541acd68 --- /dev/null +++ b/docs/material/.icons/material/mother-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mother-nurse.svg b/docs/material/.icons/material/mother-nurse.svg new file mode 100644 index 000000000..022e000d6 --- /dev/null +++ b/docs/material/.icons/material/mother-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/motion-sensor.svg b/docs/material/.icons/material/motion-sensor.svg new file mode 100644 index 000000000..7807d848c --- /dev/null +++ b/docs/material/.icons/material/motion-sensor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/motorbike.svg b/docs/material/.icons/material/motorbike.svg new file mode 100644 index 000000000..bdab5eba4 --- /dev/null +++ b/docs/material/.icons/material/motorbike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mouse-bluetooth.svg b/docs/material/.icons/material/mouse-bluetooth.svg new file mode 100644 index 000000000..8e580c7df --- /dev/null +++ b/docs/material/.icons/material/mouse-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mouse-off.svg b/docs/material/.icons/material/mouse-off.svg new file mode 100644 index 000000000..7c9c1bb4f --- /dev/null +++ b/docs/material/.icons/material/mouse-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mouse-variant-off.svg b/docs/material/.icons/material/mouse-variant-off.svg new file mode 100644 index 000000000..1e5e734c1 --- /dev/null +++ b/docs/material/.icons/material/mouse-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mouse-variant.svg b/docs/material/.icons/material/mouse-variant.svg new file mode 100644 index 000000000..aa4560cb7 --- /dev/null +++ b/docs/material/.icons/material/mouse-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mouse.svg b/docs/material/.icons/material/mouse.svg new file mode 100644 index 000000000..8028e0c40 --- /dev/null +++ b/docs/material/.icons/material/mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/move-resize-variant.svg b/docs/material/.icons/material/move-resize-variant.svg new file mode 100644 index 000000000..de5259d65 --- /dev/null +++ b/docs/material/.icons/material/move-resize-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/move-resize.svg b/docs/material/.icons/material/move-resize.svg new file mode 100644 index 000000000..25f8cc231 --- /dev/null +++ b/docs/material/.icons/material/move-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-edit-outline.svg b/docs/material/.icons/material/movie-edit-outline.svg new file mode 100644 index 000000000..22dc094fb --- /dev/null +++ b/docs/material/.icons/material/movie-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-edit.svg b/docs/material/.icons/material/movie-edit.svg new file mode 100644 index 000000000..cac4b82ba --- /dev/null +++ b/docs/material/.icons/material/movie-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-filter-outline.svg b/docs/material/.icons/material/movie-filter-outline.svg new file mode 100644 index 000000000..5a13f5ace --- /dev/null +++ b/docs/material/.icons/material/movie-filter-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-filter.svg b/docs/material/.icons/material/movie-filter.svg new file mode 100644 index 000000000..9b35ded50 --- /dev/null +++ b/docs/material/.icons/material/movie-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-open-outline.svg b/docs/material/.icons/material/movie-open-outline.svg new file mode 100644 index 000000000..f1182532c --- /dev/null +++ b/docs/material/.icons/material/movie-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-open.svg b/docs/material/.icons/material/movie-open.svg new file mode 100644 index 000000000..04fc7613b --- /dev/null +++ b/docs/material/.icons/material/movie-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-outline.svg b/docs/material/.icons/material/movie-outline.svg new file mode 100644 index 000000000..ace220b12 --- /dev/null +++ b/docs/material/.icons/material/movie-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-roll.svg b/docs/material/.icons/material/movie-roll.svg new file mode 100644 index 000000000..f697c1640 --- /dev/null +++ b/docs/material/.icons/material/movie-roll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-search-outline.svg b/docs/material/.icons/material/movie-search-outline.svg new file mode 100644 index 000000000..061592a31 --- /dev/null +++ b/docs/material/.icons/material/movie-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie-search.svg b/docs/material/.icons/material/movie-search.svg new file mode 100644 index 000000000..0b36c93af --- /dev/null +++ b/docs/material/.icons/material/movie-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/movie.svg b/docs/material/.icons/material/movie.svg new file mode 100644 index 000000000..bd59988a6 --- /dev/null +++ b/docs/material/.icons/material/movie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/muffin.svg b/docs/material/.icons/material/muffin.svg new file mode 100644 index 000000000..3f3d61d82 --- /dev/null +++ b/docs/material/.icons/material/muffin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/multiplication-box.svg b/docs/material/.icons/material/multiplication-box.svg new file mode 100644 index 000000000..6e9088d92 --- /dev/null +++ b/docs/material/.icons/material/multiplication-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/multiplication.svg b/docs/material/.icons/material/multiplication.svg new file mode 100644 index 000000000..0b5d93bef --- /dev/null +++ b/docs/material/.icons/material/multiplication.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mushroom-off-outline.svg b/docs/material/.icons/material/mushroom-off-outline.svg new file mode 100644 index 000000000..67d196c5f --- /dev/null +++ b/docs/material/.icons/material/mushroom-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mushroom-off.svg b/docs/material/.icons/material/mushroom-off.svg new file mode 100644 index 000000000..ab3d47f68 --- /dev/null +++ b/docs/material/.icons/material/mushroom-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mushroom-outline.svg b/docs/material/.icons/material/mushroom-outline.svg new file mode 100644 index 000000000..a763dd6d6 --- /dev/null +++ b/docs/material/.icons/material/mushroom-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/mushroom.svg b/docs/material/.icons/material/mushroom.svg new file mode 100644 index 000000000..1b3d5badd --- /dev/null +++ b/docs/material/.icons/material/mushroom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-accidental-double-flat.svg b/docs/material/.icons/material/music-accidental-double-flat.svg new file mode 100644 index 000000000..a522040fe --- /dev/null +++ b/docs/material/.icons/material/music-accidental-double-flat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-accidental-double-sharp.svg b/docs/material/.icons/material/music-accidental-double-sharp.svg new file mode 100644 index 000000000..cbc53273a --- /dev/null +++ b/docs/material/.icons/material/music-accidental-double-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-accidental-flat.svg b/docs/material/.icons/material/music-accidental-flat.svg new file mode 100644 index 000000000..8c74c622d --- /dev/null +++ b/docs/material/.icons/material/music-accidental-flat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-accidental-natural.svg b/docs/material/.icons/material/music-accidental-natural.svg new file mode 100644 index 000000000..a2817e6db --- /dev/null +++ b/docs/material/.icons/material/music-accidental-natural.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-accidental-sharp.svg b/docs/material/.icons/material/music-accidental-sharp.svg new file mode 100644 index 000000000..82f390420 --- /dev/null +++ b/docs/material/.icons/material/music-accidental-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-box-multiple-outline.svg b/docs/material/.icons/material/music-box-multiple-outline.svg new file mode 100644 index 000000000..90098f358 --- /dev/null +++ b/docs/material/.icons/material/music-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-box-multiple.svg b/docs/material/.icons/material/music-box-multiple.svg new file mode 100644 index 000000000..3518e6e36 --- /dev/null +++ b/docs/material/.icons/material/music-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-box-outline.svg b/docs/material/.icons/material/music-box-outline.svg new file mode 100644 index 000000000..4a16dbc10 --- /dev/null +++ b/docs/material/.icons/material/music-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-box.svg b/docs/material/.icons/material/music-box.svg new file mode 100644 index 000000000..23a3905d6 --- /dev/null +++ b/docs/material/.icons/material/music-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-circle-outline.svg b/docs/material/.icons/material/music-circle-outline.svg new file mode 100644 index 000000000..ff7372484 --- /dev/null +++ b/docs/material/.icons/material/music-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-circle.svg b/docs/material/.icons/material/music-circle.svg new file mode 100644 index 000000000..44d53f79e --- /dev/null +++ b/docs/material/.icons/material/music-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-clef-alto.svg b/docs/material/.icons/material/music-clef-alto.svg new file mode 100644 index 000000000..c5c324058 --- /dev/null +++ b/docs/material/.icons/material/music-clef-alto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-clef-bass.svg b/docs/material/.icons/material/music-clef-bass.svg new file mode 100644 index 000000000..17922f318 --- /dev/null +++ b/docs/material/.icons/material/music-clef-bass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-clef-treble.svg b/docs/material/.icons/material/music-clef-treble.svg new file mode 100644 index 000000000..8f96b7234 --- /dev/null +++ b/docs/material/.icons/material/music-clef-treble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-bluetooth-off.svg b/docs/material/.icons/material/music-note-bluetooth-off.svg new file mode 100644 index 000000000..37146609e --- /dev/null +++ b/docs/material/.icons/material/music-note-bluetooth-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-bluetooth.svg b/docs/material/.icons/material/music-note-bluetooth.svg new file mode 100644 index 000000000..521ce3b5c --- /dev/null +++ b/docs/material/.icons/material/music-note-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-eighth-dotted.svg b/docs/material/.icons/material/music-note-eighth-dotted.svg new file mode 100644 index 000000000..444684981 --- /dev/null +++ b/docs/material/.icons/material/music-note-eighth-dotted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-eighth.svg b/docs/material/.icons/material/music-note-eighth.svg new file mode 100644 index 000000000..21edf3823 --- /dev/null +++ b/docs/material/.icons/material/music-note-eighth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-half-dotted.svg b/docs/material/.icons/material/music-note-half-dotted.svg new file mode 100644 index 000000000..6b70e78b2 --- /dev/null +++ b/docs/material/.icons/material/music-note-half-dotted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-half.svg b/docs/material/.icons/material/music-note-half.svg new file mode 100644 index 000000000..8942897cd --- /dev/null +++ b/docs/material/.icons/material/music-note-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-off-outline.svg b/docs/material/.icons/material/music-note-off-outline.svg new file mode 100644 index 000000000..c512ab524 --- /dev/null +++ b/docs/material/.icons/material/music-note-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-off.svg b/docs/material/.icons/material/music-note-off.svg new file mode 100644 index 000000000..04924c9f5 --- /dev/null +++ b/docs/material/.icons/material/music-note-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-outline.svg b/docs/material/.icons/material/music-note-outline.svg new file mode 100644 index 000000000..1264a9ed7 --- /dev/null +++ b/docs/material/.icons/material/music-note-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-plus.svg b/docs/material/.icons/material/music-note-plus.svg new file mode 100644 index 000000000..6c40dbb1f --- /dev/null +++ b/docs/material/.icons/material/music-note-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-quarter-dotted.svg b/docs/material/.icons/material/music-note-quarter-dotted.svg new file mode 100644 index 000000000..8a388b885 --- /dev/null +++ b/docs/material/.icons/material/music-note-quarter-dotted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-quarter.svg b/docs/material/.icons/material/music-note-quarter.svg new file mode 100644 index 000000000..8d566cda0 --- /dev/null +++ b/docs/material/.icons/material/music-note-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-sixteenth-dotted.svg b/docs/material/.icons/material/music-note-sixteenth-dotted.svg new file mode 100644 index 000000000..d3bf25a16 --- /dev/null +++ b/docs/material/.icons/material/music-note-sixteenth-dotted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-sixteenth.svg b/docs/material/.icons/material/music-note-sixteenth.svg new file mode 100644 index 000000000..657c784ab --- /dev/null +++ b/docs/material/.icons/material/music-note-sixteenth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-whole-dotted.svg b/docs/material/.icons/material/music-note-whole-dotted.svg new file mode 100644 index 000000000..558032f6b --- /dev/null +++ b/docs/material/.icons/material/music-note-whole-dotted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note-whole.svg b/docs/material/.icons/material/music-note-whole.svg new file mode 100644 index 000000000..111ccb21c --- /dev/null +++ b/docs/material/.icons/material/music-note-whole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-note.svg b/docs/material/.icons/material/music-note.svg new file mode 100644 index 000000000..21edf3823 --- /dev/null +++ b/docs/material/.icons/material/music-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-off.svg b/docs/material/.icons/material/music-off.svg new file mode 100644 index 000000000..29b39dc1b --- /dev/null +++ b/docs/material/.icons/material/music-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-rest-eighth.svg b/docs/material/.icons/material/music-rest-eighth.svg new file mode 100644 index 000000000..5274cfc3b --- /dev/null +++ b/docs/material/.icons/material/music-rest-eighth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-rest-half.svg b/docs/material/.icons/material/music-rest-half.svg new file mode 100644 index 000000000..53fd09c47 --- /dev/null +++ b/docs/material/.icons/material/music-rest-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-rest-quarter.svg b/docs/material/.icons/material/music-rest-quarter.svg new file mode 100644 index 000000000..a7a55b23b --- /dev/null +++ b/docs/material/.icons/material/music-rest-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-rest-sixteenth.svg b/docs/material/.icons/material/music-rest-sixteenth.svg new file mode 100644 index 000000000..e8cf04c02 --- /dev/null +++ b/docs/material/.icons/material/music-rest-sixteenth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music-rest-whole.svg b/docs/material/.icons/material/music-rest-whole.svg new file mode 100644 index 000000000..4f689ef73 --- /dev/null +++ b/docs/material/.icons/material/music-rest-whole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/music.svg b/docs/material/.icons/material/music.svg new file mode 100644 index 000000000..cbc2e2c29 --- /dev/null +++ b/docs/material/.icons/material/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nail.svg b/docs/material/.icons/material/nail.svg new file mode 100644 index 000000000..5b7c2766c --- /dev/null +++ b/docs/material/.icons/material/nail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nas.svg b/docs/material/.icons/material/nas.svg new file mode 100644 index 000000000..b557dae35 --- /dev/null +++ b/docs/material/.icons/material/nas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nativescript.svg b/docs/material/.icons/material/nativescript.svg new file mode 100644 index 000000000..cb05cd1fa --- /dev/null +++ b/docs/material/.icons/material/nativescript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nature-people.svg b/docs/material/.icons/material/nature-people.svg new file mode 100644 index 000000000..a816de0c2 --- /dev/null +++ b/docs/material/.icons/material/nature-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nature.svg b/docs/material/.icons/material/nature.svg new file mode 100644 index 000000000..33fa7c091 --- /dev/null +++ b/docs/material/.icons/material/nature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/navigation.svg b/docs/material/.icons/material/navigation.svg new file mode 100644 index 000000000..50e1ca68e --- /dev/null +++ b/docs/material/.icons/material/navigation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/near-me.svg b/docs/material/.icons/material/near-me.svg new file mode 100644 index 000000000..af7f5e9cb --- /dev/null +++ b/docs/material/.icons/material/near-me.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/necklace.svg b/docs/material/.icons/material/necklace.svg new file mode 100644 index 000000000..d2a037862 --- /dev/null +++ b/docs/material/.icons/material/necklace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/needle.svg b/docs/material/.icons/material/needle.svg new file mode 100644 index 000000000..c1813ca78 --- /dev/null +++ b/docs/material/.icons/material/needle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/netflix.svg b/docs/material/.icons/material/netflix.svg new file mode 100644 index 000000000..8e69fa464 --- /dev/null +++ b/docs/material/.icons/material/netflix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-off-outline.svg b/docs/material/.icons/material/network-off-outline.svg new file mode 100644 index 000000000..c28e85bc3 --- /dev/null +++ b/docs/material/.icons/material/network-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-off.svg b/docs/material/.icons/material/network-off.svg new file mode 100644 index 000000000..bd0e2d138 --- /dev/null +++ b/docs/material/.icons/material/network-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-outline.svg b/docs/material/.icons/material/network-outline.svg new file mode 100644 index 000000000..315f3e71c --- /dev/null +++ b/docs/material/.icons/material/network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-1-alert.svg b/docs/material/.icons/material/network-strength-1-alert.svg new file mode 100644 index 000000000..fa2ae4602 --- /dev/null +++ b/docs/material/.icons/material/network-strength-1-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-1.svg b/docs/material/.icons/material/network-strength-1.svg new file mode 100644 index 000000000..b9a81ad03 --- /dev/null +++ b/docs/material/.icons/material/network-strength-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-2-alert.svg b/docs/material/.icons/material/network-strength-2-alert.svg new file mode 100644 index 000000000..704163ebe --- /dev/null +++ b/docs/material/.icons/material/network-strength-2-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-2.svg b/docs/material/.icons/material/network-strength-2.svg new file mode 100644 index 000000000..d55fcba35 --- /dev/null +++ b/docs/material/.icons/material/network-strength-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-3-alert.svg b/docs/material/.icons/material/network-strength-3-alert.svg new file mode 100644 index 000000000..0dc2e6f94 --- /dev/null +++ b/docs/material/.icons/material/network-strength-3-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-3.svg b/docs/material/.icons/material/network-strength-3.svg new file mode 100644 index 000000000..4a9e70ade --- /dev/null +++ b/docs/material/.icons/material/network-strength-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-4-alert.svg b/docs/material/.icons/material/network-strength-4-alert.svg new file mode 100644 index 000000000..f398df98e --- /dev/null +++ b/docs/material/.icons/material/network-strength-4-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-4.svg b/docs/material/.icons/material/network-strength-4.svg new file mode 100644 index 000000000..ada3de9ea --- /dev/null +++ b/docs/material/.icons/material/network-strength-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-off-outline.svg b/docs/material/.icons/material/network-strength-off-outline.svg new file mode 100644 index 000000000..a9557123a --- /dev/null +++ b/docs/material/.icons/material/network-strength-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-off.svg b/docs/material/.icons/material/network-strength-off.svg new file mode 100644 index 000000000..5fe15ccde --- /dev/null +++ b/docs/material/.icons/material/network-strength-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network-strength-outline.svg b/docs/material/.icons/material/network-strength-outline.svg new file mode 100644 index 000000000..92185ba73 --- /dev/null +++ b/docs/material/.icons/material/network-strength-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/network.svg b/docs/material/.icons/material/network.svg new file mode 100644 index 000000000..87a81aa07 --- /dev/null +++ b/docs/material/.icons/material/network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/new-box.svg b/docs/material/.icons/material/new-box.svg new file mode 100644 index 000000000..e3e1de9c6 --- /dev/null +++ b/docs/material/.icons/material/new-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/newspaper-minus.svg b/docs/material/.icons/material/newspaper-minus.svg new file mode 100644 index 000000000..7663e35f3 --- /dev/null +++ b/docs/material/.icons/material/newspaper-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/newspaper-plus.svg b/docs/material/.icons/material/newspaper-plus.svg new file mode 100644 index 000000000..2d36ad732 --- /dev/null +++ b/docs/material/.icons/material/newspaper-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/newspaper-variant-multiple-outline.svg b/docs/material/.icons/material/newspaper-variant-multiple-outline.svg new file mode 100644 index 000000000..7a035f04b --- /dev/null +++ b/docs/material/.icons/material/newspaper-variant-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/newspaper-variant-multiple.svg b/docs/material/.icons/material/newspaper-variant-multiple.svg new file mode 100644 index 000000000..c75802dcf --- /dev/null +++ b/docs/material/.icons/material/newspaper-variant-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/newspaper-variant-outline.svg b/docs/material/.icons/material/newspaper-variant-outline.svg new file mode 100644 index 000000000..a46590e30 --- /dev/null +++ b/docs/material/.icons/material/newspaper-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/newspaper-variant.svg b/docs/material/.icons/material/newspaper-variant.svg new file mode 100644 index 000000000..697795810 --- /dev/null +++ b/docs/material/.icons/material/newspaper-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/newspaper.svg b/docs/material/.icons/material/newspaper.svg new file mode 100644 index 000000000..1958789c5 --- /dev/null +++ b/docs/material/.icons/material/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nfc-search-variant.svg b/docs/material/.icons/material/nfc-search-variant.svg new file mode 100644 index 000000000..86288d477 --- /dev/null +++ b/docs/material/.icons/material/nfc-search-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nfc-tap.svg b/docs/material/.icons/material/nfc-tap.svg new file mode 100644 index 000000000..a242c31dd --- /dev/null +++ b/docs/material/.icons/material/nfc-tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nfc-variant-off.svg b/docs/material/.icons/material/nfc-variant-off.svg new file mode 100644 index 000000000..f6a8006c0 --- /dev/null +++ b/docs/material/.icons/material/nfc-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nfc-variant.svg b/docs/material/.icons/material/nfc-variant.svg new file mode 100644 index 000000000..5abebfb51 --- /dev/null +++ b/docs/material/.icons/material/nfc-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nfc.svg b/docs/material/.icons/material/nfc.svg new file mode 100644 index 000000000..27d9fac89 --- /dev/null +++ b/docs/material/.icons/material/nfc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ninja.svg b/docs/material/.icons/material/ninja.svg new file mode 100644 index 000000000..b7eda3cdc --- /dev/null +++ b/docs/material/.icons/material/ninja.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nintendo-game-boy.svg b/docs/material/.icons/material/nintendo-game-boy.svg new file mode 100644 index 000000000..f453224b4 --- /dev/null +++ b/docs/material/.icons/material/nintendo-game-boy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nintendo-switch.svg b/docs/material/.icons/material/nintendo-switch.svg new file mode 100644 index 000000000..e58a3e658 --- /dev/null +++ b/docs/material/.icons/material/nintendo-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nintendo-wii.svg b/docs/material/.icons/material/nintendo-wii.svg new file mode 100644 index 000000000..5b2dbceec --- /dev/null +++ b/docs/material/.icons/material/nintendo-wii.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nintendo-wiiu.svg b/docs/material/.icons/material/nintendo-wiiu.svg new file mode 100644 index 000000000..eeb45bfff --- /dev/null +++ b/docs/material/.icons/material/nintendo-wiiu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nix.svg b/docs/material/.icons/material/nix.svg new file mode 100644 index 000000000..fb426bd26 --- /dev/null +++ b/docs/material/.icons/material/nix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nodejs.svg b/docs/material/.icons/material/nodejs.svg new file mode 100644 index 000000000..fed70b9b5 --- /dev/null +++ b/docs/material/.icons/material/nodejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/noodles.svg b/docs/material/.icons/material/noodles.svg new file mode 100644 index 000000000..14b54de7f --- /dev/null +++ b/docs/material/.icons/material/noodles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/not-equal-variant.svg b/docs/material/.icons/material/not-equal-variant.svg new file mode 100644 index 000000000..38c372ce8 --- /dev/null +++ b/docs/material/.icons/material/not-equal-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/not-equal.svg b/docs/material/.icons/material/not-equal.svg new file mode 100644 index 000000000..8498a53f0 --- /dev/null +++ b/docs/material/.icons/material/not-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note-multiple-outline.svg b/docs/material/.icons/material/note-multiple-outline.svg new file mode 100644 index 000000000..b93b43cb1 --- /dev/null +++ b/docs/material/.icons/material/note-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note-multiple.svg b/docs/material/.icons/material/note-multiple.svg new file mode 100644 index 000000000..bbb7515c6 --- /dev/null +++ b/docs/material/.icons/material/note-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note-outline.svg b/docs/material/.icons/material/note-outline.svg new file mode 100644 index 000000000..bd90f7362 --- /dev/null +++ b/docs/material/.icons/material/note-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note-plus-outline.svg b/docs/material/.icons/material/note-plus-outline.svg new file mode 100644 index 000000000..68b7290fd --- /dev/null +++ b/docs/material/.icons/material/note-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note-plus.svg b/docs/material/.icons/material/note-plus.svg new file mode 100644 index 000000000..971568b1e --- /dev/null +++ b/docs/material/.icons/material/note-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note-text-outline.svg b/docs/material/.icons/material/note-text-outline.svg new file mode 100644 index 000000000..051e14bcc --- /dev/null +++ b/docs/material/.icons/material/note-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note-text.svg b/docs/material/.icons/material/note-text.svg new file mode 100644 index 000000000..8ca5e1e34 --- /dev/null +++ b/docs/material/.icons/material/note-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/note.svg b/docs/material/.icons/material/note.svg new file mode 100644 index 000000000..d6fc7f2e8 --- /dev/null +++ b/docs/material/.icons/material/note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/notebook-multiple.svg b/docs/material/.icons/material/notebook-multiple.svg new file mode 100644 index 000000000..bcaea8c0a --- /dev/null +++ b/docs/material/.icons/material/notebook-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/notebook-outline.svg b/docs/material/.icons/material/notebook-outline.svg new file mode 100644 index 000000000..e99b4dab9 --- /dev/null +++ b/docs/material/.icons/material/notebook-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/notebook.svg b/docs/material/.icons/material/notebook.svg new file mode 100644 index 000000000..200b8c46f --- /dev/null +++ b/docs/material/.icons/material/notebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/notification-clear-all.svg b/docs/material/.icons/material/notification-clear-all.svg new file mode 100644 index 000000000..2e70852a7 --- /dev/null +++ b/docs/material/.icons/material/notification-clear-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/npm.svg b/docs/material/.icons/material/npm.svg new file mode 100644 index 000000000..5c1fde68f --- /dev/null +++ b/docs/material/.icons/material/npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nuke.svg b/docs/material/.icons/material/nuke.svg new file mode 100644 index 000000000..1c65c86e7 --- /dev/null +++ b/docs/material/.icons/material/nuke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/null.svg b/docs/material/.icons/material/null.svg new file mode 100644 index 000000000..70e00bcfd --- /dev/null +++ b/docs/material/.icons/material/null.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-0-box-multiple-outline.svg b/docs/material/.icons/material/numeric-0-box-multiple-outline.svg new file mode 100644 index 000000000..f4a88b89a --- /dev/null +++ b/docs/material/.icons/material/numeric-0-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-0-box-multiple.svg b/docs/material/.icons/material/numeric-0-box-multiple.svg new file mode 100644 index 000000000..a3a1b5232 --- /dev/null +++ b/docs/material/.icons/material/numeric-0-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-0-box-outline.svg b/docs/material/.icons/material/numeric-0-box-outline.svg new file mode 100644 index 000000000..5ffbd6689 --- /dev/null +++ b/docs/material/.icons/material/numeric-0-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-0-box.svg b/docs/material/.icons/material/numeric-0-box.svg new file mode 100644 index 000000000..d48e873ea --- /dev/null +++ b/docs/material/.icons/material/numeric-0-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-0-circle-outline.svg b/docs/material/.icons/material/numeric-0-circle-outline.svg new file mode 100644 index 000000000..bdbd537d1 --- /dev/null +++ b/docs/material/.icons/material/numeric-0-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-0-circle.svg b/docs/material/.icons/material/numeric-0-circle.svg new file mode 100644 index 000000000..9c22b102a --- /dev/null +++ b/docs/material/.icons/material/numeric-0-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-0.svg b/docs/material/.icons/material/numeric-0.svg new file mode 100644 index 000000000..7b55d3926 --- /dev/null +++ b/docs/material/.icons/material/numeric-0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-1-box-multiple-outline.svg b/docs/material/.icons/material/numeric-1-box-multiple-outline.svg new file mode 100644 index 000000000..d96d660d5 --- /dev/null +++ b/docs/material/.icons/material/numeric-1-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-1-box-multiple.svg b/docs/material/.icons/material/numeric-1-box-multiple.svg new file mode 100644 index 000000000..bebc56742 --- /dev/null +++ b/docs/material/.icons/material/numeric-1-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-1-box-outline.svg b/docs/material/.icons/material/numeric-1-box-outline.svg new file mode 100644 index 000000000..e3a6200c9 --- /dev/null +++ b/docs/material/.icons/material/numeric-1-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-1-box.svg b/docs/material/.icons/material/numeric-1-box.svg new file mode 100644 index 000000000..191c0411a --- /dev/null +++ b/docs/material/.icons/material/numeric-1-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-1-circle-outline.svg b/docs/material/.icons/material/numeric-1-circle-outline.svg new file mode 100644 index 000000000..d343af158 --- /dev/null +++ b/docs/material/.icons/material/numeric-1-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-1-circle.svg b/docs/material/.icons/material/numeric-1-circle.svg new file mode 100644 index 000000000..e3bc74e45 --- /dev/null +++ b/docs/material/.icons/material/numeric-1-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-1.svg b/docs/material/.icons/material/numeric-1.svg new file mode 100644 index 000000000..20d20322a --- /dev/null +++ b/docs/material/.icons/material/numeric-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-10-box-multiple-outline.svg b/docs/material/.icons/material/numeric-10-box-multiple-outline.svg new file mode 100644 index 000000000..92167af07 --- /dev/null +++ b/docs/material/.icons/material/numeric-10-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-10-box-multiple.svg b/docs/material/.icons/material/numeric-10-box-multiple.svg new file mode 100644 index 000000000..dc2cc4b0f --- /dev/null +++ b/docs/material/.icons/material/numeric-10-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-10-box-outline.svg b/docs/material/.icons/material/numeric-10-box-outline.svg new file mode 100644 index 000000000..22914d076 --- /dev/null +++ b/docs/material/.icons/material/numeric-10-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-10-box.svg b/docs/material/.icons/material/numeric-10-box.svg new file mode 100644 index 000000000..24f5ddadc --- /dev/null +++ b/docs/material/.icons/material/numeric-10-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-10-circle-outline.svg b/docs/material/.icons/material/numeric-10-circle-outline.svg new file mode 100644 index 000000000..f39bd094d --- /dev/null +++ b/docs/material/.icons/material/numeric-10-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-10-circle.svg b/docs/material/.icons/material/numeric-10-circle.svg new file mode 100644 index 000000000..88c75709c --- /dev/null +++ b/docs/material/.icons/material/numeric-10-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-10.svg b/docs/material/.icons/material/numeric-10.svg new file mode 100644 index 000000000..24e2e0227 --- /dev/null +++ b/docs/material/.icons/material/numeric-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-2-box-multiple-outline.svg b/docs/material/.icons/material/numeric-2-box-multiple-outline.svg new file mode 100644 index 000000000..04d3d8bbc --- /dev/null +++ b/docs/material/.icons/material/numeric-2-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-2-box-multiple.svg b/docs/material/.icons/material/numeric-2-box-multiple.svg new file mode 100644 index 000000000..9389fa3dc --- /dev/null +++ b/docs/material/.icons/material/numeric-2-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-2-box-outline.svg b/docs/material/.icons/material/numeric-2-box-outline.svg new file mode 100644 index 000000000..d48cdcdc8 --- /dev/null +++ b/docs/material/.icons/material/numeric-2-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-2-box.svg b/docs/material/.icons/material/numeric-2-box.svg new file mode 100644 index 000000000..70e1c33a1 --- /dev/null +++ b/docs/material/.icons/material/numeric-2-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-2-circle-outline.svg b/docs/material/.icons/material/numeric-2-circle-outline.svg new file mode 100644 index 000000000..e5cd55543 --- /dev/null +++ b/docs/material/.icons/material/numeric-2-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-2-circle.svg b/docs/material/.icons/material/numeric-2-circle.svg new file mode 100644 index 000000000..4a0d45eb8 --- /dev/null +++ b/docs/material/.icons/material/numeric-2-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-2.svg b/docs/material/.icons/material/numeric-2.svg new file mode 100644 index 000000000..dc92b8e0c --- /dev/null +++ b/docs/material/.icons/material/numeric-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-3-box-multiple-outline.svg b/docs/material/.icons/material/numeric-3-box-multiple-outline.svg new file mode 100644 index 000000000..54953fa27 --- /dev/null +++ b/docs/material/.icons/material/numeric-3-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-3-box-multiple.svg b/docs/material/.icons/material/numeric-3-box-multiple.svg new file mode 100644 index 000000000..713bea4f4 --- /dev/null +++ b/docs/material/.icons/material/numeric-3-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-3-box-outline.svg b/docs/material/.icons/material/numeric-3-box-outline.svg new file mode 100644 index 000000000..f9f41117d --- /dev/null +++ b/docs/material/.icons/material/numeric-3-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-3-box.svg b/docs/material/.icons/material/numeric-3-box.svg new file mode 100644 index 000000000..744fad291 --- /dev/null +++ b/docs/material/.icons/material/numeric-3-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-3-circle-outline.svg b/docs/material/.icons/material/numeric-3-circle-outline.svg new file mode 100644 index 000000000..fc6ffc222 --- /dev/null +++ b/docs/material/.icons/material/numeric-3-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-3-circle.svg b/docs/material/.icons/material/numeric-3-circle.svg new file mode 100644 index 000000000..03c7d7ebe --- /dev/null +++ b/docs/material/.icons/material/numeric-3-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-3.svg b/docs/material/.icons/material/numeric-3.svg new file mode 100644 index 000000000..570fe2726 --- /dev/null +++ b/docs/material/.icons/material/numeric-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-4-box-multiple-outline.svg b/docs/material/.icons/material/numeric-4-box-multiple-outline.svg new file mode 100644 index 000000000..a9fdf14e7 --- /dev/null +++ b/docs/material/.icons/material/numeric-4-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-4-box-multiple.svg b/docs/material/.icons/material/numeric-4-box-multiple.svg new file mode 100644 index 000000000..099bd7cc2 --- /dev/null +++ b/docs/material/.icons/material/numeric-4-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-4-box-outline.svg b/docs/material/.icons/material/numeric-4-box-outline.svg new file mode 100644 index 000000000..8b3eca0e7 --- /dev/null +++ b/docs/material/.icons/material/numeric-4-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-4-box.svg b/docs/material/.icons/material/numeric-4-box.svg new file mode 100644 index 000000000..12f4784da --- /dev/null +++ b/docs/material/.icons/material/numeric-4-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-4-circle-outline.svg b/docs/material/.icons/material/numeric-4-circle-outline.svg new file mode 100644 index 000000000..62b23f6d1 --- /dev/null +++ b/docs/material/.icons/material/numeric-4-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-4-circle.svg b/docs/material/.icons/material/numeric-4-circle.svg new file mode 100644 index 000000000..fbf54f78e --- /dev/null +++ b/docs/material/.icons/material/numeric-4-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-4.svg b/docs/material/.icons/material/numeric-4.svg new file mode 100644 index 000000000..400f2cad2 --- /dev/null +++ b/docs/material/.icons/material/numeric-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-5-box-multiple-outline.svg b/docs/material/.icons/material/numeric-5-box-multiple-outline.svg new file mode 100644 index 000000000..f410acc61 --- /dev/null +++ b/docs/material/.icons/material/numeric-5-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-5-box-multiple.svg b/docs/material/.icons/material/numeric-5-box-multiple.svg new file mode 100644 index 000000000..a6f5718e4 --- /dev/null +++ b/docs/material/.icons/material/numeric-5-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-5-box-outline.svg b/docs/material/.icons/material/numeric-5-box-outline.svg new file mode 100644 index 000000000..643bf33ec --- /dev/null +++ b/docs/material/.icons/material/numeric-5-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-5-box.svg b/docs/material/.icons/material/numeric-5-box.svg new file mode 100644 index 000000000..829b00342 --- /dev/null +++ b/docs/material/.icons/material/numeric-5-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-5-circle-outline.svg b/docs/material/.icons/material/numeric-5-circle-outline.svg new file mode 100644 index 000000000..ba478e306 --- /dev/null +++ b/docs/material/.icons/material/numeric-5-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-5-circle.svg b/docs/material/.icons/material/numeric-5-circle.svg new file mode 100644 index 000000000..29d08b2f9 --- /dev/null +++ b/docs/material/.icons/material/numeric-5-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-5.svg b/docs/material/.icons/material/numeric-5.svg new file mode 100644 index 000000000..7fccc9963 --- /dev/null +++ b/docs/material/.icons/material/numeric-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-6-box-multiple-outline.svg b/docs/material/.icons/material/numeric-6-box-multiple-outline.svg new file mode 100644 index 000000000..0270a843b --- /dev/null +++ b/docs/material/.icons/material/numeric-6-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-6-box-multiple.svg b/docs/material/.icons/material/numeric-6-box-multiple.svg new file mode 100644 index 000000000..32ed29d4e --- /dev/null +++ b/docs/material/.icons/material/numeric-6-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-6-box-outline.svg b/docs/material/.icons/material/numeric-6-box-outline.svg new file mode 100644 index 000000000..59f1a37f9 --- /dev/null +++ b/docs/material/.icons/material/numeric-6-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-6-box.svg b/docs/material/.icons/material/numeric-6-box.svg new file mode 100644 index 000000000..e6439bad7 --- /dev/null +++ b/docs/material/.icons/material/numeric-6-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-6-circle-outline.svg b/docs/material/.icons/material/numeric-6-circle-outline.svg new file mode 100644 index 000000000..26e61d724 --- /dev/null +++ b/docs/material/.icons/material/numeric-6-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-6-circle.svg b/docs/material/.icons/material/numeric-6-circle.svg new file mode 100644 index 000000000..bad4d9888 --- /dev/null +++ b/docs/material/.icons/material/numeric-6-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-6.svg b/docs/material/.icons/material/numeric-6.svg new file mode 100644 index 000000000..fe7640eff --- /dev/null +++ b/docs/material/.icons/material/numeric-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-7-box-multiple-outline.svg b/docs/material/.icons/material/numeric-7-box-multiple-outline.svg new file mode 100644 index 000000000..7f9a3ccfd --- /dev/null +++ b/docs/material/.icons/material/numeric-7-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-7-box-multiple.svg b/docs/material/.icons/material/numeric-7-box-multiple.svg new file mode 100644 index 000000000..57bafc137 --- /dev/null +++ b/docs/material/.icons/material/numeric-7-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-7-box-outline.svg b/docs/material/.icons/material/numeric-7-box-outline.svg new file mode 100644 index 000000000..057dca3a7 --- /dev/null +++ b/docs/material/.icons/material/numeric-7-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-7-box.svg b/docs/material/.icons/material/numeric-7-box.svg new file mode 100644 index 000000000..12e94d713 --- /dev/null +++ b/docs/material/.icons/material/numeric-7-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-7-circle-outline.svg b/docs/material/.icons/material/numeric-7-circle-outline.svg new file mode 100644 index 000000000..42ce91930 --- /dev/null +++ b/docs/material/.icons/material/numeric-7-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-7-circle.svg b/docs/material/.icons/material/numeric-7-circle.svg new file mode 100644 index 000000000..018018086 --- /dev/null +++ b/docs/material/.icons/material/numeric-7-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-7.svg b/docs/material/.icons/material/numeric-7.svg new file mode 100644 index 000000000..0c72b4915 --- /dev/null +++ b/docs/material/.icons/material/numeric-7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-8-box-multiple-outline.svg b/docs/material/.icons/material/numeric-8-box-multiple-outline.svg new file mode 100644 index 000000000..5fa426fd8 --- /dev/null +++ b/docs/material/.icons/material/numeric-8-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-8-box-multiple.svg b/docs/material/.icons/material/numeric-8-box-multiple.svg new file mode 100644 index 000000000..96178eaa7 --- /dev/null +++ b/docs/material/.icons/material/numeric-8-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-8-box-outline.svg b/docs/material/.icons/material/numeric-8-box-outline.svg new file mode 100644 index 000000000..99c7d1134 --- /dev/null +++ b/docs/material/.icons/material/numeric-8-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-8-box.svg b/docs/material/.icons/material/numeric-8-box.svg new file mode 100644 index 000000000..0e7d75ffc --- /dev/null +++ b/docs/material/.icons/material/numeric-8-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-8-circle-outline.svg b/docs/material/.icons/material/numeric-8-circle-outline.svg new file mode 100644 index 000000000..642aa089e --- /dev/null +++ b/docs/material/.icons/material/numeric-8-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-8-circle.svg b/docs/material/.icons/material/numeric-8-circle.svg new file mode 100644 index 000000000..46904a866 --- /dev/null +++ b/docs/material/.icons/material/numeric-8-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-8.svg b/docs/material/.icons/material/numeric-8.svg new file mode 100644 index 000000000..caeaab882 --- /dev/null +++ b/docs/material/.icons/material/numeric-8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-box-multiple-outline.svg b/docs/material/.icons/material/numeric-9-box-multiple-outline.svg new file mode 100644 index 000000000..ad1a25a92 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-box-multiple.svg b/docs/material/.icons/material/numeric-9-box-multiple.svg new file mode 100644 index 000000000..e09b21db6 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-box-outline.svg b/docs/material/.icons/material/numeric-9-box-outline.svg new file mode 100644 index 000000000..432421aa8 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-box.svg b/docs/material/.icons/material/numeric-9-box.svg new file mode 100644 index 000000000..762bc685c --- /dev/null +++ b/docs/material/.icons/material/numeric-9-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-circle-outline.svg b/docs/material/.icons/material/numeric-9-circle-outline.svg new file mode 100644 index 000000000..d9e108477 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-circle.svg b/docs/material/.icons/material/numeric-9-circle.svg new file mode 100644 index 000000000..0a0945f95 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-plus-box-multiple-outline.svg b/docs/material/.icons/material/numeric-9-plus-box-multiple-outline.svg new file mode 100644 index 000000000..7d8424c18 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-plus-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-plus-box-multiple.svg b/docs/material/.icons/material/numeric-9-plus-box-multiple.svg new file mode 100644 index 000000000..c6d56f155 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-plus-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-plus-box-outline.svg b/docs/material/.icons/material/numeric-9-plus-box-outline.svg new file mode 100644 index 000000000..539563182 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-plus-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-plus-box.svg b/docs/material/.icons/material/numeric-9-plus-box.svg new file mode 100644 index 000000000..a11750e9a --- /dev/null +++ b/docs/material/.icons/material/numeric-9-plus-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-plus-circle-outline.svg b/docs/material/.icons/material/numeric-9-plus-circle-outline.svg new file mode 100644 index 000000000..5c08a0837 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-plus-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-plus-circle.svg b/docs/material/.icons/material/numeric-9-plus-circle.svg new file mode 100644 index 000000000..34e637839 --- /dev/null +++ b/docs/material/.icons/material/numeric-9-plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9-plus.svg b/docs/material/.icons/material/numeric-9-plus.svg new file mode 100644 index 000000000..4e535018d --- /dev/null +++ b/docs/material/.icons/material/numeric-9-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-9.svg b/docs/material/.icons/material/numeric-9.svg new file mode 100644 index 000000000..55c3690b6 --- /dev/null +++ b/docs/material/.icons/material/numeric-9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric-negative-1.svg b/docs/material/.icons/material/numeric-negative-1.svg new file mode 100644 index 000000000..3f8bd048b --- /dev/null +++ b/docs/material/.icons/material/numeric-negative-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/numeric.svg b/docs/material/.icons/material/numeric.svg new file mode 100644 index 000000000..dfcf60db2 --- /dev/null +++ b/docs/material/.icons/material/numeric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nut.svg b/docs/material/.icons/material/nut.svg new file mode 100644 index 000000000..1b6f383b4 --- /dev/null +++ b/docs/material/.icons/material/nut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nutrition.svg b/docs/material/.icons/material/nutrition.svg new file mode 100644 index 000000000..c3e8bd3db --- /dev/null +++ b/docs/material/.icons/material/nutrition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/nuxt.svg b/docs/material/.icons/material/nuxt.svg new file mode 100644 index 000000000..9c0c5591f --- /dev/null +++ b/docs/material/.icons/material/nuxt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/oar.svg b/docs/material/.icons/material/oar.svg new file mode 100644 index 000000000..ada5b665a --- /dev/null +++ b/docs/material/.icons/material/oar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ocarina.svg b/docs/material/.icons/material/ocarina.svg new file mode 100644 index 000000000..4aaa8aed1 --- /dev/null +++ b/docs/material/.icons/material/ocarina.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/oci.svg b/docs/material/.icons/material/oci.svg new file mode 100644 index 000000000..c443650e6 --- /dev/null +++ b/docs/material/.icons/material/oci.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ocr.svg b/docs/material/.icons/material/ocr.svg new file mode 100644 index 000000000..8b1b32258 --- /dev/null +++ b/docs/material/.icons/material/ocr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/octagon-outline.svg b/docs/material/.icons/material/octagon-outline.svg new file mode 100644 index 000000000..1f36844ad --- /dev/null +++ b/docs/material/.icons/material/octagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/octagon.svg b/docs/material/.icons/material/octagon.svg new file mode 100644 index 000000000..68937d44a --- /dev/null +++ b/docs/material/.icons/material/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/octagram-outline.svg b/docs/material/.icons/material/octagram-outline.svg new file mode 100644 index 000000000..6f2afb263 --- /dev/null +++ b/docs/material/.icons/material/octagram-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/octagram.svg b/docs/material/.icons/material/octagram.svg new file mode 100644 index 000000000..e542d0c69 --- /dev/null +++ b/docs/material/.icons/material/octagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/odnoklassniki.svg b/docs/material/.icons/material/odnoklassniki.svg new file mode 100644 index 000000000..5ea65db87 --- /dev/null +++ b/docs/material/.icons/material/odnoklassniki.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/offer.svg b/docs/material/.icons/material/offer.svg new file mode 100644 index 000000000..b3f51052a --- /dev/null +++ b/docs/material/.icons/material/offer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/office-building.svg b/docs/material/.icons/material/office-building.svg new file mode 100644 index 000000000..79ccac0b4 --- /dev/null +++ b/docs/material/.icons/material/office-building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/oil-lamp.svg b/docs/material/.icons/material/oil-lamp.svg new file mode 100644 index 000000000..0c15cfd20 --- /dev/null +++ b/docs/material/.icons/material/oil-lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/oil-level.svg b/docs/material/.icons/material/oil-level.svg new file mode 100644 index 000000000..1614b4818 --- /dev/null +++ b/docs/material/.icons/material/oil-level.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/oil-temperature.svg b/docs/material/.icons/material/oil-temperature.svg new file mode 100644 index 000000000..f9d05eb43 --- /dev/null +++ b/docs/material/.icons/material/oil-temperature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/oil.svg b/docs/material/.icons/material/oil.svg new file mode 100644 index 000000000..b480c843a --- /dev/null +++ b/docs/material/.icons/material/oil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/omega.svg b/docs/material/.icons/material/omega.svg new file mode 100644 index 000000000..ce43305e5 --- /dev/null +++ b/docs/material/.icons/material/omega.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/one-up.svg b/docs/material/.icons/material/one-up.svg new file mode 100644 index 000000000..ac5ff36bd --- /dev/null +++ b/docs/material/.icons/material/one-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/onepassword.svg b/docs/material/.icons/material/onepassword.svg new file mode 100644 index 000000000..75d7ecefb --- /dev/null +++ b/docs/material/.icons/material/onepassword.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/opacity.svg b/docs/material/.icons/material/opacity.svg new file mode 100644 index 000000000..bb090229a --- /dev/null +++ b/docs/material/.icons/material/opacity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/open-in-app.svg b/docs/material/.icons/material/open-in-app.svg new file mode 100644 index 000000000..dc88b5c27 --- /dev/null +++ b/docs/material/.icons/material/open-in-app.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/open-in-new.svg b/docs/material/.icons/material/open-in-new.svg new file mode 100644 index 000000000..d836cd74d --- /dev/null +++ b/docs/material/.icons/material/open-in-new.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/open-source-initiative.svg b/docs/material/.icons/material/open-source-initiative.svg new file mode 100644 index 000000000..cf4195f92 --- /dev/null +++ b/docs/material/.icons/material/open-source-initiative.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/openid.svg b/docs/material/.icons/material/openid.svg new file mode 100644 index 000000000..6a13743d2 --- /dev/null +++ b/docs/material/.icons/material/openid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/opera.svg b/docs/material/.icons/material/opera.svg new file mode 100644 index 000000000..6a3c8cf57 --- /dev/null +++ b/docs/material/.icons/material/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/orbit.svg b/docs/material/.icons/material/orbit.svg new file mode 100644 index 000000000..b16b3b795 --- /dev/null +++ b/docs/material/.icons/material/orbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-alphabetical-ascending.svg b/docs/material/.icons/material/order-alphabetical-ascending.svg new file mode 100644 index 000000000..58e865857 --- /dev/null +++ b/docs/material/.icons/material/order-alphabetical-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-alphabetical-descending.svg b/docs/material/.icons/material/order-alphabetical-descending.svg new file mode 100644 index 000000000..c089e7e90 --- /dev/null +++ b/docs/material/.icons/material/order-alphabetical-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-bool-ascending-variant.svg b/docs/material/.icons/material/order-bool-ascending-variant.svg new file mode 100644 index 000000000..47e1692b3 --- /dev/null +++ b/docs/material/.icons/material/order-bool-ascending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-bool-ascending.svg b/docs/material/.icons/material/order-bool-ascending.svg new file mode 100644 index 000000000..0b795a863 --- /dev/null +++ b/docs/material/.icons/material/order-bool-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-bool-descending-variant.svg b/docs/material/.icons/material/order-bool-descending-variant.svg new file mode 100644 index 000000000..05d8efae5 --- /dev/null +++ b/docs/material/.icons/material/order-bool-descending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-bool-descending.svg b/docs/material/.icons/material/order-bool-descending.svg new file mode 100644 index 000000000..93f884417 --- /dev/null +++ b/docs/material/.icons/material/order-bool-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-numeric-ascending.svg b/docs/material/.icons/material/order-numeric-ascending.svg new file mode 100644 index 000000000..03d92386c --- /dev/null +++ b/docs/material/.icons/material/order-numeric-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/order-numeric-descending.svg b/docs/material/.icons/material/order-numeric-descending.svg new file mode 100644 index 000000000..b0aeac5c2 --- /dev/null +++ b/docs/material/.icons/material/order-numeric-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/origin.svg b/docs/material/.icons/material/origin.svg new file mode 100644 index 000000000..42b9b13d4 --- /dev/null +++ b/docs/material/.icons/material/origin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ornament-variant.svg b/docs/material/.icons/material/ornament-variant.svg new file mode 100644 index 000000000..817ab3c56 --- /dev/null +++ b/docs/material/.icons/material/ornament-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ornament.svg b/docs/material/.icons/material/ornament.svg new file mode 100644 index 000000000..237e8c0d1 --- /dev/null +++ b/docs/material/.icons/material/ornament.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/outdoor-lamp.svg b/docs/material/.icons/material/outdoor-lamp.svg new file mode 100644 index 000000000..780f878ba --- /dev/null +++ b/docs/material/.icons/material/outdoor-lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/overscan.svg b/docs/material/.icons/material/overscan.svg new file mode 100644 index 000000000..ee03e8898 --- /dev/null +++ b/docs/material/.icons/material/overscan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/owl.svg b/docs/material/.icons/material/owl.svg new file mode 100644 index 000000000..baf0d48b6 --- /dev/null +++ b/docs/material/.icons/material/owl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pac-man.svg b/docs/material/.icons/material/pac-man.svg new file mode 100644 index 000000000..c7cf1bf19 --- /dev/null +++ b/docs/material/.icons/material/pac-man.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/package-down.svg b/docs/material/.icons/material/package-down.svg new file mode 100644 index 000000000..61bbe9ddb --- /dev/null +++ b/docs/material/.icons/material/package-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/package-up.svg b/docs/material/.icons/material/package-up.svg new file mode 100644 index 000000000..1b2e98363 --- /dev/null +++ b/docs/material/.icons/material/package-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/package-variant-closed.svg b/docs/material/.icons/material/package-variant-closed.svg new file mode 100644 index 000000000..56e1b4bda --- /dev/null +++ b/docs/material/.icons/material/package-variant-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/package-variant.svg b/docs/material/.icons/material/package-variant.svg new file mode 100644 index 000000000..fea23ab85 --- /dev/null +++ b/docs/material/.icons/material/package-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/package.svg b/docs/material/.icons/material/package.svg new file mode 100644 index 000000000..1c222d083 --- /dev/null +++ b/docs/material/.icons/material/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-first.svg b/docs/material/.icons/material/page-first.svg new file mode 100644 index 000000000..d5f575900 --- /dev/null +++ b/docs/material/.icons/material/page-first.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-last.svg b/docs/material/.icons/material/page-last.svg new file mode 100644 index 000000000..647406a22 --- /dev/null +++ b/docs/material/.icons/material/page-last.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-layout-body.svg b/docs/material/.icons/material/page-layout-body.svg new file mode 100644 index 000000000..7d9a56877 --- /dev/null +++ b/docs/material/.icons/material/page-layout-body.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-layout-footer.svg b/docs/material/.icons/material/page-layout-footer.svg new file mode 100644 index 000000000..5f4df3053 --- /dev/null +++ b/docs/material/.icons/material/page-layout-footer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-layout-header-footer.svg b/docs/material/.icons/material/page-layout-header-footer.svg new file mode 100644 index 000000000..0f3eba051 --- /dev/null +++ b/docs/material/.icons/material/page-layout-header-footer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-layout-header.svg b/docs/material/.icons/material/page-layout-header.svg new file mode 100644 index 000000000..58e774fcd --- /dev/null +++ b/docs/material/.icons/material/page-layout-header.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-layout-sidebar-left.svg b/docs/material/.icons/material/page-layout-sidebar-left.svg new file mode 100644 index 000000000..520c80d28 --- /dev/null +++ b/docs/material/.icons/material/page-layout-sidebar-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-layout-sidebar-right.svg b/docs/material/.icons/material/page-layout-sidebar-right.svg new file mode 100644 index 000000000..a3fb752fd --- /dev/null +++ b/docs/material/.icons/material/page-layout-sidebar-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-next-outline.svg b/docs/material/.icons/material/page-next-outline.svg new file mode 100644 index 000000000..7ff002f5e --- /dev/null +++ b/docs/material/.icons/material/page-next-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-next.svg b/docs/material/.icons/material/page-next.svg new file mode 100644 index 000000000..0bd0bf1e0 --- /dev/null +++ b/docs/material/.icons/material/page-next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-previous-outline.svg b/docs/material/.icons/material/page-previous-outline.svg new file mode 100644 index 000000000..eeb787ca4 --- /dev/null +++ b/docs/material/.icons/material/page-previous-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/page-previous.svg b/docs/material/.icons/material/page-previous.svg new file mode 100644 index 000000000..bbfe9a1e7 --- /dev/null +++ b/docs/material/.icons/material/page-previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pail.svg b/docs/material/.icons/material/pail.svg new file mode 100644 index 000000000..a3b0274a1 --- /dev/null +++ b/docs/material/.icons/material/pail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/palette-advanced.svg b/docs/material/.icons/material/palette-advanced.svg new file mode 100644 index 000000000..e7203db28 --- /dev/null +++ b/docs/material/.icons/material/palette-advanced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/palette-outline.svg b/docs/material/.icons/material/palette-outline.svg new file mode 100644 index 000000000..e451194e7 --- /dev/null +++ b/docs/material/.icons/material/palette-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/palette-swatch-outline.svg b/docs/material/.icons/material/palette-swatch-outline.svg new file mode 100644 index 000000000..0659baeba --- /dev/null +++ b/docs/material/.icons/material/palette-swatch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/palette-swatch.svg b/docs/material/.icons/material/palette-swatch.svg new file mode 100644 index 000000000..89b3cd77e --- /dev/null +++ b/docs/material/.icons/material/palette-swatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/palette.svg b/docs/material/.icons/material/palette.svg new file mode 100644 index 000000000..d68904698 --- /dev/null +++ b/docs/material/.icons/material/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/palm-tree.svg b/docs/material/.icons/material/palm-tree.svg new file mode 100644 index 000000000..03ef87be2 --- /dev/null +++ b/docs/material/.icons/material/palm-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-bottom-left.svg b/docs/material/.icons/material/pan-bottom-left.svg new file mode 100644 index 000000000..dbc6047ca --- /dev/null +++ b/docs/material/.icons/material/pan-bottom-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-bottom-right.svg b/docs/material/.icons/material/pan-bottom-right.svg new file mode 100644 index 000000000..11aa27334 --- /dev/null +++ b/docs/material/.icons/material/pan-bottom-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-down.svg b/docs/material/.icons/material/pan-down.svg new file mode 100644 index 000000000..024d49178 --- /dev/null +++ b/docs/material/.icons/material/pan-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-horizontal.svg b/docs/material/.icons/material/pan-horizontal.svg new file mode 100644 index 000000000..3469c3888 --- /dev/null +++ b/docs/material/.icons/material/pan-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-left.svg b/docs/material/.icons/material/pan-left.svg new file mode 100644 index 000000000..fc84f02a3 --- /dev/null +++ b/docs/material/.icons/material/pan-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-right.svg b/docs/material/.icons/material/pan-right.svg new file mode 100644 index 000000000..7c1f25383 --- /dev/null +++ b/docs/material/.icons/material/pan-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-top-left.svg b/docs/material/.icons/material/pan-top-left.svg new file mode 100644 index 000000000..a0b0fc9e8 --- /dev/null +++ b/docs/material/.icons/material/pan-top-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-top-right.svg b/docs/material/.icons/material/pan-top-right.svg new file mode 100644 index 000000000..6c9f28f75 --- /dev/null +++ b/docs/material/.icons/material/pan-top-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-up.svg b/docs/material/.icons/material/pan-up.svg new file mode 100644 index 000000000..eed4674ae --- /dev/null +++ b/docs/material/.icons/material/pan-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan-vertical.svg b/docs/material/.icons/material/pan-vertical.svg new file mode 100644 index 000000000..752147416 --- /dev/null +++ b/docs/material/.icons/material/pan-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pan.svg b/docs/material/.icons/material/pan.svg new file mode 100644 index 000000000..198153d10 --- /dev/null +++ b/docs/material/.icons/material/pan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/panda.svg b/docs/material/.icons/material/panda.svg new file mode 100644 index 000000000..b74899b9a --- /dev/null +++ b/docs/material/.icons/material/panda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pandora.svg b/docs/material/.icons/material/pandora.svg new file mode 100644 index 000000000..8fd64b4a3 --- /dev/null +++ b/docs/material/.icons/material/pandora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/panorama-fisheye.svg b/docs/material/.icons/material/panorama-fisheye.svg new file mode 100644 index 000000000..9ff3ff2eb --- /dev/null +++ b/docs/material/.icons/material/panorama-fisheye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/panorama-horizontal.svg b/docs/material/.icons/material/panorama-horizontal.svg new file mode 100644 index 000000000..00b175ca8 --- /dev/null +++ b/docs/material/.icons/material/panorama-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/panorama-vertical.svg b/docs/material/.icons/material/panorama-vertical.svg new file mode 100644 index 000000000..4de58f17e --- /dev/null +++ b/docs/material/.icons/material/panorama-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/panorama-wide-angle.svg b/docs/material/.icons/material/panorama-wide-angle.svg new file mode 100644 index 000000000..085f54276 --- /dev/null +++ b/docs/material/.icons/material/panorama-wide-angle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/panorama.svg b/docs/material/.icons/material/panorama.svg new file mode 100644 index 000000000..cc6a9e075 --- /dev/null +++ b/docs/material/.icons/material/panorama.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/paper-cut-vertical.svg b/docs/material/.icons/material/paper-cut-vertical.svg new file mode 100644 index 000000000..f3d9a4145 --- /dev/null +++ b/docs/material/.icons/material/paper-cut-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/paper-roll-outline.svg b/docs/material/.icons/material/paper-roll-outline.svg new file mode 100644 index 000000000..90226fb9e --- /dev/null +++ b/docs/material/.icons/material/paper-roll-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/paper-roll.svg b/docs/material/.icons/material/paper-roll.svg new file mode 100644 index 000000000..20553fb2c --- /dev/null +++ b/docs/material/.icons/material/paper-roll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/paperclip.svg b/docs/material/.icons/material/paperclip.svg new file mode 100644 index 000000000..3502a8fab --- /dev/null +++ b/docs/material/.icons/material/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/parachute-outline.svg b/docs/material/.icons/material/parachute-outline.svg new file mode 100644 index 000000000..ba7cf65cf --- /dev/null +++ b/docs/material/.icons/material/parachute-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/parachute.svg b/docs/material/.icons/material/parachute.svg new file mode 100644 index 000000000..e748d1ef3 --- /dev/null +++ b/docs/material/.icons/material/parachute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/parking.svg b/docs/material/.icons/material/parking.svg new file mode 100644 index 000000000..109afa0c1 --- /dev/null +++ b/docs/material/.icons/material/parking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/party-popper.svg b/docs/material/.icons/material/party-popper.svg new file mode 100644 index 000000000..0f9ba76f5 --- /dev/null +++ b/docs/material/.icons/material/party-popper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/passport-biometric.svg b/docs/material/.icons/material/passport-biometric.svg new file mode 100644 index 000000000..72d011617 --- /dev/null +++ b/docs/material/.icons/material/passport-biometric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/passport.svg b/docs/material/.icons/material/passport.svg new file mode 100644 index 000000000..3b4e8326a --- /dev/null +++ b/docs/material/.icons/material/passport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pasta.svg b/docs/material/.icons/material/pasta.svg new file mode 100644 index 000000000..fdac0b3bc --- /dev/null +++ b/docs/material/.icons/material/pasta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/patio-heater.svg b/docs/material/.icons/material/patio-heater.svg new file mode 100644 index 000000000..91e914e34 --- /dev/null +++ b/docs/material/.icons/material/patio-heater.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/patreon.svg b/docs/material/.icons/material/patreon.svg new file mode 100644 index 000000000..fd13227f5 --- /dev/null +++ b/docs/material/.icons/material/patreon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pause-circle-outline.svg b/docs/material/.icons/material/pause-circle-outline.svg new file mode 100644 index 000000000..4b8fc5353 --- /dev/null +++ b/docs/material/.icons/material/pause-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pause-circle.svg b/docs/material/.icons/material/pause-circle.svg new file mode 100644 index 000000000..a92790544 --- /dev/null +++ b/docs/material/.icons/material/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pause-octagon-outline.svg b/docs/material/.icons/material/pause-octagon-outline.svg new file mode 100644 index 000000000..1396ed2cb --- /dev/null +++ b/docs/material/.icons/material/pause-octagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pause-octagon.svg b/docs/material/.icons/material/pause-octagon.svg new file mode 100644 index 000000000..f31ab54d2 --- /dev/null +++ b/docs/material/.icons/material/pause-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pause.svg b/docs/material/.icons/material/pause.svg new file mode 100644 index 000000000..c742a30e4 --- /dev/null +++ b/docs/material/.icons/material/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/paw-off.svg b/docs/material/.icons/material/paw-off.svg new file mode 100644 index 000000000..ee774c309 --- /dev/null +++ b/docs/material/.icons/material/paw-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/paw.svg b/docs/material/.icons/material/paw.svg new file mode 100644 index 000000000..77c15324a --- /dev/null +++ b/docs/material/.icons/material/paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pdf-box.svg b/docs/material/.icons/material/pdf-box.svg new file mode 100644 index 000000000..0202f1622 --- /dev/null +++ b/docs/material/.icons/material/pdf-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/peace.svg b/docs/material/.icons/material/peace.svg new file mode 100644 index 000000000..8de7bf9a3 --- /dev/null +++ b/docs/material/.icons/material/peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/peanut-off-outline.svg b/docs/material/.icons/material/peanut-off-outline.svg new file mode 100644 index 000000000..e1216277b --- /dev/null +++ b/docs/material/.icons/material/peanut-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/peanut-off.svg b/docs/material/.icons/material/peanut-off.svg new file mode 100644 index 000000000..8e25ce69a --- /dev/null +++ b/docs/material/.icons/material/peanut-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/peanut-outline.svg b/docs/material/.icons/material/peanut-outline.svg new file mode 100644 index 000000000..537ea0d02 --- /dev/null +++ b/docs/material/.icons/material/peanut-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/peanut.svg b/docs/material/.icons/material/peanut.svg new file mode 100644 index 000000000..144397f3b --- /dev/null +++ b/docs/material/.icons/material/peanut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pen-lock.svg b/docs/material/.icons/material/pen-lock.svg new file mode 100644 index 000000000..7a4b26f02 --- /dev/null +++ b/docs/material/.icons/material/pen-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pen-minus.svg b/docs/material/.icons/material/pen-minus.svg new file mode 100644 index 000000000..0bc1c1f6a --- /dev/null +++ b/docs/material/.icons/material/pen-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pen-off.svg b/docs/material/.icons/material/pen-off.svg new file mode 100644 index 000000000..d15be520d --- /dev/null +++ b/docs/material/.icons/material/pen-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pen-plus.svg b/docs/material/.icons/material/pen-plus.svg new file mode 100644 index 000000000..6e04c0560 --- /dev/null +++ b/docs/material/.icons/material/pen-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pen-remove.svg b/docs/material/.icons/material/pen-remove.svg new file mode 100644 index 000000000..142f83b8e --- /dev/null +++ b/docs/material/.icons/material/pen-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pen.svg b/docs/material/.icons/material/pen.svg new file mode 100644 index 000000000..3e216ac41 --- /dev/null +++ b/docs/material/.icons/material/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-box-multiple-outline.svg b/docs/material/.icons/material/pencil-box-multiple-outline.svg new file mode 100644 index 000000000..c1a6eb454 --- /dev/null +++ b/docs/material/.icons/material/pencil-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-box-multiple.svg b/docs/material/.icons/material/pencil-box-multiple.svg new file mode 100644 index 000000000..1a43db459 --- /dev/null +++ b/docs/material/.icons/material/pencil-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-box-outline.svg b/docs/material/.icons/material/pencil-box-outline.svg new file mode 100644 index 000000000..fcfd5db74 --- /dev/null +++ b/docs/material/.icons/material/pencil-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-box.svg b/docs/material/.icons/material/pencil-box.svg new file mode 100644 index 000000000..6ef097936 --- /dev/null +++ b/docs/material/.icons/material/pencil-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-circle-outline.svg b/docs/material/.icons/material/pencil-circle-outline.svg new file mode 100644 index 000000000..05f051274 --- /dev/null +++ b/docs/material/.icons/material/pencil-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-circle.svg b/docs/material/.icons/material/pencil-circle.svg new file mode 100644 index 000000000..eef1cc198 --- /dev/null +++ b/docs/material/.icons/material/pencil-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-lock-outline.svg b/docs/material/.icons/material/pencil-lock-outline.svg new file mode 100644 index 000000000..881b1aca6 --- /dev/null +++ b/docs/material/.icons/material/pencil-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-lock.svg b/docs/material/.icons/material/pencil-lock.svg new file mode 100644 index 000000000..a92eb50a7 --- /dev/null +++ b/docs/material/.icons/material/pencil-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-minus-outline.svg b/docs/material/.icons/material/pencil-minus-outline.svg new file mode 100644 index 000000000..27647f531 --- /dev/null +++ b/docs/material/.icons/material/pencil-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-minus.svg b/docs/material/.icons/material/pencil-minus.svg new file mode 100644 index 000000000..9ba0681fb --- /dev/null +++ b/docs/material/.icons/material/pencil-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-off-outline.svg b/docs/material/.icons/material/pencil-off-outline.svg new file mode 100644 index 000000000..e6558b448 --- /dev/null +++ b/docs/material/.icons/material/pencil-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-off.svg b/docs/material/.icons/material/pencil-off.svg new file mode 100644 index 000000000..f25c0f621 --- /dev/null +++ b/docs/material/.icons/material/pencil-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-outline.svg b/docs/material/.icons/material/pencil-outline.svg new file mode 100644 index 000000000..5a31785cd --- /dev/null +++ b/docs/material/.icons/material/pencil-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-plus-outline.svg b/docs/material/.icons/material/pencil-plus-outline.svg new file mode 100644 index 000000000..2f5ef5a7c --- /dev/null +++ b/docs/material/.icons/material/pencil-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-plus.svg b/docs/material/.icons/material/pencil-plus.svg new file mode 100644 index 000000000..03373bd71 --- /dev/null +++ b/docs/material/.icons/material/pencil-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-remove-outline.svg b/docs/material/.icons/material/pencil-remove-outline.svg new file mode 100644 index 000000000..003b906e3 --- /dev/null +++ b/docs/material/.icons/material/pencil-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-remove.svg b/docs/material/.icons/material/pencil-remove.svg new file mode 100644 index 000000000..345d2581a --- /dev/null +++ b/docs/material/.icons/material/pencil-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil-ruler.svg b/docs/material/.icons/material/pencil-ruler.svg new file mode 100644 index 000000000..44b9b3a37 --- /dev/null +++ b/docs/material/.icons/material/pencil-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pencil.svg b/docs/material/.icons/material/pencil.svg new file mode 100644 index 000000000..50d1ace30 --- /dev/null +++ b/docs/material/.icons/material/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/penguin.svg b/docs/material/.icons/material/penguin.svg new file mode 100644 index 000000000..15ba70095 --- /dev/null +++ b/docs/material/.icons/material/penguin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pentagon-outline.svg b/docs/material/.icons/material/pentagon-outline.svg new file mode 100644 index 000000000..c25681854 --- /dev/null +++ b/docs/material/.icons/material/pentagon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pentagon.svg b/docs/material/.icons/material/pentagon.svg new file mode 100644 index 000000000..5d8de0bf0 --- /dev/null +++ b/docs/material/.icons/material/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/percent-outline.svg b/docs/material/.icons/material/percent-outline.svg new file mode 100644 index 000000000..c8a659594 --- /dev/null +++ b/docs/material/.icons/material/percent-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/percent.svg b/docs/material/.icons/material/percent.svg new file mode 100644 index 000000000..1961bf333 --- /dev/null +++ b/docs/material/.icons/material/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/periodic-table.svg b/docs/material/.icons/material/periodic-table.svg new file mode 100644 index 000000000..f6f2300a8 --- /dev/null +++ b/docs/material/.icons/material/periodic-table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/perspective-less.svg b/docs/material/.icons/material/perspective-less.svg new file mode 100644 index 000000000..f287075c7 --- /dev/null +++ b/docs/material/.icons/material/perspective-less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/perspective-more.svg b/docs/material/.icons/material/perspective-more.svg new file mode 100644 index 000000000..0277a34b0 --- /dev/null +++ b/docs/material/.icons/material/perspective-more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pharmacy.svg b/docs/material/.icons/material/pharmacy.svg new file mode 100644 index 000000000..5a818a988 --- /dev/null +++ b/docs/material/.icons/material/pharmacy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-alert-outline.svg b/docs/material/.icons/material/phone-alert-outline.svg new file mode 100644 index 000000000..39b69fff1 --- /dev/null +++ b/docs/material/.icons/material/phone-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-alert.svg b/docs/material/.icons/material/phone-alert.svg new file mode 100644 index 000000000..12ef90d00 --- /dev/null +++ b/docs/material/.icons/material/phone-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-bluetooth-outline.svg b/docs/material/.icons/material/phone-bluetooth-outline.svg new file mode 100644 index 000000000..3fb070ba0 --- /dev/null +++ b/docs/material/.icons/material/phone-bluetooth-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-bluetooth.svg b/docs/material/.icons/material/phone-bluetooth.svg new file mode 100644 index 000000000..00041775f --- /dev/null +++ b/docs/material/.icons/material/phone-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-cancel-outline.svg b/docs/material/.icons/material/phone-cancel-outline.svg new file mode 100644 index 000000000..a9b4b60bf --- /dev/null +++ b/docs/material/.icons/material/phone-cancel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-cancel.svg b/docs/material/.icons/material/phone-cancel.svg new file mode 100644 index 000000000..3948e7b4f --- /dev/null +++ b/docs/material/.icons/material/phone-cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-check-outline.svg b/docs/material/.icons/material/phone-check-outline.svg new file mode 100644 index 000000000..fa7e32407 --- /dev/null +++ b/docs/material/.icons/material/phone-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-check.svg b/docs/material/.icons/material/phone-check.svg new file mode 100644 index 000000000..f0a34cde0 --- /dev/null +++ b/docs/material/.icons/material/phone-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-classic-off.svg b/docs/material/.icons/material/phone-classic-off.svg new file mode 100644 index 000000000..59007096e --- /dev/null +++ b/docs/material/.icons/material/phone-classic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-classic.svg b/docs/material/.icons/material/phone-classic.svg new file mode 100644 index 000000000..1150dda42 --- /dev/null +++ b/docs/material/.icons/material/phone-classic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-forward-outline.svg b/docs/material/.icons/material/phone-forward-outline.svg new file mode 100644 index 000000000..e72c12ca7 --- /dev/null +++ b/docs/material/.icons/material/phone-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-forward.svg b/docs/material/.icons/material/phone-forward.svg new file mode 100644 index 000000000..c4cb46e22 --- /dev/null +++ b/docs/material/.icons/material/phone-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-hangup-outline.svg b/docs/material/.icons/material/phone-hangup-outline.svg new file mode 100644 index 000000000..1b3ac46b0 --- /dev/null +++ b/docs/material/.icons/material/phone-hangup-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-hangup.svg b/docs/material/.icons/material/phone-hangup.svg new file mode 100644 index 000000000..ea74bff49 --- /dev/null +++ b/docs/material/.icons/material/phone-hangup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-in-talk-outline.svg b/docs/material/.icons/material/phone-in-talk-outline.svg new file mode 100644 index 000000000..29e814646 --- /dev/null +++ b/docs/material/.icons/material/phone-in-talk-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-in-talk.svg b/docs/material/.icons/material/phone-in-talk.svg new file mode 100644 index 000000000..210a3c903 --- /dev/null +++ b/docs/material/.icons/material/phone-in-talk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-incoming-outline.svg b/docs/material/.icons/material/phone-incoming-outline.svg new file mode 100644 index 000000000..19621ef46 --- /dev/null +++ b/docs/material/.icons/material/phone-incoming-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-incoming.svg b/docs/material/.icons/material/phone-incoming.svg new file mode 100644 index 000000000..eaab0f2a6 --- /dev/null +++ b/docs/material/.icons/material/phone-incoming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-lock-outline.svg b/docs/material/.icons/material/phone-lock-outline.svg new file mode 100644 index 000000000..5d7fe5996 --- /dev/null +++ b/docs/material/.icons/material/phone-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-lock.svg b/docs/material/.icons/material/phone-lock.svg new file mode 100644 index 000000000..dc011b388 --- /dev/null +++ b/docs/material/.icons/material/phone-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-log-outline.svg b/docs/material/.icons/material/phone-log-outline.svg new file mode 100644 index 000000000..bcd340b6f --- /dev/null +++ b/docs/material/.icons/material/phone-log-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-log.svg b/docs/material/.icons/material/phone-log.svg new file mode 100644 index 000000000..7a4522471 --- /dev/null +++ b/docs/material/.icons/material/phone-log.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-message-outline.svg b/docs/material/.icons/material/phone-message-outline.svg new file mode 100644 index 000000000..ef5a78193 --- /dev/null +++ b/docs/material/.icons/material/phone-message-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-message.svg b/docs/material/.icons/material/phone-message.svg new file mode 100644 index 000000000..b8bab8c6b --- /dev/null +++ b/docs/material/.icons/material/phone-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-minus-outline.svg b/docs/material/.icons/material/phone-minus-outline.svg new file mode 100644 index 000000000..e5a59a0ea --- /dev/null +++ b/docs/material/.icons/material/phone-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-minus.svg b/docs/material/.icons/material/phone-minus.svg new file mode 100644 index 000000000..2315c259f --- /dev/null +++ b/docs/material/.icons/material/phone-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-missed-outline.svg b/docs/material/.icons/material/phone-missed-outline.svg new file mode 100644 index 000000000..a11fcf528 --- /dev/null +++ b/docs/material/.icons/material/phone-missed-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-missed.svg b/docs/material/.icons/material/phone-missed.svg new file mode 100644 index 000000000..49b746792 --- /dev/null +++ b/docs/material/.icons/material/phone-missed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-off-outline.svg b/docs/material/.icons/material/phone-off-outline.svg new file mode 100644 index 000000000..eec9b9c95 --- /dev/null +++ b/docs/material/.icons/material/phone-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-off.svg b/docs/material/.icons/material/phone-off.svg new file mode 100644 index 000000000..080ed3605 --- /dev/null +++ b/docs/material/.icons/material/phone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-outgoing-outline.svg b/docs/material/.icons/material/phone-outgoing-outline.svg new file mode 100644 index 000000000..feadefd8a --- /dev/null +++ b/docs/material/.icons/material/phone-outgoing-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-outgoing.svg b/docs/material/.icons/material/phone-outgoing.svg new file mode 100644 index 000000000..c9d6f8a85 --- /dev/null +++ b/docs/material/.icons/material/phone-outgoing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-outline.svg b/docs/material/.icons/material/phone-outline.svg new file mode 100644 index 000000000..fd762c4cf --- /dev/null +++ b/docs/material/.icons/material/phone-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-paused-outline.svg b/docs/material/.icons/material/phone-paused-outline.svg new file mode 100644 index 000000000..17ccd4ec9 --- /dev/null +++ b/docs/material/.icons/material/phone-paused-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-paused.svg b/docs/material/.icons/material/phone-paused.svg new file mode 100644 index 000000000..58fdf6d39 --- /dev/null +++ b/docs/material/.icons/material/phone-paused.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-plus-outline.svg b/docs/material/.icons/material/phone-plus-outline.svg new file mode 100644 index 000000000..97cef81dd --- /dev/null +++ b/docs/material/.icons/material/phone-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-plus.svg b/docs/material/.icons/material/phone-plus.svg new file mode 100644 index 000000000..b2b868b5d --- /dev/null +++ b/docs/material/.icons/material/phone-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-return-outline.svg b/docs/material/.icons/material/phone-return-outline.svg new file mode 100644 index 000000000..ea15afc17 --- /dev/null +++ b/docs/material/.icons/material/phone-return-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-return.svg b/docs/material/.icons/material/phone-return.svg new file mode 100644 index 000000000..072485a21 --- /dev/null +++ b/docs/material/.icons/material/phone-return.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-ring-outline.svg b/docs/material/.icons/material/phone-ring-outline.svg new file mode 100644 index 000000000..733b5afdc --- /dev/null +++ b/docs/material/.icons/material/phone-ring-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-ring.svg b/docs/material/.icons/material/phone-ring.svg new file mode 100644 index 000000000..61a1e0db8 --- /dev/null +++ b/docs/material/.icons/material/phone-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-rotate-landscape.svg b/docs/material/.icons/material/phone-rotate-landscape.svg new file mode 100644 index 000000000..77747c0fc --- /dev/null +++ b/docs/material/.icons/material/phone-rotate-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-rotate-portrait.svg b/docs/material/.icons/material/phone-rotate-portrait.svg new file mode 100644 index 000000000..3deb597c0 --- /dev/null +++ b/docs/material/.icons/material/phone-rotate-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-settings-outline.svg b/docs/material/.icons/material/phone-settings-outline.svg new file mode 100644 index 000000000..29f8722ce --- /dev/null +++ b/docs/material/.icons/material/phone-settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-settings.svg b/docs/material/.icons/material/phone-settings.svg new file mode 100644 index 000000000..25e772b25 --- /dev/null +++ b/docs/material/.icons/material/phone-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone-voip.svg b/docs/material/.icons/material/phone-voip.svg new file mode 100644 index 000000000..7d79e14d2 --- /dev/null +++ b/docs/material/.icons/material/phone-voip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/phone.svg b/docs/material/.icons/material/phone.svg new file mode 100644 index 000000000..f331a69b4 --- /dev/null +++ b/docs/material/.icons/material/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pi-box.svg b/docs/material/.icons/material/pi-box.svg new file mode 100644 index 000000000..2a5fac8a8 --- /dev/null +++ b/docs/material/.icons/material/pi-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pi-hole.svg b/docs/material/.icons/material/pi-hole.svg new file mode 100644 index 000000000..8044baea9 --- /dev/null +++ b/docs/material/.icons/material/pi-hole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pi.svg b/docs/material/.icons/material/pi.svg new file mode 100644 index 000000000..20865351f --- /dev/null +++ b/docs/material/.icons/material/pi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/piano.svg b/docs/material/.icons/material/piano.svg new file mode 100644 index 000000000..efbdd4d41 --- /dev/null +++ b/docs/material/.icons/material/piano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pickaxe.svg b/docs/material/.icons/material/pickaxe.svg new file mode 100644 index 000000000..1bccd32f4 --- /dev/null +++ b/docs/material/.icons/material/pickaxe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/picture-in-picture-bottom-right-outline.svg b/docs/material/.icons/material/picture-in-picture-bottom-right-outline.svg new file mode 100644 index 000000000..530f4dda4 --- /dev/null +++ b/docs/material/.icons/material/picture-in-picture-bottom-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/picture-in-picture-bottom-right.svg b/docs/material/.icons/material/picture-in-picture-bottom-right.svg new file mode 100644 index 000000000..b0a7e4642 --- /dev/null +++ b/docs/material/.icons/material/picture-in-picture-bottom-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/picture-in-picture-top-right-outline.svg b/docs/material/.icons/material/picture-in-picture-top-right-outline.svg new file mode 100644 index 000000000..b5e76f0b2 --- /dev/null +++ b/docs/material/.icons/material/picture-in-picture-top-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/picture-in-picture-top-right.svg b/docs/material/.icons/material/picture-in-picture-top-right.svg new file mode 100644 index 000000000..d76467137 --- /dev/null +++ b/docs/material/.icons/material/picture-in-picture-top-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pier-crane.svg b/docs/material/.icons/material/pier-crane.svg new file mode 100644 index 000000000..446b49ff4 --- /dev/null +++ b/docs/material/.icons/material/pier-crane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pier.svg b/docs/material/.icons/material/pier.svg new file mode 100644 index 000000000..2ecd23b3a --- /dev/null +++ b/docs/material/.icons/material/pier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pig-variant.svg b/docs/material/.icons/material/pig-variant.svg new file mode 100644 index 000000000..5f8d45bb9 --- /dev/null +++ b/docs/material/.icons/material/pig-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pig.svg b/docs/material/.icons/material/pig.svg new file mode 100644 index 000000000..ab5fecae9 --- /dev/null +++ b/docs/material/.icons/material/pig.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/piggy-bank.svg b/docs/material/.icons/material/piggy-bank.svg new file mode 100644 index 000000000..05f346cc5 --- /dev/null +++ b/docs/material/.icons/material/piggy-bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pill.svg b/docs/material/.icons/material/pill.svg new file mode 100644 index 000000000..201262dd9 --- /dev/null +++ b/docs/material/.icons/material/pill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pillar.svg b/docs/material/.icons/material/pillar.svg new file mode 100644 index 000000000..67f6ed0e5 --- /dev/null +++ b/docs/material/.icons/material/pillar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pin-off-outline.svg b/docs/material/.icons/material/pin-off-outline.svg new file mode 100644 index 000000000..9666c1947 --- /dev/null +++ b/docs/material/.icons/material/pin-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pin-off.svg b/docs/material/.icons/material/pin-off.svg new file mode 100644 index 000000000..454292354 --- /dev/null +++ b/docs/material/.icons/material/pin-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pin-outline.svg b/docs/material/.icons/material/pin-outline.svg new file mode 100644 index 000000000..47cebc4d1 --- /dev/null +++ b/docs/material/.icons/material/pin-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pin.svg b/docs/material/.icons/material/pin.svg new file mode 100644 index 000000000..68daca962 --- /dev/null +++ b/docs/material/.icons/material/pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pine-tree-box.svg b/docs/material/.icons/material/pine-tree-box.svg new file mode 100644 index 000000000..2e7216a62 --- /dev/null +++ b/docs/material/.icons/material/pine-tree-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pine-tree.svg b/docs/material/.icons/material/pine-tree.svg new file mode 100644 index 000000000..a8715f4f4 --- /dev/null +++ b/docs/material/.icons/material/pine-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pinterest.svg b/docs/material/.icons/material/pinterest.svg new file mode 100644 index 000000000..6de662a2c --- /dev/null +++ b/docs/material/.icons/material/pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pinwheel-outline.svg b/docs/material/.icons/material/pinwheel-outline.svg new file mode 100644 index 000000000..cef4f4fe3 --- /dev/null +++ b/docs/material/.icons/material/pinwheel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pinwheel.svg b/docs/material/.icons/material/pinwheel.svg new file mode 100644 index 000000000..0a7a7a432 --- /dev/null +++ b/docs/material/.icons/material/pinwheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pipe-disconnected.svg b/docs/material/.icons/material/pipe-disconnected.svg new file mode 100644 index 000000000..3e13dc316 --- /dev/null +++ b/docs/material/.icons/material/pipe-disconnected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pipe-leak.svg b/docs/material/.icons/material/pipe-leak.svg new file mode 100644 index 000000000..6e8aa66ee --- /dev/null +++ b/docs/material/.icons/material/pipe-leak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pipe-wrench.svg b/docs/material/.icons/material/pipe-wrench.svg new file mode 100644 index 000000000..69aa9c98d --- /dev/null +++ b/docs/material/.icons/material/pipe-wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pipe.svg b/docs/material/.icons/material/pipe.svg new file mode 100644 index 000000000..289cfc84c --- /dev/null +++ b/docs/material/.icons/material/pipe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pirate.svg b/docs/material/.icons/material/pirate.svg new file mode 100644 index 000000000..966c8136d --- /dev/null +++ b/docs/material/.icons/material/pirate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pistol.svg b/docs/material/.icons/material/pistol.svg new file mode 100644 index 000000000..f3380b420 --- /dev/null +++ b/docs/material/.icons/material/pistol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/piston.svg b/docs/material/.icons/material/piston.svg new file mode 100644 index 000000000..661c007fa --- /dev/null +++ b/docs/material/.icons/material/piston.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pizza.svg b/docs/material/.icons/material/pizza.svg new file mode 100644 index 000000000..cdd0d86ad --- /dev/null +++ b/docs/material/.icons/material/pizza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-box-multiple-outline.svg b/docs/material/.icons/material/play-box-multiple-outline.svg new file mode 100644 index 000000000..d991b112e --- /dev/null +++ b/docs/material/.icons/material/play-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-box-multiple.svg b/docs/material/.icons/material/play-box-multiple.svg new file mode 100644 index 000000000..cc861b730 --- /dev/null +++ b/docs/material/.icons/material/play-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-box-outline.svg b/docs/material/.icons/material/play-box-outline.svg new file mode 100644 index 000000000..8e0df8e50 --- /dev/null +++ b/docs/material/.icons/material/play-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-box.svg b/docs/material/.icons/material/play-box.svg new file mode 100644 index 000000000..d68a3f16e --- /dev/null +++ b/docs/material/.icons/material/play-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-circle-outline.svg b/docs/material/.icons/material/play-circle-outline.svg new file mode 100644 index 000000000..8ad42ac52 --- /dev/null +++ b/docs/material/.icons/material/play-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-circle.svg b/docs/material/.icons/material/play-circle.svg new file mode 100644 index 000000000..5325ff372 --- /dev/null +++ b/docs/material/.icons/material/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-network-outline.svg b/docs/material/.icons/material/play-network-outline.svg new file mode 100644 index 000000000..c64c6a8ba --- /dev/null +++ b/docs/material/.icons/material/play-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-network.svg b/docs/material/.icons/material/play-network.svg new file mode 100644 index 000000000..03250631e --- /dev/null +++ b/docs/material/.icons/material/play-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-outline.svg b/docs/material/.icons/material/play-outline.svg new file mode 100644 index 000000000..85dd00a79 --- /dev/null +++ b/docs/material/.icons/material/play-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-pause.svg b/docs/material/.icons/material/play-pause.svg new file mode 100644 index 000000000..e23fafc3b --- /dev/null +++ b/docs/material/.icons/material/play-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-protected-content.svg b/docs/material/.icons/material/play-protected-content.svg new file mode 100644 index 000000000..e05e94563 --- /dev/null +++ b/docs/material/.icons/material/play-protected-content.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play-speed.svg b/docs/material/.icons/material/play-speed.svg new file mode 100644 index 000000000..1bdab6c25 --- /dev/null +++ b/docs/material/.icons/material/play-speed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/play.svg b/docs/material/.icons/material/play.svg new file mode 100644 index 000000000..dc2b40fe2 --- /dev/null +++ b/docs/material/.icons/material/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-check.svg b/docs/material/.icons/material/playlist-check.svg new file mode 100644 index 000000000..5bd80c826 --- /dev/null +++ b/docs/material/.icons/material/playlist-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-edit.svg b/docs/material/.icons/material/playlist-edit.svg new file mode 100644 index 000000000..4d392888f --- /dev/null +++ b/docs/material/.icons/material/playlist-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-minus.svg b/docs/material/.icons/material/playlist-minus.svg new file mode 100644 index 000000000..40854f3a5 --- /dev/null +++ b/docs/material/.icons/material/playlist-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-music-outline.svg b/docs/material/.icons/material/playlist-music-outline.svg new file mode 100644 index 000000000..2d829cdac --- /dev/null +++ b/docs/material/.icons/material/playlist-music-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-music.svg b/docs/material/.icons/material/playlist-music.svg new file mode 100644 index 000000000..f7586ec03 --- /dev/null +++ b/docs/material/.icons/material/playlist-music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-play.svg b/docs/material/.icons/material/playlist-play.svg new file mode 100644 index 000000000..a838891fd --- /dev/null +++ b/docs/material/.icons/material/playlist-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-plus.svg b/docs/material/.icons/material/playlist-plus.svg new file mode 100644 index 000000000..d2958a088 --- /dev/null +++ b/docs/material/.icons/material/playlist-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-remove.svg b/docs/material/.icons/material/playlist-remove.svg new file mode 100644 index 000000000..1dec96ce5 --- /dev/null +++ b/docs/material/.icons/material/playlist-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/playlist-star.svg b/docs/material/.icons/material/playlist-star.svg new file mode 100644 index 000000000..e561183d3 --- /dev/null +++ b/docs/material/.icons/material/playlist-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plex.svg b/docs/material/.icons/material/plex.svg new file mode 100644 index 000000000..c5d176823 --- /dev/null +++ b/docs/material/.icons/material/plex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-box-multiple-outline.svg b/docs/material/.icons/material/plus-box-multiple-outline.svg new file mode 100644 index 000000000..786ef81e0 --- /dev/null +++ b/docs/material/.icons/material/plus-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-box-multiple.svg b/docs/material/.icons/material/plus-box-multiple.svg new file mode 100644 index 000000000..3bea85c0c --- /dev/null +++ b/docs/material/.icons/material/plus-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-box-outline.svg b/docs/material/.icons/material/plus-box-outline.svg new file mode 100644 index 000000000..a78550588 --- /dev/null +++ b/docs/material/.icons/material/plus-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-box.svg b/docs/material/.icons/material/plus-box.svg new file mode 100644 index 000000000..180df0caf --- /dev/null +++ b/docs/material/.icons/material/plus-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-circle-multiple-outline.svg b/docs/material/.icons/material/plus-circle-multiple-outline.svg new file mode 100644 index 000000000..cdacd6016 --- /dev/null +++ b/docs/material/.icons/material/plus-circle-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-circle-multiple.svg b/docs/material/.icons/material/plus-circle-multiple.svg new file mode 100644 index 000000000..8c954403d --- /dev/null +++ b/docs/material/.icons/material/plus-circle-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-circle-outline.svg b/docs/material/.icons/material/plus-circle-outline.svg new file mode 100644 index 000000000..03e4c8f66 --- /dev/null +++ b/docs/material/.icons/material/plus-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-circle.svg b/docs/material/.icons/material/plus-circle.svg new file mode 100644 index 000000000..191400ae6 --- /dev/null +++ b/docs/material/.icons/material/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-minus-box.svg b/docs/material/.icons/material/plus-minus-box.svg new file mode 100644 index 000000000..0471ed83b --- /dev/null +++ b/docs/material/.icons/material/plus-minus-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-minus.svg b/docs/material/.icons/material/plus-minus.svg new file mode 100644 index 000000000..fc3671db7 --- /dev/null +++ b/docs/material/.icons/material/plus-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-network-outline.svg b/docs/material/.icons/material/plus-network-outline.svg new file mode 100644 index 000000000..c8ee6a6c5 --- /dev/null +++ b/docs/material/.icons/material/plus-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-network.svg b/docs/material/.icons/material/plus-network.svg new file mode 100644 index 000000000..b59454dd3 --- /dev/null +++ b/docs/material/.icons/material/plus-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-one.svg b/docs/material/.icons/material/plus-one.svg new file mode 100644 index 000000000..551b1809b --- /dev/null +++ b/docs/material/.icons/material/plus-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-outline.svg b/docs/material/.icons/material/plus-outline.svg new file mode 100644 index 000000000..9fa0a9fb7 --- /dev/null +++ b/docs/material/.icons/material/plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus-thick.svg b/docs/material/.icons/material/plus-thick.svg new file mode 100644 index 000000000..de2f9c141 --- /dev/null +++ b/docs/material/.icons/material/plus-thick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/plus.svg b/docs/material/.icons/material/plus.svg new file mode 100644 index 000000000..e448436f2 --- /dev/null +++ b/docs/material/.icons/material/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/podcast.svg b/docs/material/.icons/material/podcast.svg new file mode 100644 index 000000000..6b240a3d2 --- /dev/null +++ b/docs/material/.icons/material/podcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/podium-bronze.svg b/docs/material/.icons/material/podium-bronze.svg new file mode 100644 index 000000000..ac9a264c6 --- /dev/null +++ b/docs/material/.icons/material/podium-bronze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/podium-gold.svg b/docs/material/.icons/material/podium-gold.svg new file mode 100644 index 000000000..91891715e --- /dev/null +++ b/docs/material/.icons/material/podium-gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/podium-silver.svg b/docs/material/.icons/material/podium-silver.svg new file mode 100644 index 000000000..5b4ec7ad3 --- /dev/null +++ b/docs/material/.icons/material/podium-silver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/podium.svg b/docs/material/.icons/material/podium.svg new file mode 100644 index 000000000..4a69a005b --- /dev/null +++ b/docs/material/.icons/material/podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/point-of-sale.svg b/docs/material/.icons/material/point-of-sale.svg new file mode 100644 index 000000000..8e19114ae --- /dev/null +++ b/docs/material/.icons/material/point-of-sale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pokeball.svg b/docs/material/.icons/material/pokeball.svg new file mode 100644 index 000000000..1d80d1954 --- /dev/null +++ b/docs/material/.icons/material/pokeball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pokemon-go.svg b/docs/material/.icons/material/pokemon-go.svg new file mode 100644 index 000000000..5cd1c0db8 --- /dev/null +++ b/docs/material/.icons/material/pokemon-go.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/poker-chip.svg b/docs/material/.icons/material/poker-chip.svg new file mode 100644 index 000000000..893242dc9 --- /dev/null +++ b/docs/material/.icons/material/poker-chip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/polaroid.svg b/docs/material/.icons/material/polaroid.svg new file mode 100644 index 000000000..a6f533e34 --- /dev/null +++ b/docs/material/.icons/material/polaroid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/police-badge-outline.svg b/docs/material/.icons/material/police-badge-outline.svg new file mode 100644 index 000000000..bf07409ed --- /dev/null +++ b/docs/material/.icons/material/police-badge-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/police-badge.svg b/docs/material/.icons/material/police-badge.svg new file mode 100644 index 000000000..74b592898 --- /dev/null +++ b/docs/material/.icons/material/police-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/poll-box-outline.svg b/docs/material/.icons/material/poll-box-outline.svg new file mode 100644 index 000000000..db6b29068 --- /dev/null +++ b/docs/material/.icons/material/poll-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/poll-box.svg b/docs/material/.icons/material/poll-box.svg new file mode 100644 index 000000000..6dad2e3bb --- /dev/null +++ b/docs/material/.icons/material/poll-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/poll.svg b/docs/material/.icons/material/poll.svg new file mode 100644 index 000000000..bd98af0ea --- /dev/null +++ b/docs/material/.icons/material/poll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/polymer.svg b/docs/material/.icons/material/polymer.svg new file mode 100644 index 000000000..3c4676fef --- /dev/null +++ b/docs/material/.icons/material/polymer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pool.svg b/docs/material/.icons/material/pool.svg new file mode 100644 index 000000000..75fe2e7b6 --- /dev/null +++ b/docs/material/.icons/material/pool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/popcorn.svg b/docs/material/.icons/material/popcorn.svg new file mode 100644 index 000000000..ff8f18f37 --- /dev/null +++ b/docs/material/.icons/material/popcorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/post-outline.svg b/docs/material/.icons/material/post-outline.svg new file mode 100644 index 000000000..1f4d62c54 --- /dev/null +++ b/docs/material/.icons/material/post-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/post.svg b/docs/material/.icons/material/post.svg new file mode 100644 index 000000000..6fc14e091 --- /dev/null +++ b/docs/material/.icons/material/post.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/postage-stamp.svg b/docs/material/.icons/material/postage-stamp.svg new file mode 100644 index 000000000..52ddbf005 --- /dev/null +++ b/docs/material/.icons/material/postage-stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pot-mix-outline.svg b/docs/material/.icons/material/pot-mix-outline.svg new file mode 100644 index 000000000..719e93fac --- /dev/null +++ b/docs/material/.icons/material/pot-mix-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pot-mix.svg b/docs/material/.icons/material/pot-mix.svg new file mode 100644 index 000000000..211af7cc0 --- /dev/null +++ b/docs/material/.icons/material/pot-mix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pot-outline.svg b/docs/material/.icons/material/pot-outline.svg new file mode 100644 index 000000000..bde86b7b6 --- /dev/null +++ b/docs/material/.icons/material/pot-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pot-steam-outline.svg b/docs/material/.icons/material/pot-steam-outline.svg new file mode 100644 index 000000000..5d01174f5 --- /dev/null +++ b/docs/material/.icons/material/pot-steam-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pot-steam.svg b/docs/material/.icons/material/pot-steam.svg new file mode 100644 index 000000000..c2b943bcb --- /dev/null +++ b/docs/material/.icons/material/pot-steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pot.svg b/docs/material/.icons/material/pot.svg new file mode 100644 index 000000000..b83f663f1 --- /dev/null +++ b/docs/material/.icons/material/pot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pound-box-outline.svg b/docs/material/.icons/material/pound-box-outline.svg new file mode 100644 index 000000000..2a3057f0b --- /dev/null +++ b/docs/material/.icons/material/pound-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pound-box.svg b/docs/material/.icons/material/pound-box.svg new file mode 100644 index 000000000..4808e6b21 --- /dev/null +++ b/docs/material/.icons/material/pound-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pound.svg b/docs/material/.icons/material/pound.svg new file mode 100644 index 000000000..f90244225 --- /dev/null +++ b/docs/material/.icons/material/pound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-cycle.svg b/docs/material/.icons/material/power-cycle.svg new file mode 100644 index 000000000..ad374a3b1 --- /dev/null +++ b/docs/material/.icons/material/power-cycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-off.svg b/docs/material/.icons/material/power-off.svg new file mode 100644 index 000000000..89192cf9b --- /dev/null +++ b/docs/material/.icons/material/power-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-on.svg b/docs/material/.icons/material/power-on.svg new file mode 100644 index 000000000..f00cae2a1 --- /dev/null +++ b/docs/material/.icons/material/power-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-plug-off.svg b/docs/material/.icons/material/power-plug-off.svg new file mode 100644 index 000000000..e9b04cf14 --- /dev/null +++ b/docs/material/.icons/material/power-plug-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-plug.svg b/docs/material/.icons/material/power-plug.svg new file mode 100644 index 000000000..0e7d00c84 --- /dev/null +++ b/docs/material/.icons/material/power-plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-settings.svg b/docs/material/.icons/material/power-settings.svg new file mode 100644 index 000000000..59df973d7 --- /dev/null +++ b/docs/material/.icons/material/power-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-sleep.svg b/docs/material/.icons/material/power-sleep.svg new file mode 100644 index 000000000..379c70d70 --- /dev/null +++ b/docs/material/.icons/material/power-sleep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket-au.svg b/docs/material/.icons/material/power-socket-au.svg new file mode 100644 index 000000000..d87755c4d --- /dev/null +++ b/docs/material/.icons/material/power-socket-au.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket-de.svg b/docs/material/.icons/material/power-socket-de.svg new file mode 100644 index 000000000..703bb4ba1 --- /dev/null +++ b/docs/material/.icons/material/power-socket-de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket-eu.svg b/docs/material/.icons/material/power-socket-eu.svg new file mode 100644 index 000000000..7167018df --- /dev/null +++ b/docs/material/.icons/material/power-socket-eu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket-fr.svg b/docs/material/.icons/material/power-socket-fr.svg new file mode 100644 index 000000000..78f4b41a9 --- /dev/null +++ b/docs/material/.icons/material/power-socket-fr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket-jp.svg b/docs/material/.icons/material/power-socket-jp.svg new file mode 100644 index 000000000..cd88ac223 --- /dev/null +++ b/docs/material/.icons/material/power-socket-jp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket-uk.svg b/docs/material/.icons/material/power-socket-uk.svg new file mode 100644 index 000000000..f695d65e6 --- /dev/null +++ b/docs/material/.icons/material/power-socket-uk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket-us.svg b/docs/material/.icons/material/power-socket-us.svg new file mode 100644 index 000000000..5294030a9 --- /dev/null +++ b/docs/material/.icons/material/power-socket-us.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-socket.svg b/docs/material/.icons/material/power-socket.svg new file mode 100644 index 000000000..22d1c2a8d --- /dev/null +++ b/docs/material/.icons/material/power-socket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power-standby.svg b/docs/material/.icons/material/power-standby.svg new file mode 100644 index 000000000..e7374e859 --- /dev/null +++ b/docs/material/.icons/material/power-standby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/power.svg b/docs/material/.icons/material/power.svg new file mode 100644 index 000000000..3b7fcbc8e --- /dev/null +++ b/docs/material/.icons/material/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/powershell.svg b/docs/material/.icons/material/powershell.svg new file mode 100644 index 000000000..6811a5e86 --- /dev/null +++ b/docs/material/.icons/material/powershell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/prescription.svg b/docs/material/.icons/material/prescription.svg new file mode 100644 index 000000000..86b2b242a --- /dev/null +++ b/docs/material/.icons/material/prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/presentation-play.svg b/docs/material/.icons/material/presentation-play.svg new file mode 100644 index 000000000..8283b1992 --- /dev/null +++ b/docs/material/.icons/material/presentation-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/presentation.svg b/docs/material/.icons/material/presentation.svg new file mode 100644 index 000000000..69c3b49e4 --- /dev/null +++ b/docs/material/.icons/material/presentation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-3d-nozzle-alert-outline.svg b/docs/material/.icons/material/printer-3d-nozzle-alert-outline.svg new file mode 100644 index 000000000..2e1d7c7f7 --- /dev/null +++ b/docs/material/.icons/material/printer-3d-nozzle-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-3d-nozzle-alert.svg b/docs/material/.icons/material/printer-3d-nozzle-alert.svg new file mode 100644 index 000000000..56d9d19e9 --- /dev/null +++ b/docs/material/.icons/material/printer-3d-nozzle-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-3d-nozzle-outline.svg b/docs/material/.icons/material/printer-3d-nozzle-outline.svg new file mode 100644 index 000000000..bfe8a8ab6 --- /dev/null +++ b/docs/material/.icons/material/printer-3d-nozzle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-3d-nozzle.svg b/docs/material/.icons/material/printer-3d-nozzle.svg new file mode 100644 index 000000000..a6419f150 --- /dev/null +++ b/docs/material/.icons/material/printer-3d-nozzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-3d.svg b/docs/material/.icons/material/printer-3d.svg new file mode 100644 index 000000000..a53b45a05 --- /dev/null +++ b/docs/material/.icons/material/printer-3d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-alert.svg b/docs/material/.icons/material/printer-alert.svg new file mode 100644 index 000000000..b60b5a88d --- /dev/null +++ b/docs/material/.icons/material/printer-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-check.svg b/docs/material/.icons/material/printer-check.svg new file mode 100644 index 000000000..3d554f0e5 --- /dev/null +++ b/docs/material/.icons/material/printer-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-off.svg b/docs/material/.icons/material/printer-off.svg new file mode 100644 index 000000000..541d6aff9 --- /dev/null +++ b/docs/material/.icons/material/printer-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-pos.svg b/docs/material/.icons/material/printer-pos.svg new file mode 100644 index 000000000..7740cdef9 --- /dev/null +++ b/docs/material/.icons/material/printer-pos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-settings.svg b/docs/material/.icons/material/printer-settings.svg new file mode 100644 index 000000000..9ebdc13c5 --- /dev/null +++ b/docs/material/.icons/material/printer-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer-wireless.svg b/docs/material/.icons/material/printer-wireless.svg new file mode 100644 index 000000000..3e50a860b --- /dev/null +++ b/docs/material/.icons/material/printer-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/printer.svg b/docs/material/.icons/material/printer.svg new file mode 100644 index 000000000..53440dc6b --- /dev/null +++ b/docs/material/.icons/material/printer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/priority-high.svg b/docs/material/.icons/material/priority-high.svg new file mode 100644 index 000000000..351d44022 --- /dev/null +++ b/docs/material/.icons/material/priority-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/priority-low.svg b/docs/material/.icons/material/priority-low.svg new file mode 100644 index 000000000..ce110bac6 --- /dev/null +++ b/docs/material/.icons/material/priority-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/professional-hexagon.svg b/docs/material/.icons/material/professional-hexagon.svg new file mode 100644 index 000000000..4f080df5d --- /dev/null +++ b/docs/material/.icons/material/professional-hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/progress-alert.svg b/docs/material/.icons/material/progress-alert.svg new file mode 100644 index 000000000..2186e9eae --- /dev/null +++ b/docs/material/.icons/material/progress-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/progress-check.svg b/docs/material/.icons/material/progress-check.svg new file mode 100644 index 000000000..8803e44fc --- /dev/null +++ b/docs/material/.icons/material/progress-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/progress-clock.svg b/docs/material/.icons/material/progress-clock.svg new file mode 100644 index 000000000..a9ab773eb --- /dev/null +++ b/docs/material/.icons/material/progress-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/progress-close.svg b/docs/material/.icons/material/progress-close.svg new file mode 100644 index 000000000..5494e4f73 --- /dev/null +++ b/docs/material/.icons/material/progress-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/progress-download.svg b/docs/material/.icons/material/progress-download.svg new file mode 100644 index 000000000..9776b02fb --- /dev/null +++ b/docs/material/.icons/material/progress-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/progress-upload.svg b/docs/material/.icons/material/progress-upload.svg new file mode 100644 index 000000000..81471d6f4 --- /dev/null +++ b/docs/material/.icons/material/progress-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/progress-wrench.svg b/docs/material/.icons/material/progress-wrench.svg new file mode 100644 index 000000000..d11e0e3ac --- /dev/null +++ b/docs/material/.icons/material/progress-wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/projector-screen.svg b/docs/material/.icons/material/projector-screen.svg new file mode 100644 index 000000000..e2389c866 --- /dev/null +++ b/docs/material/.icons/material/projector-screen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/projector.svg b/docs/material/.icons/material/projector.svg new file mode 100644 index 000000000..ad315ce46 --- /dev/null +++ b/docs/material/.icons/material/projector.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/propane-tank-outline.svg b/docs/material/.icons/material/propane-tank-outline.svg new file mode 100644 index 000000000..bb6b15a2e --- /dev/null +++ b/docs/material/.icons/material/propane-tank-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/propane-tank.svg b/docs/material/.icons/material/propane-tank.svg new file mode 100644 index 000000000..f45ee7717 --- /dev/null +++ b/docs/material/.icons/material/propane-tank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/protocol.svg b/docs/material/.icons/material/protocol.svg new file mode 100644 index 000000000..df48eb5f0 --- /dev/null +++ b/docs/material/.icons/material/protocol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/publish.svg b/docs/material/.icons/material/publish.svg new file mode 100644 index 000000000..e61c7e51a --- /dev/null +++ b/docs/material/.icons/material/publish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pulse.svg b/docs/material/.icons/material/pulse.svg new file mode 100644 index 000000000..944227956 --- /dev/null +++ b/docs/material/.icons/material/pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pump.svg b/docs/material/.icons/material/pump.svg new file mode 100644 index 000000000..a80e5496a --- /dev/null +++ b/docs/material/.icons/material/pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/pumpkin.svg b/docs/material/.icons/material/pumpkin.svg new file mode 100644 index 000000000..f39cf171d --- /dev/null +++ b/docs/material/.icons/material/pumpkin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/purse-outline.svg b/docs/material/.icons/material/purse-outline.svg new file mode 100644 index 000000000..e51bf7499 --- /dev/null +++ b/docs/material/.icons/material/purse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/purse.svg b/docs/material/.icons/material/purse.svg new file mode 100644 index 000000000..27f5678bc --- /dev/null +++ b/docs/material/.icons/material/purse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/puzzle-outline.svg b/docs/material/.icons/material/puzzle-outline.svg new file mode 100644 index 000000000..5b468ff37 --- /dev/null +++ b/docs/material/.icons/material/puzzle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/puzzle.svg b/docs/material/.icons/material/puzzle.svg new file mode 100644 index 000000000..82dc9efcd --- /dev/null +++ b/docs/material/.icons/material/puzzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qi.svg b/docs/material/.icons/material/qi.svg new file mode 100644 index 000000000..c9d5e32ae --- /dev/null +++ b/docs/material/.icons/material/qi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qqchat.svg b/docs/material/.icons/material/qqchat.svg new file mode 100644 index 000000000..0a74fec06 --- /dev/null +++ b/docs/material/.icons/material/qqchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qrcode-edit.svg b/docs/material/.icons/material/qrcode-edit.svg new file mode 100644 index 000000000..c8b9ea5fb --- /dev/null +++ b/docs/material/.icons/material/qrcode-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qrcode-minus.svg b/docs/material/.icons/material/qrcode-minus.svg new file mode 100644 index 000000000..d7e37c8bd --- /dev/null +++ b/docs/material/.icons/material/qrcode-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qrcode-plus.svg b/docs/material/.icons/material/qrcode-plus.svg new file mode 100644 index 000000000..7e163fb8d --- /dev/null +++ b/docs/material/.icons/material/qrcode-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qrcode-remove.svg b/docs/material/.icons/material/qrcode-remove.svg new file mode 100644 index 000000000..17a652496 --- /dev/null +++ b/docs/material/.icons/material/qrcode-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qrcode-scan.svg b/docs/material/.icons/material/qrcode-scan.svg new file mode 100644 index 000000000..e00dbfcc4 --- /dev/null +++ b/docs/material/.icons/material/qrcode-scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/qrcode.svg b/docs/material/.icons/material/qrcode.svg new file mode 100644 index 000000000..b2eb371d4 --- /dev/null +++ b/docs/material/.icons/material/qrcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/quadcopter.svg b/docs/material/.icons/material/quadcopter.svg new file mode 100644 index 000000000..e7743dfb8 --- /dev/null +++ b/docs/material/.icons/material/quadcopter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/quality-high.svg b/docs/material/.icons/material/quality-high.svg new file mode 100644 index 000000000..44ad06901 --- /dev/null +++ b/docs/material/.icons/material/quality-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/quality-low.svg b/docs/material/.icons/material/quality-low.svg new file mode 100644 index 000000000..76aa7f2ed --- /dev/null +++ b/docs/material/.icons/material/quality-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/quality-medium.svg b/docs/material/.icons/material/quality-medium.svg new file mode 100644 index 000000000..8da187be5 --- /dev/null +++ b/docs/material/.icons/material/quality-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/quora.svg b/docs/material/.icons/material/quora.svg new file mode 100644 index 000000000..ac9707b08 --- /dev/null +++ b/docs/material/.icons/material/quora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rabbit.svg b/docs/material/.icons/material/rabbit.svg new file mode 100644 index 000000000..7b86538e6 --- /dev/null +++ b/docs/material/.icons/material/rabbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/racing-helmet.svg b/docs/material/.icons/material/racing-helmet.svg new file mode 100644 index 000000000..b52e75a34 --- /dev/null +++ b/docs/material/.icons/material/racing-helmet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/racquetball.svg b/docs/material/.icons/material/racquetball.svg new file mode 100644 index 000000000..60b863fb5 --- /dev/null +++ b/docs/material/.icons/material/racquetball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radar.svg b/docs/material/.icons/material/radar.svg new file mode 100644 index 000000000..50118176f --- /dev/null +++ b/docs/material/.icons/material/radar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radiator-disabled.svg b/docs/material/.icons/material/radiator-disabled.svg new file mode 100644 index 000000000..43ee507f0 --- /dev/null +++ b/docs/material/.icons/material/radiator-disabled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radiator-off.svg b/docs/material/.icons/material/radiator-off.svg new file mode 100644 index 000000000..8ef66f033 --- /dev/null +++ b/docs/material/.icons/material/radiator-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radiator.svg b/docs/material/.icons/material/radiator.svg new file mode 100644 index 000000000..933924e2c --- /dev/null +++ b/docs/material/.icons/material/radiator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radio-am.svg b/docs/material/.icons/material/radio-am.svg new file mode 100644 index 000000000..e02eb1495 --- /dev/null +++ b/docs/material/.icons/material/radio-am.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radio-fm.svg b/docs/material/.icons/material/radio-fm.svg new file mode 100644 index 000000000..ae3577b04 --- /dev/null +++ b/docs/material/.icons/material/radio-fm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radio-handheld.svg b/docs/material/.icons/material/radio-handheld.svg new file mode 100644 index 000000000..49210e8e6 --- /dev/null +++ b/docs/material/.icons/material/radio-handheld.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radio-off.svg b/docs/material/.icons/material/radio-off.svg new file mode 100644 index 000000000..33f3eae09 --- /dev/null +++ b/docs/material/.icons/material/radio-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radio-tower.svg b/docs/material/.icons/material/radio-tower.svg new file mode 100644 index 000000000..e242ab3ee --- /dev/null +++ b/docs/material/.icons/material/radio-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radio.svg b/docs/material/.icons/material/radio.svg new file mode 100644 index 000000000..4df143fdb --- /dev/null +++ b/docs/material/.icons/material/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radioactive-off.svg b/docs/material/.icons/material/radioactive-off.svg new file mode 100644 index 000000000..6a8ab369c --- /dev/null +++ b/docs/material/.icons/material/radioactive-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radioactive.svg b/docs/material/.icons/material/radioactive.svg new file mode 100644 index 000000000..5b2b74e3b --- /dev/null +++ b/docs/material/.icons/material/radioactive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radiobox-blank.svg b/docs/material/.icons/material/radiobox-blank.svg new file mode 100644 index 000000000..e986852fe --- /dev/null +++ b/docs/material/.icons/material/radiobox-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radiobox-marked.svg b/docs/material/.icons/material/radiobox-marked.svg new file mode 100644 index 000000000..fd1f3c5e3 --- /dev/null +++ b/docs/material/.icons/material/radiobox-marked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radius-outline.svg b/docs/material/.icons/material/radius-outline.svg new file mode 100644 index 000000000..c979f47f8 --- /dev/null +++ b/docs/material/.icons/material/radius-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/radius.svg b/docs/material/.icons/material/radius.svg new file mode 100644 index 000000000..367f5b881 --- /dev/null +++ b/docs/material/.icons/material/radius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/railroad-light.svg b/docs/material/.icons/material/railroad-light.svg new file mode 100644 index 000000000..e12612fae --- /dev/null +++ b/docs/material/.icons/material/railroad-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/raspberry-pi.svg b/docs/material/.icons/material/raspberry-pi.svg new file mode 100644 index 000000000..52d6e73f0 --- /dev/null +++ b/docs/material/.icons/material/raspberry-pi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ray-end-arrow.svg b/docs/material/.icons/material/ray-end-arrow.svg new file mode 100644 index 000000000..42c517734 --- /dev/null +++ b/docs/material/.icons/material/ray-end-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ray-end.svg b/docs/material/.icons/material/ray-end.svg new file mode 100644 index 000000000..cd61a22e2 --- /dev/null +++ b/docs/material/.icons/material/ray-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ray-start-arrow.svg b/docs/material/.icons/material/ray-start-arrow.svg new file mode 100644 index 000000000..abc5dfd2c --- /dev/null +++ b/docs/material/.icons/material/ray-start-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ray-start-end.svg b/docs/material/.icons/material/ray-start-end.svg new file mode 100644 index 000000000..dc7dd58d3 --- /dev/null +++ b/docs/material/.icons/material/ray-start-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ray-start.svg b/docs/material/.icons/material/ray-start.svg new file mode 100644 index 000000000..230b4c976 --- /dev/null +++ b/docs/material/.icons/material/ray-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ray-vertex.svg b/docs/material/.icons/material/ray-vertex.svg new file mode 100644 index 000000000..31a49aa69 --- /dev/null +++ b/docs/material/.icons/material/ray-vertex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/react.svg b/docs/material/.icons/material/react.svg new file mode 100644 index 000000000..7ab185708 --- /dev/null +++ b/docs/material/.icons/material/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/read.svg b/docs/material/.icons/material/read.svg new file mode 100644 index 000000000..315b97d26 --- /dev/null +++ b/docs/material/.icons/material/read.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/receipt.svg b/docs/material/.icons/material/receipt.svg new file mode 100644 index 000000000..7fddf9229 --- /dev/null +++ b/docs/material/.icons/material/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/record-circle-outline.svg b/docs/material/.icons/material/record-circle-outline.svg new file mode 100644 index 000000000..dd632a6f2 --- /dev/null +++ b/docs/material/.icons/material/record-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/record-circle.svg b/docs/material/.icons/material/record-circle.svg new file mode 100644 index 000000000..7942a5a7a --- /dev/null +++ b/docs/material/.icons/material/record-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/record-player.svg b/docs/material/.icons/material/record-player.svg new file mode 100644 index 000000000..7041f9cf7 --- /dev/null +++ b/docs/material/.icons/material/record-player.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/record-rec.svg b/docs/material/.icons/material/record-rec.svg new file mode 100644 index 000000000..106f1ea78 --- /dev/null +++ b/docs/material/.icons/material/record-rec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/record.svg b/docs/material/.icons/material/record.svg new file mode 100644 index 000000000..d9b4ab137 --- /dev/null +++ b/docs/material/.icons/material/record.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rectangle-outline.svg b/docs/material/.icons/material/rectangle-outline.svg new file mode 100644 index 000000000..3f6119c08 --- /dev/null +++ b/docs/material/.icons/material/rectangle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rectangle.svg b/docs/material/.icons/material/rectangle.svg new file mode 100644 index 000000000..449383d45 --- /dev/null +++ b/docs/material/.icons/material/rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/recycle-variant.svg b/docs/material/.icons/material/recycle-variant.svg new file mode 100644 index 000000000..2a98f1745 --- /dev/null +++ b/docs/material/.icons/material/recycle-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/recycle.svg b/docs/material/.icons/material/recycle.svg new file mode 100644 index 000000000..93b2859d3 --- /dev/null +++ b/docs/material/.icons/material/recycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reddit.svg b/docs/material/.icons/material/reddit.svg new file mode 100644 index 000000000..b72698883 --- /dev/null +++ b/docs/material/.icons/material/reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/redhat.svg b/docs/material/.icons/material/redhat.svg new file mode 100644 index 000000000..254c1bb72 --- /dev/null +++ b/docs/material/.icons/material/redhat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/redo-variant.svg b/docs/material/.icons/material/redo-variant.svg new file mode 100644 index 000000000..f48d2996e --- /dev/null +++ b/docs/material/.icons/material/redo-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/redo.svg b/docs/material/.icons/material/redo.svg new file mode 100644 index 000000000..142bf279b --- /dev/null +++ b/docs/material/.icons/material/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reflect-horizontal.svg b/docs/material/.icons/material/reflect-horizontal.svg new file mode 100644 index 000000000..f113db6c3 --- /dev/null +++ b/docs/material/.icons/material/reflect-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reflect-vertical.svg b/docs/material/.icons/material/reflect-vertical.svg new file mode 100644 index 000000000..3720bdd3b --- /dev/null +++ b/docs/material/.icons/material/reflect-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/refresh-circle.svg b/docs/material/.icons/material/refresh-circle.svg new file mode 100644 index 000000000..f3687f4e8 --- /dev/null +++ b/docs/material/.icons/material/refresh-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/refresh.svg b/docs/material/.icons/material/refresh.svg new file mode 100644 index 000000000..724c870fd --- /dev/null +++ b/docs/material/.icons/material/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/regex.svg b/docs/material/.icons/material/regex.svg new file mode 100644 index 000000000..e0ebbafca --- /dev/null +++ b/docs/material/.icons/material/regex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/registered-trademark.svg b/docs/material/.icons/material/registered-trademark.svg new file mode 100644 index 000000000..63a7688d0 --- /dev/null +++ b/docs/material/.icons/material/registered-trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/relative-scale.svg b/docs/material/.icons/material/relative-scale.svg new file mode 100644 index 000000000..20dcdbbac --- /dev/null +++ b/docs/material/.icons/material/relative-scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reload-alert.svg b/docs/material/.icons/material/reload-alert.svg new file mode 100644 index 000000000..e8a48f738 --- /dev/null +++ b/docs/material/.icons/material/reload-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reload.svg b/docs/material/.icons/material/reload.svg new file mode 100644 index 000000000..dcdaaf531 --- /dev/null +++ b/docs/material/.icons/material/reload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reminder.svg b/docs/material/.icons/material/reminder.svg new file mode 100644 index 000000000..f2e19af04 --- /dev/null +++ b/docs/material/.icons/material/reminder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/remote-desktop.svg b/docs/material/.icons/material/remote-desktop.svg new file mode 100644 index 000000000..1c7458f38 --- /dev/null +++ b/docs/material/.icons/material/remote-desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/remote-off.svg b/docs/material/.icons/material/remote-off.svg new file mode 100644 index 000000000..6a2ef597e --- /dev/null +++ b/docs/material/.icons/material/remote-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/remote-tv-off.svg b/docs/material/.icons/material/remote-tv-off.svg new file mode 100644 index 000000000..0371a6273 --- /dev/null +++ b/docs/material/.icons/material/remote-tv-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/remote-tv.svg b/docs/material/.icons/material/remote-tv.svg new file mode 100644 index 000000000..f2db6d416 --- /dev/null +++ b/docs/material/.icons/material/remote-tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/remote.svg b/docs/material/.icons/material/remote.svg new file mode 100644 index 000000000..c7e94e62d --- /dev/null +++ b/docs/material/.icons/material/remote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rename-box.svg b/docs/material/.icons/material/rename-box.svg new file mode 100644 index 000000000..213ac2deb --- /dev/null +++ b/docs/material/.icons/material/rename-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reorder-horizontal.svg b/docs/material/.icons/material/reorder-horizontal.svg new file mode 100644 index 000000000..20c571c47 --- /dev/null +++ b/docs/material/.icons/material/reorder-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reorder-vertical.svg b/docs/material/.icons/material/reorder-vertical.svg new file mode 100644 index 000000000..2809fa69d --- /dev/null +++ b/docs/material/.icons/material/reorder-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/repeat-off.svg b/docs/material/.icons/material/repeat-off.svg new file mode 100644 index 000000000..34fc97593 --- /dev/null +++ b/docs/material/.icons/material/repeat-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/repeat-once.svg b/docs/material/.icons/material/repeat-once.svg new file mode 100644 index 000000000..17bb9f5f5 --- /dev/null +++ b/docs/material/.icons/material/repeat-once.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/repeat.svg b/docs/material/.icons/material/repeat.svg new file mode 100644 index 000000000..1e08e98aa --- /dev/null +++ b/docs/material/.icons/material/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/replay.svg b/docs/material/.icons/material/replay.svg new file mode 100644 index 000000000..041c1967e --- /dev/null +++ b/docs/material/.icons/material/replay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reply-all-outline.svg b/docs/material/.icons/material/reply-all-outline.svg new file mode 100644 index 000000000..3128415ed --- /dev/null +++ b/docs/material/.icons/material/reply-all-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reply-all.svg b/docs/material/.icons/material/reply-all.svg new file mode 100644 index 000000000..5da4611c3 --- /dev/null +++ b/docs/material/.icons/material/reply-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reply-circle.svg b/docs/material/.icons/material/reply-circle.svg new file mode 100644 index 000000000..4c8354c47 --- /dev/null +++ b/docs/material/.icons/material/reply-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reply-outline.svg b/docs/material/.icons/material/reply-outline.svg new file mode 100644 index 000000000..7778b14a3 --- /dev/null +++ b/docs/material/.icons/material/reply-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reply.svg b/docs/material/.icons/material/reply.svg new file mode 100644 index 000000000..52a1a736d --- /dev/null +++ b/docs/material/.icons/material/reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/reproduction.svg b/docs/material/.icons/material/reproduction.svg new file mode 100644 index 000000000..275185162 --- /dev/null +++ b/docs/material/.icons/material/reproduction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/resistor-nodes.svg b/docs/material/.icons/material/resistor-nodes.svg new file mode 100644 index 000000000..61eed9016 --- /dev/null +++ b/docs/material/.icons/material/resistor-nodes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/resistor.svg b/docs/material/.icons/material/resistor.svg new file mode 100644 index 000000000..a4de02c8d --- /dev/null +++ b/docs/material/.icons/material/resistor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/resize-bottom-right.svg b/docs/material/.icons/material/resize-bottom-right.svg new file mode 100644 index 000000000..6bfd46765 --- /dev/null +++ b/docs/material/.icons/material/resize-bottom-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/resize.svg b/docs/material/.icons/material/resize.svg new file mode 100644 index 000000000..2f567ad39 --- /dev/null +++ b/docs/material/.icons/material/resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/responsive.svg b/docs/material/.icons/material/responsive.svg new file mode 100644 index 000000000..b7b054916 --- /dev/null +++ b/docs/material/.icons/material/responsive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/restart-alert.svg b/docs/material/.icons/material/restart-alert.svg new file mode 100644 index 000000000..705bd717f --- /dev/null +++ b/docs/material/.icons/material/restart-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/restart-off.svg b/docs/material/.icons/material/restart-off.svg new file mode 100644 index 000000000..80729be69 --- /dev/null +++ b/docs/material/.icons/material/restart-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/restart.svg b/docs/material/.icons/material/restart.svg new file mode 100644 index 000000000..d2e4f9e7b --- /dev/null +++ b/docs/material/.icons/material/restart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/restore-alert.svg b/docs/material/.icons/material/restore-alert.svg new file mode 100644 index 000000000..71166568c --- /dev/null +++ b/docs/material/.icons/material/restore-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/restore.svg b/docs/material/.icons/material/restore.svg new file mode 100644 index 000000000..a80b3089e --- /dev/null +++ b/docs/material/.icons/material/restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rewind-10.svg b/docs/material/.icons/material/rewind-10.svg new file mode 100644 index 000000000..190d514c6 --- /dev/null +++ b/docs/material/.icons/material/rewind-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rewind-30.svg b/docs/material/.icons/material/rewind-30.svg new file mode 100644 index 000000000..527e47e43 --- /dev/null +++ b/docs/material/.icons/material/rewind-30.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rewind-5.svg b/docs/material/.icons/material/rewind-5.svg new file mode 100644 index 000000000..ea042c9c2 --- /dev/null +++ b/docs/material/.icons/material/rewind-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rewind-outline.svg b/docs/material/.icons/material/rewind-outline.svg new file mode 100644 index 000000000..a14ddf25d --- /dev/null +++ b/docs/material/.icons/material/rewind-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rewind.svg b/docs/material/.icons/material/rewind.svg new file mode 100644 index 000000000..e4523766e --- /dev/null +++ b/docs/material/.icons/material/rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rhombus-medium.svg b/docs/material/.icons/material/rhombus-medium.svg new file mode 100644 index 000000000..ffc3a0ba3 --- /dev/null +++ b/docs/material/.icons/material/rhombus-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rhombus-outline.svg b/docs/material/.icons/material/rhombus-outline.svg new file mode 100644 index 000000000..f83d998c9 --- /dev/null +++ b/docs/material/.icons/material/rhombus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rhombus-split.svg b/docs/material/.icons/material/rhombus-split.svg new file mode 100644 index 000000000..818ee7419 --- /dev/null +++ b/docs/material/.icons/material/rhombus-split.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rhombus.svg b/docs/material/.icons/material/rhombus.svg new file mode 100644 index 000000000..a6f2b5f7f --- /dev/null +++ b/docs/material/.icons/material/rhombus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ribbon.svg b/docs/material/.icons/material/ribbon.svg new file mode 100644 index 000000000..26ea9a084 --- /dev/null +++ b/docs/material/.icons/material/ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rice.svg b/docs/material/.icons/material/rice.svg new file mode 100644 index 000000000..67c3c07f1 --- /dev/null +++ b/docs/material/.icons/material/rice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ring.svg b/docs/material/.icons/material/ring.svg new file mode 100644 index 000000000..089ca1ec3 --- /dev/null +++ b/docs/material/.icons/material/ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rivet.svg b/docs/material/.icons/material/rivet.svg new file mode 100644 index 000000000..38b62312b --- /dev/null +++ b/docs/material/.icons/material/rivet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/road-variant.svg b/docs/material/.icons/material/road-variant.svg new file mode 100644 index 000000000..b4592991c --- /dev/null +++ b/docs/material/.icons/material/road-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/road.svg b/docs/material/.icons/material/road.svg new file mode 100644 index 000000000..5f203919d --- /dev/null +++ b/docs/material/.icons/material/road.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/robber.svg b/docs/material/.icons/material/robber.svg new file mode 100644 index 000000000..6dbe2875c --- /dev/null +++ b/docs/material/.icons/material/robber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/robot-industrial.svg b/docs/material/.icons/material/robot-industrial.svg new file mode 100644 index 000000000..7e80ff496 --- /dev/null +++ b/docs/material/.icons/material/robot-industrial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/robot-mower-outline.svg b/docs/material/.icons/material/robot-mower-outline.svg new file mode 100644 index 000000000..f0eedc8a4 --- /dev/null +++ b/docs/material/.icons/material/robot-mower-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/robot-mower.svg b/docs/material/.icons/material/robot-mower.svg new file mode 100644 index 000000000..45673894f --- /dev/null +++ b/docs/material/.icons/material/robot-mower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/robot-vacuum-variant.svg b/docs/material/.icons/material/robot-vacuum-variant.svg new file mode 100644 index 000000000..cd65f1de4 --- /dev/null +++ b/docs/material/.icons/material/robot-vacuum-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/robot-vacuum.svg b/docs/material/.icons/material/robot-vacuum.svg new file mode 100644 index 000000000..fb4ad134b --- /dev/null +++ b/docs/material/.icons/material/robot-vacuum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/robot.svg b/docs/material/.icons/material/robot.svg new file mode 100644 index 000000000..178d173b6 --- /dev/null +++ b/docs/material/.icons/material/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rocket-outline.svg b/docs/material/.icons/material/rocket-outline.svg new file mode 100644 index 000000000..b07435b8c --- /dev/null +++ b/docs/material/.icons/material/rocket-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rocket.svg b/docs/material/.icons/material/rocket.svg new file mode 100644 index 000000000..c556436c1 --- /dev/null +++ b/docs/material/.icons/material/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rodent.svg b/docs/material/.icons/material/rodent.svg new file mode 100644 index 000000000..54766a894 --- /dev/null +++ b/docs/material/.icons/material/rodent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roller-skate-off.svg b/docs/material/.icons/material/roller-skate-off.svg new file mode 100644 index 000000000..940eb54e3 --- /dev/null +++ b/docs/material/.icons/material/roller-skate-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roller-skate.svg b/docs/material/.icons/material/roller-skate.svg new file mode 100644 index 000000000..b8ac5a018 --- /dev/null +++ b/docs/material/.icons/material/roller-skate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rollerblade-off.svg b/docs/material/.icons/material/rollerblade-off.svg new file mode 100644 index 000000000..c78107732 --- /dev/null +++ b/docs/material/.icons/material/rollerblade-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rollerblade.svg b/docs/material/.icons/material/rollerblade.svg new file mode 100644 index 000000000..7777f4903 --- /dev/null +++ b/docs/material/.icons/material/rollerblade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rollupjs.svg b/docs/material/.icons/material/rollupjs.svg new file mode 100644 index 000000000..cec8f6b19 --- /dev/null +++ b/docs/material/.icons/material/rollupjs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-1.svg b/docs/material/.icons/material/roman-numeral-1.svg new file mode 100644 index 000000000..a02ab5451 --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-10.svg b/docs/material/.icons/material/roman-numeral-10.svg new file mode 100644 index 000000000..4b736b5b3 --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-2.svg b/docs/material/.icons/material/roman-numeral-2.svg new file mode 100644 index 000000000..01d170ded --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-3.svg b/docs/material/.icons/material/roman-numeral-3.svg new file mode 100644 index 000000000..ca65c84bf --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-4.svg b/docs/material/.icons/material/roman-numeral-4.svg new file mode 100644 index 000000000..dfd5de430 --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-5.svg b/docs/material/.icons/material/roman-numeral-5.svg new file mode 100644 index 000000000..e3ca9da33 --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-6.svg b/docs/material/.icons/material/roman-numeral-6.svg new file mode 100644 index 000000000..d5d8043d7 --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-7.svg b/docs/material/.icons/material/roman-numeral-7.svg new file mode 100644 index 000000000..c8c3159da --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-8.svg b/docs/material/.icons/material/roman-numeral-8.svg new file mode 100644 index 000000000..1052bd168 --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/roman-numeral-9.svg b/docs/material/.icons/material/roman-numeral-9.svg new file mode 100644 index 000000000..2e9e813cd --- /dev/null +++ b/docs/material/.icons/material/roman-numeral-9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/room-service-outline.svg b/docs/material/.icons/material/room-service-outline.svg new file mode 100644 index 000000000..969cae62f --- /dev/null +++ b/docs/material/.icons/material/room-service-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/room-service.svg b/docs/material/.icons/material/room-service.svg new file mode 100644 index 000000000..eded9e32f --- /dev/null +++ b/docs/material/.icons/material/room-service.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rotate-3d-variant.svg b/docs/material/.icons/material/rotate-3d-variant.svg new file mode 100644 index 000000000..fe0e1e256 --- /dev/null +++ b/docs/material/.icons/material/rotate-3d-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rotate-3d.svg b/docs/material/.icons/material/rotate-3d.svg new file mode 100644 index 000000000..673935e19 --- /dev/null +++ b/docs/material/.icons/material/rotate-3d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rotate-left-variant.svg b/docs/material/.icons/material/rotate-left-variant.svg new file mode 100644 index 000000000..c692e6c53 --- /dev/null +++ b/docs/material/.icons/material/rotate-left-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rotate-left.svg b/docs/material/.icons/material/rotate-left.svg new file mode 100644 index 000000000..626064cfd --- /dev/null +++ b/docs/material/.icons/material/rotate-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rotate-orbit.svg b/docs/material/.icons/material/rotate-orbit.svg new file mode 100644 index 000000000..441657048 --- /dev/null +++ b/docs/material/.icons/material/rotate-orbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rotate-right-variant.svg b/docs/material/.icons/material/rotate-right-variant.svg new file mode 100644 index 000000000..f6c8d1fb0 --- /dev/null +++ b/docs/material/.icons/material/rotate-right-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rotate-right.svg b/docs/material/.icons/material/rotate-right.svg new file mode 100644 index 000000000..07087c068 --- /dev/null +++ b/docs/material/.icons/material/rotate-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rounded-corner.svg b/docs/material/.icons/material/rounded-corner.svg new file mode 100644 index 000000000..90fdbf742 --- /dev/null +++ b/docs/material/.icons/material/rounded-corner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/router-network.svg b/docs/material/.icons/material/router-network.svg new file mode 100644 index 000000000..0dc27b2f9 --- /dev/null +++ b/docs/material/.icons/material/router-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/router-wireless-settings.svg b/docs/material/.icons/material/router-wireless-settings.svg new file mode 100644 index 000000000..a77df799e --- /dev/null +++ b/docs/material/.icons/material/router-wireless-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/router-wireless.svg b/docs/material/.icons/material/router-wireless.svg new file mode 100644 index 000000000..8027c296a --- /dev/null +++ b/docs/material/.icons/material/router-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/router.svg b/docs/material/.icons/material/router.svg new file mode 100644 index 000000000..c0f1837ba --- /dev/null +++ b/docs/material/.icons/material/router.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/routes-clock.svg b/docs/material/.icons/material/routes-clock.svg new file mode 100644 index 000000000..fc018f2c1 --- /dev/null +++ b/docs/material/.icons/material/routes-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/routes.svg b/docs/material/.icons/material/routes.svg new file mode 100644 index 000000000..6103d296c --- /dev/null +++ b/docs/material/.icons/material/routes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rowing.svg b/docs/material/.icons/material/rowing.svg new file mode 100644 index 000000000..4e0d1c0e3 --- /dev/null +++ b/docs/material/.icons/material/rowing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rss-box.svg b/docs/material/.icons/material/rss-box.svg new file mode 100644 index 000000000..23e494f58 --- /dev/null +++ b/docs/material/.icons/material/rss-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rss-off.svg b/docs/material/.icons/material/rss-off.svg new file mode 100644 index 000000000..4b18b8aa9 --- /dev/null +++ b/docs/material/.icons/material/rss-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rss.svg b/docs/material/.icons/material/rss.svg new file mode 100644 index 000000000..da08a8363 --- /dev/null +++ b/docs/material/.icons/material/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rugby.svg b/docs/material/.icons/material/rugby.svg new file mode 100644 index 000000000..4c63f39e2 --- /dev/null +++ b/docs/material/.icons/material/rugby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ruler-square-compass.svg b/docs/material/.icons/material/ruler-square-compass.svg new file mode 100644 index 000000000..bd884f2af --- /dev/null +++ b/docs/material/.icons/material/ruler-square-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ruler-square.svg b/docs/material/.icons/material/ruler-square.svg new file mode 100644 index 000000000..fa5b5a873 --- /dev/null +++ b/docs/material/.icons/material/ruler-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ruler.svg b/docs/material/.icons/material/ruler.svg new file mode 100644 index 000000000..b226ad514 --- /dev/null +++ b/docs/material/.icons/material/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/run-fast.svg b/docs/material/.icons/material/run-fast.svg new file mode 100644 index 000000000..666c04421 --- /dev/null +++ b/docs/material/.icons/material/run-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/run.svg b/docs/material/.icons/material/run.svg new file mode 100644 index 000000000..a6cc315a8 --- /dev/null +++ b/docs/material/.icons/material/run.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/rv-truck.svg b/docs/material/.icons/material/rv-truck.svg new file mode 100644 index 000000000..0b273c723 --- /dev/null +++ b/docs/material/.icons/material/rv-truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sack-percent.svg b/docs/material/.icons/material/sack-percent.svg new file mode 100644 index 000000000..7b89ddecf --- /dev/null +++ b/docs/material/.icons/material/sack-percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sack.svg b/docs/material/.icons/material/sack.svg new file mode 100644 index 000000000..9fa5ee01e --- /dev/null +++ b/docs/material/.icons/material/sack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/safe-square-outline.svg b/docs/material/.icons/material/safe-square-outline.svg new file mode 100644 index 000000000..0990a404a --- /dev/null +++ b/docs/material/.icons/material/safe-square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/safe-square.svg b/docs/material/.icons/material/safe-square.svg new file mode 100644 index 000000000..2b6ec405e --- /dev/null +++ b/docs/material/.icons/material/safe-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/safe.svg b/docs/material/.icons/material/safe.svg new file mode 100644 index 000000000..cfa0aa52a --- /dev/null +++ b/docs/material/.icons/material/safe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/safety-goggles.svg b/docs/material/.icons/material/safety-goggles.svg new file mode 100644 index 000000000..e4c90c3a7 --- /dev/null +++ b/docs/material/.icons/material/safety-goggles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sail-boat.svg b/docs/material/.icons/material/sail-boat.svg new file mode 100644 index 000000000..f2b537ad3 --- /dev/null +++ b/docs/material/.icons/material/sail-boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sale.svg b/docs/material/.icons/material/sale.svg new file mode 100644 index 000000000..8ad874bdf --- /dev/null +++ b/docs/material/.icons/material/sale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/salesforce.svg b/docs/material/.icons/material/salesforce.svg new file mode 100644 index 000000000..457db66ad --- /dev/null +++ b/docs/material/.icons/material/salesforce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sass.svg b/docs/material/.icons/material/sass.svg new file mode 100644 index 000000000..310db18be --- /dev/null +++ b/docs/material/.icons/material/sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/satellite-uplink.svg b/docs/material/.icons/material/satellite-uplink.svg new file mode 100644 index 000000000..4f921068c --- /dev/null +++ b/docs/material/.icons/material/satellite-uplink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/satellite-variant.svg b/docs/material/.icons/material/satellite-variant.svg new file mode 100644 index 000000000..add9e4706 --- /dev/null +++ b/docs/material/.icons/material/satellite-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/satellite.svg b/docs/material/.icons/material/satellite.svg new file mode 100644 index 000000000..46fd5912c --- /dev/null +++ b/docs/material/.icons/material/satellite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sausage.svg b/docs/material/.icons/material/sausage.svg new file mode 100644 index 000000000..de1823097 --- /dev/null +++ b/docs/material/.icons/material/sausage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/saw-blade.svg b/docs/material/.icons/material/saw-blade.svg new file mode 100644 index 000000000..50aa9c6d5 --- /dev/null +++ b/docs/material/.icons/material/saw-blade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/saxophone.svg b/docs/material/.icons/material/saxophone.svg new file mode 100644 index 000000000..4a72e717a --- /dev/null +++ b/docs/material/.icons/material/saxophone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scale-balance.svg b/docs/material/.icons/material/scale-balance.svg new file mode 100644 index 000000000..445c6709c --- /dev/null +++ b/docs/material/.icons/material/scale-balance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scale-bathroom.svg b/docs/material/.icons/material/scale-bathroom.svg new file mode 100644 index 000000000..aa3f7d09c --- /dev/null +++ b/docs/material/.icons/material/scale-bathroom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scale-off.svg b/docs/material/.icons/material/scale-off.svg new file mode 100644 index 000000000..edbf35e7f --- /dev/null +++ b/docs/material/.icons/material/scale-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scale.svg b/docs/material/.icons/material/scale.svg new file mode 100644 index 000000000..b01fcf65b --- /dev/null +++ b/docs/material/.icons/material/scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scan-helper.svg b/docs/material/.icons/material/scan-helper.svg new file mode 100644 index 000000000..38c2b2ff7 --- /dev/null +++ b/docs/material/.icons/material/scan-helper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scanner-off.svg b/docs/material/.icons/material/scanner-off.svg new file mode 100644 index 000000000..0550bfa26 --- /dev/null +++ b/docs/material/.icons/material/scanner-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scanner.svg b/docs/material/.icons/material/scanner.svg new file mode 100644 index 000000000..97d8afc21 --- /dev/null +++ b/docs/material/.icons/material/scanner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scatter-plot-outline.svg b/docs/material/.icons/material/scatter-plot-outline.svg new file mode 100644 index 000000000..9af3d6027 --- /dev/null +++ b/docs/material/.icons/material/scatter-plot-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scatter-plot.svg b/docs/material/.icons/material/scatter-plot.svg new file mode 100644 index 000000000..e6b6054ac --- /dev/null +++ b/docs/material/.icons/material/scatter-plot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/school-outline.svg b/docs/material/.icons/material/school-outline.svg new file mode 100644 index 000000000..cb7932c31 --- /dev/null +++ b/docs/material/.icons/material/school-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/school.svg b/docs/material/.icons/material/school.svg new file mode 100644 index 000000000..3e2ccbf18 --- /dev/null +++ b/docs/material/.icons/material/school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scissors-cutting.svg b/docs/material/.icons/material/scissors-cutting.svg new file mode 100644 index 000000000..779d82749 --- /dev/null +++ b/docs/material/.icons/material/scissors-cutting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scooter.svg b/docs/material/.icons/material/scooter.svg new file mode 100644 index 000000000..3cc6b7689 --- /dev/null +++ b/docs/material/.icons/material/scooter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scoreboard-outline.svg b/docs/material/.icons/material/scoreboard-outline.svg new file mode 100644 index 000000000..c31cc2a3b --- /dev/null +++ b/docs/material/.icons/material/scoreboard-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/scoreboard.svg b/docs/material/.icons/material/scoreboard.svg new file mode 100644 index 000000000..7684ec9dc --- /dev/null +++ b/docs/material/.icons/material/scoreboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screen-rotation-lock.svg b/docs/material/.icons/material/screen-rotation-lock.svg new file mode 100644 index 000000000..6ed5ece1a --- /dev/null +++ b/docs/material/.icons/material/screen-rotation-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screen-rotation.svg b/docs/material/.icons/material/screen-rotation.svg new file mode 100644 index 000000000..04fc0e0f2 --- /dev/null +++ b/docs/material/.icons/material/screen-rotation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screw-flat-top.svg b/docs/material/.icons/material/screw-flat-top.svg new file mode 100644 index 000000000..795f4b5be --- /dev/null +++ b/docs/material/.icons/material/screw-flat-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screw-lag.svg b/docs/material/.icons/material/screw-lag.svg new file mode 100644 index 000000000..42ad930e1 --- /dev/null +++ b/docs/material/.icons/material/screw-lag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screw-machine-flat-top.svg b/docs/material/.icons/material/screw-machine-flat-top.svg new file mode 100644 index 000000000..1355ba0eb --- /dev/null +++ b/docs/material/.icons/material/screw-machine-flat-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screw-machine-round-top.svg b/docs/material/.icons/material/screw-machine-round-top.svg new file mode 100644 index 000000000..816f7f204 --- /dev/null +++ b/docs/material/.icons/material/screw-machine-round-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screw-round-top.svg b/docs/material/.icons/material/screw-round-top.svg new file mode 100644 index 000000000..9cd15d471 --- /dev/null +++ b/docs/material/.icons/material/screw-round-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/screwdriver.svg b/docs/material/.icons/material/screwdriver.svg new file mode 100644 index 000000000..b6216ceda --- /dev/null +++ b/docs/material/.icons/material/screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/script-outline.svg b/docs/material/.icons/material/script-outline.svg new file mode 100644 index 000000000..d5417bd98 --- /dev/null +++ b/docs/material/.icons/material/script-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/script-text-outline.svg b/docs/material/.icons/material/script-text-outline.svg new file mode 100644 index 000000000..aac6e4be0 --- /dev/null +++ b/docs/material/.icons/material/script-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/script-text.svg b/docs/material/.icons/material/script-text.svg new file mode 100644 index 000000000..02f7286ec --- /dev/null +++ b/docs/material/.icons/material/script-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/script.svg b/docs/material/.icons/material/script.svg new file mode 100644 index 000000000..2cab7ded2 --- /dev/null +++ b/docs/material/.icons/material/script.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sd.svg b/docs/material/.icons/material/sd.svg new file mode 100644 index 000000000..1c82ecc40 --- /dev/null +++ b/docs/material/.icons/material/sd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seal-variant.svg b/docs/material/.icons/material/seal-variant.svg new file mode 100644 index 000000000..269c38930 --- /dev/null +++ b/docs/material/.icons/material/seal-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seal.svg b/docs/material/.icons/material/seal.svg new file mode 100644 index 000000000..2b412e2b5 --- /dev/null +++ b/docs/material/.icons/material/seal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/search-web.svg b/docs/material/.icons/material/search-web.svg new file mode 100644 index 000000000..5b4d5e23a --- /dev/null +++ b/docs/material/.icons/material/search-web.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-flat-angled.svg b/docs/material/.icons/material/seat-flat-angled.svg new file mode 100644 index 000000000..295cca097 --- /dev/null +++ b/docs/material/.icons/material/seat-flat-angled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-flat.svg b/docs/material/.icons/material/seat-flat.svg new file mode 100644 index 000000000..87b564ee5 --- /dev/null +++ b/docs/material/.icons/material/seat-flat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-individual-suite.svg b/docs/material/.icons/material/seat-individual-suite.svg new file mode 100644 index 000000000..00b402659 --- /dev/null +++ b/docs/material/.icons/material/seat-individual-suite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-legroom-extra.svg b/docs/material/.icons/material/seat-legroom-extra.svg new file mode 100644 index 000000000..9b21c8858 --- /dev/null +++ b/docs/material/.icons/material/seat-legroom-extra.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-legroom-normal.svg b/docs/material/.icons/material/seat-legroom-normal.svg new file mode 100644 index 000000000..4c03e5230 --- /dev/null +++ b/docs/material/.icons/material/seat-legroom-normal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-legroom-reduced.svg b/docs/material/.icons/material/seat-legroom-reduced.svg new file mode 100644 index 000000000..2a56ce86d --- /dev/null +++ b/docs/material/.icons/material/seat-legroom-reduced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-outline.svg b/docs/material/.icons/material/seat-outline.svg new file mode 100644 index 000000000..61cf26cff --- /dev/null +++ b/docs/material/.icons/material/seat-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-passenger.svg b/docs/material/.icons/material/seat-passenger.svg new file mode 100644 index 000000000..cd8781ef7 --- /dev/null +++ b/docs/material/.icons/material/seat-passenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-recline-extra.svg b/docs/material/.icons/material/seat-recline-extra.svg new file mode 100644 index 000000000..ec596d0bc --- /dev/null +++ b/docs/material/.icons/material/seat-recline-extra.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat-recline-normal.svg b/docs/material/.icons/material/seat-recline-normal.svg new file mode 100644 index 000000000..4bc9b003a --- /dev/null +++ b/docs/material/.icons/material/seat-recline-normal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seat.svg b/docs/material/.icons/material/seat.svg new file mode 100644 index 000000000..91b74e58a --- /dev/null +++ b/docs/material/.icons/material/seat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seatbelt.svg b/docs/material/.icons/material/seatbelt.svg new file mode 100644 index 000000000..f68808b03 --- /dev/null +++ b/docs/material/.icons/material/seatbelt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/security-network.svg b/docs/material/.icons/material/security-network.svg new file mode 100644 index 000000000..86d071952 --- /dev/null +++ b/docs/material/.icons/material/security-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/security.svg b/docs/material/.icons/material/security.svg new file mode 100644 index 000000000..0ef170bdb --- /dev/null +++ b/docs/material/.icons/material/security.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seed-off-outline.svg b/docs/material/.icons/material/seed-off-outline.svg new file mode 100644 index 000000000..c4b064813 --- /dev/null +++ b/docs/material/.icons/material/seed-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seed-off.svg b/docs/material/.icons/material/seed-off.svg new file mode 100644 index 000000000..59b150f33 --- /dev/null +++ b/docs/material/.icons/material/seed-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seed-outline.svg b/docs/material/.icons/material/seed-outline.svg new file mode 100644 index 000000000..76ca26983 --- /dev/null +++ b/docs/material/.icons/material/seed-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/seed.svg b/docs/material/.icons/material/seed.svg new file mode 100644 index 000000000..004f4b648 --- /dev/null +++ b/docs/material/.icons/material/seed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/segment.svg b/docs/material/.icons/material/segment.svg new file mode 100644 index 000000000..d654143d8 --- /dev/null +++ b/docs/material/.icons/material/segment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-all.svg b/docs/material/.icons/material/select-all.svg new file mode 100644 index 000000000..48ce47b1a --- /dev/null +++ b/docs/material/.icons/material/select-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-color.svg b/docs/material/.icons/material/select-color.svg new file mode 100644 index 000000000..5be7ed6f5 --- /dev/null +++ b/docs/material/.icons/material/select-color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-compare.svg b/docs/material/.icons/material/select-compare.svg new file mode 100644 index 000000000..a7e3efe59 --- /dev/null +++ b/docs/material/.icons/material/select-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-drag.svg b/docs/material/.icons/material/select-drag.svg new file mode 100644 index 000000000..d80f9fff6 --- /dev/null +++ b/docs/material/.icons/material/select-drag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-group.svg b/docs/material/.icons/material/select-group.svg new file mode 100644 index 000000000..bfa1f5311 --- /dev/null +++ b/docs/material/.icons/material/select-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-inverse.svg b/docs/material/.icons/material/select-inverse.svg new file mode 100644 index 000000000..aeafbe9aa --- /dev/null +++ b/docs/material/.icons/material/select-inverse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-marker.svg b/docs/material/.icons/material/select-marker.svg new file mode 100644 index 000000000..4618acc6e --- /dev/null +++ b/docs/material/.icons/material/select-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-multiple-marker.svg b/docs/material/.icons/material/select-multiple-marker.svg new file mode 100644 index 000000000..2ce1971d5 --- /dev/null +++ b/docs/material/.icons/material/select-multiple-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-multiple.svg b/docs/material/.icons/material/select-multiple.svg new file mode 100644 index 000000000..fd24d039c --- /dev/null +++ b/docs/material/.icons/material/select-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-off.svg b/docs/material/.icons/material/select-off.svg new file mode 100644 index 000000000..29c1b6712 --- /dev/null +++ b/docs/material/.icons/material/select-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-place.svg b/docs/material/.icons/material/select-place.svg new file mode 100644 index 000000000..118302c12 --- /dev/null +++ b/docs/material/.icons/material/select-place.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select-search.svg b/docs/material/.icons/material/select-search.svg new file mode 100644 index 000000000..dc48e4e2e --- /dev/null +++ b/docs/material/.icons/material/select-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/select.svg b/docs/material/.icons/material/select.svg new file mode 100644 index 000000000..50090a759 --- /dev/null +++ b/docs/material/.icons/material/select.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-drag.svg b/docs/material/.icons/material/selection-drag.svg new file mode 100644 index 000000000..443b939ce --- /dev/null +++ b/docs/material/.icons/material/selection-drag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-ellipse-arrow-inside.svg b/docs/material/.icons/material/selection-ellipse-arrow-inside.svg new file mode 100644 index 000000000..705e1ca1f --- /dev/null +++ b/docs/material/.icons/material/selection-ellipse-arrow-inside.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-ellipse.svg b/docs/material/.icons/material/selection-ellipse.svg new file mode 100644 index 000000000..58279c6e6 --- /dev/null +++ b/docs/material/.icons/material/selection-ellipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-marker.svg b/docs/material/.icons/material/selection-marker.svg new file mode 100644 index 000000000..5a6d482cc --- /dev/null +++ b/docs/material/.icons/material/selection-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-multiple-marker.svg b/docs/material/.icons/material/selection-multiple-marker.svg new file mode 100644 index 000000000..c0071187d --- /dev/null +++ b/docs/material/.icons/material/selection-multiple-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-multiple.svg b/docs/material/.icons/material/selection-multiple.svg new file mode 100644 index 000000000..f121223a6 --- /dev/null +++ b/docs/material/.icons/material/selection-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-off.svg b/docs/material/.icons/material/selection-off.svg new file mode 100644 index 000000000..5ca350e22 --- /dev/null +++ b/docs/material/.icons/material/selection-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection-search.svg b/docs/material/.icons/material/selection-search.svg new file mode 100644 index 000000000..835da6141 --- /dev/null +++ b/docs/material/.icons/material/selection-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/selection.svg b/docs/material/.icons/material/selection.svg new file mode 100644 index 000000000..473cb3614 --- /dev/null +++ b/docs/material/.icons/material/selection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/semantic-web.svg b/docs/material/.icons/material/semantic-web.svg new file mode 100644 index 000000000..c12f70d2b --- /dev/null +++ b/docs/material/.icons/material/semantic-web.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-check-outline.svg b/docs/material/.icons/material/send-check-outline.svg new file mode 100644 index 000000000..0e2187e17 --- /dev/null +++ b/docs/material/.icons/material/send-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-check.svg b/docs/material/.icons/material/send-check.svg new file mode 100644 index 000000000..4e871c97d --- /dev/null +++ b/docs/material/.icons/material/send-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-circle-outline.svg b/docs/material/.icons/material/send-circle-outline.svg new file mode 100644 index 000000000..d5494eb1a --- /dev/null +++ b/docs/material/.icons/material/send-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-circle.svg b/docs/material/.icons/material/send-circle.svg new file mode 100644 index 000000000..2cca921b0 --- /dev/null +++ b/docs/material/.icons/material/send-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-clock-outline.svg b/docs/material/.icons/material/send-clock-outline.svg new file mode 100644 index 000000000..50d5cd559 --- /dev/null +++ b/docs/material/.icons/material/send-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-clock.svg b/docs/material/.icons/material/send-clock.svg new file mode 100644 index 000000000..842b49c31 --- /dev/null +++ b/docs/material/.icons/material/send-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-lock-outline.svg b/docs/material/.icons/material/send-lock-outline.svg new file mode 100644 index 000000000..65d2c0d3b --- /dev/null +++ b/docs/material/.icons/material/send-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-lock.svg b/docs/material/.icons/material/send-lock.svg new file mode 100644 index 000000000..4974cdab5 --- /dev/null +++ b/docs/material/.icons/material/send-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send-outline.svg b/docs/material/.icons/material/send-outline.svg new file mode 100644 index 000000000..3ba9b3480 --- /dev/null +++ b/docs/material/.icons/material/send-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/send.svg b/docs/material/.icons/material/send.svg new file mode 100644 index 000000000..91046247a --- /dev/null +++ b/docs/material/.icons/material/send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/serial-port.svg b/docs/material/.icons/material/serial-port.svg new file mode 100644 index 000000000..749e9a8ae --- /dev/null +++ b/docs/material/.icons/material/serial-port.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server-minus.svg b/docs/material/.icons/material/server-minus.svg new file mode 100644 index 000000000..bf5551ffd --- /dev/null +++ b/docs/material/.icons/material/server-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server-network-off.svg b/docs/material/.icons/material/server-network-off.svg new file mode 100644 index 000000000..fe762280c --- /dev/null +++ b/docs/material/.icons/material/server-network-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server-network.svg b/docs/material/.icons/material/server-network.svg new file mode 100644 index 000000000..afcf29d95 --- /dev/null +++ b/docs/material/.icons/material/server-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server-off.svg b/docs/material/.icons/material/server-off.svg new file mode 100644 index 000000000..e2bd942b2 --- /dev/null +++ b/docs/material/.icons/material/server-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server-plus.svg b/docs/material/.icons/material/server-plus.svg new file mode 100644 index 000000000..27c65b66f --- /dev/null +++ b/docs/material/.icons/material/server-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server-remove.svg b/docs/material/.icons/material/server-remove.svg new file mode 100644 index 000000000..a03af6f0c --- /dev/null +++ b/docs/material/.icons/material/server-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server-security.svg b/docs/material/.icons/material/server-security.svg new file mode 100644 index 000000000..9db5d3f57 --- /dev/null +++ b/docs/material/.icons/material/server-security.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/server.svg b/docs/material/.icons/material/server.svg new file mode 100644 index 000000000..8cfd2eda4 --- /dev/null +++ b/docs/material/.icons/material/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-all.svg b/docs/material/.icons/material/set-all.svg new file mode 100644 index 000000000..8aeae1564 --- /dev/null +++ b/docs/material/.icons/material/set-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-center-right.svg b/docs/material/.icons/material/set-center-right.svg new file mode 100644 index 000000000..8dc28f54f --- /dev/null +++ b/docs/material/.icons/material/set-center-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-center.svg b/docs/material/.icons/material/set-center.svg new file mode 100644 index 000000000..d41ea1887 --- /dev/null +++ b/docs/material/.icons/material/set-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-left-center.svg b/docs/material/.icons/material/set-left-center.svg new file mode 100644 index 000000000..57c0063ae --- /dev/null +++ b/docs/material/.icons/material/set-left-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-left-right.svg b/docs/material/.icons/material/set-left-right.svg new file mode 100644 index 000000000..1d97c6304 --- /dev/null +++ b/docs/material/.icons/material/set-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-left.svg b/docs/material/.icons/material/set-left.svg new file mode 100644 index 000000000..a46b9df14 --- /dev/null +++ b/docs/material/.icons/material/set-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-none.svg b/docs/material/.icons/material/set-none.svg new file mode 100644 index 000000000..c1e1ea4db --- /dev/null +++ b/docs/material/.icons/material/set-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-right.svg b/docs/material/.icons/material/set-right.svg new file mode 100644 index 000000000..070e6d1e0 --- /dev/null +++ b/docs/material/.icons/material/set-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/set-top-box.svg b/docs/material/.icons/material/set-top-box.svg new file mode 100644 index 000000000..0afdd3ea7 --- /dev/null +++ b/docs/material/.icons/material/set-top-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/settings-helper.svg b/docs/material/.icons/material/settings-helper.svg new file mode 100644 index 000000000..4dcf4378f --- /dev/null +++ b/docs/material/.icons/material/settings-helper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shaker-outline.svg b/docs/material/.icons/material/shaker-outline.svg new file mode 100644 index 000000000..37ac2d172 --- /dev/null +++ b/docs/material/.icons/material/shaker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shaker.svg b/docs/material/.icons/material/shaker.svg new file mode 100644 index 000000000..7c9a98370 --- /dev/null +++ b/docs/material/.icons/material/shaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape-circle-plus.svg b/docs/material/.icons/material/shape-circle-plus.svg new file mode 100644 index 000000000..792a80b93 --- /dev/null +++ b/docs/material/.icons/material/shape-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape-outline.svg b/docs/material/.icons/material/shape-outline.svg new file mode 100644 index 000000000..e3795ed19 --- /dev/null +++ b/docs/material/.icons/material/shape-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape-oval-plus.svg b/docs/material/.icons/material/shape-oval-plus.svg new file mode 100644 index 000000000..bf05eac86 --- /dev/null +++ b/docs/material/.icons/material/shape-oval-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape-plus.svg b/docs/material/.icons/material/shape-plus.svg new file mode 100644 index 000000000..c72191bb4 --- /dev/null +++ b/docs/material/.icons/material/shape-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape-polygon-plus.svg b/docs/material/.icons/material/shape-polygon-plus.svg new file mode 100644 index 000000000..566c42694 --- /dev/null +++ b/docs/material/.icons/material/shape-polygon-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape-rectangle-plus.svg b/docs/material/.icons/material/shape-rectangle-plus.svg new file mode 100644 index 000000000..2e538b455 --- /dev/null +++ b/docs/material/.icons/material/shape-rectangle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape-square-plus.svg b/docs/material/.icons/material/shape-square-plus.svg new file mode 100644 index 000000000..80d8ef11f --- /dev/null +++ b/docs/material/.icons/material/shape-square-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shape.svg b/docs/material/.icons/material/shape.svg new file mode 100644 index 000000000..13a9e7562 --- /dev/null +++ b/docs/material/.icons/material/shape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share-all-outline.svg b/docs/material/.icons/material/share-all-outline.svg new file mode 100644 index 000000000..3dc60e895 --- /dev/null +++ b/docs/material/.icons/material/share-all-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share-all.svg b/docs/material/.icons/material/share-all.svg new file mode 100644 index 000000000..6112c6a1a --- /dev/null +++ b/docs/material/.icons/material/share-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share-circle.svg b/docs/material/.icons/material/share-circle.svg new file mode 100644 index 000000000..29f3a4871 --- /dev/null +++ b/docs/material/.icons/material/share-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share-off-outline.svg b/docs/material/.icons/material/share-off-outline.svg new file mode 100644 index 000000000..4251c49b8 --- /dev/null +++ b/docs/material/.icons/material/share-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share-off.svg b/docs/material/.icons/material/share-off.svg new file mode 100644 index 000000000..cc1d00dd4 --- /dev/null +++ b/docs/material/.icons/material/share-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share-outline.svg b/docs/material/.icons/material/share-outline.svg new file mode 100644 index 000000000..c9545b22a --- /dev/null +++ b/docs/material/.icons/material/share-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share-variant.svg b/docs/material/.icons/material/share-variant.svg new file mode 100644 index 000000000..8e04e7c77 --- /dev/null +++ b/docs/material/.icons/material/share-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/share.svg b/docs/material/.icons/material/share.svg new file mode 100644 index 000000000..3a99d17dd --- /dev/null +++ b/docs/material/.icons/material/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sheep.svg b/docs/material/.icons/material/sheep.svg new file mode 100644 index 000000000..a4ea77855 --- /dev/null +++ b/docs/material/.icons/material/sheep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-account-outline.svg b/docs/material/.icons/material/shield-account-outline.svg new file mode 100644 index 000000000..4f470af21 --- /dev/null +++ b/docs/material/.icons/material/shield-account-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-account.svg b/docs/material/.icons/material/shield-account.svg new file mode 100644 index 000000000..c0acdef39 --- /dev/null +++ b/docs/material/.icons/material/shield-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-airplane-outline.svg b/docs/material/.icons/material/shield-airplane-outline.svg new file mode 100644 index 000000000..10ea8c899 --- /dev/null +++ b/docs/material/.icons/material/shield-airplane-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-airplane.svg b/docs/material/.icons/material/shield-airplane.svg new file mode 100644 index 000000000..5e8483760 --- /dev/null +++ b/docs/material/.icons/material/shield-airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-alert-outline.svg b/docs/material/.icons/material/shield-alert-outline.svg new file mode 100644 index 000000000..174769460 --- /dev/null +++ b/docs/material/.icons/material/shield-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-alert.svg b/docs/material/.icons/material/shield-alert.svg new file mode 100644 index 000000000..4b212f9f6 --- /dev/null +++ b/docs/material/.icons/material/shield-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-bug-outline.svg b/docs/material/.icons/material/shield-bug-outline.svg new file mode 100644 index 000000000..2e71d6bb6 --- /dev/null +++ b/docs/material/.icons/material/shield-bug-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-bug.svg b/docs/material/.icons/material/shield-bug.svg new file mode 100644 index 000000000..d16354655 --- /dev/null +++ b/docs/material/.icons/material/shield-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-car.svg b/docs/material/.icons/material/shield-car.svg new file mode 100644 index 000000000..fabe1e469 --- /dev/null +++ b/docs/material/.icons/material/shield-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-check-outline.svg b/docs/material/.icons/material/shield-check-outline.svg new file mode 100644 index 000000000..e38cc7ff2 --- /dev/null +++ b/docs/material/.icons/material/shield-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-check.svg b/docs/material/.icons/material/shield-check.svg new file mode 100644 index 000000000..6c75da88d --- /dev/null +++ b/docs/material/.icons/material/shield-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-cross-outline.svg b/docs/material/.icons/material/shield-cross-outline.svg new file mode 100644 index 000000000..907ba4797 --- /dev/null +++ b/docs/material/.icons/material/shield-cross-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-cross.svg b/docs/material/.icons/material/shield-cross.svg new file mode 100644 index 000000000..57ec5256a --- /dev/null +++ b/docs/material/.icons/material/shield-cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-edit-outline.svg b/docs/material/.icons/material/shield-edit-outline.svg new file mode 100644 index 000000000..265c30f61 --- /dev/null +++ b/docs/material/.icons/material/shield-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-edit.svg b/docs/material/.icons/material/shield-edit.svg new file mode 100644 index 000000000..5f68ac914 --- /dev/null +++ b/docs/material/.icons/material/shield-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-half-full.svg b/docs/material/.icons/material/shield-half-full.svg new file mode 100644 index 000000000..29fba7309 --- /dev/null +++ b/docs/material/.icons/material/shield-half-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-half.svg b/docs/material/.icons/material/shield-half.svg new file mode 100644 index 000000000..026ec76a9 --- /dev/null +++ b/docs/material/.icons/material/shield-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-home-outline.svg b/docs/material/.icons/material/shield-home-outline.svg new file mode 100644 index 000000000..8bebc3c3a --- /dev/null +++ b/docs/material/.icons/material/shield-home-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-home.svg b/docs/material/.icons/material/shield-home.svg new file mode 100644 index 000000000..b4dd32b7f --- /dev/null +++ b/docs/material/.icons/material/shield-home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-key-outline.svg b/docs/material/.icons/material/shield-key-outline.svg new file mode 100644 index 000000000..c38dd8eaf --- /dev/null +++ b/docs/material/.icons/material/shield-key-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-key.svg b/docs/material/.icons/material/shield-key.svg new file mode 100644 index 000000000..69d08e6ed --- /dev/null +++ b/docs/material/.icons/material/shield-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-link-variant-outline.svg b/docs/material/.icons/material/shield-link-variant-outline.svg new file mode 100644 index 000000000..1f9b8af22 --- /dev/null +++ b/docs/material/.icons/material/shield-link-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-link-variant.svg b/docs/material/.icons/material/shield-link-variant.svg new file mode 100644 index 000000000..2a6f52585 --- /dev/null +++ b/docs/material/.icons/material/shield-link-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-lock-outline.svg b/docs/material/.icons/material/shield-lock-outline.svg new file mode 100644 index 000000000..5f75c8147 --- /dev/null +++ b/docs/material/.icons/material/shield-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-lock.svg b/docs/material/.icons/material/shield-lock.svg new file mode 100644 index 000000000..0c7fc01db --- /dev/null +++ b/docs/material/.icons/material/shield-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-off-outline.svg b/docs/material/.icons/material/shield-off-outline.svg new file mode 100644 index 000000000..f064b4d81 --- /dev/null +++ b/docs/material/.icons/material/shield-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-off.svg b/docs/material/.icons/material/shield-off.svg new file mode 100644 index 000000000..e7fc4ad5b --- /dev/null +++ b/docs/material/.icons/material/shield-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-outline.svg b/docs/material/.icons/material/shield-outline.svg new file mode 100644 index 000000000..e618b597f --- /dev/null +++ b/docs/material/.icons/material/shield-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-plus-outline.svg b/docs/material/.icons/material/shield-plus-outline.svg new file mode 100644 index 000000000..a1180f5cb --- /dev/null +++ b/docs/material/.icons/material/shield-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-plus.svg b/docs/material/.icons/material/shield-plus.svg new file mode 100644 index 000000000..099994ea5 --- /dev/null +++ b/docs/material/.icons/material/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-refresh-outline.svg b/docs/material/.icons/material/shield-refresh-outline.svg new file mode 100644 index 000000000..ddab4542c --- /dev/null +++ b/docs/material/.icons/material/shield-refresh-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-refresh.svg b/docs/material/.icons/material/shield-refresh.svg new file mode 100644 index 000000000..10a65413f --- /dev/null +++ b/docs/material/.icons/material/shield-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-remove-outline.svg b/docs/material/.icons/material/shield-remove-outline.svg new file mode 100644 index 000000000..eefa52daa --- /dev/null +++ b/docs/material/.icons/material/shield-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-remove.svg b/docs/material/.icons/material/shield-remove.svg new file mode 100644 index 000000000..c61545319 --- /dev/null +++ b/docs/material/.icons/material/shield-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-search.svg b/docs/material/.icons/material/shield-search.svg new file mode 100644 index 000000000..43568d9c5 --- /dev/null +++ b/docs/material/.icons/material/shield-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-star-outline.svg b/docs/material/.icons/material/shield-star-outline.svg new file mode 100644 index 000000000..28099c1dc --- /dev/null +++ b/docs/material/.icons/material/shield-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-star.svg b/docs/material/.icons/material/shield-star.svg new file mode 100644 index 000000000..c6a056a5c --- /dev/null +++ b/docs/material/.icons/material/shield-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-sun-outline.svg b/docs/material/.icons/material/shield-sun-outline.svg new file mode 100644 index 000000000..b14370444 --- /dev/null +++ b/docs/material/.icons/material/shield-sun-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-sun.svg b/docs/material/.icons/material/shield-sun.svg new file mode 100644 index 000000000..ffc1b15ee --- /dev/null +++ b/docs/material/.icons/material/shield-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-sync-outline.svg b/docs/material/.icons/material/shield-sync-outline.svg new file mode 100644 index 000000000..39200be83 --- /dev/null +++ b/docs/material/.icons/material/shield-sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield-sync.svg b/docs/material/.icons/material/shield-sync.svg new file mode 100644 index 000000000..aadd011fb --- /dev/null +++ b/docs/material/.icons/material/shield-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shield.svg b/docs/material/.icons/material/shield.svg new file mode 100644 index 000000000..a33510b50 --- /dev/null +++ b/docs/material/.icons/material/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ship-wheel.svg b/docs/material/.icons/material/ship-wheel.svg new file mode 100644 index 000000000..55ea6820d --- /dev/null +++ b/docs/material/.icons/material/ship-wheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shoe-formal.svg b/docs/material/.icons/material/shoe-formal.svg new file mode 100644 index 000000000..e6bac686a --- /dev/null +++ b/docs/material/.icons/material/shoe-formal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shoe-heel.svg b/docs/material/.icons/material/shoe-heel.svg new file mode 100644 index 000000000..239bcd2e1 --- /dev/null +++ b/docs/material/.icons/material/shoe-heel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shoe-print.svg b/docs/material/.icons/material/shoe-print.svg new file mode 100644 index 000000000..4048367e6 --- /dev/null +++ b/docs/material/.icons/material/shoe-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shopping-music.svg b/docs/material/.icons/material/shopping-music.svg new file mode 100644 index 000000000..0c10c4368 --- /dev/null +++ b/docs/material/.icons/material/shopping-music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shopping-outline.svg b/docs/material/.icons/material/shopping-outline.svg new file mode 100644 index 000000000..d5bc64182 --- /dev/null +++ b/docs/material/.icons/material/shopping-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shopping-search.svg b/docs/material/.icons/material/shopping-search.svg new file mode 100644 index 000000000..6cbe4f33a --- /dev/null +++ b/docs/material/.icons/material/shopping-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shopping.svg b/docs/material/.icons/material/shopping.svg new file mode 100644 index 000000000..9226448fc --- /dev/null +++ b/docs/material/.icons/material/shopping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shovel-off.svg b/docs/material/.icons/material/shovel-off.svg new file mode 100644 index 000000000..f93993920 --- /dev/null +++ b/docs/material/.icons/material/shovel-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shovel.svg b/docs/material/.icons/material/shovel.svg new file mode 100644 index 000000000..99218f2a8 --- /dev/null +++ b/docs/material/.icons/material/shovel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shower-head.svg b/docs/material/.icons/material/shower-head.svg new file mode 100644 index 000000000..0322aee05 --- /dev/null +++ b/docs/material/.icons/material/shower-head.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shower.svg b/docs/material/.icons/material/shower.svg new file mode 100644 index 000000000..d66329360 --- /dev/null +++ b/docs/material/.icons/material/shower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shredder.svg b/docs/material/.icons/material/shredder.svg new file mode 100644 index 000000000..02de69fa6 --- /dev/null +++ b/docs/material/.icons/material/shredder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shuffle-disabled.svg b/docs/material/.icons/material/shuffle-disabled.svg new file mode 100644 index 000000000..234f5d5d0 --- /dev/null +++ b/docs/material/.icons/material/shuffle-disabled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shuffle-variant.svg b/docs/material/.icons/material/shuffle-variant.svg new file mode 100644 index 000000000..45431ee6c --- /dev/null +++ b/docs/material/.icons/material/shuffle-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shuffle.svg b/docs/material/.icons/material/shuffle.svg new file mode 100644 index 000000000..15823bb98 --- /dev/null +++ b/docs/material/.icons/material/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/shuriken.svg b/docs/material/.icons/material/shuriken.svg new file mode 100644 index 000000000..4112c1bc6 --- /dev/null +++ b/docs/material/.icons/material/shuriken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sigma-lower.svg b/docs/material/.icons/material/sigma-lower.svg new file mode 100644 index 000000000..1db6e1503 --- /dev/null +++ b/docs/material/.icons/material/sigma-lower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sigma.svg b/docs/material/.icons/material/sigma.svg new file mode 100644 index 000000000..6d2f2705a --- /dev/null +++ b/docs/material/.icons/material/sigma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sign-caution.svg b/docs/material/.icons/material/sign-caution.svg new file mode 100644 index 000000000..a1447f83b --- /dev/null +++ b/docs/material/.icons/material/sign-caution.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sign-direction-minus.svg b/docs/material/.icons/material/sign-direction-minus.svg new file mode 100644 index 000000000..aa6f9b83d --- /dev/null +++ b/docs/material/.icons/material/sign-direction-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sign-direction-plus.svg b/docs/material/.icons/material/sign-direction-plus.svg new file mode 100644 index 000000000..b74d8f5c0 --- /dev/null +++ b/docs/material/.icons/material/sign-direction-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sign-direction-remove.svg b/docs/material/.icons/material/sign-direction-remove.svg new file mode 100644 index 000000000..8a92d5528 --- /dev/null +++ b/docs/material/.icons/material/sign-direction-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sign-direction.svg b/docs/material/.icons/material/sign-direction.svg new file mode 100644 index 000000000..252bb64af --- /dev/null +++ b/docs/material/.icons/material/sign-direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sign-real-estate.svg b/docs/material/.icons/material/sign-real-estate.svg new file mode 100644 index 000000000..99e60aa61 --- /dev/null +++ b/docs/material/.icons/material/sign-real-estate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sign-text.svg b/docs/material/.icons/material/sign-text.svg new file mode 100644 index 000000000..8e69635f2 --- /dev/null +++ b/docs/material/.icons/material/sign-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-2g.svg b/docs/material/.icons/material/signal-2g.svg new file mode 100644 index 000000000..370c9d864 --- /dev/null +++ b/docs/material/.icons/material/signal-2g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-3g.svg b/docs/material/.icons/material/signal-3g.svg new file mode 100644 index 000000000..28f9c958d --- /dev/null +++ b/docs/material/.icons/material/signal-3g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-4g.svg b/docs/material/.icons/material/signal-4g.svg new file mode 100644 index 000000000..37bce3164 --- /dev/null +++ b/docs/material/.icons/material/signal-4g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-5g.svg b/docs/material/.icons/material/signal-5g.svg new file mode 100644 index 000000000..1e6f373de --- /dev/null +++ b/docs/material/.icons/material/signal-5g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-cellular-1.svg b/docs/material/.icons/material/signal-cellular-1.svg new file mode 100644 index 000000000..f7f553d97 --- /dev/null +++ b/docs/material/.icons/material/signal-cellular-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-cellular-2.svg b/docs/material/.icons/material/signal-cellular-2.svg new file mode 100644 index 000000000..2ebbbfb55 --- /dev/null +++ b/docs/material/.icons/material/signal-cellular-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-cellular-3.svg b/docs/material/.icons/material/signal-cellular-3.svg new file mode 100644 index 000000000..2683a645f --- /dev/null +++ b/docs/material/.icons/material/signal-cellular-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-cellular-outline.svg b/docs/material/.icons/material/signal-cellular-outline.svg new file mode 100644 index 000000000..e4ef1c3d4 --- /dev/null +++ b/docs/material/.icons/material/signal-cellular-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-distance-variant.svg b/docs/material/.icons/material/signal-distance-variant.svg new file mode 100644 index 000000000..afd4664f6 --- /dev/null +++ b/docs/material/.icons/material/signal-distance-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-hspa-plus.svg b/docs/material/.icons/material/signal-hspa-plus.svg new file mode 100644 index 000000000..b924b264f --- /dev/null +++ b/docs/material/.icons/material/signal-hspa-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-hspa.svg b/docs/material/.icons/material/signal-hspa.svg new file mode 100644 index 000000000..bf4470fb5 --- /dev/null +++ b/docs/material/.icons/material/signal-hspa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-off.svg b/docs/material/.icons/material/signal-off.svg new file mode 100644 index 000000000..ba961951b --- /dev/null +++ b/docs/material/.icons/material/signal-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal-variant.svg b/docs/material/.icons/material/signal-variant.svg new file mode 100644 index 000000000..4667276c7 --- /dev/null +++ b/docs/material/.icons/material/signal-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signal.svg b/docs/material/.icons/material/signal.svg new file mode 100644 index 000000000..2a02fff4c --- /dev/null +++ b/docs/material/.icons/material/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signature-freehand.svg b/docs/material/.icons/material/signature-freehand.svg new file mode 100644 index 000000000..5503d1945 --- /dev/null +++ b/docs/material/.icons/material/signature-freehand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signature-image.svg b/docs/material/.icons/material/signature-image.svg new file mode 100644 index 000000000..45569fd8f --- /dev/null +++ b/docs/material/.icons/material/signature-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signature-text.svg b/docs/material/.icons/material/signature-text.svg new file mode 100644 index 000000000..6cb441f2b --- /dev/null +++ b/docs/material/.icons/material/signature-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/signature.svg b/docs/material/.icons/material/signature.svg new file mode 100644 index 000000000..0753352e3 --- /dev/null +++ b/docs/material/.icons/material/signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/silo.svg b/docs/material/.icons/material/silo.svg new file mode 100644 index 000000000..9bd392db0 --- /dev/null +++ b/docs/material/.icons/material/silo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/silverware-clean.svg b/docs/material/.icons/material/silverware-clean.svg new file mode 100644 index 000000000..6c06dbffb --- /dev/null +++ b/docs/material/.icons/material/silverware-clean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/silverware-fork-knife.svg b/docs/material/.icons/material/silverware-fork-knife.svg new file mode 100644 index 000000000..86164872f --- /dev/null +++ b/docs/material/.icons/material/silverware-fork-knife.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/silverware-fork.svg b/docs/material/.icons/material/silverware-fork.svg new file mode 100644 index 000000000..b672e0d73 --- /dev/null +++ b/docs/material/.icons/material/silverware-fork.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/silverware-spoon.svg b/docs/material/.icons/material/silverware-spoon.svg new file mode 100644 index 000000000..da1b71450 --- /dev/null +++ b/docs/material/.icons/material/silverware-spoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/silverware-variant.svg b/docs/material/.icons/material/silverware-variant.svg new file mode 100644 index 000000000..0c6f3ce97 --- /dev/null +++ b/docs/material/.icons/material/silverware-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/silverware.svg b/docs/material/.icons/material/silverware.svg new file mode 100644 index 000000000..a07cb9dcc --- /dev/null +++ b/docs/material/.icons/material/silverware.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sim-alert.svg b/docs/material/.icons/material/sim-alert.svg new file mode 100644 index 000000000..d5a6b9dc5 --- /dev/null +++ b/docs/material/.icons/material/sim-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sim-off.svg b/docs/material/.icons/material/sim-off.svg new file mode 100644 index 000000000..2839c8693 --- /dev/null +++ b/docs/material/.icons/material/sim-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sim.svg b/docs/material/.icons/material/sim.svg new file mode 100644 index 000000000..d32de7f18 --- /dev/null +++ b/docs/material/.icons/material/sim.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/simple-icons.svg b/docs/material/.icons/material/simple-icons.svg new file mode 100644 index 000000000..47a6e2602 --- /dev/null +++ b/docs/material/.icons/material/simple-icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sina-weibo.svg b/docs/material/.icons/material/sina-weibo.svg new file mode 100644 index 000000000..4432fd5f5 --- /dev/null +++ b/docs/material/.icons/material/sina-weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sitemap.svg b/docs/material/.icons/material/sitemap.svg new file mode 100644 index 000000000..939409715 --- /dev/null +++ b/docs/material/.icons/material/sitemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-l.svg b/docs/material/.icons/material/size-l.svg new file mode 100644 index 000000000..f3ebde289 --- /dev/null +++ b/docs/material/.icons/material/size-l.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-m.svg b/docs/material/.icons/material/size-m.svg new file mode 100644 index 000000000..7d9ed988d --- /dev/null +++ b/docs/material/.icons/material/size-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-s.svg b/docs/material/.icons/material/size-s.svg new file mode 100644 index 000000000..57bcd5012 --- /dev/null +++ b/docs/material/.icons/material/size-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-xl.svg b/docs/material/.icons/material/size-xl.svg new file mode 100644 index 000000000..5217dfc3f --- /dev/null +++ b/docs/material/.icons/material/size-xl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-xs.svg b/docs/material/.icons/material/size-xs.svg new file mode 100644 index 000000000..19e5b5df8 --- /dev/null +++ b/docs/material/.icons/material/size-xs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-xxl.svg b/docs/material/.icons/material/size-xxl.svg new file mode 100644 index 000000000..68da4b0c8 --- /dev/null +++ b/docs/material/.icons/material/size-xxl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-xxs.svg b/docs/material/.icons/material/size-xxs.svg new file mode 100644 index 000000000..2210b6d71 --- /dev/null +++ b/docs/material/.icons/material/size-xxs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/size-xxxl.svg b/docs/material/.icons/material/size-xxxl.svg new file mode 100644 index 000000000..2e05745e3 --- /dev/null +++ b/docs/material/.icons/material/size-xxxl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skate.svg b/docs/material/.icons/material/skate.svg new file mode 100644 index 000000000..b08f45b5c --- /dev/null +++ b/docs/material/.icons/material/skate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skew-less.svg b/docs/material/.icons/material/skew-less.svg new file mode 100644 index 000000000..243cf5982 --- /dev/null +++ b/docs/material/.icons/material/skew-less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skew-more.svg b/docs/material/.icons/material/skew-more.svg new file mode 100644 index 000000000..f59a90a14 --- /dev/null +++ b/docs/material/.icons/material/skew-more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ski-cross-country.svg b/docs/material/.icons/material/ski-cross-country.svg new file mode 100644 index 000000000..406ca43db --- /dev/null +++ b/docs/material/.icons/material/ski-cross-country.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ski-water.svg b/docs/material/.icons/material/ski-water.svg new file mode 100644 index 000000000..ba6279907 --- /dev/null +++ b/docs/material/.icons/material/ski-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ski.svg b/docs/material/.icons/material/ski.svg new file mode 100644 index 000000000..c2ab1a291 --- /dev/null +++ b/docs/material/.icons/material/ski.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-backward-outline.svg b/docs/material/.icons/material/skip-backward-outline.svg new file mode 100644 index 000000000..8d9bb15d9 --- /dev/null +++ b/docs/material/.icons/material/skip-backward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-backward.svg b/docs/material/.icons/material/skip-backward.svg new file mode 100644 index 000000000..e537adad0 --- /dev/null +++ b/docs/material/.icons/material/skip-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-forward-outline.svg b/docs/material/.icons/material/skip-forward-outline.svg new file mode 100644 index 000000000..4fe698741 --- /dev/null +++ b/docs/material/.icons/material/skip-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-forward.svg b/docs/material/.icons/material/skip-forward.svg new file mode 100644 index 000000000..4a54a18d6 --- /dev/null +++ b/docs/material/.icons/material/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-next-circle-outline.svg b/docs/material/.icons/material/skip-next-circle-outline.svg new file mode 100644 index 000000000..845662a96 --- /dev/null +++ b/docs/material/.icons/material/skip-next-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-next-circle.svg b/docs/material/.icons/material/skip-next-circle.svg new file mode 100644 index 000000000..5ef819e87 --- /dev/null +++ b/docs/material/.icons/material/skip-next-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-next-outline.svg b/docs/material/.icons/material/skip-next-outline.svg new file mode 100644 index 000000000..ada16c916 --- /dev/null +++ b/docs/material/.icons/material/skip-next-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-next.svg b/docs/material/.icons/material/skip-next.svg new file mode 100644 index 000000000..d34b53c38 --- /dev/null +++ b/docs/material/.icons/material/skip-next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-previous-circle-outline.svg b/docs/material/.icons/material/skip-previous-circle-outline.svg new file mode 100644 index 000000000..1570437e9 --- /dev/null +++ b/docs/material/.icons/material/skip-previous-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-previous-circle.svg b/docs/material/.icons/material/skip-previous-circle.svg new file mode 100644 index 000000000..df61e8c06 --- /dev/null +++ b/docs/material/.icons/material/skip-previous-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-previous-outline.svg b/docs/material/.icons/material/skip-previous-outline.svg new file mode 100644 index 000000000..07ab1a6d0 --- /dev/null +++ b/docs/material/.icons/material/skip-previous-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skip-previous.svg b/docs/material/.icons/material/skip-previous.svg new file mode 100644 index 000000000..5d3f8e2cd --- /dev/null +++ b/docs/material/.icons/material/skip-previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skull-crossbones-outline.svg b/docs/material/.icons/material/skull-crossbones-outline.svg new file mode 100644 index 000000000..66fd23cee --- /dev/null +++ b/docs/material/.icons/material/skull-crossbones-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skull-crossbones.svg b/docs/material/.icons/material/skull-crossbones.svg new file mode 100644 index 000000000..db4b96715 --- /dev/null +++ b/docs/material/.icons/material/skull-crossbones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skull-outline.svg b/docs/material/.icons/material/skull-outline.svg new file mode 100644 index 000000000..e923413dd --- /dev/null +++ b/docs/material/.icons/material/skull-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skull.svg b/docs/material/.icons/material/skull.svg new file mode 100644 index 000000000..2d89ceed8 --- /dev/null +++ b/docs/material/.icons/material/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skype-business.svg b/docs/material/.icons/material/skype-business.svg new file mode 100644 index 000000000..7af3c919a --- /dev/null +++ b/docs/material/.icons/material/skype-business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/skype.svg b/docs/material/.icons/material/skype.svg new file mode 100644 index 000000000..efce472c5 --- /dev/null +++ b/docs/material/.icons/material/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/slack.svg b/docs/material/.icons/material/slack.svg new file mode 100644 index 000000000..33c9e2cab --- /dev/null +++ b/docs/material/.icons/material/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/slash-forward-box.svg b/docs/material/.icons/material/slash-forward-box.svg new file mode 100644 index 000000000..b615dfec4 --- /dev/null +++ b/docs/material/.icons/material/slash-forward-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/slash-forward.svg b/docs/material/.icons/material/slash-forward.svg new file mode 100644 index 000000000..89d74bfc9 --- /dev/null +++ b/docs/material/.icons/material/slash-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sleep-off.svg b/docs/material/.icons/material/sleep-off.svg new file mode 100644 index 000000000..94457b565 --- /dev/null +++ b/docs/material/.icons/material/sleep-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sleep.svg b/docs/material/.icons/material/sleep.svg new file mode 100644 index 000000000..86c4ee557 --- /dev/null +++ b/docs/material/.icons/material/sleep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/slope-downhill.svg b/docs/material/.icons/material/slope-downhill.svg new file mode 100644 index 000000000..89c3da137 --- /dev/null +++ b/docs/material/.icons/material/slope-downhill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/slope-uphill.svg b/docs/material/.icons/material/slope-uphill.svg new file mode 100644 index 000000000..1bd5527ba --- /dev/null +++ b/docs/material/.icons/material/slope-uphill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/slot-machine-outline.svg b/docs/material/.icons/material/slot-machine-outline.svg new file mode 100644 index 000000000..773671d43 --- /dev/null +++ b/docs/material/.icons/material/slot-machine-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/slot-machine.svg b/docs/material/.icons/material/slot-machine.svg new file mode 100644 index 000000000..4634fb223 --- /dev/null +++ b/docs/material/.icons/material/slot-machine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smart-card-outline.svg b/docs/material/.icons/material/smart-card-outline.svg new file mode 100644 index 000000000..5a1de423d --- /dev/null +++ b/docs/material/.icons/material/smart-card-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smart-card-reader-outline.svg b/docs/material/.icons/material/smart-card-reader-outline.svg new file mode 100644 index 000000000..3d0dab549 --- /dev/null +++ b/docs/material/.icons/material/smart-card-reader-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smart-card-reader.svg b/docs/material/.icons/material/smart-card-reader.svg new file mode 100644 index 000000000..c4c577f54 --- /dev/null +++ b/docs/material/.icons/material/smart-card-reader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smart-card.svg b/docs/material/.icons/material/smart-card.svg new file mode 100644 index 000000000..5ac9dff9c --- /dev/null +++ b/docs/material/.icons/material/smart-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smog.svg b/docs/material/.icons/material/smog.svg new file mode 100644 index 000000000..57bbb8a43 --- /dev/null +++ b/docs/material/.icons/material/smog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smoke-detector.svg b/docs/material/.icons/material/smoke-detector.svg new file mode 100644 index 000000000..13883c9d8 --- /dev/null +++ b/docs/material/.icons/material/smoke-detector.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smoking-off.svg b/docs/material/.icons/material/smoking-off.svg new file mode 100644 index 000000000..06ffe27a0 --- /dev/null +++ b/docs/material/.icons/material/smoking-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smoking-pipe.svg b/docs/material/.icons/material/smoking-pipe.svg new file mode 100644 index 000000000..e1100101e --- /dev/null +++ b/docs/material/.icons/material/smoking-pipe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/smoking.svg b/docs/material/.icons/material/smoking.svg new file mode 100644 index 000000000..19069736e --- /dev/null +++ b/docs/material/.icons/material/smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/snapchat.svg b/docs/material/.icons/material/snapchat.svg new file mode 100644 index 000000000..27fac2e2c --- /dev/null +++ b/docs/material/.icons/material/snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/snowboard.svg b/docs/material/.icons/material/snowboard.svg new file mode 100644 index 000000000..74242c2ce --- /dev/null +++ b/docs/material/.icons/material/snowboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/snowflake-alert.svg b/docs/material/.icons/material/snowflake-alert.svg new file mode 100644 index 000000000..b547fe066 --- /dev/null +++ b/docs/material/.icons/material/snowflake-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/snowflake-melt.svg b/docs/material/.icons/material/snowflake-melt.svg new file mode 100644 index 000000000..c39128298 --- /dev/null +++ b/docs/material/.icons/material/snowflake-melt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/snowflake-variant.svg b/docs/material/.icons/material/snowflake-variant.svg new file mode 100644 index 000000000..74f3b1c0d --- /dev/null +++ b/docs/material/.icons/material/snowflake-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/snowflake.svg b/docs/material/.icons/material/snowflake.svg new file mode 100644 index 000000000..9f7100850 --- /dev/null +++ b/docs/material/.icons/material/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/snowman.svg b/docs/material/.icons/material/snowman.svg new file mode 100644 index 000000000..108852be9 --- /dev/null +++ b/docs/material/.icons/material/snowman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/soccer-field.svg b/docs/material/.icons/material/soccer-field.svg new file mode 100644 index 000000000..94cbb8fb1 --- /dev/null +++ b/docs/material/.icons/material/soccer-field.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/soccer.svg b/docs/material/.icons/material/soccer.svg new file mode 100644 index 000000000..350e57e08 --- /dev/null +++ b/docs/material/.icons/material/soccer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sofa.svg b/docs/material/.icons/material/sofa.svg new file mode 100644 index 000000000..1ef2fd1c9 --- /dev/null +++ b/docs/material/.icons/material/sofa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/solar-panel-large.svg b/docs/material/.icons/material/solar-panel-large.svg new file mode 100644 index 000000000..4314a6a65 --- /dev/null +++ b/docs/material/.icons/material/solar-panel-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/solar-panel.svg b/docs/material/.icons/material/solar-panel.svg new file mode 100644 index 000000000..350e7abcc --- /dev/null +++ b/docs/material/.icons/material/solar-panel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/solar-power.svg b/docs/material/.icons/material/solar-power.svg new file mode 100644 index 000000000..832341eda --- /dev/null +++ b/docs/material/.icons/material/solar-power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/soldering-iron.svg b/docs/material/.icons/material/soldering-iron.svg new file mode 100644 index 000000000..f10ce9d1d --- /dev/null +++ b/docs/material/.icons/material/soldering-iron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/solid.svg b/docs/material/.icons/material/solid.svg new file mode 100644 index 000000000..950c6c6c3 --- /dev/null +++ b/docs/material/.icons/material/solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sony-playstation.svg b/docs/material/.icons/material/sony-playstation.svg new file mode 100644 index 000000000..f78d58a88 --- /dev/null +++ b/docs/material/.icons/material/sony-playstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-alphabetical-ascending-variant.svg b/docs/material/.icons/material/sort-alphabetical-ascending-variant.svg new file mode 100644 index 000000000..3c09974a9 --- /dev/null +++ b/docs/material/.icons/material/sort-alphabetical-ascending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-alphabetical-ascending.svg b/docs/material/.icons/material/sort-alphabetical-ascending.svg new file mode 100644 index 000000000..3c8bc9852 --- /dev/null +++ b/docs/material/.icons/material/sort-alphabetical-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-alphabetical-descending-variant.svg b/docs/material/.icons/material/sort-alphabetical-descending-variant.svg new file mode 100644 index 000000000..4c4b85193 --- /dev/null +++ b/docs/material/.icons/material/sort-alphabetical-descending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-alphabetical-descending.svg b/docs/material/.icons/material/sort-alphabetical-descending.svg new file mode 100644 index 000000000..1873c422d --- /dev/null +++ b/docs/material/.icons/material/sort-alphabetical-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-alphabetical-variant.svg b/docs/material/.icons/material/sort-alphabetical-variant.svg new file mode 100644 index 000000000..9329254be --- /dev/null +++ b/docs/material/.icons/material/sort-alphabetical-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-ascending.svg b/docs/material/.icons/material/sort-ascending.svg new file mode 100644 index 000000000..190bec8b0 --- /dev/null +++ b/docs/material/.icons/material/sort-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-bool-ascending-variant.svg b/docs/material/.icons/material/sort-bool-ascending-variant.svg new file mode 100644 index 000000000..1dbcfa1fc --- /dev/null +++ b/docs/material/.icons/material/sort-bool-ascending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-bool-ascending.svg b/docs/material/.icons/material/sort-bool-ascending.svg new file mode 100644 index 000000000..e35f00a68 --- /dev/null +++ b/docs/material/.icons/material/sort-bool-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-bool-descending-variant.svg b/docs/material/.icons/material/sort-bool-descending-variant.svg new file mode 100644 index 000000000..32ff402ad --- /dev/null +++ b/docs/material/.icons/material/sort-bool-descending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-bool-descending.svg b/docs/material/.icons/material/sort-bool-descending.svg new file mode 100644 index 000000000..fbe94d635 --- /dev/null +++ b/docs/material/.icons/material/sort-bool-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-descending.svg b/docs/material/.icons/material/sort-descending.svg new file mode 100644 index 000000000..c47f9c7e8 --- /dev/null +++ b/docs/material/.icons/material/sort-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-numeric-ascending-variant.svg b/docs/material/.icons/material/sort-numeric-ascending-variant.svg new file mode 100644 index 000000000..502f97e03 --- /dev/null +++ b/docs/material/.icons/material/sort-numeric-ascending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-numeric-ascending.svg b/docs/material/.icons/material/sort-numeric-ascending.svg new file mode 100644 index 000000000..10b4ddd97 --- /dev/null +++ b/docs/material/.icons/material/sort-numeric-ascending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-numeric-descending-variant.svg b/docs/material/.icons/material/sort-numeric-descending-variant.svg new file mode 100644 index 000000000..1d44c2f0d --- /dev/null +++ b/docs/material/.icons/material/sort-numeric-descending-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-numeric-descending.svg b/docs/material/.icons/material/sort-numeric-descending.svg new file mode 100644 index 000000000..ba0cf411d --- /dev/null +++ b/docs/material/.icons/material/sort-numeric-descending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-numeric-variant.svg b/docs/material/.icons/material/sort-numeric-variant.svg new file mode 100644 index 000000000..78c1f55e3 --- /dev/null +++ b/docs/material/.icons/material/sort-numeric-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-reverse-variant.svg b/docs/material/.icons/material/sort-reverse-variant.svg new file mode 100644 index 000000000..9b60d241a --- /dev/null +++ b/docs/material/.icons/material/sort-reverse-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-variant-lock-open.svg b/docs/material/.icons/material/sort-variant-lock-open.svg new file mode 100644 index 000000000..b2a3a2973 --- /dev/null +++ b/docs/material/.icons/material/sort-variant-lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-variant-lock.svg b/docs/material/.icons/material/sort-variant-lock.svg new file mode 100644 index 000000000..c43f2dcd5 --- /dev/null +++ b/docs/material/.icons/material/sort-variant-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-variant-remove.svg b/docs/material/.icons/material/sort-variant-remove.svg new file mode 100644 index 000000000..91fb1980f --- /dev/null +++ b/docs/material/.icons/material/sort-variant-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort-variant.svg b/docs/material/.icons/material/sort-variant.svg new file mode 100644 index 000000000..8370e2972 --- /dev/null +++ b/docs/material/.icons/material/sort-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sort.svg b/docs/material/.icons/material/sort.svg new file mode 100644 index 000000000..bd5f77967 --- /dev/null +++ b/docs/material/.icons/material/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/soundcloud.svg b/docs/material/.icons/material/soundcloud.svg new file mode 100644 index 000000000..094b496bd --- /dev/null +++ b/docs/material/.icons/material/soundcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-branch.svg b/docs/material/.icons/material/source-branch.svg new file mode 100644 index 000000000..6fdbedf2c --- /dev/null +++ b/docs/material/.icons/material/source-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-commit-end-local.svg b/docs/material/.icons/material/source-commit-end-local.svg new file mode 100644 index 000000000..c823550bc --- /dev/null +++ b/docs/material/.icons/material/source-commit-end-local.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-commit-end.svg b/docs/material/.icons/material/source-commit-end.svg new file mode 100644 index 000000000..24df2c793 --- /dev/null +++ b/docs/material/.icons/material/source-commit-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-commit-local.svg b/docs/material/.icons/material/source-commit-local.svg new file mode 100644 index 000000000..28a2b70fd --- /dev/null +++ b/docs/material/.icons/material/source-commit-local.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-commit-next-local.svg b/docs/material/.icons/material/source-commit-next-local.svg new file mode 100644 index 000000000..87c26449f --- /dev/null +++ b/docs/material/.icons/material/source-commit-next-local.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-commit-start-next-local.svg b/docs/material/.icons/material/source-commit-start-next-local.svg new file mode 100644 index 000000000..4e20664d7 --- /dev/null +++ b/docs/material/.icons/material/source-commit-start-next-local.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-commit-start.svg b/docs/material/.icons/material/source-commit-start.svg new file mode 100644 index 000000000..87a373ec8 --- /dev/null +++ b/docs/material/.icons/material/source-commit-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-commit.svg b/docs/material/.icons/material/source-commit.svg new file mode 100644 index 000000000..4c786c08e --- /dev/null +++ b/docs/material/.icons/material/source-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-fork.svg b/docs/material/.icons/material/source-fork.svg new file mode 100644 index 000000000..bc8ac6cd5 --- /dev/null +++ b/docs/material/.icons/material/source-fork.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-merge.svg b/docs/material/.icons/material/source-merge.svg new file mode 100644 index 000000000..4a6618993 --- /dev/null +++ b/docs/material/.icons/material/source-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-pull.svg b/docs/material/.icons/material/source-pull.svg new file mode 100644 index 000000000..18e48d102 --- /dev/null +++ b/docs/material/.icons/material/source-pull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-repository-multiple.svg b/docs/material/.icons/material/source-repository-multiple.svg new file mode 100644 index 000000000..8c1934a96 --- /dev/null +++ b/docs/material/.icons/material/source-repository-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/source-repository.svg b/docs/material/.icons/material/source-repository.svg new file mode 100644 index 000000000..fbb0d9670 --- /dev/null +++ b/docs/material/.icons/material/source-repository.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/soy-sauce-off.svg b/docs/material/.icons/material/soy-sauce-off.svg new file mode 100644 index 000000000..52be77134 --- /dev/null +++ b/docs/material/.icons/material/soy-sauce-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/soy-sauce.svg b/docs/material/.icons/material/soy-sauce.svg new file mode 100644 index 000000000..03f56713f --- /dev/null +++ b/docs/material/.icons/material/soy-sauce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spa-outline.svg b/docs/material/.icons/material/spa-outline.svg new file mode 100644 index 000000000..101bc1b36 --- /dev/null +++ b/docs/material/.icons/material/spa-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spa.svg b/docs/material/.icons/material/spa.svg new file mode 100644 index 000000000..bb384bb93 --- /dev/null +++ b/docs/material/.icons/material/spa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/space-invaders.svg b/docs/material/.icons/material/space-invaders.svg new file mode 100644 index 000000000..e41eb4f06 --- /dev/null +++ b/docs/material/.icons/material/space-invaders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/space-station.svg b/docs/material/.icons/material/space-station.svg new file mode 100644 index 000000000..d7f60b351 --- /dev/null +++ b/docs/material/.icons/material/space-station.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spade.svg b/docs/material/.icons/material/spade.svg new file mode 100644 index 000000000..13cbca624 --- /dev/null +++ b/docs/material/.icons/material/spade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speaker-bluetooth.svg b/docs/material/.icons/material/speaker-bluetooth.svg new file mode 100644 index 000000000..5902574ce --- /dev/null +++ b/docs/material/.icons/material/speaker-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speaker-multiple.svg b/docs/material/.icons/material/speaker-multiple.svg new file mode 100644 index 000000000..a212a759b --- /dev/null +++ b/docs/material/.icons/material/speaker-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speaker-off.svg b/docs/material/.icons/material/speaker-off.svg new file mode 100644 index 000000000..665f1e12a --- /dev/null +++ b/docs/material/.icons/material/speaker-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speaker-wireless.svg b/docs/material/.icons/material/speaker-wireless.svg new file mode 100644 index 000000000..0c415ec9d --- /dev/null +++ b/docs/material/.icons/material/speaker-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speaker.svg b/docs/material/.icons/material/speaker.svg new file mode 100644 index 000000000..0ce24b103 --- /dev/null +++ b/docs/material/.icons/material/speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speedometer-medium.svg b/docs/material/.icons/material/speedometer-medium.svg new file mode 100644 index 000000000..cdb982fbc --- /dev/null +++ b/docs/material/.icons/material/speedometer-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speedometer-slow.svg b/docs/material/.icons/material/speedometer-slow.svg new file mode 100644 index 000000000..c1de5d710 --- /dev/null +++ b/docs/material/.icons/material/speedometer-slow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/speedometer.svg b/docs/material/.icons/material/speedometer.svg new file mode 100644 index 000000000..74eab3b5a --- /dev/null +++ b/docs/material/.icons/material/speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spellcheck.svg b/docs/material/.icons/material/spellcheck.svg new file mode 100644 index 000000000..80b949db0 --- /dev/null +++ b/docs/material/.icons/material/spellcheck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spider-thread.svg b/docs/material/.icons/material/spider-thread.svg new file mode 100644 index 000000000..573c0a6a1 --- /dev/null +++ b/docs/material/.icons/material/spider-thread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spider-web.svg b/docs/material/.icons/material/spider-web.svg new file mode 100644 index 000000000..d297e60e1 --- /dev/null +++ b/docs/material/.icons/material/spider-web.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spider.svg b/docs/material/.icons/material/spider.svg new file mode 100644 index 000000000..d0c5e0a68 --- /dev/null +++ b/docs/material/.icons/material/spider.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spotify.svg b/docs/material/.icons/material/spotify.svg new file mode 100644 index 000000000..3cf61dfc4 --- /dev/null +++ b/docs/material/.icons/material/spotify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spotlight-beam.svg b/docs/material/.icons/material/spotlight-beam.svg new file mode 100644 index 000000000..d1d7694d6 --- /dev/null +++ b/docs/material/.icons/material/spotlight-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spotlight.svg b/docs/material/.icons/material/spotlight.svg new file mode 100644 index 000000000..c3a314fd6 --- /dev/null +++ b/docs/material/.icons/material/spotlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spray-bottle.svg b/docs/material/.icons/material/spray-bottle.svg new file mode 100644 index 000000000..1a1a7487f --- /dev/null +++ b/docs/material/.icons/material/spray-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/spray.svg b/docs/material/.icons/material/spray.svg new file mode 100644 index 000000000..ac0550620 --- /dev/null +++ b/docs/material/.icons/material/spray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sprinkler-variant.svg b/docs/material/.icons/material/sprinkler-variant.svg new file mode 100644 index 000000000..06565b63f --- /dev/null +++ b/docs/material/.icons/material/sprinkler-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sprinkler.svg b/docs/material/.icons/material/sprinkler.svg new file mode 100644 index 000000000..4cc8aa986 --- /dev/null +++ b/docs/material/.icons/material/sprinkler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sprout-outline.svg b/docs/material/.icons/material/sprout-outline.svg new file mode 100644 index 000000000..caec8f877 --- /dev/null +++ b/docs/material/.icons/material/sprout-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sprout.svg b/docs/material/.icons/material/sprout.svg new file mode 100644 index 000000000..a027cdf25 --- /dev/null +++ b/docs/material/.icons/material/sprout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-edit-outline.svg b/docs/material/.icons/material/square-edit-outline.svg new file mode 100644 index 000000000..d54f9f363 --- /dev/null +++ b/docs/material/.icons/material/square-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-medium-outline.svg b/docs/material/.icons/material/square-medium-outline.svg new file mode 100644 index 000000000..82a0b4408 --- /dev/null +++ b/docs/material/.icons/material/square-medium-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-medium.svg b/docs/material/.icons/material/square-medium.svg new file mode 100644 index 000000000..cdde8b214 --- /dev/null +++ b/docs/material/.icons/material/square-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-off-outline.svg b/docs/material/.icons/material/square-off-outline.svg new file mode 100644 index 000000000..891d15a6a --- /dev/null +++ b/docs/material/.icons/material/square-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-off.svg b/docs/material/.icons/material/square-off.svg new file mode 100644 index 000000000..7c869407e --- /dev/null +++ b/docs/material/.icons/material/square-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-outline.svg b/docs/material/.icons/material/square-outline.svg new file mode 100644 index 000000000..f9621bc7a --- /dev/null +++ b/docs/material/.icons/material/square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-root-box.svg b/docs/material/.icons/material/square-root-box.svg new file mode 100644 index 000000000..f893622e0 --- /dev/null +++ b/docs/material/.icons/material/square-root-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-root.svg b/docs/material/.icons/material/square-root.svg new file mode 100644 index 000000000..75e9c76cd --- /dev/null +++ b/docs/material/.icons/material/square-root.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square-small.svg b/docs/material/.icons/material/square-small.svg new file mode 100644 index 000000000..a3663031a --- /dev/null +++ b/docs/material/.icons/material/square-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/square.svg b/docs/material/.icons/material/square.svg new file mode 100644 index 000000000..50e39f546 --- /dev/null +++ b/docs/material/.icons/material/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/squeegee.svg b/docs/material/.icons/material/squeegee.svg new file mode 100644 index 000000000..7e274bc96 --- /dev/null +++ b/docs/material/.icons/material/squeegee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ssh.svg b/docs/material/.icons/material/ssh.svg new file mode 100644 index 000000000..6a303d76c --- /dev/null +++ b/docs/material/.icons/material/ssh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stack-exchange.svg b/docs/material/.icons/material/stack-exchange.svg new file mode 100644 index 000000000..17d50a551 --- /dev/null +++ b/docs/material/.icons/material/stack-exchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stack-overflow.svg b/docs/material/.icons/material/stack-overflow.svg new file mode 100644 index 000000000..9c174b0ad --- /dev/null +++ b/docs/material/.icons/material/stack-overflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stackpath.svg b/docs/material/.icons/material/stackpath.svg new file mode 100644 index 000000000..6f0fa2a63 --- /dev/null +++ b/docs/material/.icons/material/stackpath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stadium-variant.svg b/docs/material/.icons/material/stadium-variant.svg new file mode 100644 index 000000000..873cb226e --- /dev/null +++ b/docs/material/.icons/material/stadium-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stadium.svg b/docs/material/.icons/material/stadium.svg new file mode 100644 index 000000000..64520a6ae --- /dev/null +++ b/docs/material/.icons/material/stadium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stairs-box.svg b/docs/material/.icons/material/stairs-box.svg new file mode 100644 index 000000000..e90ac8178 --- /dev/null +++ b/docs/material/.icons/material/stairs-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stairs-down.svg b/docs/material/.icons/material/stairs-down.svg new file mode 100644 index 000000000..0f44861aa --- /dev/null +++ b/docs/material/.icons/material/stairs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stairs-up.svg b/docs/material/.icons/material/stairs-up.svg new file mode 100644 index 000000000..50b9be6aa --- /dev/null +++ b/docs/material/.icons/material/stairs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stairs.svg b/docs/material/.icons/material/stairs.svg new file mode 100644 index 000000000..798e2f5ed --- /dev/null +++ b/docs/material/.icons/material/stairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stamper.svg b/docs/material/.icons/material/stamper.svg new file mode 100644 index 000000000..3caa539db --- /dev/null +++ b/docs/material/.icons/material/stamper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/standard-definition.svg b/docs/material/.icons/material/standard-definition.svg new file mode 100644 index 000000000..d3eb8fea1 --- /dev/null +++ b/docs/material/.icons/material/standard-definition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-box-multiple-outline.svg b/docs/material/.icons/material/star-box-multiple-outline.svg new file mode 100644 index 000000000..3b08cfacb --- /dev/null +++ b/docs/material/.icons/material/star-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-box-multiple.svg b/docs/material/.icons/material/star-box-multiple.svg new file mode 100644 index 000000000..ec2847395 --- /dev/null +++ b/docs/material/.icons/material/star-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-box-outline.svg b/docs/material/.icons/material/star-box-outline.svg new file mode 100644 index 000000000..c6aefa264 --- /dev/null +++ b/docs/material/.icons/material/star-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-box.svg b/docs/material/.icons/material/star-box.svg new file mode 100644 index 000000000..41993ee7f --- /dev/null +++ b/docs/material/.icons/material/star-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-circle-outline.svg b/docs/material/.icons/material/star-circle-outline.svg new file mode 100644 index 000000000..f5dbdd5cd --- /dev/null +++ b/docs/material/.icons/material/star-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-circle.svg b/docs/material/.icons/material/star-circle.svg new file mode 100644 index 000000000..104b44b9a --- /dev/null +++ b/docs/material/.icons/material/star-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-face.svg b/docs/material/.icons/material/star-face.svg new file mode 100644 index 000000000..1d8a122ee --- /dev/null +++ b/docs/material/.icons/material/star-face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-four-points-outline.svg b/docs/material/.icons/material/star-four-points-outline.svg new file mode 100644 index 000000000..80d8d7196 --- /dev/null +++ b/docs/material/.icons/material/star-four-points-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-four-points.svg b/docs/material/.icons/material/star-four-points.svg new file mode 100644 index 000000000..96ddca902 --- /dev/null +++ b/docs/material/.icons/material/star-four-points.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-half-full.svg b/docs/material/.icons/material/star-half-full.svg new file mode 100644 index 000000000..2ef46d172 --- /dev/null +++ b/docs/material/.icons/material/star-half-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-half.svg b/docs/material/.icons/material/star-half.svg new file mode 100644 index 000000000..31e00970f --- /dev/null +++ b/docs/material/.icons/material/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-off.svg b/docs/material/.icons/material/star-off.svg new file mode 100644 index 000000000..ca9761a72 --- /dev/null +++ b/docs/material/.icons/material/star-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-outline.svg b/docs/material/.icons/material/star-outline.svg new file mode 100644 index 000000000..e94b2170c --- /dev/null +++ b/docs/material/.icons/material/star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-three-points-outline.svg b/docs/material/.icons/material/star-three-points-outline.svg new file mode 100644 index 000000000..c13e49b23 --- /dev/null +++ b/docs/material/.icons/material/star-three-points-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star-three-points.svg b/docs/material/.icons/material/star-three-points.svg new file mode 100644 index 000000000..dea4a8f23 --- /dev/null +++ b/docs/material/.icons/material/star-three-points.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/star.svg b/docs/material/.icons/material/star.svg new file mode 100644 index 000000000..dbf68570d --- /dev/null +++ b/docs/material/.icons/material/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/state-machine.svg b/docs/material/.icons/material/state-machine.svg new file mode 100644 index 000000000..2795fd8bc --- /dev/null +++ b/docs/material/.icons/material/state-machine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/steam.svg b/docs/material/.icons/material/steam.svg new file mode 100644 index 000000000..4ac1b8ac8 --- /dev/null +++ b/docs/material/.icons/material/steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/steering-off.svg b/docs/material/.icons/material/steering-off.svg new file mode 100644 index 000000000..111605c71 --- /dev/null +++ b/docs/material/.icons/material/steering-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/steering.svg b/docs/material/.icons/material/steering.svg new file mode 100644 index 000000000..d8db499a6 --- /dev/null +++ b/docs/material/.icons/material/steering.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/step-backward-2.svg b/docs/material/.icons/material/step-backward-2.svg new file mode 100644 index 000000000..bef45a499 --- /dev/null +++ b/docs/material/.icons/material/step-backward-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/step-backward.svg b/docs/material/.icons/material/step-backward.svg new file mode 100644 index 000000000..889f501ef --- /dev/null +++ b/docs/material/.icons/material/step-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/step-forward-2.svg b/docs/material/.icons/material/step-forward-2.svg new file mode 100644 index 000000000..c846b1445 --- /dev/null +++ b/docs/material/.icons/material/step-forward-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/step-forward.svg b/docs/material/.icons/material/step-forward.svg new file mode 100644 index 000000000..d4a0c7ab0 --- /dev/null +++ b/docs/material/.icons/material/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stethoscope.svg b/docs/material/.icons/material/stethoscope.svg new file mode 100644 index 000000000..66a2bd992 --- /dev/null +++ b/docs/material/.icons/material/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-alert-outline.svg b/docs/material/.icons/material/sticker-alert-outline.svg new file mode 100644 index 000000000..db27854b6 --- /dev/null +++ b/docs/material/.icons/material/sticker-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-alert.svg b/docs/material/.icons/material/sticker-alert.svg new file mode 100644 index 000000000..9a084e1e3 --- /dev/null +++ b/docs/material/.icons/material/sticker-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-check-outline.svg b/docs/material/.icons/material/sticker-check-outline.svg new file mode 100644 index 000000000..bab313cc3 --- /dev/null +++ b/docs/material/.icons/material/sticker-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-check.svg b/docs/material/.icons/material/sticker-check.svg new file mode 100644 index 000000000..83cab579e --- /dev/null +++ b/docs/material/.icons/material/sticker-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-circle-outline.svg b/docs/material/.icons/material/sticker-circle-outline.svg new file mode 100644 index 000000000..ec7c9af6c --- /dev/null +++ b/docs/material/.icons/material/sticker-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-emoji.svg b/docs/material/.icons/material/sticker-emoji.svg new file mode 100644 index 000000000..7caa9ab71 --- /dev/null +++ b/docs/material/.icons/material/sticker-emoji.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-minus-outline.svg b/docs/material/.icons/material/sticker-minus-outline.svg new file mode 100644 index 000000000..a041d8ede --- /dev/null +++ b/docs/material/.icons/material/sticker-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-minus.svg b/docs/material/.icons/material/sticker-minus.svg new file mode 100644 index 000000000..16030d991 --- /dev/null +++ b/docs/material/.icons/material/sticker-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-outline.svg b/docs/material/.icons/material/sticker-outline.svg new file mode 100644 index 000000000..07e07cb7f --- /dev/null +++ b/docs/material/.icons/material/sticker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-plus-outline.svg b/docs/material/.icons/material/sticker-plus-outline.svg new file mode 100644 index 000000000..4161bfa40 --- /dev/null +++ b/docs/material/.icons/material/sticker-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-plus.svg b/docs/material/.icons/material/sticker-plus.svg new file mode 100644 index 000000000..a62efd97c --- /dev/null +++ b/docs/material/.icons/material/sticker-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-remove-outline.svg b/docs/material/.icons/material/sticker-remove-outline.svg new file mode 100644 index 000000000..9252d11e4 --- /dev/null +++ b/docs/material/.icons/material/sticker-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker-remove.svg b/docs/material/.icons/material/sticker-remove.svg new file mode 100644 index 000000000..e7ae9c6e5 --- /dev/null +++ b/docs/material/.icons/material/sticker-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sticker.svg b/docs/material/.icons/material/sticker.svg new file mode 100644 index 000000000..3013f0afe --- /dev/null +++ b/docs/material/.icons/material/sticker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stocking.svg b/docs/material/.icons/material/stocking.svg new file mode 100644 index 000000000..444dd9fcc --- /dev/null +++ b/docs/material/.icons/material/stocking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stomach.svg b/docs/material/.icons/material/stomach.svg new file mode 100644 index 000000000..3b9701ca9 --- /dev/null +++ b/docs/material/.icons/material/stomach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stop-circle-outline.svg b/docs/material/.icons/material/stop-circle-outline.svg new file mode 100644 index 000000000..e7997b715 --- /dev/null +++ b/docs/material/.icons/material/stop-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stop-circle.svg b/docs/material/.icons/material/stop-circle.svg new file mode 100644 index 000000000..afd90d0a2 --- /dev/null +++ b/docs/material/.icons/material/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stop.svg b/docs/material/.icons/material/stop.svg new file mode 100644 index 000000000..e4b3e5e1c --- /dev/null +++ b/docs/material/.icons/material/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/store-24-hour.svg b/docs/material/.icons/material/store-24-hour.svg new file mode 100644 index 000000000..6a81ecd8d --- /dev/null +++ b/docs/material/.icons/material/store-24-hour.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/store-outline.svg b/docs/material/.icons/material/store-outline.svg new file mode 100644 index 000000000..117196c4c --- /dev/null +++ b/docs/material/.icons/material/store-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/store.svg b/docs/material/.icons/material/store.svg new file mode 100644 index 000000000..b5e287ba4 --- /dev/null +++ b/docs/material/.icons/material/store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/storefront-outline.svg b/docs/material/.icons/material/storefront-outline.svg new file mode 100644 index 000000000..1e7ba6c90 --- /dev/null +++ b/docs/material/.icons/material/storefront-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/storefront.svg b/docs/material/.icons/material/storefront.svg new file mode 100644 index 000000000..39eeecc12 --- /dev/null +++ b/docs/material/.icons/material/storefront.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stove.svg b/docs/material/.icons/material/stove.svg new file mode 100644 index 000000000..56328302b --- /dev/null +++ b/docs/material/.icons/material/stove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/strategy.svg b/docs/material/.icons/material/strategy.svg new file mode 100644 index 000000000..0db9f6701 --- /dev/null +++ b/docs/material/.icons/material/strategy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stretch-to-page-outline.svg b/docs/material/.icons/material/stretch-to-page-outline.svg new file mode 100644 index 000000000..a8ad64ee5 --- /dev/null +++ b/docs/material/.icons/material/stretch-to-page-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/stretch-to-page.svg b/docs/material/.icons/material/stretch-to-page.svg new file mode 100644 index 000000000..45dadd066 --- /dev/null +++ b/docs/material/.icons/material/stretch-to-page.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/string-lights-off.svg b/docs/material/.icons/material/string-lights-off.svg new file mode 100644 index 000000000..92f9f838e --- /dev/null +++ b/docs/material/.icons/material/string-lights-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/string-lights.svg b/docs/material/.icons/material/string-lights.svg new file mode 100644 index 000000000..39735fd8e --- /dev/null +++ b/docs/material/.icons/material/string-lights.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/subdirectory-arrow-left.svg b/docs/material/.icons/material/subdirectory-arrow-left.svg new file mode 100644 index 000000000..4a0ff9007 --- /dev/null +++ b/docs/material/.icons/material/subdirectory-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/subdirectory-arrow-right.svg b/docs/material/.icons/material/subdirectory-arrow-right.svg new file mode 100644 index 000000000..756662719 --- /dev/null +++ b/docs/material/.icons/material/subdirectory-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/subtitles-outline.svg b/docs/material/.icons/material/subtitles-outline.svg new file mode 100644 index 000000000..4dfa7cfc6 --- /dev/null +++ b/docs/material/.icons/material/subtitles-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/subtitles.svg b/docs/material/.icons/material/subtitles.svg new file mode 100644 index 000000000..b164e42bc --- /dev/null +++ b/docs/material/.icons/material/subtitles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/subway-alert-variant.svg b/docs/material/.icons/material/subway-alert-variant.svg new file mode 100644 index 000000000..d74858554 --- /dev/null +++ b/docs/material/.icons/material/subway-alert-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/subway-variant.svg b/docs/material/.icons/material/subway-variant.svg new file mode 100644 index 000000000..89b428692 --- /dev/null +++ b/docs/material/.icons/material/subway-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/subway.svg b/docs/material/.icons/material/subway.svg new file mode 100644 index 000000000..d3849ae42 --- /dev/null +++ b/docs/material/.icons/material/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/summit.svg b/docs/material/.icons/material/summit.svg new file mode 100644 index 000000000..6ca5e882a --- /dev/null +++ b/docs/material/.icons/material/summit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sunglasses.svg b/docs/material/.icons/material/sunglasses.svg new file mode 100644 index 000000000..614e9f4c2 --- /dev/null +++ b/docs/material/.icons/material/sunglasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/surround-sound-2-0.svg b/docs/material/.icons/material/surround-sound-2-0.svg new file mode 100644 index 000000000..b343c9097 --- /dev/null +++ b/docs/material/.icons/material/surround-sound-2-0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/surround-sound-3-1.svg b/docs/material/.icons/material/surround-sound-3-1.svg new file mode 100644 index 000000000..43b55784a --- /dev/null +++ b/docs/material/.icons/material/surround-sound-3-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/surround-sound-5-1.svg b/docs/material/.icons/material/surround-sound-5-1.svg new file mode 100644 index 000000000..82071a899 --- /dev/null +++ b/docs/material/.icons/material/surround-sound-5-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/surround-sound-7-1.svg b/docs/material/.icons/material/surround-sound-7-1.svg new file mode 100644 index 000000000..77605dfa5 --- /dev/null +++ b/docs/material/.icons/material/surround-sound-7-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/surround-sound.svg b/docs/material/.icons/material/surround-sound.svg new file mode 100644 index 000000000..4a34bfe2b --- /dev/null +++ b/docs/material/.icons/material/surround-sound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/svg.svg b/docs/material/.icons/material/svg.svg new file mode 100644 index 000000000..21a9eb645 --- /dev/null +++ b/docs/material/.icons/material/svg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-horizontal-bold.svg b/docs/material/.icons/material/swap-horizontal-bold.svg new file mode 100644 index 000000000..b2d87269f --- /dev/null +++ b/docs/material/.icons/material/swap-horizontal-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-horizontal-circle-outline.svg b/docs/material/.icons/material/swap-horizontal-circle-outline.svg new file mode 100644 index 000000000..bc813567e --- /dev/null +++ b/docs/material/.icons/material/swap-horizontal-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-horizontal-circle.svg b/docs/material/.icons/material/swap-horizontal-circle.svg new file mode 100644 index 000000000..23856d3d5 --- /dev/null +++ b/docs/material/.icons/material/swap-horizontal-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-horizontal-variant.svg b/docs/material/.icons/material/swap-horizontal-variant.svg new file mode 100644 index 000000000..d17d759b0 --- /dev/null +++ b/docs/material/.icons/material/swap-horizontal-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-horizontal.svg b/docs/material/.icons/material/swap-horizontal.svg new file mode 100644 index 000000000..89a23072d --- /dev/null +++ b/docs/material/.icons/material/swap-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-vertical-bold.svg b/docs/material/.icons/material/swap-vertical-bold.svg new file mode 100644 index 000000000..c011e0b6a --- /dev/null +++ b/docs/material/.icons/material/swap-vertical-bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-vertical-circle-outline.svg b/docs/material/.icons/material/swap-vertical-circle-outline.svg new file mode 100644 index 000000000..4d9067cae --- /dev/null +++ b/docs/material/.icons/material/swap-vertical-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-vertical-circle.svg b/docs/material/.icons/material/swap-vertical-circle.svg new file mode 100644 index 000000000..08bc33fc8 --- /dev/null +++ b/docs/material/.icons/material/swap-vertical-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-vertical-variant.svg b/docs/material/.icons/material/swap-vertical-variant.svg new file mode 100644 index 000000000..030d5fb14 --- /dev/null +++ b/docs/material/.icons/material/swap-vertical-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swap-vertical.svg b/docs/material/.icons/material/swap-vertical.svg new file mode 100644 index 000000000..7a467d143 --- /dev/null +++ b/docs/material/.icons/material/swap-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/swim.svg b/docs/material/.icons/material/swim.svg new file mode 100644 index 000000000..99abd7b69 --- /dev/null +++ b/docs/material/.icons/material/swim.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/switch.svg b/docs/material/.icons/material/switch.svg new file mode 100644 index 000000000..327363ab6 --- /dev/null +++ b/docs/material/.icons/material/switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sword-cross.svg b/docs/material/.icons/material/sword-cross.svg new file mode 100644 index 000000000..67d583932 --- /dev/null +++ b/docs/material/.icons/material/sword-cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sword.svg b/docs/material/.icons/material/sword.svg new file mode 100644 index 000000000..2100fddc2 --- /dev/null +++ b/docs/material/.icons/material/sword.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/syllabary-hangul.svg b/docs/material/.icons/material/syllabary-hangul.svg new file mode 100644 index 000000000..65620d039 --- /dev/null +++ b/docs/material/.icons/material/syllabary-hangul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/syllabary-hiragana.svg b/docs/material/.icons/material/syllabary-hiragana.svg new file mode 100644 index 000000000..ac1a11913 --- /dev/null +++ b/docs/material/.icons/material/syllabary-hiragana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/syllabary-katakana-half-width.svg b/docs/material/.icons/material/syllabary-katakana-half-width.svg new file mode 100644 index 000000000..3c5475897 --- /dev/null +++ b/docs/material/.icons/material/syllabary-katakana-half-width.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/syllabary-katakana.svg b/docs/material/.icons/material/syllabary-katakana.svg new file mode 100644 index 000000000..0eeb0627b --- /dev/null +++ b/docs/material/.icons/material/syllabary-katakana.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/symfony.svg b/docs/material/.icons/material/symfony.svg new file mode 100644 index 000000000..2684d246b --- /dev/null +++ b/docs/material/.icons/material/symfony.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sync-alert.svg b/docs/material/.icons/material/sync-alert.svg new file mode 100644 index 000000000..d8c8a16d0 --- /dev/null +++ b/docs/material/.icons/material/sync-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sync-circle.svg b/docs/material/.icons/material/sync-circle.svg new file mode 100644 index 000000000..d8b0e684f --- /dev/null +++ b/docs/material/.icons/material/sync-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sync-off.svg b/docs/material/.icons/material/sync-off.svg new file mode 100644 index 000000000..08c5bfa6d --- /dev/null +++ b/docs/material/.icons/material/sync-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/sync.svg b/docs/material/.icons/material/sync.svg new file mode 100644 index 000000000..f51f0d900 --- /dev/null +++ b/docs/material/.icons/material/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tab-minus.svg b/docs/material/.icons/material/tab-minus.svg new file mode 100644 index 000000000..3a374e015 --- /dev/null +++ b/docs/material/.icons/material/tab-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tab-plus.svg b/docs/material/.icons/material/tab-plus.svg new file mode 100644 index 000000000..f414692c1 --- /dev/null +++ b/docs/material/.icons/material/tab-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tab-remove.svg b/docs/material/.icons/material/tab-remove.svg new file mode 100644 index 000000000..d4786a6b5 --- /dev/null +++ b/docs/material/.icons/material/tab-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tab-unselected.svg b/docs/material/.icons/material/tab-unselected.svg new file mode 100644 index 000000000..3c8497fb2 --- /dev/null +++ b/docs/material/.icons/material/tab-unselected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tab.svg b/docs/material/.icons/material/tab.svg new file mode 100644 index 000000000..64a7af402 --- /dev/null +++ b/docs/material/.icons/material/tab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-account.svg b/docs/material/.icons/material/table-account.svg new file mode 100644 index 000000000..dcd28c7b6 --- /dev/null +++ b/docs/material/.icons/material/table-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-alert.svg b/docs/material/.icons/material/table-alert.svg new file mode 100644 index 000000000..f072cce0d --- /dev/null +++ b/docs/material/.icons/material/table-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-arrow-down.svg b/docs/material/.icons/material/table-arrow-down.svg new file mode 100644 index 000000000..cdfdedffb --- /dev/null +++ b/docs/material/.icons/material/table-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-arrow-left.svg b/docs/material/.icons/material/table-arrow-left.svg new file mode 100644 index 000000000..7dd00b07c --- /dev/null +++ b/docs/material/.icons/material/table-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-arrow-right.svg b/docs/material/.icons/material/table-arrow-right.svg new file mode 100644 index 000000000..c69f7ee54 --- /dev/null +++ b/docs/material/.icons/material/table-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-arrow-up.svg b/docs/material/.icons/material/table-arrow-up.svg new file mode 100644 index 000000000..742fe07ac --- /dev/null +++ b/docs/material/.icons/material/table-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-border.svg b/docs/material/.icons/material/table-border.svg new file mode 100644 index 000000000..039e1bc3c --- /dev/null +++ b/docs/material/.icons/material/table-border.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-cancel.svg b/docs/material/.icons/material/table-cancel.svg new file mode 100644 index 000000000..0a0b67c34 --- /dev/null +++ b/docs/material/.icons/material/table-cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-chair.svg b/docs/material/.icons/material/table-chair.svg new file mode 100644 index 000000000..24f17da07 --- /dev/null +++ b/docs/material/.icons/material/table-chair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-check.svg b/docs/material/.icons/material/table-check.svg new file mode 100644 index 000000000..3d2333aa6 --- /dev/null +++ b/docs/material/.icons/material/table-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-clock.svg b/docs/material/.icons/material/table-clock.svg new file mode 100644 index 000000000..060f73b4f --- /dev/null +++ b/docs/material/.icons/material/table-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-cog.svg b/docs/material/.icons/material/table-cog.svg new file mode 100644 index 000000000..f11513861 --- /dev/null +++ b/docs/material/.icons/material/table-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-column-plus-after.svg b/docs/material/.icons/material/table-column-plus-after.svg new file mode 100644 index 000000000..1bc532f8c --- /dev/null +++ b/docs/material/.icons/material/table-column-plus-after.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-column-plus-before.svg b/docs/material/.icons/material/table-column-plus-before.svg new file mode 100644 index 000000000..ada8f7348 --- /dev/null +++ b/docs/material/.icons/material/table-column-plus-before.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-column-remove.svg b/docs/material/.icons/material/table-column-remove.svg new file mode 100644 index 000000000..7e9144e87 --- /dev/null +++ b/docs/material/.icons/material/table-column-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-column-width.svg b/docs/material/.icons/material/table-column-width.svg new file mode 100644 index 000000000..2dec98f54 --- /dev/null +++ b/docs/material/.icons/material/table-column-width.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-column.svg b/docs/material/.icons/material/table-column.svg new file mode 100644 index 000000000..0023fc175 --- /dev/null +++ b/docs/material/.icons/material/table-column.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-edit.svg b/docs/material/.icons/material/table-edit.svg new file mode 100644 index 000000000..b30b29c50 --- /dev/null +++ b/docs/material/.icons/material/table-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-eye-off.svg b/docs/material/.icons/material/table-eye-off.svg new file mode 100644 index 000000000..9b08ac1cd --- /dev/null +++ b/docs/material/.icons/material/table-eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-eye.svg b/docs/material/.icons/material/table-eye.svg new file mode 100644 index 000000000..d882a55f7 --- /dev/null +++ b/docs/material/.icons/material/table-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-furniture.svg b/docs/material/.icons/material/table-furniture.svg new file mode 100644 index 000000000..9c20e78b8 --- /dev/null +++ b/docs/material/.icons/material/table-furniture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-headers-eye-off.svg b/docs/material/.icons/material/table-headers-eye-off.svg new file mode 100644 index 000000000..369375bc5 --- /dev/null +++ b/docs/material/.icons/material/table-headers-eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-headers-eye.svg b/docs/material/.icons/material/table-headers-eye.svg new file mode 100644 index 000000000..1a407939b --- /dev/null +++ b/docs/material/.icons/material/table-headers-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-heart.svg b/docs/material/.icons/material/table-heart.svg new file mode 100644 index 000000000..48b8d1f6f --- /dev/null +++ b/docs/material/.icons/material/table-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-key.svg b/docs/material/.icons/material/table-key.svg new file mode 100644 index 000000000..15c63dddc --- /dev/null +++ b/docs/material/.icons/material/table-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-large-plus.svg b/docs/material/.icons/material/table-large-plus.svg new file mode 100644 index 000000000..e4b067582 --- /dev/null +++ b/docs/material/.icons/material/table-large-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-large-remove.svg b/docs/material/.icons/material/table-large-remove.svg new file mode 100644 index 000000000..5273f71b9 --- /dev/null +++ b/docs/material/.icons/material/table-large-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-large.svg b/docs/material/.icons/material/table-large.svg new file mode 100644 index 000000000..0af62d847 --- /dev/null +++ b/docs/material/.icons/material/table-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-lock.svg b/docs/material/.icons/material/table-lock.svg new file mode 100644 index 000000000..4084f944e --- /dev/null +++ b/docs/material/.icons/material/table-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-merge-cells.svg b/docs/material/.icons/material/table-merge-cells.svg new file mode 100644 index 000000000..19d202141 --- /dev/null +++ b/docs/material/.icons/material/table-merge-cells.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-minus.svg b/docs/material/.icons/material/table-minus.svg new file mode 100644 index 000000000..932bdd280 --- /dev/null +++ b/docs/material/.icons/material/table-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-multiple.svg b/docs/material/.icons/material/table-multiple.svg new file mode 100644 index 000000000..d09c2a349 --- /dev/null +++ b/docs/material/.icons/material/table-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-network.svg b/docs/material/.icons/material/table-network.svg new file mode 100644 index 000000000..8a195d4fe --- /dev/null +++ b/docs/material/.icons/material/table-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-of-contents.svg b/docs/material/.icons/material/table-of-contents.svg new file mode 100644 index 000000000..0a4d0c960 --- /dev/null +++ b/docs/material/.icons/material/table-of-contents.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-off.svg b/docs/material/.icons/material/table-off.svg new file mode 100644 index 000000000..2be4b8a49 --- /dev/null +++ b/docs/material/.icons/material/table-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-plus.svg b/docs/material/.icons/material/table-plus.svg new file mode 100644 index 000000000..ab8b8e55a --- /dev/null +++ b/docs/material/.icons/material/table-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-refresh.svg b/docs/material/.icons/material/table-refresh.svg new file mode 100644 index 000000000..a41201c15 --- /dev/null +++ b/docs/material/.icons/material/table-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-remove.svg b/docs/material/.icons/material/table-remove.svg new file mode 100644 index 000000000..5d8502931 --- /dev/null +++ b/docs/material/.icons/material/table-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-row-height.svg b/docs/material/.icons/material/table-row-height.svg new file mode 100644 index 000000000..bce9429f7 --- /dev/null +++ b/docs/material/.icons/material/table-row-height.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-row-plus-after.svg b/docs/material/.icons/material/table-row-plus-after.svg new file mode 100644 index 000000000..d778f72e0 --- /dev/null +++ b/docs/material/.icons/material/table-row-plus-after.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-row-plus-before.svg b/docs/material/.icons/material/table-row-plus-before.svg new file mode 100644 index 000000000..7390f3be7 --- /dev/null +++ b/docs/material/.icons/material/table-row-plus-before.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-row-remove.svg b/docs/material/.icons/material/table-row-remove.svg new file mode 100644 index 000000000..2f3061933 --- /dev/null +++ b/docs/material/.icons/material/table-row-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-row.svg b/docs/material/.icons/material/table-row.svg new file mode 100644 index 000000000..1836d7c72 --- /dev/null +++ b/docs/material/.icons/material/table-row.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-search.svg b/docs/material/.icons/material/table-search.svg new file mode 100644 index 000000000..f5f207c8b --- /dev/null +++ b/docs/material/.icons/material/table-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-settings.svg b/docs/material/.icons/material/table-settings.svg new file mode 100644 index 000000000..a603fae6a --- /dev/null +++ b/docs/material/.icons/material/table-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-star.svg b/docs/material/.icons/material/table-star.svg new file mode 100644 index 000000000..45c9ad186 --- /dev/null +++ b/docs/material/.icons/material/table-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-sync.svg b/docs/material/.icons/material/table-sync.svg new file mode 100644 index 000000000..0121d5e20 --- /dev/null +++ b/docs/material/.icons/material/table-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table-tennis.svg b/docs/material/.icons/material/table-tennis.svg new file mode 100644 index 000000000..557866542 --- /dev/null +++ b/docs/material/.icons/material/table-tennis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/table.svg b/docs/material/.icons/material/table.svg new file mode 100644 index 000000000..782a5fde3 --- /dev/null +++ b/docs/material/.icons/material/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tablet-android.svg b/docs/material/.icons/material/tablet-android.svg new file mode 100644 index 000000000..1a751ed80 --- /dev/null +++ b/docs/material/.icons/material/tablet-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tablet-cellphone.svg b/docs/material/.icons/material/tablet-cellphone.svg new file mode 100644 index 000000000..7cad33a79 --- /dev/null +++ b/docs/material/.icons/material/tablet-cellphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tablet-dashboard.svg b/docs/material/.icons/material/tablet-dashboard.svg new file mode 100644 index 000000000..dec6895ca --- /dev/null +++ b/docs/material/.icons/material/tablet-dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tablet-ipad.svg b/docs/material/.icons/material/tablet-ipad.svg new file mode 100644 index 000000000..cf24c96ff --- /dev/null +++ b/docs/material/.icons/material/tablet-ipad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tablet.svg b/docs/material/.icons/material/tablet.svg new file mode 100644 index 000000000..8cf1e2f34 --- /dev/null +++ b/docs/material/.icons/material/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/taco.svg b/docs/material/.icons/material/taco.svg new file mode 100644 index 000000000..7a5039030 --- /dev/null +++ b/docs/material/.icons/material/taco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-faces.svg b/docs/material/.icons/material/tag-faces.svg new file mode 100644 index 000000000..508fc26fd --- /dev/null +++ b/docs/material/.icons/material/tag-faces.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-heart-outline.svg b/docs/material/.icons/material/tag-heart-outline.svg new file mode 100644 index 000000000..ddadb744d --- /dev/null +++ b/docs/material/.icons/material/tag-heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-heart.svg b/docs/material/.icons/material/tag-heart.svg new file mode 100644 index 000000000..dba024f43 --- /dev/null +++ b/docs/material/.icons/material/tag-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-minus-outline.svg b/docs/material/.icons/material/tag-minus-outline.svg new file mode 100644 index 000000000..a57c0c63f --- /dev/null +++ b/docs/material/.icons/material/tag-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-minus.svg b/docs/material/.icons/material/tag-minus.svg new file mode 100644 index 000000000..9ae8dbdbc --- /dev/null +++ b/docs/material/.icons/material/tag-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-multiple-outline.svg b/docs/material/.icons/material/tag-multiple-outline.svg new file mode 100644 index 000000000..deb7eeb79 --- /dev/null +++ b/docs/material/.icons/material/tag-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-multiple.svg b/docs/material/.icons/material/tag-multiple.svg new file mode 100644 index 000000000..772054251 --- /dev/null +++ b/docs/material/.icons/material/tag-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-off-outline.svg b/docs/material/.icons/material/tag-off-outline.svg new file mode 100644 index 000000000..7dedd3069 --- /dev/null +++ b/docs/material/.icons/material/tag-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-off.svg b/docs/material/.icons/material/tag-off.svg new file mode 100644 index 000000000..479508b60 --- /dev/null +++ b/docs/material/.icons/material/tag-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-outline.svg b/docs/material/.icons/material/tag-outline.svg new file mode 100644 index 000000000..4e07ad584 --- /dev/null +++ b/docs/material/.icons/material/tag-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-plus-outline.svg b/docs/material/.icons/material/tag-plus-outline.svg new file mode 100644 index 000000000..8b6c01871 --- /dev/null +++ b/docs/material/.icons/material/tag-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-plus.svg b/docs/material/.icons/material/tag-plus.svg new file mode 100644 index 000000000..abac70e5e --- /dev/null +++ b/docs/material/.icons/material/tag-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-remove-outline.svg b/docs/material/.icons/material/tag-remove-outline.svg new file mode 100644 index 000000000..a6a1e051b --- /dev/null +++ b/docs/material/.icons/material/tag-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-remove.svg b/docs/material/.icons/material/tag-remove.svg new file mode 100644 index 000000000..7439aa7ec --- /dev/null +++ b/docs/material/.icons/material/tag-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-text-outline.svg b/docs/material/.icons/material/tag-text-outline.svg new file mode 100644 index 000000000..d795ed883 --- /dev/null +++ b/docs/material/.icons/material/tag-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag-text.svg b/docs/material/.icons/material/tag-text.svg new file mode 100644 index 000000000..bf88a7a4f --- /dev/null +++ b/docs/material/.icons/material/tag-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tag.svg b/docs/material/.icons/material/tag.svg new file mode 100644 index 000000000..301c817d5 --- /dev/null +++ b/docs/material/.icons/material/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tailwind.svg b/docs/material/.icons/material/tailwind.svg new file mode 100644 index 000000000..d8fb3efde --- /dev/null +++ b/docs/material/.icons/material/tailwind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tank.svg b/docs/material/.icons/material/tank.svg new file mode 100644 index 000000000..0758d12ec --- /dev/null +++ b/docs/material/.icons/material/tank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tanker-truck.svg b/docs/material/.icons/material/tanker-truck.svg new file mode 100644 index 000000000..ae851eb64 --- /dev/null +++ b/docs/material/.icons/material/tanker-truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tape-measure.svg b/docs/material/.icons/material/tape-measure.svg new file mode 100644 index 000000000..1269a7588 --- /dev/null +++ b/docs/material/.icons/material/tape-measure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/target-account.svg b/docs/material/.icons/material/target-account.svg new file mode 100644 index 000000000..b75b67f0f --- /dev/null +++ b/docs/material/.icons/material/target-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/target-variant.svg b/docs/material/.icons/material/target-variant.svg new file mode 100644 index 000000000..1f754c2d0 --- /dev/null +++ b/docs/material/.icons/material/target-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/target.svg b/docs/material/.icons/material/target.svg new file mode 100644 index 000000000..d272c2611 --- /dev/null +++ b/docs/material/.icons/material/target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/taxi.svg b/docs/material/.icons/material/taxi.svg new file mode 100644 index 000000000..d9810e9be --- /dev/null +++ b/docs/material/.icons/material/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tea-outline.svg b/docs/material/.icons/material/tea-outline.svg new file mode 100644 index 000000000..6c056ecef --- /dev/null +++ b/docs/material/.icons/material/tea-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tea.svg b/docs/material/.icons/material/tea.svg new file mode 100644 index 000000000..7bb5eeb8e --- /dev/null +++ b/docs/material/.icons/material/tea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/teach.svg b/docs/material/.icons/material/teach.svg new file mode 100644 index 000000000..69e3ec3bd --- /dev/null +++ b/docs/material/.icons/material/teach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/teamviewer.svg b/docs/material/.icons/material/teamviewer.svg new file mode 100644 index 000000000..2c41be6db --- /dev/null +++ b/docs/material/.icons/material/teamviewer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/telegram.svg b/docs/material/.icons/material/telegram.svg new file mode 100644 index 000000000..983eb9a0f --- /dev/null +++ b/docs/material/.icons/material/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/telescope.svg b/docs/material/.icons/material/telescope.svg new file mode 100644 index 000000000..140dd31ab --- /dev/null +++ b/docs/material/.icons/material/telescope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-ambient-light.svg b/docs/material/.icons/material/television-ambient-light.svg new file mode 100644 index 000000000..be24f1892 --- /dev/null +++ b/docs/material/.icons/material/television-ambient-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-box.svg b/docs/material/.icons/material/television-box.svg new file mode 100644 index 000000000..4c74e2a65 --- /dev/null +++ b/docs/material/.icons/material/television-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-classic-off.svg b/docs/material/.icons/material/television-classic-off.svg new file mode 100644 index 000000000..4cf47beb0 --- /dev/null +++ b/docs/material/.icons/material/television-classic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-classic.svg b/docs/material/.icons/material/television-classic.svg new file mode 100644 index 000000000..067a985ab --- /dev/null +++ b/docs/material/.icons/material/television-classic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-clean.svg b/docs/material/.icons/material/television-clean.svg new file mode 100644 index 000000000..338db6fca --- /dev/null +++ b/docs/material/.icons/material/television-clean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-guide.svg b/docs/material/.icons/material/television-guide.svg new file mode 100644 index 000000000..2f930c551 --- /dev/null +++ b/docs/material/.icons/material/television-guide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-off.svg b/docs/material/.icons/material/television-off.svg new file mode 100644 index 000000000..3eec040b2 --- /dev/null +++ b/docs/material/.icons/material/television-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-pause.svg b/docs/material/.icons/material/television-pause.svg new file mode 100644 index 000000000..f8fcb8d0d --- /dev/null +++ b/docs/material/.icons/material/television-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-play.svg b/docs/material/.icons/material/television-play.svg new file mode 100644 index 000000000..2347fa93f --- /dev/null +++ b/docs/material/.icons/material/television-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television-stop.svg b/docs/material/.icons/material/television-stop.svg new file mode 100644 index 000000000..7c9faafd1 --- /dev/null +++ b/docs/material/.icons/material/television-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/television.svg b/docs/material/.icons/material/television.svg new file mode 100644 index 000000000..4423d4841 --- /dev/null +++ b/docs/material/.icons/material/television.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/temperature-celsius.svg b/docs/material/.icons/material/temperature-celsius.svg new file mode 100644 index 000000000..49b54e54c --- /dev/null +++ b/docs/material/.icons/material/temperature-celsius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/temperature-fahrenheit.svg b/docs/material/.icons/material/temperature-fahrenheit.svg new file mode 100644 index 000000000..db671623d --- /dev/null +++ b/docs/material/.icons/material/temperature-fahrenheit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/temperature-kelvin.svg b/docs/material/.icons/material/temperature-kelvin.svg new file mode 100644 index 000000000..8e99bbfcd --- /dev/null +++ b/docs/material/.icons/material/temperature-kelvin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tennis-ball.svg b/docs/material/.icons/material/tennis-ball.svg new file mode 100644 index 000000000..7e6e35275 --- /dev/null +++ b/docs/material/.icons/material/tennis-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tennis.svg b/docs/material/.icons/material/tennis.svg new file mode 100644 index 000000000..62f96afd7 --- /dev/null +++ b/docs/material/.icons/material/tennis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tent.svg b/docs/material/.icons/material/tent.svg new file mode 100644 index 000000000..732701a9a --- /dev/null +++ b/docs/material/.icons/material/tent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/terraform.svg b/docs/material/.icons/material/terraform.svg new file mode 100644 index 000000000..5028cb862 --- /dev/null +++ b/docs/material/.icons/material/terraform.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/terrain.svg b/docs/material/.icons/material/terrain.svg new file mode 100644 index 000000000..d5a500d85 --- /dev/null +++ b/docs/material/.icons/material/terrain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/test-tube-empty.svg b/docs/material/.icons/material/test-tube-empty.svg new file mode 100644 index 000000000..1ecf679cb --- /dev/null +++ b/docs/material/.icons/material/test-tube-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/test-tube-off.svg b/docs/material/.icons/material/test-tube-off.svg new file mode 100644 index 000000000..23d2550ff --- /dev/null +++ b/docs/material/.icons/material/test-tube-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/test-tube.svg b/docs/material/.icons/material/test-tube.svg new file mode 100644 index 000000000..2256e2ac6 --- /dev/null +++ b/docs/material/.icons/material/test-tube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-check-outline.svg b/docs/material/.icons/material/text-box-check-outline.svg new file mode 100644 index 000000000..0bedd0414 --- /dev/null +++ b/docs/material/.icons/material/text-box-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-check.svg b/docs/material/.icons/material/text-box-check.svg new file mode 100644 index 000000000..19a8770b7 --- /dev/null +++ b/docs/material/.icons/material/text-box-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-minus-outline.svg b/docs/material/.icons/material/text-box-minus-outline.svg new file mode 100644 index 000000000..b892e7a05 --- /dev/null +++ b/docs/material/.icons/material/text-box-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-minus.svg b/docs/material/.icons/material/text-box-minus.svg new file mode 100644 index 000000000..59d2bf063 --- /dev/null +++ b/docs/material/.icons/material/text-box-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-multiple-outline.svg b/docs/material/.icons/material/text-box-multiple-outline.svg new file mode 100644 index 000000000..476fd5547 --- /dev/null +++ b/docs/material/.icons/material/text-box-multiple-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-multiple.svg b/docs/material/.icons/material/text-box-multiple.svg new file mode 100644 index 000000000..241d2974c --- /dev/null +++ b/docs/material/.icons/material/text-box-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-outline.svg b/docs/material/.icons/material/text-box-outline.svg new file mode 100644 index 000000000..2fafb5125 --- /dev/null +++ b/docs/material/.icons/material/text-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-plus-outline.svg b/docs/material/.icons/material/text-box-plus-outline.svg new file mode 100644 index 000000000..11819bf9f --- /dev/null +++ b/docs/material/.icons/material/text-box-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-plus.svg b/docs/material/.icons/material/text-box-plus.svg new file mode 100644 index 000000000..36572b893 --- /dev/null +++ b/docs/material/.icons/material/text-box-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-remove-outline.svg b/docs/material/.icons/material/text-box-remove-outline.svg new file mode 100644 index 000000000..4f2651b7a --- /dev/null +++ b/docs/material/.icons/material/text-box-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-remove.svg b/docs/material/.icons/material/text-box-remove.svg new file mode 100644 index 000000000..0110c826d --- /dev/null +++ b/docs/material/.icons/material/text-box-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-search-outline.svg b/docs/material/.icons/material/text-box-search-outline.svg new file mode 100644 index 000000000..174330223 --- /dev/null +++ b/docs/material/.icons/material/text-box-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box-search.svg b/docs/material/.icons/material/text-box-search.svg new file mode 100644 index 000000000..780c725ec --- /dev/null +++ b/docs/material/.icons/material/text-box-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-box.svg b/docs/material/.icons/material/text-box.svg new file mode 100644 index 000000000..b0c688b0b --- /dev/null +++ b/docs/material/.icons/material/text-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-recognition.svg b/docs/material/.icons/material/text-recognition.svg new file mode 100644 index 000000000..b2ee6a036 --- /dev/null +++ b/docs/material/.icons/material/text-recognition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-search.svg b/docs/material/.icons/material/text-search.svg new file mode 100644 index 000000000..12f1d35e6 --- /dev/null +++ b/docs/material/.icons/material/text-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-shadow.svg b/docs/material/.icons/material/text-shadow.svg new file mode 100644 index 000000000..8d13398d9 --- /dev/null +++ b/docs/material/.icons/material/text-shadow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-short.svg b/docs/material/.icons/material/text-short.svg new file mode 100644 index 000000000..454104392 --- /dev/null +++ b/docs/material/.icons/material/text-short.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-subject.svg b/docs/material/.icons/material/text-subject.svg new file mode 100644 index 000000000..58d13045d --- /dev/null +++ b/docs/material/.icons/material/text-subject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-to-speech-off.svg b/docs/material/.icons/material/text-to-speech-off.svg new file mode 100644 index 000000000..3004072e2 --- /dev/null +++ b/docs/material/.icons/material/text-to-speech-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text-to-speech.svg b/docs/material/.icons/material/text-to-speech.svg new file mode 100644 index 000000000..7659bd95d --- /dev/null +++ b/docs/material/.icons/material/text-to-speech.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/text.svg b/docs/material/.icons/material/text.svg new file mode 100644 index 000000000..e5f966abf --- /dev/null +++ b/docs/material/.icons/material/text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/texture-box.svg b/docs/material/.icons/material/texture-box.svg new file mode 100644 index 000000000..543b0cb6f --- /dev/null +++ b/docs/material/.icons/material/texture-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/texture.svg b/docs/material/.icons/material/texture.svg new file mode 100644 index 000000000..29ab3f2a7 --- /dev/null +++ b/docs/material/.icons/material/texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/theater.svg b/docs/material/.icons/material/theater.svg new file mode 100644 index 000000000..f18bf69c5 --- /dev/null +++ b/docs/material/.icons/material/theater.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/theme-light-dark.svg b/docs/material/.icons/material/theme-light-dark.svg new file mode 100644 index 000000000..2008df85d --- /dev/null +++ b/docs/material/.icons/material/theme-light-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-alert.svg b/docs/material/.icons/material/thermometer-alert.svg new file mode 100644 index 000000000..b17fdd547 --- /dev/null +++ b/docs/material/.icons/material/thermometer-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-chevron-down.svg b/docs/material/.icons/material/thermometer-chevron-down.svg new file mode 100644 index 000000000..e24ef7bcc --- /dev/null +++ b/docs/material/.icons/material/thermometer-chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-chevron-up.svg b/docs/material/.icons/material/thermometer-chevron-up.svg new file mode 100644 index 000000000..95bc01355 --- /dev/null +++ b/docs/material/.icons/material/thermometer-chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-high.svg b/docs/material/.icons/material/thermometer-high.svg new file mode 100644 index 000000000..fa0da5c0e --- /dev/null +++ b/docs/material/.icons/material/thermometer-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-lines.svg b/docs/material/.icons/material/thermometer-lines.svg new file mode 100644 index 000000000..12f5c9907 --- /dev/null +++ b/docs/material/.icons/material/thermometer-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-low.svg b/docs/material/.icons/material/thermometer-low.svg new file mode 100644 index 000000000..f75b55226 --- /dev/null +++ b/docs/material/.icons/material/thermometer-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-minus.svg b/docs/material/.icons/material/thermometer-minus.svg new file mode 100644 index 000000000..c0f99e8c8 --- /dev/null +++ b/docs/material/.icons/material/thermometer-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer-plus.svg b/docs/material/.icons/material/thermometer-plus.svg new file mode 100644 index 000000000..725df000a --- /dev/null +++ b/docs/material/.icons/material/thermometer-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermometer.svg b/docs/material/.icons/material/thermometer.svg new file mode 100644 index 000000000..10dbb20e2 --- /dev/null +++ b/docs/material/.icons/material/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermostat-box.svg b/docs/material/.icons/material/thermostat-box.svg new file mode 100644 index 000000000..129f10cba --- /dev/null +++ b/docs/material/.icons/material/thermostat-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thermostat.svg b/docs/material/.icons/material/thermostat.svg new file mode 100644 index 000000000..eb662f7ed --- /dev/null +++ b/docs/material/.icons/material/thermostat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thought-bubble-outline.svg b/docs/material/.icons/material/thought-bubble-outline.svg new file mode 100644 index 000000000..534d73a7f --- /dev/null +++ b/docs/material/.icons/material/thought-bubble-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thought-bubble.svg b/docs/material/.icons/material/thought-bubble.svg new file mode 100644 index 000000000..6dbb26e45 --- /dev/null +++ b/docs/material/.icons/material/thought-bubble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thumb-down-outline.svg b/docs/material/.icons/material/thumb-down-outline.svg new file mode 100644 index 000000000..97cf0258e --- /dev/null +++ b/docs/material/.icons/material/thumb-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thumb-down.svg b/docs/material/.icons/material/thumb-down.svg new file mode 100644 index 000000000..0811b95b9 --- /dev/null +++ b/docs/material/.icons/material/thumb-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thumb-up-outline.svg b/docs/material/.icons/material/thumb-up-outline.svg new file mode 100644 index 000000000..351ad27ca --- /dev/null +++ b/docs/material/.icons/material/thumb-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thumb-up.svg b/docs/material/.icons/material/thumb-up.svg new file mode 100644 index 000000000..7b0745fde --- /dev/null +++ b/docs/material/.icons/material/thumb-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/thumbs-up-down.svg b/docs/material/.icons/material/thumbs-up-down.svg new file mode 100644 index 000000000..d84516847 --- /dev/null +++ b/docs/material/.icons/material/thumbs-up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ticket-account.svg b/docs/material/.icons/material/ticket-account.svg new file mode 100644 index 000000000..886eb5521 --- /dev/null +++ b/docs/material/.icons/material/ticket-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ticket-confirmation-outline.svg b/docs/material/.icons/material/ticket-confirmation-outline.svg new file mode 100644 index 000000000..020d1cd0e --- /dev/null +++ b/docs/material/.icons/material/ticket-confirmation-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ticket-confirmation.svg b/docs/material/.icons/material/ticket-confirmation.svg new file mode 100644 index 000000000..47d387141 --- /dev/null +++ b/docs/material/.icons/material/ticket-confirmation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ticket-outline.svg b/docs/material/.icons/material/ticket-outline.svg new file mode 100644 index 000000000..f7dfb666a --- /dev/null +++ b/docs/material/.icons/material/ticket-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ticket-percent.svg b/docs/material/.icons/material/ticket-percent.svg new file mode 100644 index 000000000..7cb481eed --- /dev/null +++ b/docs/material/.icons/material/ticket-percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ticket.svg b/docs/material/.icons/material/ticket.svg new file mode 100644 index 000000000..071ab85d4 --- /dev/null +++ b/docs/material/.icons/material/ticket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tie.svg b/docs/material/.icons/material/tie.svg new file mode 100644 index 000000000..7b0e040eb --- /dev/null +++ b/docs/material/.icons/material/tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tilde.svg b/docs/material/.icons/material/tilde.svg new file mode 100644 index 000000000..22a0e5a54 --- /dev/null +++ b/docs/material/.icons/material/tilde.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timelapse.svg b/docs/material/.icons/material/timelapse.svg new file mode 100644 index 000000000..acfcb2dee --- /dev/null +++ b/docs/material/.icons/material/timelapse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-alert-outline.svg b/docs/material/.icons/material/timeline-alert-outline.svg new file mode 100644 index 000000000..921ae6ea0 --- /dev/null +++ b/docs/material/.icons/material/timeline-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-alert.svg b/docs/material/.icons/material/timeline-alert.svg new file mode 100644 index 000000000..26137f11c --- /dev/null +++ b/docs/material/.icons/material/timeline-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-clock-outline.svg b/docs/material/.icons/material/timeline-clock-outline.svg new file mode 100644 index 000000000..aba7f0426 --- /dev/null +++ b/docs/material/.icons/material/timeline-clock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-clock.svg b/docs/material/.icons/material/timeline-clock.svg new file mode 100644 index 000000000..5996bb4db --- /dev/null +++ b/docs/material/.icons/material/timeline-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-help-outline.svg b/docs/material/.icons/material/timeline-help-outline.svg new file mode 100644 index 000000000..3cb706ce3 --- /dev/null +++ b/docs/material/.icons/material/timeline-help-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-help.svg b/docs/material/.icons/material/timeline-help.svg new file mode 100644 index 000000000..68399818a --- /dev/null +++ b/docs/material/.icons/material/timeline-help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-outline.svg b/docs/material/.icons/material/timeline-outline.svg new file mode 100644 index 000000000..46bb36bb5 --- /dev/null +++ b/docs/material/.icons/material/timeline-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-plus-outline.svg b/docs/material/.icons/material/timeline-plus-outline.svg new file mode 100644 index 000000000..a8945478e --- /dev/null +++ b/docs/material/.icons/material/timeline-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-plus.svg b/docs/material/.icons/material/timeline-plus.svg new file mode 100644 index 000000000..9b7128063 --- /dev/null +++ b/docs/material/.icons/material/timeline-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-text-outline.svg b/docs/material/.icons/material/timeline-text-outline.svg new file mode 100644 index 000000000..970cc5163 --- /dev/null +++ b/docs/material/.icons/material/timeline-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline-text.svg b/docs/material/.icons/material/timeline-text.svg new file mode 100644 index 000000000..48a771670 --- /dev/null +++ b/docs/material/.icons/material/timeline-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timeline.svg b/docs/material/.icons/material/timeline.svg new file mode 100644 index 000000000..9e9b30c8a --- /dev/null +++ b/docs/material/.icons/material/timeline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-10.svg b/docs/material/.icons/material/timer-10.svg new file mode 100644 index 000000000..e628c0926 --- /dev/null +++ b/docs/material/.icons/material/timer-10.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-3.svg b/docs/material/.icons/material/timer-3.svg new file mode 100644 index 000000000..93b975b68 --- /dev/null +++ b/docs/material/.icons/material/timer-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-off-outline.svg b/docs/material/.icons/material/timer-off-outline.svg new file mode 100644 index 000000000..53a4512a3 --- /dev/null +++ b/docs/material/.icons/material/timer-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-off.svg b/docs/material/.icons/material/timer-off.svg new file mode 100644 index 000000000..c592adf0b --- /dev/null +++ b/docs/material/.icons/material/timer-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-outline.svg b/docs/material/.icons/material/timer-outline.svg new file mode 100644 index 000000000..7eb2dddb7 --- /dev/null +++ b/docs/material/.icons/material/timer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-sand-empty.svg b/docs/material/.icons/material/timer-sand-empty.svg new file mode 100644 index 000000000..c2e9dd787 --- /dev/null +++ b/docs/material/.icons/material/timer-sand-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-sand-full.svg b/docs/material/.icons/material/timer-sand-full.svg new file mode 100644 index 000000000..17400dcd7 --- /dev/null +++ b/docs/material/.icons/material/timer-sand-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer-sand.svg b/docs/material/.icons/material/timer-sand.svg new file mode 100644 index 000000000..462e8d121 --- /dev/null +++ b/docs/material/.icons/material/timer-sand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timer.svg b/docs/material/.icons/material/timer.svg new file mode 100644 index 000000000..e352f3160 --- /dev/null +++ b/docs/material/.icons/material/timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/timetable.svg b/docs/material/.icons/material/timetable.svg new file mode 100644 index 000000000..e8bbacfbe --- /dev/null +++ b/docs/material/.icons/material/timetable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toaster-off.svg b/docs/material/.icons/material/toaster-off.svg new file mode 100644 index 000000000..8707f4909 --- /dev/null +++ b/docs/material/.icons/material/toaster-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toaster-oven.svg b/docs/material/.icons/material/toaster-oven.svg new file mode 100644 index 000000000..ce41571b4 --- /dev/null +++ b/docs/material/.icons/material/toaster-oven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toaster.svg b/docs/material/.icons/material/toaster.svg new file mode 100644 index 000000000..728059f69 --- /dev/null +++ b/docs/material/.icons/material/toaster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toggle-switch-off-outline.svg b/docs/material/.icons/material/toggle-switch-off-outline.svg new file mode 100644 index 000000000..4485ed231 --- /dev/null +++ b/docs/material/.icons/material/toggle-switch-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toggle-switch-off.svg b/docs/material/.icons/material/toggle-switch-off.svg new file mode 100644 index 000000000..2ac0e8655 --- /dev/null +++ b/docs/material/.icons/material/toggle-switch-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toggle-switch-outline.svg b/docs/material/.icons/material/toggle-switch-outline.svg new file mode 100644 index 000000000..9f2186482 --- /dev/null +++ b/docs/material/.icons/material/toggle-switch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toggle-switch.svg b/docs/material/.icons/material/toggle-switch.svg new file mode 100644 index 000000000..5cb7e88ca --- /dev/null +++ b/docs/material/.icons/material/toggle-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toilet.svg b/docs/material/.icons/material/toilet.svg new file mode 100644 index 000000000..c83f48391 --- /dev/null +++ b/docs/material/.icons/material/toilet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toolbox-outline.svg b/docs/material/.icons/material/toolbox-outline.svg new file mode 100644 index 000000000..c88615064 --- /dev/null +++ b/docs/material/.icons/material/toolbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toolbox.svg b/docs/material/.icons/material/toolbox.svg new file mode 100644 index 000000000..7f64fb72d --- /dev/null +++ b/docs/material/.icons/material/toolbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tools.svg b/docs/material/.icons/material/tools.svg new file mode 100644 index 000000000..e48453da3 --- /dev/null +++ b/docs/material/.icons/material/tools.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-account.svg b/docs/material/.icons/material/tooltip-account.svg new file mode 100644 index 000000000..327bffc23 --- /dev/null +++ b/docs/material/.icons/material/tooltip-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-edit-outline.svg b/docs/material/.icons/material/tooltip-edit-outline.svg new file mode 100644 index 000000000..8ee5b4480 --- /dev/null +++ b/docs/material/.icons/material/tooltip-edit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-edit.svg b/docs/material/.icons/material/tooltip-edit.svg new file mode 100644 index 000000000..e8ae71d08 --- /dev/null +++ b/docs/material/.icons/material/tooltip-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-image-outline.svg b/docs/material/.icons/material/tooltip-image-outline.svg new file mode 100644 index 000000000..63b0d6847 --- /dev/null +++ b/docs/material/.icons/material/tooltip-image-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-image.svg b/docs/material/.icons/material/tooltip-image.svg new file mode 100644 index 000000000..aa5c647fa --- /dev/null +++ b/docs/material/.icons/material/tooltip-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-outline.svg b/docs/material/.icons/material/tooltip-outline.svg new file mode 100644 index 000000000..068418306 --- /dev/null +++ b/docs/material/.icons/material/tooltip-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-plus-outline.svg b/docs/material/.icons/material/tooltip-plus-outline.svg new file mode 100644 index 000000000..4052e95f7 --- /dev/null +++ b/docs/material/.icons/material/tooltip-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-plus.svg b/docs/material/.icons/material/tooltip-plus.svg new file mode 100644 index 000000000..7c72f53be --- /dev/null +++ b/docs/material/.icons/material/tooltip-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-text-outline.svg b/docs/material/.icons/material/tooltip-text-outline.svg new file mode 100644 index 000000000..833e842d3 --- /dev/null +++ b/docs/material/.icons/material/tooltip-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip-text.svg b/docs/material/.icons/material/tooltip-text.svg new file mode 100644 index 000000000..3cf2d1411 --- /dev/null +++ b/docs/material/.icons/material/tooltip-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooltip.svg b/docs/material/.icons/material/tooltip.svg new file mode 100644 index 000000000..3ea36ff37 --- /dev/null +++ b/docs/material/.icons/material/tooltip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooth-outline.svg b/docs/material/.icons/material/tooth-outline.svg new file mode 100644 index 000000000..a933a1a0e --- /dev/null +++ b/docs/material/.icons/material/tooth-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tooth.svg b/docs/material/.icons/material/tooth.svg new file mode 100644 index 000000000..e44fdc5ff --- /dev/null +++ b/docs/material/.icons/material/tooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toothbrush-electric.svg b/docs/material/.icons/material/toothbrush-electric.svg new file mode 100644 index 000000000..c5caeb2c6 --- /dev/null +++ b/docs/material/.icons/material/toothbrush-electric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toothbrush-paste.svg b/docs/material/.icons/material/toothbrush-paste.svg new file mode 100644 index 000000000..6b0b3724b --- /dev/null +++ b/docs/material/.icons/material/toothbrush-paste.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toothbrush.svg b/docs/material/.icons/material/toothbrush.svg new file mode 100644 index 000000000..4611894d4 --- /dev/null +++ b/docs/material/.icons/material/toothbrush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tortoise.svg b/docs/material/.icons/material/tortoise.svg new file mode 100644 index 000000000..d56bc727a --- /dev/null +++ b/docs/material/.icons/material/tortoise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toslink.svg b/docs/material/.icons/material/toslink.svg new file mode 100644 index 000000000..11958af7b --- /dev/null +++ b/docs/material/.icons/material/toslink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tournament.svg b/docs/material/.icons/material/tournament.svg new file mode 100644 index 000000000..16a141f7a --- /dev/null +++ b/docs/material/.icons/material/tournament.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tow-truck.svg b/docs/material/.icons/material/tow-truck.svg new file mode 100644 index 000000000..41dc56764 --- /dev/null +++ b/docs/material/.icons/material/tow-truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tower-beach.svg b/docs/material/.icons/material/tower-beach.svg new file mode 100644 index 000000000..217bdddb6 --- /dev/null +++ b/docs/material/.icons/material/tower-beach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tower-fire.svg b/docs/material/.icons/material/tower-fire.svg new file mode 100644 index 000000000..307603228 --- /dev/null +++ b/docs/material/.icons/material/tower-fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-marker-outline.svg b/docs/material/.icons/material/toy-brick-marker-outline.svg new file mode 100644 index 000000000..1064edc12 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-marker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-marker.svg b/docs/material/.icons/material/toy-brick-marker.svg new file mode 100644 index 000000000..a4ba943c6 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-minus-outline.svg b/docs/material/.icons/material/toy-brick-minus-outline.svg new file mode 100644 index 000000000..91ee3bce0 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-minus.svg b/docs/material/.icons/material/toy-brick-minus.svg new file mode 100644 index 000000000..78b512f98 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-outline.svg b/docs/material/.icons/material/toy-brick-outline.svg new file mode 100644 index 000000000..511d07658 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-plus-outline.svg b/docs/material/.icons/material/toy-brick-plus-outline.svg new file mode 100644 index 000000000..f10482ec0 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-plus.svg b/docs/material/.icons/material/toy-brick-plus.svg new file mode 100644 index 000000000..b2a2a76f3 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-remove-outline.svg b/docs/material/.icons/material/toy-brick-remove-outline.svg new file mode 100644 index 000000000..f10482ec0 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-remove.svg b/docs/material/.icons/material/toy-brick-remove.svg new file mode 100644 index 000000000..2ffc27842 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-search-outline.svg b/docs/material/.icons/material/toy-brick-search-outline.svg new file mode 100644 index 000000000..437bb15b2 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick-search.svg b/docs/material/.icons/material/toy-brick-search.svg new file mode 100644 index 000000000..ffce63e03 --- /dev/null +++ b/docs/material/.icons/material/toy-brick-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/toy-brick.svg b/docs/material/.icons/material/toy-brick.svg new file mode 100644 index 000000000..1681c6c3f --- /dev/null +++ b/docs/material/.icons/material/toy-brick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/track-light.svg b/docs/material/.icons/material/track-light.svg new file mode 100644 index 000000000..6bda9ab5f --- /dev/null +++ b/docs/material/.icons/material/track-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trackpad-lock.svg b/docs/material/.icons/material/trackpad-lock.svg new file mode 100644 index 000000000..00ae30dae --- /dev/null +++ b/docs/material/.icons/material/trackpad-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trackpad.svg b/docs/material/.icons/material/trackpad.svg new file mode 100644 index 000000000..a7ae2b7c0 --- /dev/null +++ b/docs/material/.icons/material/trackpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tractor.svg b/docs/material/.icons/material/tractor.svg new file mode 100644 index 000000000..038791f6a --- /dev/null +++ b/docs/material/.icons/material/tractor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trademark.svg b/docs/material/.icons/material/trademark.svg new file mode 100644 index 000000000..5fad41ae7 --- /dev/null +++ b/docs/material/.icons/material/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/traffic-cone.svg b/docs/material/.icons/material/traffic-cone.svg new file mode 100644 index 000000000..c00870a74 --- /dev/null +++ b/docs/material/.icons/material/traffic-cone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/traffic-light.svg b/docs/material/.icons/material/traffic-light.svg new file mode 100644 index 000000000..196202ec9 --- /dev/null +++ b/docs/material/.icons/material/traffic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/train-car.svg b/docs/material/.icons/material/train-car.svg new file mode 100644 index 000000000..c2f29310f --- /dev/null +++ b/docs/material/.icons/material/train-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/train-variant.svg b/docs/material/.icons/material/train-variant.svg new file mode 100644 index 000000000..f68f47d06 --- /dev/null +++ b/docs/material/.icons/material/train-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/train.svg b/docs/material/.icons/material/train.svg new file mode 100644 index 000000000..b7ef247d5 --- /dev/null +++ b/docs/material/.icons/material/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tram-side.svg b/docs/material/.icons/material/tram-side.svg new file mode 100644 index 000000000..14e192050 --- /dev/null +++ b/docs/material/.icons/material/tram-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tram.svg b/docs/material/.icons/material/tram.svg new file mode 100644 index 000000000..28e123d1f --- /dev/null +++ b/docs/material/.icons/material/tram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transcribe-close.svg b/docs/material/.icons/material/transcribe-close.svg new file mode 100644 index 000000000..32f8dfb0e --- /dev/null +++ b/docs/material/.icons/material/transcribe-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transcribe.svg b/docs/material/.icons/material/transcribe.svg new file mode 100644 index 000000000..59ae88c81 --- /dev/null +++ b/docs/material/.icons/material/transcribe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transfer-down.svg b/docs/material/.icons/material/transfer-down.svg new file mode 100644 index 000000000..f510a7618 --- /dev/null +++ b/docs/material/.icons/material/transfer-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transfer-left.svg b/docs/material/.icons/material/transfer-left.svg new file mode 100644 index 000000000..d82467d32 --- /dev/null +++ b/docs/material/.icons/material/transfer-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transfer-right.svg b/docs/material/.icons/material/transfer-right.svg new file mode 100644 index 000000000..0379f206f --- /dev/null +++ b/docs/material/.icons/material/transfer-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transfer-up.svg b/docs/material/.icons/material/transfer-up.svg new file mode 100644 index 000000000..674c1ef38 --- /dev/null +++ b/docs/material/.icons/material/transfer-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transfer.svg b/docs/material/.icons/material/transfer.svg new file mode 100644 index 000000000..fb4ce5428 --- /dev/null +++ b/docs/material/.icons/material/transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transit-connection-variant.svg b/docs/material/.icons/material/transit-connection-variant.svg new file mode 100644 index 000000000..87cef9e4d --- /dev/null +++ b/docs/material/.icons/material/transit-connection-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transit-connection.svg b/docs/material/.icons/material/transit-connection.svg new file mode 100644 index 000000000..d3ece6c53 --- /dev/null +++ b/docs/material/.icons/material/transit-connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transit-detour.svg b/docs/material/.icons/material/transit-detour.svg new file mode 100644 index 000000000..b455b9e13 --- /dev/null +++ b/docs/material/.icons/material/transit-detour.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transit-transfer.svg b/docs/material/.icons/material/transit-transfer.svg new file mode 100644 index 000000000..f006b3a5b --- /dev/null +++ b/docs/material/.icons/material/transit-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transition-masked.svg b/docs/material/.icons/material/transition-masked.svg new file mode 100644 index 000000000..64cd7bf7b --- /dev/null +++ b/docs/material/.icons/material/transition-masked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transition.svg b/docs/material/.icons/material/transition.svg new file mode 100644 index 000000000..ef8b7296f --- /dev/null +++ b/docs/material/.icons/material/transition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/translate-off.svg b/docs/material/.icons/material/translate-off.svg new file mode 100644 index 000000000..5c06efd72 --- /dev/null +++ b/docs/material/.icons/material/translate-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/translate.svg b/docs/material/.icons/material/translate.svg new file mode 100644 index 000000000..bac1efd16 --- /dev/null +++ b/docs/material/.icons/material/translate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/transmission-tower.svg b/docs/material/.icons/material/transmission-tower.svg new file mode 100644 index 000000000..fbc12331c --- /dev/null +++ b/docs/material/.icons/material/transmission-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trash-can-outline.svg b/docs/material/.icons/material/trash-can-outline.svg new file mode 100644 index 000000000..7fe042401 --- /dev/null +++ b/docs/material/.icons/material/trash-can-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trash-can.svg b/docs/material/.icons/material/trash-can.svg new file mode 100644 index 000000000..31f6b08de --- /dev/null +++ b/docs/material/.icons/material/trash-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tray-alert.svg b/docs/material/.icons/material/tray-alert.svg new file mode 100644 index 000000000..568b2df15 --- /dev/null +++ b/docs/material/.icons/material/tray-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tray-full.svg b/docs/material/.icons/material/tray-full.svg new file mode 100644 index 000000000..342126b65 --- /dev/null +++ b/docs/material/.icons/material/tray-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tray-minus.svg b/docs/material/.icons/material/tray-minus.svg new file mode 100644 index 000000000..a5963de52 --- /dev/null +++ b/docs/material/.icons/material/tray-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tray-plus.svg b/docs/material/.icons/material/tray-plus.svg new file mode 100644 index 000000000..71bcc8681 --- /dev/null +++ b/docs/material/.icons/material/tray-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tray-remove.svg b/docs/material/.icons/material/tray-remove.svg new file mode 100644 index 000000000..c4adac21a --- /dev/null +++ b/docs/material/.icons/material/tray-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tray.svg b/docs/material/.icons/material/tray.svg new file mode 100644 index 000000000..5ee5f8e83 --- /dev/null +++ b/docs/material/.icons/material/tray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/treasure-chest.svg b/docs/material/.icons/material/treasure-chest.svg new file mode 100644 index 000000000..0f7627725 --- /dev/null +++ b/docs/material/.icons/material/treasure-chest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tree-outline.svg b/docs/material/.icons/material/tree-outline.svg new file mode 100644 index 000000000..48d2b990e --- /dev/null +++ b/docs/material/.icons/material/tree-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tree.svg b/docs/material/.icons/material/tree.svg new file mode 100644 index 000000000..b8e86d5eb --- /dev/null +++ b/docs/material/.icons/material/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trello.svg b/docs/material/.icons/material/trello.svg new file mode 100644 index 000000000..da327e1d1 --- /dev/null +++ b/docs/material/.icons/material/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trending-down.svg b/docs/material/.icons/material/trending-down.svg new file mode 100644 index 000000000..0636afdf8 --- /dev/null +++ b/docs/material/.icons/material/trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trending-neutral.svg b/docs/material/.icons/material/trending-neutral.svg new file mode 100644 index 000000000..799350296 --- /dev/null +++ b/docs/material/.icons/material/trending-neutral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trending-up.svg b/docs/material/.icons/material/trending-up.svg new file mode 100644 index 000000000..8ca76a044 --- /dev/null +++ b/docs/material/.icons/material/trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/triangle-outline.svg b/docs/material/.icons/material/triangle-outline.svg new file mode 100644 index 000000000..2d01d2bfd --- /dev/null +++ b/docs/material/.icons/material/triangle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/triangle.svg b/docs/material/.icons/material/triangle.svg new file mode 100644 index 000000000..6de1d39fe --- /dev/null +++ b/docs/material/.icons/material/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/triforce.svg b/docs/material/.icons/material/triforce.svg new file mode 100644 index 000000000..6bee7b960 --- /dev/null +++ b/docs/material/.icons/material/triforce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trophy-award.svg b/docs/material/.icons/material/trophy-award.svg new file mode 100644 index 000000000..3c91d5562 --- /dev/null +++ b/docs/material/.icons/material/trophy-award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trophy-broken.svg b/docs/material/.icons/material/trophy-broken.svg new file mode 100644 index 000000000..97a390460 --- /dev/null +++ b/docs/material/.icons/material/trophy-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trophy-outline.svg b/docs/material/.icons/material/trophy-outline.svg new file mode 100644 index 000000000..bf312d157 --- /dev/null +++ b/docs/material/.icons/material/trophy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trophy-variant-outline.svg b/docs/material/.icons/material/trophy-variant-outline.svg new file mode 100644 index 000000000..ab3d06f58 --- /dev/null +++ b/docs/material/.icons/material/trophy-variant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trophy-variant.svg b/docs/material/.icons/material/trophy-variant.svg new file mode 100644 index 000000000..bb4141e48 --- /dev/null +++ b/docs/material/.icons/material/trophy-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trophy.svg b/docs/material/.icons/material/trophy.svg new file mode 100644 index 000000000..9a4f39491 --- /dev/null +++ b/docs/material/.icons/material/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-check-outline.svg b/docs/material/.icons/material/truck-check-outline.svg new file mode 100644 index 000000000..b32ce0f1c --- /dev/null +++ b/docs/material/.icons/material/truck-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-check.svg b/docs/material/.icons/material/truck-check.svg new file mode 100644 index 000000000..d8e629ed1 --- /dev/null +++ b/docs/material/.icons/material/truck-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-delivery-outline.svg b/docs/material/.icons/material/truck-delivery-outline.svg new file mode 100644 index 000000000..f2d686a20 --- /dev/null +++ b/docs/material/.icons/material/truck-delivery-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-delivery.svg b/docs/material/.icons/material/truck-delivery.svg new file mode 100644 index 000000000..8cfdafed9 --- /dev/null +++ b/docs/material/.icons/material/truck-delivery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-fast-outline.svg b/docs/material/.icons/material/truck-fast-outline.svg new file mode 100644 index 000000000..ec1fd30a8 --- /dev/null +++ b/docs/material/.icons/material/truck-fast-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-fast.svg b/docs/material/.icons/material/truck-fast.svg new file mode 100644 index 000000000..fb6056824 --- /dev/null +++ b/docs/material/.icons/material/truck-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-outline.svg b/docs/material/.icons/material/truck-outline.svg new file mode 100644 index 000000000..fc619d13f --- /dev/null +++ b/docs/material/.icons/material/truck-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck-trailer.svg b/docs/material/.icons/material/truck-trailer.svg new file mode 100644 index 000000000..ef6e4194a --- /dev/null +++ b/docs/material/.icons/material/truck-trailer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/truck.svg b/docs/material/.icons/material/truck.svg new file mode 100644 index 000000000..0d44ab232 --- /dev/null +++ b/docs/material/.icons/material/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/trumpet.svg b/docs/material/.icons/material/trumpet.svg new file mode 100644 index 000000000..05395ff2d --- /dev/null +++ b/docs/material/.icons/material/trumpet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tshirt-crew-outline.svg b/docs/material/.icons/material/tshirt-crew-outline.svg new file mode 100644 index 000000000..4ba5e99de --- /dev/null +++ b/docs/material/.icons/material/tshirt-crew-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tshirt-crew.svg b/docs/material/.icons/material/tshirt-crew.svg new file mode 100644 index 000000000..fa010f7f0 --- /dev/null +++ b/docs/material/.icons/material/tshirt-crew.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tshirt-v-outline.svg b/docs/material/.icons/material/tshirt-v-outline.svg new file mode 100644 index 000000000..837805605 --- /dev/null +++ b/docs/material/.icons/material/tshirt-v-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tshirt-v.svg b/docs/material/.icons/material/tshirt-v.svg new file mode 100644 index 000000000..ee182e483 --- /dev/null +++ b/docs/material/.icons/material/tshirt-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tumble-dryer-alert.svg b/docs/material/.icons/material/tumble-dryer-alert.svg new file mode 100644 index 000000000..ede00144e --- /dev/null +++ b/docs/material/.icons/material/tumble-dryer-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tumble-dryer-off.svg b/docs/material/.icons/material/tumble-dryer-off.svg new file mode 100644 index 000000000..ba65cd580 --- /dev/null +++ b/docs/material/.icons/material/tumble-dryer-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tumble-dryer.svg b/docs/material/.icons/material/tumble-dryer.svg new file mode 100644 index 000000000..a18db566e --- /dev/null +++ b/docs/material/.icons/material/tumble-dryer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tune-vertical.svg b/docs/material/.icons/material/tune-vertical.svg new file mode 100644 index 000000000..39f4288fc --- /dev/null +++ b/docs/material/.icons/material/tune-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/tune.svg b/docs/material/.icons/material/tune.svg new file mode 100644 index 000000000..041f1dbb5 --- /dev/null +++ b/docs/material/.icons/material/tune.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/turnstile-outline.svg b/docs/material/.icons/material/turnstile-outline.svg new file mode 100644 index 000000000..e7f11b2d1 --- /dev/null +++ b/docs/material/.icons/material/turnstile-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/turnstile.svg b/docs/material/.icons/material/turnstile.svg new file mode 100644 index 000000000..e089c4c0b --- /dev/null +++ b/docs/material/.icons/material/turnstile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/turtle.svg b/docs/material/.icons/material/turtle.svg new file mode 100644 index 000000000..4a7046545 --- /dev/null +++ b/docs/material/.icons/material/turtle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/twitch.svg b/docs/material/.icons/material/twitch.svg new file mode 100644 index 000000000..294d2b4f0 --- /dev/null +++ b/docs/material/.icons/material/twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/twitter-retweet.svg b/docs/material/.icons/material/twitter-retweet.svg new file mode 100644 index 000000000..b3feb38a9 --- /dev/null +++ b/docs/material/.icons/material/twitter-retweet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/twitter.svg b/docs/material/.icons/material/twitter.svg new file mode 100644 index 000000000..c6f679680 --- /dev/null +++ b/docs/material/.icons/material/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/two-factor-authentication.svg b/docs/material/.icons/material/two-factor-authentication.svg new file mode 100644 index 000000000..913379039 --- /dev/null +++ b/docs/material/.icons/material/two-factor-authentication.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/typewriter.svg b/docs/material/.icons/material/typewriter.svg new file mode 100644 index 000000000..93f015eb2 --- /dev/null +++ b/docs/material/.icons/material/typewriter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ubisoft.svg b/docs/material/.icons/material/ubisoft.svg new file mode 100644 index 000000000..f84d736f8 --- /dev/null +++ b/docs/material/.icons/material/ubisoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ubuntu.svg b/docs/material/.icons/material/ubuntu.svg new file mode 100644 index 000000000..7362008cc --- /dev/null +++ b/docs/material/.icons/material/ubuntu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ufo-outline.svg b/docs/material/.icons/material/ufo-outline.svg new file mode 100644 index 000000000..19d00bac0 --- /dev/null +++ b/docs/material/.icons/material/ufo-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ufo.svg b/docs/material/.icons/material/ufo.svg new file mode 100644 index 000000000..b4d93262e --- /dev/null +++ b/docs/material/.icons/material/ufo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ultra-high-definition.svg b/docs/material/.icons/material/ultra-high-definition.svg new file mode 100644 index 000000000..71b2d60f8 --- /dev/null +++ b/docs/material/.icons/material/ultra-high-definition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/umbraco.svg b/docs/material/.icons/material/umbraco.svg new file mode 100644 index 000000000..560157e53 --- /dev/null +++ b/docs/material/.icons/material/umbraco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/umbrella-closed-outline.svg b/docs/material/.icons/material/umbrella-closed-outline.svg new file mode 100644 index 000000000..39fc0838a --- /dev/null +++ b/docs/material/.icons/material/umbrella-closed-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/umbrella-closed-variant.svg b/docs/material/.icons/material/umbrella-closed-variant.svg new file mode 100644 index 000000000..b48d51012 --- /dev/null +++ b/docs/material/.icons/material/umbrella-closed-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/umbrella-closed.svg b/docs/material/.icons/material/umbrella-closed.svg new file mode 100644 index 000000000..f11f942ca --- /dev/null +++ b/docs/material/.icons/material/umbrella-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/umbrella-outline.svg b/docs/material/.icons/material/umbrella-outline.svg new file mode 100644 index 000000000..bf41ccf81 --- /dev/null +++ b/docs/material/.icons/material/umbrella-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/umbrella.svg b/docs/material/.icons/material/umbrella.svg new file mode 100644 index 000000000..90e82fa6f --- /dev/null +++ b/docs/material/.icons/material/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/undo-variant.svg b/docs/material/.icons/material/undo-variant.svg new file mode 100644 index 000000000..481ef757e --- /dev/null +++ b/docs/material/.icons/material/undo-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/undo.svg b/docs/material/.icons/material/undo.svg new file mode 100644 index 000000000..0e1558a22 --- /dev/null +++ b/docs/material/.icons/material/undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/unfold-less-horizontal.svg b/docs/material/.icons/material/unfold-less-horizontal.svg new file mode 100644 index 000000000..889e7b3d4 --- /dev/null +++ b/docs/material/.icons/material/unfold-less-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/unfold-less-vertical.svg b/docs/material/.icons/material/unfold-less-vertical.svg new file mode 100644 index 000000000..94cbe530e --- /dev/null +++ b/docs/material/.icons/material/unfold-less-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/unfold-more-horizontal.svg b/docs/material/.icons/material/unfold-more-horizontal.svg new file mode 100644 index 000000000..38b87a80c --- /dev/null +++ b/docs/material/.icons/material/unfold-more-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/unfold-more-vertical.svg b/docs/material/.icons/material/unfold-more-vertical.svg new file mode 100644 index 000000000..0798b3628 --- /dev/null +++ b/docs/material/.icons/material/unfold-more-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/ungroup.svg b/docs/material/.icons/material/ungroup.svg new file mode 100644 index 000000000..77dc5bf8f --- /dev/null +++ b/docs/material/.icons/material/ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/unicode.svg b/docs/material/.icons/material/unicode.svg new file mode 100644 index 000000000..0b75c4456 --- /dev/null +++ b/docs/material/.icons/material/unicode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/unity.svg b/docs/material/.icons/material/unity.svg new file mode 100644 index 000000000..cbe48204b --- /dev/null +++ b/docs/material/.icons/material/unity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/unreal.svg b/docs/material/.icons/material/unreal.svg new file mode 100644 index 000000000..40f3de57e --- /dev/null +++ b/docs/material/.icons/material/unreal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/untappd.svg b/docs/material/.icons/material/untappd.svg new file mode 100644 index 000000000..13917fca1 --- /dev/null +++ b/docs/material/.icons/material/untappd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/update.svg b/docs/material/.icons/material/update.svg new file mode 100644 index 000000000..4e45fa7be --- /dev/null +++ b/docs/material/.icons/material/update.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-lock-outline.svg b/docs/material/.icons/material/upload-lock-outline.svg new file mode 100644 index 000000000..03838392a --- /dev/null +++ b/docs/material/.icons/material/upload-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-lock.svg b/docs/material/.icons/material/upload-lock.svg new file mode 100644 index 000000000..48022788a --- /dev/null +++ b/docs/material/.icons/material/upload-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-multiple.svg b/docs/material/.icons/material/upload-multiple.svg new file mode 100644 index 000000000..5189863a9 --- /dev/null +++ b/docs/material/.icons/material/upload-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-network-outline.svg b/docs/material/.icons/material/upload-network-outline.svg new file mode 100644 index 000000000..0014a379f --- /dev/null +++ b/docs/material/.icons/material/upload-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-network.svg b/docs/material/.icons/material/upload-network.svg new file mode 100644 index 000000000..999dbc7d2 --- /dev/null +++ b/docs/material/.icons/material/upload-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-off-outline.svg b/docs/material/.icons/material/upload-off-outline.svg new file mode 100644 index 000000000..49c283a0f --- /dev/null +++ b/docs/material/.icons/material/upload-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-off.svg b/docs/material/.icons/material/upload-off.svg new file mode 100644 index 000000000..098c143c7 --- /dev/null +++ b/docs/material/.icons/material/upload-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload-outline.svg b/docs/material/.icons/material/upload-outline.svg new file mode 100644 index 000000000..903d8621c --- /dev/null +++ b/docs/material/.icons/material/upload-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/upload.svg b/docs/material/.icons/material/upload.svg new file mode 100644 index 000000000..60406fbc5 --- /dev/null +++ b/docs/material/.icons/material/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/usb-flash-drive-outline.svg b/docs/material/.icons/material/usb-flash-drive-outline.svg new file mode 100644 index 000000000..31677cdce --- /dev/null +++ b/docs/material/.icons/material/usb-flash-drive-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/usb-flash-drive.svg b/docs/material/.icons/material/usb-flash-drive.svg new file mode 100644 index 000000000..60e74e903 --- /dev/null +++ b/docs/material/.icons/material/usb-flash-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/usb-port.svg b/docs/material/.icons/material/usb-port.svg new file mode 100644 index 000000000..d81e34ead --- /dev/null +++ b/docs/material/.icons/material/usb-port.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/usb.svg b/docs/material/.icons/material/usb.svg new file mode 100644 index 000000000..b55ae67f9 --- /dev/null +++ b/docs/material/.icons/material/usb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/valve-closed.svg b/docs/material/.icons/material/valve-closed.svg new file mode 100644 index 000000000..df4b8f7e3 --- /dev/null +++ b/docs/material/.icons/material/valve-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/valve-open.svg b/docs/material/.icons/material/valve-open.svg new file mode 100644 index 000000000..6e73acbfd --- /dev/null +++ b/docs/material/.icons/material/valve-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/valve.svg b/docs/material/.icons/material/valve.svg new file mode 100644 index 000000000..03b2651b2 --- /dev/null +++ b/docs/material/.icons/material/valve.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/van-passenger.svg b/docs/material/.icons/material/van-passenger.svg new file mode 100644 index 000000000..0cafa2214 --- /dev/null +++ b/docs/material/.icons/material/van-passenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/van-utility.svg b/docs/material/.icons/material/van-utility.svg new file mode 100644 index 000000000..b6734e53c --- /dev/null +++ b/docs/material/.icons/material/van-utility.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vanish.svg b/docs/material/.icons/material/vanish.svg new file mode 100644 index 000000000..919045ab9 --- /dev/null +++ b/docs/material/.icons/material/vanish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vanity-light.svg b/docs/material/.icons/material/vanity-light.svg new file mode 100644 index 000000000..eae22830d --- /dev/null +++ b/docs/material/.icons/material/vanity-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/variable-box.svg b/docs/material/.icons/material/variable-box.svg new file mode 100644 index 000000000..79f9cf5be --- /dev/null +++ b/docs/material/.icons/material/variable-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/variable.svg b/docs/material/.icons/material/variable.svg new file mode 100644 index 000000000..c4c981a67 --- /dev/null +++ b/docs/material/.icons/material/variable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-arrange-above.svg b/docs/material/.icons/material/vector-arrange-above.svg new file mode 100644 index 000000000..14de42063 --- /dev/null +++ b/docs/material/.icons/material/vector-arrange-above.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-arrange-below.svg b/docs/material/.icons/material/vector-arrange-below.svg new file mode 100644 index 000000000..6cdc0b0b7 --- /dev/null +++ b/docs/material/.icons/material/vector-arrange-below.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-bezier.svg b/docs/material/.icons/material/vector-bezier.svg new file mode 100644 index 000000000..4506c7ff6 --- /dev/null +++ b/docs/material/.icons/material/vector-bezier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-circle-variant.svg b/docs/material/.icons/material/vector-circle-variant.svg new file mode 100644 index 000000000..5204113d8 --- /dev/null +++ b/docs/material/.icons/material/vector-circle-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-circle.svg b/docs/material/.icons/material/vector-circle.svg new file mode 100644 index 000000000..fe4bd65a5 --- /dev/null +++ b/docs/material/.icons/material/vector-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-combine.svg b/docs/material/.icons/material/vector-combine.svg new file mode 100644 index 000000000..c6119cb67 --- /dev/null +++ b/docs/material/.icons/material/vector-combine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-curve.svg b/docs/material/.icons/material/vector-curve.svg new file mode 100644 index 000000000..48dd94a05 --- /dev/null +++ b/docs/material/.icons/material/vector-curve.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-difference-ab.svg b/docs/material/.icons/material/vector-difference-ab.svg new file mode 100644 index 000000000..69d3a6b46 --- /dev/null +++ b/docs/material/.icons/material/vector-difference-ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-difference-ba.svg b/docs/material/.icons/material/vector-difference-ba.svg new file mode 100644 index 000000000..89368bdf0 --- /dev/null +++ b/docs/material/.icons/material/vector-difference-ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-difference.svg b/docs/material/.icons/material/vector-difference.svg new file mode 100644 index 000000000..20625a057 --- /dev/null +++ b/docs/material/.icons/material/vector-difference.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-ellipse.svg b/docs/material/.icons/material/vector-ellipse.svg new file mode 100644 index 000000000..459a85858 --- /dev/null +++ b/docs/material/.icons/material/vector-ellipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-intersection.svg b/docs/material/.icons/material/vector-intersection.svg new file mode 100644 index 000000000..10acd3a8f --- /dev/null +++ b/docs/material/.icons/material/vector-intersection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-line.svg b/docs/material/.icons/material/vector-line.svg new file mode 100644 index 000000000..8c8dce7e1 --- /dev/null +++ b/docs/material/.icons/material/vector-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-link.svg b/docs/material/.icons/material/vector-link.svg new file mode 100644 index 000000000..d487656be --- /dev/null +++ b/docs/material/.icons/material/vector-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-point.svg b/docs/material/.icons/material/vector-point.svg new file mode 100644 index 000000000..bf59e41db --- /dev/null +++ b/docs/material/.icons/material/vector-point.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-polygon.svg b/docs/material/.icons/material/vector-polygon.svg new file mode 100644 index 000000000..6efb05cf7 --- /dev/null +++ b/docs/material/.icons/material/vector-polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-polyline-edit.svg b/docs/material/.icons/material/vector-polyline-edit.svg new file mode 100644 index 000000000..c3e8b3512 --- /dev/null +++ b/docs/material/.icons/material/vector-polyline-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-polyline-minus.svg b/docs/material/.icons/material/vector-polyline-minus.svg new file mode 100644 index 000000000..c45cc4295 --- /dev/null +++ b/docs/material/.icons/material/vector-polyline-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-polyline-plus.svg b/docs/material/.icons/material/vector-polyline-plus.svg new file mode 100644 index 000000000..8820cbd2d --- /dev/null +++ b/docs/material/.icons/material/vector-polyline-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-polyline-remove.svg b/docs/material/.icons/material/vector-polyline-remove.svg new file mode 100644 index 000000000..6d8cf06a3 --- /dev/null +++ b/docs/material/.icons/material/vector-polyline-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-polyline.svg b/docs/material/.icons/material/vector-polyline.svg new file mode 100644 index 000000000..b8af78998 --- /dev/null +++ b/docs/material/.icons/material/vector-polyline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-radius.svg b/docs/material/.icons/material/vector-radius.svg new file mode 100644 index 000000000..1ea1d62ff --- /dev/null +++ b/docs/material/.icons/material/vector-radius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-rectangle.svg b/docs/material/.icons/material/vector-rectangle.svg new file mode 100644 index 000000000..195355fc6 --- /dev/null +++ b/docs/material/.icons/material/vector-rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-selection.svg b/docs/material/.icons/material/vector-selection.svg new file mode 100644 index 000000000..ef00f7a43 --- /dev/null +++ b/docs/material/.icons/material/vector-selection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-square.svg b/docs/material/.icons/material/vector-square.svg new file mode 100644 index 000000000..ebeb0bd92 --- /dev/null +++ b/docs/material/.icons/material/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-triangle.svg b/docs/material/.icons/material/vector-triangle.svg new file mode 100644 index 000000000..77e3e3d31 --- /dev/null +++ b/docs/material/.icons/material/vector-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vector-union.svg b/docs/material/.icons/material/vector-union.svg new file mode 100644 index 000000000..5d3e681f7 --- /dev/null +++ b/docs/material/.icons/material/vector-union.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vhs.svg b/docs/material/.icons/material/vhs.svg new file mode 100644 index 000000000..3e8eb54e5 --- /dev/null +++ b/docs/material/.icons/material/vhs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vibrate-off.svg b/docs/material/.icons/material/vibrate-off.svg new file mode 100644 index 000000000..ce3f59730 --- /dev/null +++ b/docs/material/.icons/material/vibrate-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vibrate.svg b/docs/material/.icons/material/vibrate.svg new file mode 100644 index 000000000..0aa61430e --- /dev/null +++ b/docs/material/.icons/material/vibrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-3d-off.svg b/docs/material/.icons/material/video-3d-off.svg new file mode 100644 index 000000000..ef1e37a44 --- /dev/null +++ b/docs/material/.icons/material/video-3d-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-3d-variant.svg b/docs/material/.icons/material/video-3d-variant.svg new file mode 100644 index 000000000..dfb8ca7c9 --- /dev/null +++ b/docs/material/.icons/material/video-3d-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-3d.svg b/docs/material/.icons/material/video-3d.svg new file mode 100644 index 000000000..8d8e1c826 --- /dev/null +++ b/docs/material/.icons/material/video-3d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-4k-box.svg b/docs/material/.icons/material/video-4k-box.svg new file mode 100644 index 000000000..e3835d466 --- /dev/null +++ b/docs/material/.icons/material/video-4k-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-account.svg b/docs/material/.icons/material/video-account.svg new file mode 100644 index 000000000..4d229c2b7 --- /dev/null +++ b/docs/material/.icons/material/video-account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-box-off.svg b/docs/material/.icons/material/video-box-off.svg new file mode 100644 index 000000000..9bcfc9fdd --- /dev/null +++ b/docs/material/.icons/material/video-box-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-box.svg b/docs/material/.icons/material/video-box.svg new file mode 100644 index 000000000..5bf12ee51 --- /dev/null +++ b/docs/material/.icons/material/video-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-check-outline.svg b/docs/material/.icons/material/video-check-outline.svg new file mode 100644 index 000000000..e45d3e06f --- /dev/null +++ b/docs/material/.icons/material/video-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-check.svg b/docs/material/.icons/material/video-check.svg new file mode 100644 index 000000000..7430bb375 --- /dev/null +++ b/docs/material/.icons/material/video-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-image.svg b/docs/material/.icons/material/video-image.svg new file mode 100644 index 000000000..8d4229a7d --- /dev/null +++ b/docs/material/.icons/material/video-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-input-antenna.svg b/docs/material/.icons/material/video-input-antenna.svg new file mode 100644 index 000000000..b4c9d1747 --- /dev/null +++ b/docs/material/.icons/material/video-input-antenna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-input-component.svg b/docs/material/.icons/material/video-input-component.svg new file mode 100644 index 000000000..aa155b533 --- /dev/null +++ b/docs/material/.icons/material/video-input-component.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-input-hdmi.svg b/docs/material/.icons/material/video-input-hdmi.svg new file mode 100644 index 000000000..f5b4c39b5 --- /dev/null +++ b/docs/material/.icons/material/video-input-hdmi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-input-scart.svg b/docs/material/.icons/material/video-input-scart.svg new file mode 100644 index 000000000..63860e152 --- /dev/null +++ b/docs/material/.icons/material/video-input-scart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-input-svideo.svg b/docs/material/.icons/material/video-input-svideo.svg new file mode 100644 index 000000000..9c715e991 --- /dev/null +++ b/docs/material/.icons/material/video-input-svideo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-minus-outline.svg b/docs/material/.icons/material/video-minus-outline.svg new file mode 100644 index 000000000..c4911fa98 --- /dev/null +++ b/docs/material/.icons/material/video-minus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-minus.svg b/docs/material/.icons/material/video-minus.svg new file mode 100644 index 000000000..170841e1a --- /dev/null +++ b/docs/material/.icons/material/video-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-off-outline.svg b/docs/material/.icons/material/video-off-outline.svg new file mode 100644 index 000000000..350968c63 --- /dev/null +++ b/docs/material/.icons/material/video-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-off.svg b/docs/material/.icons/material/video-off.svg new file mode 100644 index 000000000..7e4276ac1 --- /dev/null +++ b/docs/material/.icons/material/video-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-outline.svg b/docs/material/.icons/material/video-outline.svg new file mode 100644 index 000000000..07b57b8bc --- /dev/null +++ b/docs/material/.icons/material/video-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-plus-outline.svg b/docs/material/.icons/material/video-plus-outline.svg new file mode 100644 index 000000000..25a2a3f33 --- /dev/null +++ b/docs/material/.icons/material/video-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-plus.svg b/docs/material/.icons/material/video-plus.svg new file mode 100644 index 000000000..ac72cd98b --- /dev/null +++ b/docs/material/.icons/material/video-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-stabilization.svg b/docs/material/.icons/material/video-stabilization.svg new file mode 100644 index 000000000..191ae59d0 --- /dev/null +++ b/docs/material/.icons/material/video-stabilization.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-switch-outline.svg b/docs/material/.icons/material/video-switch-outline.svg new file mode 100644 index 000000000..0e0145e51 --- /dev/null +++ b/docs/material/.icons/material/video-switch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-switch.svg b/docs/material/.icons/material/video-switch.svg new file mode 100644 index 000000000..8b4b22964 --- /dev/null +++ b/docs/material/.icons/material/video-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-vintage.svg b/docs/material/.icons/material/video-vintage.svg new file mode 100644 index 000000000..3381f18ee --- /dev/null +++ b/docs/material/.icons/material/video-vintage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-wireless-outline.svg b/docs/material/.icons/material/video-wireless-outline.svg new file mode 100644 index 000000000..d051e74f5 --- /dev/null +++ b/docs/material/.icons/material/video-wireless-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video-wireless.svg b/docs/material/.icons/material/video-wireless.svg new file mode 100644 index 000000000..02e8ab264 --- /dev/null +++ b/docs/material/.icons/material/video-wireless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/video.svg b/docs/material/.icons/material/video.svg new file mode 100644 index 000000000..491f73f0e --- /dev/null +++ b/docs/material/.icons/material/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-agenda-outline.svg b/docs/material/.icons/material/view-agenda-outline.svg new file mode 100644 index 000000000..697cac459 --- /dev/null +++ b/docs/material/.icons/material/view-agenda-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-agenda.svg b/docs/material/.icons/material/view-agenda.svg new file mode 100644 index 000000000..5ae3ad97d --- /dev/null +++ b/docs/material/.icons/material/view-agenda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-array.svg b/docs/material/.icons/material/view-array.svg new file mode 100644 index 000000000..f126273d2 --- /dev/null +++ b/docs/material/.icons/material/view-array.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-carousel.svg b/docs/material/.icons/material/view-carousel.svg new file mode 100644 index 000000000..9defcc9d2 --- /dev/null +++ b/docs/material/.icons/material/view-carousel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-column.svg b/docs/material/.icons/material/view-column.svg new file mode 100644 index 000000000..71f4a5f7e --- /dev/null +++ b/docs/material/.icons/material/view-column.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-comfy.svg b/docs/material/.icons/material/view-comfy.svg new file mode 100644 index 000000000..c1196c868 --- /dev/null +++ b/docs/material/.icons/material/view-comfy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-compact-outline.svg b/docs/material/.icons/material/view-compact-outline.svg new file mode 100644 index 000000000..ed872be30 --- /dev/null +++ b/docs/material/.icons/material/view-compact-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-compact.svg b/docs/material/.icons/material/view-compact.svg new file mode 100644 index 000000000..7f2304d47 --- /dev/null +++ b/docs/material/.icons/material/view-compact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-dashboard-outline.svg b/docs/material/.icons/material/view-dashboard-outline.svg new file mode 100644 index 000000000..193aefbab --- /dev/null +++ b/docs/material/.icons/material/view-dashboard-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-dashboard-variant.svg b/docs/material/.icons/material/view-dashboard-variant.svg new file mode 100644 index 000000000..2216760a1 --- /dev/null +++ b/docs/material/.icons/material/view-dashboard-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-dashboard.svg b/docs/material/.icons/material/view-dashboard.svg new file mode 100644 index 000000000..8314ea627 --- /dev/null +++ b/docs/material/.icons/material/view-dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-day.svg b/docs/material/.icons/material/view-day.svg new file mode 100644 index 000000000..e271cd8d0 --- /dev/null +++ b/docs/material/.icons/material/view-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-grid-outline.svg b/docs/material/.icons/material/view-grid-outline.svg new file mode 100644 index 000000000..8498cd15c --- /dev/null +++ b/docs/material/.icons/material/view-grid-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-grid-plus-outline.svg b/docs/material/.icons/material/view-grid-plus-outline.svg new file mode 100644 index 000000000..e1149edf0 --- /dev/null +++ b/docs/material/.icons/material/view-grid-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-grid-plus.svg b/docs/material/.icons/material/view-grid-plus.svg new file mode 100644 index 000000000..95d710386 --- /dev/null +++ b/docs/material/.icons/material/view-grid-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-grid.svg b/docs/material/.icons/material/view-grid.svg new file mode 100644 index 000000000..fa6bca113 --- /dev/null +++ b/docs/material/.icons/material/view-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-headline.svg b/docs/material/.icons/material/view-headline.svg new file mode 100644 index 000000000..9c10539c2 --- /dev/null +++ b/docs/material/.icons/material/view-headline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-list.svg b/docs/material/.icons/material/view-list.svg new file mode 100644 index 000000000..451016001 --- /dev/null +++ b/docs/material/.icons/material/view-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-module.svg b/docs/material/.icons/material/view-module.svg new file mode 100644 index 000000000..3612de264 --- /dev/null +++ b/docs/material/.icons/material/view-module.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-parallel.svg b/docs/material/.icons/material/view-parallel.svg new file mode 100644 index 000000000..0e2a875f6 --- /dev/null +++ b/docs/material/.icons/material/view-parallel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-quilt.svg b/docs/material/.icons/material/view-quilt.svg new file mode 100644 index 000000000..e017b22a6 --- /dev/null +++ b/docs/material/.icons/material/view-quilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-sequential.svg b/docs/material/.icons/material/view-sequential.svg new file mode 100644 index 000000000..85635643f --- /dev/null +++ b/docs/material/.icons/material/view-sequential.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-split-horizontal.svg b/docs/material/.icons/material/view-split-horizontal.svg new file mode 100644 index 000000000..e404da19b --- /dev/null +++ b/docs/material/.icons/material/view-split-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-split-vertical.svg b/docs/material/.icons/material/view-split-vertical.svg new file mode 100644 index 000000000..8cd2fc9e4 --- /dev/null +++ b/docs/material/.icons/material/view-split-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-stream.svg b/docs/material/.icons/material/view-stream.svg new file mode 100644 index 000000000..9301e2737 --- /dev/null +++ b/docs/material/.icons/material/view-stream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/view-week.svg b/docs/material/.icons/material/view-week.svg new file mode 100644 index 000000000..11d065927 --- /dev/null +++ b/docs/material/.icons/material/view-week.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vimeo.svg b/docs/material/.icons/material/vimeo.svg new file mode 100644 index 000000000..e46186594 --- /dev/null +++ b/docs/material/.icons/material/vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/violin.svg b/docs/material/.icons/material/violin.svg new file mode 100644 index 000000000..576766357 --- /dev/null +++ b/docs/material/.icons/material/violin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/virtual-reality.svg b/docs/material/.icons/material/virtual-reality.svg new file mode 100644 index 000000000..fad92f60b --- /dev/null +++ b/docs/material/.icons/material/virtual-reality.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/virus-outline.svg b/docs/material/.icons/material/virus-outline.svg new file mode 100644 index 000000000..1ec69c236 --- /dev/null +++ b/docs/material/.icons/material/virus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/virus.svg b/docs/material/.icons/material/virus.svg new file mode 100644 index 000000000..a7a28532f --- /dev/null +++ b/docs/material/.icons/material/virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vk.svg b/docs/material/.icons/material/vk.svg new file mode 100644 index 000000000..6734c39a9 --- /dev/null +++ b/docs/material/.icons/material/vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vlc.svg b/docs/material/.icons/material/vlc.svg new file mode 100644 index 000000000..7faaee531 --- /dev/null +++ b/docs/material/.icons/material/vlc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/voice-off.svg b/docs/material/.icons/material/voice-off.svg new file mode 100644 index 000000000..99dcb4177 --- /dev/null +++ b/docs/material/.icons/material/voice-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/voicemail.svg b/docs/material/.icons/material/voicemail.svg new file mode 100644 index 000000000..1c586d188 --- /dev/null +++ b/docs/material/.icons/material/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volleyball.svg b/docs/material/.icons/material/volleyball.svg new file mode 100644 index 000000000..9711638e3 --- /dev/null +++ b/docs/material/.icons/material/volleyball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-high.svg b/docs/material/.icons/material/volume-high.svg new file mode 100644 index 000000000..1611f0290 --- /dev/null +++ b/docs/material/.icons/material/volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-low.svg b/docs/material/.icons/material/volume-low.svg new file mode 100644 index 000000000..212168508 --- /dev/null +++ b/docs/material/.icons/material/volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-medium.svg b/docs/material/.icons/material/volume-medium.svg new file mode 100644 index 000000000..4156fc169 --- /dev/null +++ b/docs/material/.icons/material/volume-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-minus.svg b/docs/material/.icons/material/volume-minus.svg new file mode 100644 index 000000000..d85766406 --- /dev/null +++ b/docs/material/.icons/material/volume-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-mute.svg b/docs/material/.icons/material/volume-mute.svg new file mode 100644 index 000000000..0ad42408d --- /dev/null +++ b/docs/material/.icons/material/volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-off.svg b/docs/material/.icons/material/volume-off.svg new file mode 100644 index 000000000..7fb8844e6 --- /dev/null +++ b/docs/material/.icons/material/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-plus.svg b/docs/material/.icons/material/volume-plus.svg new file mode 100644 index 000000000..fb6aa0cdf --- /dev/null +++ b/docs/material/.icons/material/volume-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-source.svg b/docs/material/.icons/material/volume-source.svg new file mode 100644 index 000000000..8d953a758 --- /dev/null +++ b/docs/material/.icons/material/volume-source.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-variant-off.svg b/docs/material/.icons/material/volume-variant-off.svg new file mode 100644 index 000000000..0dc02e564 --- /dev/null +++ b/docs/material/.icons/material/volume-variant-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/volume-vibrate.svg b/docs/material/.icons/material/volume-vibrate.svg new file mode 100644 index 000000000..2040b7d14 --- /dev/null +++ b/docs/material/.icons/material/volume-vibrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vote-outline.svg b/docs/material/.icons/material/vote-outline.svg new file mode 100644 index 000000000..dd6121e3b --- /dev/null +++ b/docs/material/.icons/material/vote-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vote.svg b/docs/material/.icons/material/vote.svg new file mode 100644 index 000000000..8f8b62453 --- /dev/null +++ b/docs/material/.icons/material/vote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vpn.svg b/docs/material/.icons/material/vpn.svg new file mode 100644 index 000000000..6fe911dce --- /dev/null +++ b/docs/material/.icons/material/vpn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vuejs.svg b/docs/material/.icons/material/vuejs.svg new file mode 100644 index 000000000..b4ad81d79 --- /dev/null +++ b/docs/material/.icons/material/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/vuetify.svg b/docs/material/.icons/material/vuetify.svg new file mode 100644 index 000000000..892729e6d --- /dev/null +++ b/docs/material/.icons/material/vuetify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/walk.svg b/docs/material/.icons/material/walk.svg new file mode 100644 index 000000000..c101d0807 --- /dev/null +++ b/docs/material/.icons/material/walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wall-sconce-flat-variant.svg b/docs/material/.icons/material/wall-sconce-flat-variant.svg new file mode 100644 index 000000000..952a50d88 --- /dev/null +++ b/docs/material/.icons/material/wall-sconce-flat-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wall-sconce-flat.svg b/docs/material/.icons/material/wall-sconce-flat.svg new file mode 100644 index 000000000..3413214d4 --- /dev/null +++ b/docs/material/.icons/material/wall-sconce-flat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wall-sconce-round-variant.svg b/docs/material/.icons/material/wall-sconce-round-variant.svg new file mode 100644 index 000000000..7b3a6074a --- /dev/null +++ b/docs/material/.icons/material/wall-sconce-round-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wall-sconce-round.svg b/docs/material/.icons/material/wall-sconce-round.svg new file mode 100644 index 000000000..334e2e408 --- /dev/null +++ b/docs/material/.icons/material/wall-sconce-round.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wall-sconce.svg b/docs/material/.icons/material/wall-sconce.svg new file mode 100644 index 000000000..072b1f247 --- /dev/null +++ b/docs/material/.icons/material/wall-sconce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wall.svg b/docs/material/.icons/material/wall.svg new file mode 100644 index 000000000..b12b8bca9 --- /dev/null +++ b/docs/material/.icons/material/wall.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallet-giftcard.svg b/docs/material/.icons/material/wallet-giftcard.svg new file mode 100644 index 000000000..ee1808352 --- /dev/null +++ b/docs/material/.icons/material/wallet-giftcard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallet-membership.svg b/docs/material/.icons/material/wallet-membership.svg new file mode 100644 index 000000000..9d94017d6 --- /dev/null +++ b/docs/material/.icons/material/wallet-membership.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallet-outline.svg b/docs/material/.icons/material/wallet-outline.svg new file mode 100644 index 000000000..4fb83ae40 --- /dev/null +++ b/docs/material/.icons/material/wallet-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallet-plus-outline.svg b/docs/material/.icons/material/wallet-plus-outline.svg new file mode 100644 index 000000000..bd116a8b5 --- /dev/null +++ b/docs/material/.icons/material/wallet-plus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallet-plus.svg b/docs/material/.icons/material/wallet-plus.svg new file mode 100644 index 000000000..d3a0f6dea --- /dev/null +++ b/docs/material/.icons/material/wallet-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallet-travel.svg b/docs/material/.icons/material/wallet-travel.svg new file mode 100644 index 000000000..7ce15c082 --- /dev/null +++ b/docs/material/.icons/material/wallet-travel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallet.svg b/docs/material/.icons/material/wallet.svg new file mode 100644 index 000000000..e7bb62a76 --- /dev/null +++ b/docs/material/.icons/material/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wallpaper.svg b/docs/material/.icons/material/wallpaper.svg new file mode 100644 index 000000000..e9f16beba --- /dev/null +++ b/docs/material/.icons/material/wallpaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wan.svg b/docs/material/.icons/material/wan.svg new file mode 100644 index 000000000..20875b155 --- /dev/null +++ b/docs/material/.icons/material/wan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wardrobe-outline.svg b/docs/material/.icons/material/wardrobe-outline.svg new file mode 100644 index 000000000..52d0f393f --- /dev/null +++ b/docs/material/.icons/material/wardrobe-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wardrobe.svg b/docs/material/.icons/material/wardrobe.svg new file mode 100644 index 000000000..f2e17260b --- /dev/null +++ b/docs/material/.icons/material/wardrobe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/warehouse.svg b/docs/material/.icons/material/warehouse.svg new file mode 100644 index 000000000..4c3ab7214 --- /dev/null +++ b/docs/material/.icons/material/warehouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/washing-machine-alert.svg b/docs/material/.icons/material/washing-machine-alert.svg new file mode 100644 index 000000000..3e2bfb161 --- /dev/null +++ b/docs/material/.icons/material/washing-machine-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/washing-machine-off.svg b/docs/material/.icons/material/washing-machine-off.svg new file mode 100644 index 000000000..5b403534b --- /dev/null +++ b/docs/material/.icons/material/washing-machine-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/washing-machine.svg b/docs/material/.icons/material/washing-machine.svg new file mode 100644 index 000000000..940c492c4 --- /dev/null +++ b/docs/material/.icons/material/washing-machine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch-export-variant.svg b/docs/material/.icons/material/watch-export-variant.svg new file mode 100644 index 000000000..de733addf --- /dev/null +++ b/docs/material/.icons/material/watch-export-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch-export.svg b/docs/material/.icons/material/watch-export.svg new file mode 100644 index 000000000..abd91aac1 --- /dev/null +++ b/docs/material/.icons/material/watch-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch-import-variant.svg b/docs/material/.icons/material/watch-import-variant.svg new file mode 100644 index 000000000..b9fdc134c --- /dev/null +++ b/docs/material/.icons/material/watch-import-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch-import.svg b/docs/material/.icons/material/watch-import.svg new file mode 100644 index 000000000..f7ac3fe22 --- /dev/null +++ b/docs/material/.icons/material/watch-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch-variant.svg b/docs/material/.icons/material/watch-variant.svg new file mode 100644 index 000000000..ead033610 --- /dev/null +++ b/docs/material/.icons/material/watch-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch-vibrate-off.svg b/docs/material/.icons/material/watch-vibrate-off.svg new file mode 100644 index 000000000..dbf007d1a --- /dev/null +++ b/docs/material/.icons/material/watch-vibrate-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch-vibrate.svg b/docs/material/.icons/material/watch-vibrate.svg new file mode 100644 index 000000000..ba7365725 --- /dev/null +++ b/docs/material/.icons/material/watch-vibrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watch.svg b/docs/material/.icons/material/watch.svg new file mode 100644 index 000000000..d100489d0 --- /dev/null +++ b/docs/material/.icons/material/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-boiler-alert.svg b/docs/material/.icons/material/water-boiler-alert.svg new file mode 100644 index 000000000..5d36e4140 --- /dev/null +++ b/docs/material/.icons/material/water-boiler-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-boiler-off.svg b/docs/material/.icons/material/water-boiler-off.svg new file mode 100644 index 000000000..d060c65cf --- /dev/null +++ b/docs/material/.icons/material/water-boiler-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-boiler.svg b/docs/material/.icons/material/water-boiler.svg new file mode 100644 index 000000000..9e1898db3 --- /dev/null +++ b/docs/material/.icons/material/water-boiler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-off.svg b/docs/material/.icons/material/water-off.svg new file mode 100644 index 000000000..2f330650d --- /dev/null +++ b/docs/material/.icons/material/water-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-outline.svg b/docs/material/.icons/material/water-outline.svg new file mode 100644 index 000000000..cec022335 --- /dev/null +++ b/docs/material/.icons/material/water-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-percent.svg b/docs/material/.icons/material/water-percent.svg new file mode 100644 index 000000000..05da91677 --- /dev/null +++ b/docs/material/.icons/material/water-percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-polo.svg b/docs/material/.icons/material/water-polo.svg new file mode 100644 index 000000000..c90878d31 --- /dev/null +++ b/docs/material/.icons/material/water-polo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-pump-off.svg b/docs/material/.icons/material/water-pump-off.svg new file mode 100644 index 000000000..723ff3914 --- /dev/null +++ b/docs/material/.icons/material/water-pump-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-pump.svg b/docs/material/.icons/material/water-pump.svg new file mode 100644 index 000000000..61a5d9928 --- /dev/null +++ b/docs/material/.icons/material/water-pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-well-outline.svg b/docs/material/.icons/material/water-well-outline.svg new file mode 100644 index 000000000..3f5d88aa6 --- /dev/null +++ b/docs/material/.icons/material/water-well-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water-well.svg b/docs/material/.icons/material/water-well.svg new file mode 100644 index 000000000..22edbc055 --- /dev/null +++ b/docs/material/.icons/material/water-well.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/water.svg b/docs/material/.icons/material/water.svg new file mode 100644 index 000000000..5721faad3 --- /dev/null +++ b/docs/material/.icons/material/water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/watermark.svg b/docs/material/.icons/material/watermark.svg new file mode 100644 index 000000000..3d45014b9 --- /dev/null +++ b/docs/material/.icons/material/watermark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wave.svg b/docs/material/.icons/material/wave.svg new file mode 100644 index 000000000..611dd6155 --- /dev/null +++ b/docs/material/.icons/material/wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/waves.svg b/docs/material/.icons/material/waves.svg new file mode 100644 index 000000000..246bcc846 --- /dev/null +++ b/docs/material/.icons/material/waves.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/waze.svg b/docs/material/.icons/material/waze.svg new file mode 100644 index 000000000..70b312865 --- /dev/null +++ b/docs/material/.icons/material/waze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-cloudy-alert.svg b/docs/material/.icons/material/weather-cloudy-alert.svg new file mode 100644 index 000000000..019fd769c --- /dev/null +++ b/docs/material/.icons/material/weather-cloudy-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-cloudy-arrow-right.svg b/docs/material/.icons/material/weather-cloudy-arrow-right.svg new file mode 100644 index 000000000..688c16426 --- /dev/null +++ b/docs/material/.icons/material/weather-cloudy-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-cloudy.svg b/docs/material/.icons/material/weather-cloudy.svg new file mode 100644 index 000000000..5f837aefd --- /dev/null +++ b/docs/material/.icons/material/weather-cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-fog.svg b/docs/material/.icons/material/weather-fog.svg new file mode 100644 index 000000000..521148277 --- /dev/null +++ b/docs/material/.icons/material/weather-fog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-hail.svg b/docs/material/.icons/material/weather-hail.svg new file mode 100644 index 000000000..6c74b9251 --- /dev/null +++ b/docs/material/.icons/material/weather-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-hazy.svg b/docs/material/.icons/material/weather-hazy.svg new file mode 100644 index 000000000..cb237e624 --- /dev/null +++ b/docs/material/.icons/material/weather-hazy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-hurricane.svg b/docs/material/.icons/material/weather-hurricane.svg new file mode 100644 index 000000000..7d65ffc08 --- /dev/null +++ b/docs/material/.icons/material/weather-hurricane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-lightning-rainy.svg b/docs/material/.icons/material/weather-lightning-rainy.svg new file mode 100644 index 000000000..8148610d6 --- /dev/null +++ b/docs/material/.icons/material/weather-lightning-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-lightning.svg b/docs/material/.icons/material/weather-lightning.svg new file mode 100644 index 000000000..cd709ec71 --- /dev/null +++ b/docs/material/.icons/material/weather-lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-night-partly-cloudy.svg b/docs/material/.icons/material/weather-night-partly-cloudy.svg new file mode 100644 index 000000000..6acb4ec5b --- /dev/null +++ b/docs/material/.icons/material/weather-night-partly-cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-night.svg b/docs/material/.icons/material/weather-night.svg new file mode 100644 index 000000000..643783b13 --- /dev/null +++ b/docs/material/.icons/material/weather-night.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-partly-cloudy.svg b/docs/material/.icons/material/weather-partly-cloudy.svg new file mode 100644 index 000000000..9eb066615 --- /dev/null +++ b/docs/material/.icons/material/weather-partly-cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-partly-lightning.svg b/docs/material/.icons/material/weather-partly-lightning.svg new file mode 100644 index 000000000..e0c4beff2 --- /dev/null +++ b/docs/material/.icons/material/weather-partly-lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-partly-rainy.svg b/docs/material/.icons/material/weather-partly-rainy.svg new file mode 100644 index 000000000..5026d4a17 --- /dev/null +++ b/docs/material/.icons/material/weather-partly-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-partly-snowy-rainy.svg b/docs/material/.icons/material/weather-partly-snowy-rainy.svg new file mode 100644 index 000000000..5eb8c1c09 --- /dev/null +++ b/docs/material/.icons/material/weather-partly-snowy-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-partly-snowy.svg b/docs/material/.icons/material/weather-partly-snowy.svg new file mode 100644 index 000000000..60f7045d6 --- /dev/null +++ b/docs/material/.icons/material/weather-partly-snowy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-pouring.svg b/docs/material/.icons/material/weather-pouring.svg new file mode 100644 index 000000000..7633ea8f3 --- /dev/null +++ b/docs/material/.icons/material/weather-pouring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-rainy.svg b/docs/material/.icons/material/weather-rainy.svg new file mode 100644 index 000000000..c3711e708 --- /dev/null +++ b/docs/material/.icons/material/weather-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-snowy-heavy.svg b/docs/material/.icons/material/weather-snowy-heavy.svg new file mode 100644 index 000000000..f5a5130f0 --- /dev/null +++ b/docs/material/.icons/material/weather-snowy-heavy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-snowy-rainy.svg b/docs/material/.icons/material/weather-snowy-rainy.svg new file mode 100644 index 000000000..48dab025a --- /dev/null +++ b/docs/material/.icons/material/weather-snowy-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-snowy.svg b/docs/material/.icons/material/weather-snowy.svg new file mode 100644 index 000000000..e5166c705 --- /dev/null +++ b/docs/material/.icons/material/weather-snowy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-sunny-alert.svg b/docs/material/.icons/material/weather-sunny-alert.svg new file mode 100644 index 000000000..f1351e7e6 --- /dev/null +++ b/docs/material/.icons/material/weather-sunny-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-sunny.svg b/docs/material/.icons/material/weather-sunny.svg new file mode 100644 index 000000000..9094555f1 --- /dev/null +++ b/docs/material/.icons/material/weather-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-sunset-down.svg b/docs/material/.icons/material/weather-sunset-down.svg new file mode 100644 index 000000000..84346f08f --- /dev/null +++ b/docs/material/.icons/material/weather-sunset-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-sunset-up.svg b/docs/material/.icons/material/weather-sunset-up.svg new file mode 100644 index 000000000..5dca25628 --- /dev/null +++ b/docs/material/.icons/material/weather-sunset-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-sunset.svg b/docs/material/.icons/material/weather-sunset.svg new file mode 100644 index 000000000..64b051ed9 --- /dev/null +++ b/docs/material/.icons/material/weather-sunset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-tornado.svg b/docs/material/.icons/material/weather-tornado.svg new file mode 100644 index 000000000..53546eb4b --- /dev/null +++ b/docs/material/.icons/material/weather-tornado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-windy-variant.svg b/docs/material/.icons/material/weather-windy-variant.svg new file mode 100644 index 000000000..712bd895c --- /dev/null +++ b/docs/material/.icons/material/weather-windy-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weather-windy.svg b/docs/material/.icons/material/weather-windy.svg new file mode 100644 index 000000000..a3f09ea6c --- /dev/null +++ b/docs/material/.icons/material/weather-windy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/web-box.svg b/docs/material/.icons/material/web-box.svg new file mode 100644 index 000000000..36e40ce0e --- /dev/null +++ b/docs/material/.icons/material/web-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/web-clock.svg b/docs/material/.icons/material/web-clock.svg new file mode 100644 index 000000000..5b29586b2 --- /dev/null +++ b/docs/material/.icons/material/web-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/web.svg b/docs/material/.icons/material/web.svg new file mode 100644 index 000000000..3d8c89e6c --- /dev/null +++ b/docs/material/.icons/material/web.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/webcam.svg b/docs/material/.icons/material/webcam.svg new file mode 100644 index 000000000..8cb68322d --- /dev/null +++ b/docs/material/.icons/material/webcam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/webhook.svg b/docs/material/.icons/material/webhook.svg new file mode 100644 index 000000000..ab90db4b0 --- /dev/null +++ b/docs/material/.icons/material/webhook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/webpack.svg b/docs/material/.icons/material/webpack.svg new file mode 100644 index 000000000..be720c290 --- /dev/null +++ b/docs/material/.icons/material/webpack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/webrtc.svg b/docs/material/.icons/material/webrtc.svg new file mode 100644 index 000000000..a2374c155 --- /dev/null +++ b/docs/material/.icons/material/webrtc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wechat.svg b/docs/material/.icons/material/wechat.svg new file mode 100644 index 000000000..88b0c496a --- /dev/null +++ b/docs/material/.icons/material/wechat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weight-gram.svg b/docs/material/.icons/material/weight-gram.svg new file mode 100644 index 000000000..83833d550 --- /dev/null +++ b/docs/material/.icons/material/weight-gram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weight-kilogram.svg b/docs/material/.icons/material/weight-kilogram.svg new file mode 100644 index 000000000..e47e857d0 --- /dev/null +++ b/docs/material/.icons/material/weight-kilogram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weight-lifter.svg b/docs/material/.icons/material/weight-lifter.svg new file mode 100644 index 000000000..d28700cc2 --- /dev/null +++ b/docs/material/.icons/material/weight-lifter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weight-pound.svg b/docs/material/.icons/material/weight-pound.svg new file mode 100644 index 000000000..2989982cf --- /dev/null +++ b/docs/material/.icons/material/weight-pound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/weight.svg b/docs/material/.icons/material/weight.svg new file mode 100644 index 000000000..479390e75 --- /dev/null +++ b/docs/material/.icons/material/weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/whatsapp.svg b/docs/material/.icons/material/whatsapp.svg new file mode 100644 index 000000000..0fb259728 --- /dev/null +++ b/docs/material/.icons/material/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wheelchair-accessibility.svg b/docs/material/.icons/material/wheelchair-accessibility.svg new file mode 100644 index 000000000..c7390978d --- /dev/null +++ b/docs/material/.icons/material/wheelchair-accessibility.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/whistle-outline.svg b/docs/material/.icons/material/whistle-outline.svg new file mode 100644 index 000000000..12565d0f6 --- /dev/null +++ b/docs/material/.icons/material/whistle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/whistle.svg b/docs/material/.icons/material/whistle.svg new file mode 100644 index 000000000..fe965b7b4 --- /dev/null +++ b/docs/material/.icons/material/whistle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/white-balance-auto.svg b/docs/material/.icons/material/white-balance-auto.svg new file mode 100644 index 000000000..1b03526d1 --- /dev/null +++ b/docs/material/.icons/material/white-balance-auto.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/white-balance-incandescent.svg b/docs/material/.icons/material/white-balance-incandescent.svg new file mode 100644 index 000000000..ea2ca96e6 --- /dev/null +++ b/docs/material/.icons/material/white-balance-incandescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/white-balance-iridescent.svg b/docs/material/.icons/material/white-balance-iridescent.svg new file mode 100644 index 000000000..5e980be6b --- /dev/null +++ b/docs/material/.icons/material/white-balance-iridescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/white-balance-sunny.svg b/docs/material/.icons/material/white-balance-sunny.svg new file mode 100644 index 000000000..a8a8d54ed --- /dev/null +++ b/docs/material/.icons/material/white-balance-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/widgets-outline.svg b/docs/material/.icons/material/widgets-outline.svg new file mode 100644 index 000000000..833976265 --- /dev/null +++ b/docs/material/.icons/material/widgets-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/widgets.svg b/docs/material/.icons/material/widgets.svg new file mode 100644 index 000000000..a14820fd6 --- /dev/null +++ b/docs/material/.icons/material/widgets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-off.svg b/docs/material/.icons/material/wifi-off.svg new file mode 100644 index 000000000..99c7911e4 --- /dev/null +++ b/docs/material/.icons/material/wifi-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-star.svg b/docs/material/.icons/material/wifi-star.svg new file mode 100644 index 000000000..603c9180c --- /dev/null +++ b/docs/material/.icons/material/wifi-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-1-alert.svg b/docs/material/.icons/material/wifi-strength-1-alert.svg new file mode 100644 index 000000000..9ef44c747 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-1-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-1-lock.svg b/docs/material/.icons/material/wifi-strength-1-lock.svg new file mode 100644 index 000000000..ad02e7136 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-1-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-1.svg b/docs/material/.icons/material/wifi-strength-1.svg new file mode 100644 index 000000000..82fe09c2f --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-2-alert.svg b/docs/material/.icons/material/wifi-strength-2-alert.svg new file mode 100644 index 000000000..3c3e2e66c --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-2-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-2-lock.svg b/docs/material/.icons/material/wifi-strength-2-lock.svg new file mode 100644 index 000000000..c40d9de15 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-2-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-2.svg b/docs/material/.icons/material/wifi-strength-2.svg new file mode 100644 index 000000000..8df5afb30 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-3-alert.svg b/docs/material/.icons/material/wifi-strength-3-alert.svg new file mode 100644 index 000000000..628118c44 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-3-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-3-lock.svg b/docs/material/.icons/material/wifi-strength-3-lock.svg new file mode 100644 index 000000000..22720d23a --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-3-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-3.svg b/docs/material/.icons/material/wifi-strength-3.svg new file mode 100644 index 000000000..4f99322b1 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-4-alert.svg b/docs/material/.icons/material/wifi-strength-4-alert.svg new file mode 100644 index 000000000..a231d90fe --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-4-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-4-lock.svg b/docs/material/.icons/material/wifi-strength-4-lock.svg new file mode 100644 index 000000000..be045523c --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-4-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-4.svg b/docs/material/.icons/material/wifi-strength-4.svg new file mode 100644 index 000000000..4c4b1b275 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-alert-outline.svg b/docs/material/.icons/material/wifi-strength-alert-outline.svg new file mode 100644 index 000000000..51826b795 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-lock-outline.svg b/docs/material/.icons/material/wifi-strength-lock-outline.svg new file mode 100644 index 000000000..a687843a2 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-off-outline.svg b/docs/material/.icons/material/wifi-strength-off-outline.svg new file mode 100644 index 000000000..950a372d7 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-off.svg b/docs/material/.icons/material/wifi-strength-off.svg new file mode 100644 index 000000000..934deed44 --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi-strength-outline.svg b/docs/material/.icons/material/wifi-strength-outline.svg new file mode 100644 index 000000000..47b65de6b --- /dev/null +++ b/docs/material/.icons/material/wifi-strength-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wifi.svg b/docs/material/.icons/material/wifi.svg new file mode 100644 index 000000000..2b02faf90 --- /dev/null +++ b/docs/material/.icons/material/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wikipedia.svg b/docs/material/.icons/material/wikipedia.svg new file mode 100644 index 000000000..e4b0f9dbd --- /dev/null +++ b/docs/material/.icons/material/wikipedia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wind-turbine.svg b/docs/material/.icons/material/wind-turbine.svg new file mode 100644 index 000000000..245d4527a --- /dev/null +++ b/docs/material/.icons/material/wind-turbine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-close.svg b/docs/material/.icons/material/window-close.svg new file mode 100644 index 000000000..05a8792d8 --- /dev/null +++ b/docs/material/.icons/material/window-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-closed-variant.svg b/docs/material/.icons/material/window-closed-variant.svg new file mode 100644 index 000000000..ee946013c --- /dev/null +++ b/docs/material/.icons/material/window-closed-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-closed.svg b/docs/material/.icons/material/window-closed.svg new file mode 100644 index 000000000..b4b6f1b77 --- /dev/null +++ b/docs/material/.icons/material/window-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-maximize.svg b/docs/material/.icons/material/window-maximize.svg new file mode 100644 index 000000000..87ae176cb --- /dev/null +++ b/docs/material/.icons/material/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-minimize.svg b/docs/material/.icons/material/window-minimize.svg new file mode 100644 index 000000000..2d541e96f --- /dev/null +++ b/docs/material/.icons/material/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-open-variant.svg b/docs/material/.icons/material/window-open-variant.svg new file mode 100644 index 000000000..355ece265 --- /dev/null +++ b/docs/material/.icons/material/window-open-variant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-open.svg b/docs/material/.icons/material/window-open.svg new file mode 100644 index 000000000..49d86e1d9 --- /dev/null +++ b/docs/material/.icons/material/window-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-restore.svg b/docs/material/.icons/material/window-restore.svg new file mode 100644 index 000000000..b2aa2153a --- /dev/null +++ b/docs/material/.icons/material/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-shutter-alert.svg b/docs/material/.icons/material/window-shutter-alert.svg new file mode 100644 index 000000000..2b2900a79 --- /dev/null +++ b/docs/material/.icons/material/window-shutter-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-shutter-open.svg b/docs/material/.icons/material/window-shutter-open.svg new file mode 100644 index 000000000..cda238f85 --- /dev/null +++ b/docs/material/.icons/material/window-shutter-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/window-shutter.svg b/docs/material/.icons/material/window-shutter.svg new file mode 100644 index 000000000..e858cec21 --- /dev/null +++ b/docs/material/.icons/material/window-shutter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wiper-wash.svg b/docs/material/.icons/material/wiper-wash.svg new file mode 100644 index 000000000..012c5ea3f --- /dev/null +++ b/docs/material/.icons/material/wiper-wash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wiper.svg b/docs/material/.icons/material/wiper.svg new file mode 100644 index 000000000..4044ce7b2 --- /dev/null +++ b/docs/material/.icons/material/wiper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wordpress.svg b/docs/material/.icons/material/wordpress.svg new file mode 100644 index 000000000..9c01cc86d --- /dev/null +++ b/docs/material/.icons/material/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wrap-disabled.svg b/docs/material/.icons/material/wrap-disabled.svg new file mode 100644 index 000000000..b0053e29c --- /dev/null +++ b/docs/material/.icons/material/wrap-disabled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wrap.svg b/docs/material/.icons/material/wrap.svg new file mode 100644 index 000000000..0fb38c832 --- /dev/null +++ b/docs/material/.icons/material/wrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wrench-outline.svg b/docs/material/.icons/material/wrench-outline.svg new file mode 100644 index 000000000..09aab491b --- /dev/null +++ b/docs/material/.icons/material/wrench-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/wrench.svg b/docs/material/.icons/material/wrench.svg new file mode 100644 index 000000000..2e737bf51 --- /dev/null +++ b/docs/material/.icons/material/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/xamarin-outline.svg b/docs/material/.icons/material/xamarin-outline.svg new file mode 100644 index 000000000..45b06ccc7 --- /dev/null +++ b/docs/material/.icons/material/xamarin-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/xamarin.svg b/docs/material/.icons/material/xamarin.svg new file mode 100644 index 000000000..9fb6ea341 --- /dev/null +++ b/docs/material/.icons/material/xamarin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/xing.svg b/docs/material/.icons/material/xing.svg new file mode 100644 index 000000000..e17232754 --- /dev/null +++ b/docs/material/.icons/material/xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/xml.svg b/docs/material/.icons/material/xml.svg new file mode 100644 index 000000000..eb6ed0aa7 --- /dev/null +++ b/docs/material/.icons/material/xml.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/xmpp.svg b/docs/material/.icons/material/xmpp.svg new file mode 100644 index 000000000..18b89429e --- /dev/null +++ b/docs/material/.icons/material/xmpp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/y-combinator.svg b/docs/material/.icons/material/y-combinator.svg new file mode 100644 index 000000000..427cd227b --- /dev/null +++ b/docs/material/.icons/material/y-combinator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/yahoo.svg b/docs/material/.icons/material/yahoo.svg new file mode 100644 index 000000000..64fd7fe92 --- /dev/null +++ b/docs/material/.icons/material/yahoo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/yeast.svg b/docs/material/.icons/material/yeast.svg new file mode 100644 index 000000000..ed31889f0 --- /dev/null +++ b/docs/material/.icons/material/yeast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/yin-yang.svg b/docs/material/.icons/material/yin-yang.svg new file mode 100644 index 000000000..53f6da5bb --- /dev/null +++ b/docs/material/.icons/material/yin-yang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/yoga.svg b/docs/material/.icons/material/yoga.svg new file mode 100644 index 000000000..1df163411 --- /dev/null +++ b/docs/material/.icons/material/yoga.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/youtube-gaming.svg b/docs/material/.icons/material/youtube-gaming.svg new file mode 100644 index 000000000..2ee132338 --- /dev/null +++ b/docs/material/.icons/material/youtube-gaming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/youtube-studio.svg b/docs/material/.icons/material/youtube-studio.svg new file mode 100644 index 000000000..8389a6a14 --- /dev/null +++ b/docs/material/.icons/material/youtube-studio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/youtube-subscription.svg b/docs/material/.icons/material/youtube-subscription.svg new file mode 100644 index 000000000..69d55c5ff --- /dev/null +++ b/docs/material/.icons/material/youtube-subscription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/youtube-tv.svg b/docs/material/.icons/material/youtube-tv.svg new file mode 100644 index 000000000..f2413b9d4 --- /dev/null +++ b/docs/material/.icons/material/youtube-tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/youtube.svg b/docs/material/.icons/material/youtube.svg new file mode 100644 index 000000000..bf60cf12b --- /dev/null +++ b/docs/material/.icons/material/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/z-wave.svg b/docs/material/.icons/material/z-wave.svg new file mode 100644 index 000000000..b1ec35a94 --- /dev/null +++ b/docs/material/.icons/material/z-wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zend.svg b/docs/material/.icons/material/zend.svg new file mode 100644 index 000000000..120c5c3ff --- /dev/null +++ b/docs/material/.icons/material/zend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zigbee.svg b/docs/material/.icons/material/zigbee.svg new file mode 100644 index 000000000..ff1afabd5 --- /dev/null +++ b/docs/material/.icons/material/zigbee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zip-box-outline.svg b/docs/material/.icons/material/zip-box-outline.svg new file mode 100644 index 000000000..ba44915bf --- /dev/null +++ b/docs/material/.icons/material/zip-box-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zip-box.svg b/docs/material/.icons/material/zip-box.svg new file mode 100644 index 000000000..bc660a16e --- /dev/null +++ b/docs/material/.icons/material/zip-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zip-disk.svg b/docs/material/.icons/material/zip-disk.svg new file mode 100644 index 000000000..c40c00f37 --- /dev/null +++ b/docs/material/.icons/material/zip-disk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-aquarius.svg b/docs/material/.icons/material/zodiac-aquarius.svg new file mode 100644 index 000000000..ba137cde4 --- /dev/null +++ b/docs/material/.icons/material/zodiac-aquarius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-aries.svg b/docs/material/.icons/material/zodiac-aries.svg new file mode 100644 index 000000000..af8ef940e --- /dev/null +++ b/docs/material/.icons/material/zodiac-aries.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-cancer.svg b/docs/material/.icons/material/zodiac-cancer.svg new file mode 100644 index 000000000..41fb8e387 --- /dev/null +++ b/docs/material/.icons/material/zodiac-cancer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-capricorn.svg b/docs/material/.icons/material/zodiac-capricorn.svg new file mode 100644 index 000000000..4f08db602 --- /dev/null +++ b/docs/material/.icons/material/zodiac-capricorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-gemini.svg b/docs/material/.icons/material/zodiac-gemini.svg new file mode 100644 index 000000000..de61cd8fe --- /dev/null +++ b/docs/material/.icons/material/zodiac-gemini.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-leo.svg b/docs/material/.icons/material/zodiac-leo.svg new file mode 100644 index 000000000..e2de3a360 --- /dev/null +++ b/docs/material/.icons/material/zodiac-leo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-libra.svg b/docs/material/.icons/material/zodiac-libra.svg new file mode 100644 index 000000000..4ad040be3 --- /dev/null +++ b/docs/material/.icons/material/zodiac-libra.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-pisces.svg b/docs/material/.icons/material/zodiac-pisces.svg new file mode 100644 index 000000000..bbc32d421 --- /dev/null +++ b/docs/material/.icons/material/zodiac-pisces.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-sagittarius.svg b/docs/material/.icons/material/zodiac-sagittarius.svg new file mode 100644 index 000000000..09b6f19c5 --- /dev/null +++ b/docs/material/.icons/material/zodiac-sagittarius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-scorpio.svg b/docs/material/.icons/material/zodiac-scorpio.svg new file mode 100644 index 000000000..5bd2912dc --- /dev/null +++ b/docs/material/.icons/material/zodiac-scorpio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-taurus.svg b/docs/material/.icons/material/zodiac-taurus.svg new file mode 100644 index 000000000..8ad0ac436 --- /dev/null +++ b/docs/material/.icons/material/zodiac-taurus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/material/zodiac-virgo.svg b/docs/material/.icons/material/zodiac-virgo.svg new file mode 100644 index 000000000..75522f079 --- /dev/null +++ b/docs/material/.icons/material/zodiac-virgo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/LICENSE b/docs/material/.icons/octicons/LICENSE new file mode 100644 index 000000000..84c26c26f --- /dev/null +++ b/docs/material/.icons/octicons/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 GitHub Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/docs/material/.icons/octicons/alert.svg b/docs/material/.icons/octicons/alert.svg new file mode 100644 index 000000000..4f9a21c8c --- /dev/null +++ b/docs/material/.icons/octicons/alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/archive.svg b/docs/material/.icons/octicons/archive.svg new file mode 100644 index 000000000..945da286f --- /dev/null +++ b/docs/material/.icons/octicons/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-both.svg b/docs/material/.icons/octicons/arrow-both.svg new file mode 100644 index 000000000..0a2cea78c --- /dev/null +++ b/docs/material/.icons/octicons/arrow-both.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-down.svg b/docs/material/.icons/octicons/arrow-down.svg new file mode 100644 index 000000000..bab3ae9e1 --- /dev/null +++ b/docs/material/.icons/octicons/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-left.svg b/docs/material/.icons/octicons/arrow-left.svg new file mode 100644 index 000000000..e8b4e780c --- /dev/null +++ b/docs/material/.icons/octicons/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-right.svg b/docs/material/.icons/octicons/arrow-right.svg new file mode 100644 index 000000000..fb40756d0 --- /dev/null +++ b/docs/material/.icons/octicons/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-small-down.svg b/docs/material/.icons/octicons/arrow-small-down.svg new file mode 100644 index 000000000..e74f2aec8 --- /dev/null +++ b/docs/material/.icons/octicons/arrow-small-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-small-left.svg b/docs/material/.icons/octicons/arrow-small-left.svg new file mode 100644 index 000000000..06a19b5de --- /dev/null +++ b/docs/material/.icons/octicons/arrow-small-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-small-right.svg b/docs/material/.icons/octicons/arrow-small-right.svg new file mode 100644 index 000000000..6cf9797c7 --- /dev/null +++ b/docs/material/.icons/octicons/arrow-small-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-small-up.svg b/docs/material/.icons/octicons/arrow-small-up.svg new file mode 100644 index 000000000..2335e2ec1 --- /dev/null +++ b/docs/material/.icons/octicons/arrow-small-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/arrow-up.svg b/docs/material/.icons/octicons/arrow-up.svg new file mode 100644 index 000000000..0d43aa41a --- /dev/null +++ b/docs/material/.icons/octicons/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/beaker.svg b/docs/material/.icons/octicons/beaker.svg new file mode 100644 index 000000000..13caa8e6d --- /dev/null +++ b/docs/material/.icons/octicons/beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/bell.svg b/docs/material/.icons/octicons/bell.svg new file mode 100644 index 000000000..6b3a2f48b --- /dev/null +++ b/docs/material/.icons/octicons/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/bold.svg b/docs/material/.icons/octicons/bold.svg new file mode 100644 index 000000000..d7c7a7fdf --- /dev/null +++ b/docs/material/.icons/octicons/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/book.svg b/docs/material/.icons/octicons/book.svg new file mode 100644 index 000000000..c004409b5 --- /dev/null +++ b/docs/material/.icons/octicons/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/bookmark.svg b/docs/material/.icons/octicons/bookmark.svg new file mode 100644 index 000000000..391e5fa37 --- /dev/null +++ b/docs/material/.icons/octicons/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/briefcase.svg b/docs/material/.icons/octicons/briefcase.svg new file mode 100644 index 000000000..2a564c64c --- /dev/null +++ b/docs/material/.icons/octicons/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/broadcast.svg b/docs/material/.icons/octicons/broadcast.svg new file mode 100644 index 000000000..8ce5673f1 --- /dev/null +++ b/docs/material/.icons/octicons/broadcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/browser.svg b/docs/material/.icons/octicons/browser.svg new file mode 100644 index 000000000..c2be8e022 --- /dev/null +++ b/docs/material/.icons/octicons/browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/bug.svg b/docs/material/.icons/octicons/bug.svg new file mode 100644 index 000000000..dde0340cc --- /dev/null +++ b/docs/material/.icons/octicons/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/calendar.svg b/docs/material/.icons/octicons/calendar.svg new file mode 100644 index 000000000..adf4f242b --- /dev/null +++ b/docs/material/.icons/octicons/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/check.svg b/docs/material/.icons/octicons/check.svg new file mode 100644 index 000000000..fbbb88414 --- /dev/null +++ b/docs/material/.icons/octicons/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/checklist.svg b/docs/material/.icons/octicons/checklist.svg new file mode 100644 index 000000000..0e97a8972 --- /dev/null +++ b/docs/material/.icons/octicons/checklist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/chevron-down.svg b/docs/material/.icons/octicons/chevron-down.svg new file mode 100644 index 000000000..f1ad33c9e --- /dev/null +++ b/docs/material/.icons/octicons/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/chevron-left.svg b/docs/material/.icons/octicons/chevron-left.svg new file mode 100644 index 000000000..55dbc738b --- /dev/null +++ b/docs/material/.icons/octicons/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/chevron-right.svg b/docs/material/.icons/octicons/chevron-right.svg new file mode 100644 index 000000000..b0e4966b4 --- /dev/null +++ b/docs/material/.icons/octicons/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/chevron-up.svg b/docs/material/.icons/octicons/chevron-up.svg new file mode 100644 index 000000000..bbe48fdd0 --- /dev/null +++ b/docs/material/.icons/octicons/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/circle-slash.svg b/docs/material/.icons/octicons/circle-slash.svg new file mode 100644 index 000000000..4b4f71cee --- /dev/null +++ b/docs/material/.icons/octicons/circle-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/circuit-board.svg b/docs/material/.icons/octicons/circuit-board.svg new file mode 100644 index 000000000..014450071 --- /dev/null +++ b/docs/material/.icons/octicons/circuit-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/clippy.svg b/docs/material/.icons/octicons/clippy.svg new file mode 100644 index 000000000..04f1f10c7 --- /dev/null +++ b/docs/material/.icons/octicons/clippy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/clock.svg b/docs/material/.icons/octicons/clock.svg new file mode 100644 index 000000000..001be04a5 --- /dev/null +++ b/docs/material/.icons/octicons/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/cloud-download.svg b/docs/material/.icons/octicons/cloud-download.svg new file mode 100644 index 000000000..4476aa1e8 --- /dev/null +++ b/docs/material/.icons/octicons/cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/cloud-upload.svg b/docs/material/.icons/octicons/cloud-upload.svg new file mode 100644 index 000000000..004b73db4 --- /dev/null +++ b/docs/material/.icons/octicons/cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/code.svg b/docs/material/.icons/octicons/code.svg new file mode 100644 index 000000000..ce970a2f4 --- /dev/null +++ b/docs/material/.icons/octicons/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/comment-discussion.svg b/docs/material/.icons/octicons/comment-discussion.svg new file mode 100644 index 000000000..b09abd644 --- /dev/null +++ b/docs/material/.icons/octicons/comment-discussion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/comment.svg b/docs/material/.icons/octicons/comment.svg new file mode 100644 index 000000000..d39536093 --- /dev/null +++ b/docs/material/.icons/octicons/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/credit-card.svg b/docs/material/.icons/octicons/credit-card.svg new file mode 100644 index 000000000..98cdd0811 --- /dev/null +++ b/docs/material/.icons/octicons/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/dash.svg b/docs/material/.icons/octicons/dash.svg new file mode 100644 index 000000000..c3433eeeb --- /dev/null +++ b/docs/material/.icons/octicons/dash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/dashboard.svg b/docs/material/.icons/octicons/dashboard.svg new file mode 100644 index 000000000..b8619d95d --- /dev/null +++ b/docs/material/.icons/octicons/dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/database.svg b/docs/material/.icons/octicons/database.svg new file mode 100644 index 000000000..9fa8e6451 --- /dev/null +++ b/docs/material/.icons/octicons/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/dependent.svg b/docs/material/.icons/octicons/dependent.svg new file mode 100644 index 000000000..17a1c9457 --- /dev/null +++ b/docs/material/.icons/octicons/dependent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/desktop-download.svg b/docs/material/.icons/octicons/desktop-download.svg new file mode 100644 index 000000000..45a039554 --- /dev/null +++ b/docs/material/.icons/octicons/desktop-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/device-camera-video.svg b/docs/material/.icons/octicons/device-camera-video.svg new file mode 100644 index 000000000..c2c3a0446 --- /dev/null +++ b/docs/material/.icons/octicons/device-camera-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/device-camera.svg b/docs/material/.icons/octicons/device-camera.svg new file mode 100644 index 000000000..f19a90913 --- /dev/null +++ b/docs/material/.icons/octicons/device-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/device-desktop.svg b/docs/material/.icons/octicons/device-desktop.svg new file mode 100644 index 000000000..a740b10e2 --- /dev/null +++ b/docs/material/.icons/octicons/device-desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/device-mobile.svg b/docs/material/.icons/octicons/device-mobile.svg new file mode 100644 index 000000000..0c0e70277 --- /dev/null +++ b/docs/material/.icons/octicons/device-mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/diff-added.svg b/docs/material/.icons/octicons/diff-added.svg new file mode 100644 index 000000000..611ec7a3f --- /dev/null +++ b/docs/material/.icons/octicons/diff-added.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/diff-ignored.svg b/docs/material/.icons/octicons/diff-ignored.svg new file mode 100644 index 000000000..ac1944a4c --- /dev/null +++ b/docs/material/.icons/octicons/diff-ignored.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/diff-modified.svg b/docs/material/.icons/octicons/diff-modified.svg new file mode 100644 index 000000000..cf9e5dcba --- /dev/null +++ b/docs/material/.icons/octicons/diff-modified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/diff-removed.svg b/docs/material/.icons/octicons/diff-removed.svg new file mode 100644 index 000000000..bd7ad3104 --- /dev/null +++ b/docs/material/.icons/octicons/diff-removed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/diff-renamed.svg b/docs/material/.icons/octicons/diff-renamed.svg new file mode 100644 index 000000000..b413252f0 --- /dev/null +++ b/docs/material/.icons/octicons/diff-renamed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/diff.svg b/docs/material/.icons/octicons/diff.svg new file mode 100644 index 000000000..933ce14fe --- /dev/null +++ b/docs/material/.icons/octicons/diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/ellipsis.svg b/docs/material/.icons/octicons/ellipsis.svg new file mode 100644 index 000000000..a2b66ecd5 --- /dev/null +++ b/docs/material/.icons/octicons/ellipsis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/eye-closed.svg b/docs/material/.icons/octicons/eye-closed.svg new file mode 100644 index 000000000..0ce5d17c5 --- /dev/null +++ b/docs/material/.icons/octicons/eye-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/eye.svg b/docs/material/.icons/octicons/eye.svg new file mode 100644 index 000000000..efeb6c197 --- /dev/null +++ b/docs/material/.icons/octicons/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-binary.svg b/docs/material/.icons/octicons/file-binary.svg new file mode 100644 index 000000000..73e0d637f --- /dev/null +++ b/docs/material/.icons/octicons/file-binary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-code.svg b/docs/material/.icons/octicons/file-code.svg new file mode 100644 index 000000000..227949870 --- /dev/null +++ b/docs/material/.icons/octicons/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-directory.svg b/docs/material/.icons/octicons/file-directory.svg new file mode 100644 index 000000000..662162693 --- /dev/null +++ b/docs/material/.icons/octicons/file-directory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-media.svg b/docs/material/.icons/octicons/file-media.svg new file mode 100644 index 000000000..0d96fefec --- /dev/null +++ b/docs/material/.icons/octicons/file-media.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-pdf.svg b/docs/material/.icons/octicons/file-pdf.svg new file mode 100644 index 000000000..361236c81 --- /dev/null +++ b/docs/material/.icons/octicons/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-submodule.svg b/docs/material/.icons/octicons/file-submodule.svg new file mode 100644 index 000000000..cfbd106ff --- /dev/null +++ b/docs/material/.icons/octicons/file-submodule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-symlink-directory.svg b/docs/material/.icons/octicons/file-symlink-directory.svg new file mode 100644 index 000000000..3799d2ed3 --- /dev/null +++ b/docs/material/.icons/octicons/file-symlink-directory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-symlink-file.svg b/docs/material/.icons/octicons/file-symlink-file.svg new file mode 100644 index 000000000..9dd7a6f30 --- /dev/null +++ b/docs/material/.icons/octicons/file-symlink-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file-zip.svg b/docs/material/.icons/octicons/file-zip.svg new file mode 100644 index 000000000..6cae81dad --- /dev/null +++ b/docs/material/.icons/octicons/file-zip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/file.svg b/docs/material/.icons/octicons/file.svg new file mode 100644 index 000000000..53ff0212c --- /dev/null +++ b/docs/material/.icons/octicons/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/flame.svg b/docs/material/.icons/octicons/flame.svg new file mode 100644 index 000000000..346ca4c5f --- /dev/null +++ b/docs/material/.icons/octicons/flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/fold-down.svg b/docs/material/.icons/octicons/fold-down.svg new file mode 100644 index 000000000..2caa2586e --- /dev/null +++ b/docs/material/.icons/octicons/fold-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/fold-up.svg b/docs/material/.icons/octicons/fold-up.svg new file mode 100644 index 000000000..4b37c1409 --- /dev/null +++ b/docs/material/.icons/octicons/fold-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/fold.svg b/docs/material/.icons/octicons/fold.svg new file mode 100644 index 000000000..f91e128c8 --- /dev/null +++ b/docs/material/.icons/octicons/fold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/gear.svg b/docs/material/.icons/octicons/gear.svg new file mode 100644 index 000000000..0d8b9c61c --- /dev/null +++ b/docs/material/.icons/octicons/gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/gift.svg b/docs/material/.icons/octicons/gift.svg new file mode 100644 index 000000000..76a61ce93 --- /dev/null +++ b/docs/material/.icons/octicons/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/gist-secret.svg b/docs/material/.icons/octicons/gist-secret.svg new file mode 100644 index 000000000..d55a2a67a --- /dev/null +++ b/docs/material/.icons/octicons/gist-secret.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/gist.svg b/docs/material/.icons/octicons/gist.svg new file mode 100644 index 000000000..8062837d9 --- /dev/null +++ b/docs/material/.icons/octicons/gist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/git-branch.svg b/docs/material/.icons/octicons/git-branch.svg new file mode 100644 index 000000000..268ad12e6 --- /dev/null +++ b/docs/material/.icons/octicons/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/git-commit.svg b/docs/material/.icons/octicons/git-commit.svg new file mode 100644 index 000000000..22808dbc1 --- /dev/null +++ b/docs/material/.icons/octicons/git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/git-compare.svg b/docs/material/.icons/octicons/git-compare.svg new file mode 100644 index 000000000..f9b488d80 --- /dev/null +++ b/docs/material/.icons/octicons/git-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/git-merge.svg b/docs/material/.icons/octicons/git-merge.svg new file mode 100644 index 000000000..87b6854cb --- /dev/null +++ b/docs/material/.icons/octicons/git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/git-pull-request.svg b/docs/material/.icons/octicons/git-pull-request.svg new file mode 100644 index 000000000..a4494b368 --- /dev/null +++ b/docs/material/.icons/octicons/git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/github-action.svg b/docs/material/.icons/octicons/github-action.svg new file mode 100644 index 000000000..e77b8d9fd --- /dev/null +++ b/docs/material/.icons/octicons/github-action.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/globe.svg b/docs/material/.icons/octicons/globe.svg new file mode 100644 index 000000000..ceea48bf9 --- /dev/null +++ b/docs/material/.icons/octicons/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/grabber.svg b/docs/material/.icons/octicons/grabber.svg new file mode 100644 index 000000000..3270c817a --- /dev/null +++ b/docs/material/.icons/octicons/grabber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/graph.svg b/docs/material/.icons/octicons/graph.svg new file mode 100644 index 000000000..b11f5b3f5 --- /dev/null +++ b/docs/material/.icons/octicons/graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/heart-outline.svg b/docs/material/.icons/octicons/heart-outline.svg new file mode 100644 index 000000000..e85b6153e --- /dev/null +++ b/docs/material/.icons/octicons/heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/heart.svg b/docs/material/.icons/octicons/heart.svg new file mode 100644 index 000000000..30f501f60 --- /dev/null +++ b/docs/material/.icons/octicons/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/history.svg b/docs/material/.icons/octicons/history.svg new file mode 100644 index 000000000..81d59bf1b --- /dev/null +++ b/docs/material/.icons/octicons/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/home.svg b/docs/material/.icons/octicons/home.svg new file mode 100644 index 000000000..7707b2e91 --- /dev/null +++ b/docs/material/.icons/octicons/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/horizontal-rule.svg b/docs/material/.icons/octicons/horizontal-rule.svg new file mode 100644 index 000000000..7d892312a --- /dev/null +++ b/docs/material/.icons/octicons/horizontal-rule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/hubot.svg b/docs/material/.icons/octicons/hubot.svg new file mode 100644 index 000000000..90b52b03e --- /dev/null +++ b/docs/material/.icons/octicons/hubot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/inbox.svg b/docs/material/.icons/octicons/inbox.svg new file mode 100644 index 000000000..2c683abbe --- /dev/null +++ b/docs/material/.icons/octicons/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/infinity.svg b/docs/material/.icons/octicons/infinity.svg new file mode 100644 index 000000000..2bf43bbb6 --- /dev/null +++ b/docs/material/.icons/octicons/infinity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/info.svg b/docs/material/.icons/octicons/info.svg new file mode 100644 index 000000000..683406ee9 --- /dev/null +++ b/docs/material/.icons/octicons/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/internal-repo.svg b/docs/material/.icons/octicons/internal-repo.svg new file mode 100644 index 000000000..ec41500ed --- /dev/null +++ b/docs/material/.icons/octicons/internal-repo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/issue-closed.svg b/docs/material/.icons/octicons/issue-closed.svg new file mode 100644 index 000000000..d9cf90ed4 --- /dev/null +++ b/docs/material/.icons/octicons/issue-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/issue-opened.svg b/docs/material/.icons/octicons/issue-opened.svg new file mode 100644 index 000000000..65490b9b7 --- /dev/null +++ b/docs/material/.icons/octicons/issue-opened.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/issue-reopened.svg b/docs/material/.icons/octicons/issue-reopened.svg new file mode 100644 index 000000000..d1787a770 --- /dev/null +++ b/docs/material/.icons/octicons/issue-reopened.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/italic.svg b/docs/material/.icons/octicons/italic.svg new file mode 100644 index 000000000..1a93b2063 --- /dev/null +++ b/docs/material/.icons/octicons/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/jersey.svg b/docs/material/.icons/octicons/jersey.svg new file mode 100644 index 000000000..7f5492d6a --- /dev/null +++ b/docs/material/.icons/octicons/jersey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/kebab-horizontal.svg b/docs/material/.icons/octicons/kebab-horizontal.svg new file mode 100644 index 000000000..685d87eb3 --- /dev/null +++ b/docs/material/.icons/octicons/kebab-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/kebab-vertical.svg b/docs/material/.icons/octicons/kebab-vertical.svg new file mode 100644 index 000000000..307b9db54 --- /dev/null +++ b/docs/material/.icons/octicons/kebab-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/key.svg b/docs/material/.icons/octicons/key.svg new file mode 100644 index 000000000..433fd7244 --- /dev/null +++ b/docs/material/.icons/octicons/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/keyboard.svg b/docs/material/.icons/octicons/keyboard.svg new file mode 100644 index 000000000..128ee9d53 --- /dev/null +++ b/docs/material/.icons/octicons/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/law.svg b/docs/material/.icons/octicons/law.svg new file mode 100644 index 000000000..884e43ab0 --- /dev/null +++ b/docs/material/.icons/octicons/law.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/light-bulb.svg b/docs/material/.icons/octicons/light-bulb.svg new file mode 100644 index 000000000..dcdf411e9 --- /dev/null +++ b/docs/material/.icons/octicons/light-bulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/line-arrow-down.svg b/docs/material/.icons/octicons/line-arrow-down.svg new file mode 100644 index 000000000..12c2982b0 --- /dev/null +++ b/docs/material/.icons/octicons/line-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/line-arrow-left.svg b/docs/material/.icons/octicons/line-arrow-left.svg new file mode 100644 index 000000000..878c59407 --- /dev/null +++ b/docs/material/.icons/octicons/line-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/line-arrow-right.svg b/docs/material/.icons/octicons/line-arrow-right.svg new file mode 100644 index 000000000..f25b64a46 --- /dev/null +++ b/docs/material/.icons/octicons/line-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/line-arrow-up.svg b/docs/material/.icons/octicons/line-arrow-up.svg new file mode 100644 index 000000000..ca13412f4 --- /dev/null +++ b/docs/material/.icons/octicons/line-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/link-external.svg b/docs/material/.icons/octicons/link-external.svg new file mode 100644 index 000000000..536e3e868 --- /dev/null +++ b/docs/material/.icons/octicons/link-external.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/link.svg b/docs/material/.icons/octicons/link.svg new file mode 100644 index 000000000..0b638f9b2 --- /dev/null +++ b/docs/material/.icons/octicons/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/list-ordered.svg b/docs/material/.icons/octicons/list-ordered.svg new file mode 100644 index 000000000..f94502a14 --- /dev/null +++ b/docs/material/.icons/octicons/list-ordered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/list-unordered.svg b/docs/material/.icons/octicons/list-unordered.svg new file mode 100644 index 000000000..c81a4b3d6 --- /dev/null +++ b/docs/material/.icons/octicons/list-unordered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/location.svg b/docs/material/.icons/octicons/location.svg new file mode 100644 index 000000000..0f70cff3a --- /dev/null +++ b/docs/material/.icons/octicons/location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/lock.svg b/docs/material/.icons/octicons/lock.svg new file mode 100644 index 000000000..fbfd423aa --- /dev/null +++ b/docs/material/.icons/octicons/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/logo-gist.svg b/docs/material/.icons/octicons/logo-gist.svg new file mode 100644 index 000000000..4aeea9bda --- /dev/null +++ b/docs/material/.icons/octicons/logo-gist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/logo-github.svg b/docs/material/.icons/octicons/logo-github.svg new file mode 100644 index 000000000..e84e4b8d8 --- /dev/null +++ b/docs/material/.icons/octicons/logo-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/mail-read.svg b/docs/material/.icons/octicons/mail-read.svg new file mode 100644 index 000000000..df980670d --- /dev/null +++ b/docs/material/.icons/octicons/mail-read.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/mail.svg b/docs/material/.icons/octicons/mail.svg new file mode 100644 index 000000000..2b1336d62 --- /dev/null +++ b/docs/material/.icons/octicons/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/mark-github.svg b/docs/material/.icons/octicons/mark-github.svg new file mode 100644 index 000000000..66b2a7ba0 --- /dev/null +++ b/docs/material/.icons/octicons/mark-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/markdown.svg b/docs/material/.icons/octicons/markdown.svg new file mode 100644 index 000000000..5955d7585 --- /dev/null +++ b/docs/material/.icons/octicons/markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/megaphone.svg b/docs/material/.icons/octicons/megaphone.svg new file mode 100644 index 000000000..cdc7a7178 --- /dev/null +++ b/docs/material/.icons/octicons/megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/mention.svg b/docs/material/.icons/octicons/mention.svg new file mode 100644 index 000000000..831efc42d --- /dev/null +++ b/docs/material/.icons/octicons/mention.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/milestone.svg b/docs/material/.icons/octicons/milestone.svg new file mode 100644 index 000000000..e339be3a1 --- /dev/null +++ b/docs/material/.icons/octicons/milestone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/mirror.svg b/docs/material/.icons/octicons/mirror.svg new file mode 100644 index 000000000..518d71f7f --- /dev/null +++ b/docs/material/.icons/octicons/mirror.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/mortar-board.svg b/docs/material/.icons/octicons/mortar-board.svg new file mode 100644 index 000000000..e6e0abcbd --- /dev/null +++ b/docs/material/.icons/octicons/mortar-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/mute.svg b/docs/material/.icons/octicons/mute.svg new file mode 100644 index 000000000..d562592cc --- /dev/null +++ b/docs/material/.icons/octicons/mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/no-newline.svg b/docs/material/.icons/octicons/no-newline.svg new file mode 100644 index 000000000..7271795fb --- /dev/null +++ b/docs/material/.icons/octicons/no-newline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/north-star.svg b/docs/material/.icons/octicons/north-star.svg new file mode 100644 index 000000000..1288163a5 --- /dev/null +++ b/docs/material/.icons/octicons/north-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/note.svg b/docs/material/.icons/octicons/note.svg new file mode 100644 index 000000000..e711b79d3 --- /dev/null +++ b/docs/material/.icons/octicons/note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/octoface.svg b/docs/material/.icons/octicons/octoface.svg new file mode 100644 index 000000000..2f7989a52 --- /dev/null +++ b/docs/material/.icons/octicons/octoface.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/organization.svg b/docs/material/.icons/octicons/organization.svg new file mode 100644 index 000000000..d1f3c5c7b --- /dev/null +++ b/docs/material/.icons/octicons/organization.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/package.svg b/docs/material/.icons/octicons/package.svg new file mode 100644 index 000000000..4a9c689e8 --- /dev/null +++ b/docs/material/.icons/octicons/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/paintcan.svg b/docs/material/.icons/octicons/paintcan.svg new file mode 100644 index 000000000..30151c1c9 --- /dev/null +++ b/docs/material/.icons/octicons/paintcan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/pencil.svg b/docs/material/.icons/octicons/pencil.svg new file mode 100644 index 000000000..f43ed5b5e --- /dev/null +++ b/docs/material/.icons/octicons/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/person.svg b/docs/material/.icons/octicons/person.svg new file mode 100644 index 000000000..8c900dd12 --- /dev/null +++ b/docs/material/.icons/octicons/person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/pin.svg b/docs/material/.icons/octicons/pin.svg new file mode 100644 index 000000000..9046e3b44 --- /dev/null +++ b/docs/material/.icons/octicons/pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/play.svg b/docs/material/.icons/octicons/play.svg new file mode 100644 index 000000000..cc0559239 --- /dev/null +++ b/docs/material/.icons/octicons/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/plug.svg b/docs/material/.icons/octicons/plug.svg new file mode 100644 index 000000000..812e9bd20 --- /dev/null +++ b/docs/material/.icons/octicons/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/plus-small.svg b/docs/material/.icons/octicons/plus-small.svg new file mode 100644 index 000000000..a98d3e43b --- /dev/null +++ b/docs/material/.icons/octicons/plus-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/plus.svg b/docs/material/.icons/octicons/plus.svg new file mode 100644 index 000000000..bce6564aa --- /dev/null +++ b/docs/material/.icons/octicons/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/primitive-dot-stroke.svg b/docs/material/.icons/octicons/primitive-dot-stroke.svg new file mode 100644 index 000000000..f80808223 --- /dev/null +++ b/docs/material/.icons/octicons/primitive-dot-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/primitive-dot.svg b/docs/material/.icons/octicons/primitive-dot.svg new file mode 100644 index 000000000..26f4e412e --- /dev/null +++ b/docs/material/.icons/octicons/primitive-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/primitive-square.svg b/docs/material/.icons/octicons/primitive-square.svg new file mode 100644 index 000000000..27b681769 --- /dev/null +++ b/docs/material/.icons/octicons/primitive-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/project.svg b/docs/material/.icons/octicons/project.svg new file mode 100644 index 000000000..42651a13a --- /dev/null +++ b/docs/material/.icons/octicons/project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/pulse.svg b/docs/material/.icons/octicons/pulse.svg new file mode 100644 index 000000000..3ee010c7c --- /dev/null +++ b/docs/material/.icons/octicons/pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/question.svg b/docs/material/.icons/octicons/question.svg new file mode 100644 index 000000000..9e326ba3b --- /dev/null +++ b/docs/material/.icons/octicons/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/quote.svg b/docs/material/.icons/octicons/quote.svg new file mode 100644 index 000000000..acd1a04df --- /dev/null +++ b/docs/material/.icons/octicons/quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/radio-tower.svg b/docs/material/.icons/octicons/radio-tower.svg new file mode 100644 index 000000000..27783ca81 --- /dev/null +++ b/docs/material/.icons/octicons/radio-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/reply.svg b/docs/material/.icons/octicons/reply.svg new file mode 100644 index 000000000..7aa1b4d0a --- /dev/null +++ b/docs/material/.icons/octicons/reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo-clone.svg b/docs/material/.icons/octicons/repo-clone.svg new file mode 100644 index 000000000..ff4fc558c --- /dev/null +++ b/docs/material/.icons/octicons/repo-clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo-force-push.svg b/docs/material/.icons/octicons/repo-force-push.svg new file mode 100644 index 000000000..c33d213be --- /dev/null +++ b/docs/material/.icons/octicons/repo-force-push.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo-forked.svg b/docs/material/.icons/octicons/repo-forked.svg new file mode 100644 index 000000000..660914a24 --- /dev/null +++ b/docs/material/.icons/octicons/repo-forked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo-pull.svg b/docs/material/.icons/octicons/repo-pull.svg new file mode 100644 index 000000000..7b01be276 --- /dev/null +++ b/docs/material/.icons/octicons/repo-pull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo-push.svg b/docs/material/.icons/octicons/repo-push.svg new file mode 100644 index 000000000..df04818e7 --- /dev/null +++ b/docs/material/.icons/octicons/repo-push.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo-template-private.svg b/docs/material/.icons/octicons/repo-template-private.svg new file mode 100644 index 000000000..658894b01 --- /dev/null +++ b/docs/material/.icons/octicons/repo-template-private.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo-template.svg b/docs/material/.icons/octicons/repo-template.svg new file mode 100644 index 000000000..c0299796d --- /dev/null +++ b/docs/material/.icons/octicons/repo-template.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/repo.svg b/docs/material/.icons/octicons/repo.svg new file mode 100644 index 000000000..ff8ed3630 --- /dev/null +++ b/docs/material/.icons/octicons/repo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/report.svg b/docs/material/.icons/octicons/report.svg new file mode 100644 index 000000000..5d859d658 --- /dev/null +++ b/docs/material/.icons/octicons/report.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/request-changes.svg b/docs/material/.icons/octicons/request-changes.svg new file mode 100644 index 000000000..9fe66bff0 --- /dev/null +++ b/docs/material/.icons/octicons/request-changes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/rocket.svg b/docs/material/.icons/octicons/rocket.svg new file mode 100644 index 000000000..fba4c9808 --- /dev/null +++ b/docs/material/.icons/octicons/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/rss.svg b/docs/material/.icons/octicons/rss.svg new file mode 100644 index 000000000..8e342d3e0 --- /dev/null +++ b/docs/material/.icons/octicons/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/ruby.svg b/docs/material/.icons/octicons/ruby.svg new file mode 100644 index 000000000..415e07b43 --- /dev/null +++ b/docs/material/.icons/octicons/ruby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/saved.svg b/docs/material/.icons/octicons/saved.svg new file mode 100644 index 000000000..22c77d1db --- /dev/null +++ b/docs/material/.icons/octicons/saved.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/screen-full.svg b/docs/material/.icons/octicons/screen-full.svg new file mode 100644 index 000000000..6bca8555d --- /dev/null +++ b/docs/material/.icons/octicons/screen-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/screen-normal.svg b/docs/material/.icons/octicons/screen-normal.svg new file mode 100644 index 000000000..8f8146cc4 --- /dev/null +++ b/docs/material/.icons/octicons/screen-normal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/search.svg b/docs/material/.icons/octicons/search.svg new file mode 100644 index 000000000..d41a53984 --- /dev/null +++ b/docs/material/.icons/octicons/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/server.svg b/docs/material/.icons/octicons/server.svg new file mode 100644 index 000000000..5e57945aa --- /dev/null +++ b/docs/material/.icons/octicons/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/settings.svg b/docs/material/.icons/octicons/settings.svg new file mode 100644 index 000000000..2075c0021 --- /dev/null +++ b/docs/material/.icons/octicons/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/shield-check.svg b/docs/material/.icons/octicons/shield-check.svg new file mode 100644 index 000000000..b7bc80c80 --- /dev/null +++ b/docs/material/.icons/octicons/shield-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/shield-lock.svg b/docs/material/.icons/octicons/shield-lock.svg new file mode 100644 index 000000000..07e819312 --- /dev/null +++ b/docs/material/.icons/octicons/shield-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/shield-x.svg b/docs/material/.icons/octicons/shield-x.svg new file mode 100644 index 000000000..b79f5120c --- /dev/null +++ b/docs/material/.icons/octicons/shield-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/shield.svg b/docs/material/.icons/octicons/shield.svg new file mode 100644 index 000000000..23244bd1e --- /dev/null +++ b/docs/material/.icons/octicons/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/sign-in.svg b/docs/material/.icons/octicons/sign-in.svg new file mode 100644 index 000000000..d5806af63 --- /dev/null +++ b/docs/material/.icons/octicons/sign-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/sign-out.svg b/docs/material/.icons/octicons/sign-out.svg new file mode 100644 index 000000000..5851eeb52 --- /dev/null +++ b/docs/material/.icons/octicons/sign-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/skip.svg b/docs/material/.icons/octicons/skip.svg new file mode 100644 index 000000000..f94142e2e --- /dev/null +++ b/docs/material/.icons/octicons/skip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/smiley.svg b/docs/material/.icons/octicons/smiley.svg new file mode 100644 index 000000000..fe8c23916 --- /dev/null +++ b/docs/material/.icons/octicons/smiley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/squirrel.svg b/docs/material/.icons/octicons/squirrel.svg new file mode 100644 index 000000000..68750520b --- /dev/null +++ b/docs/material/.icons/octicons/squirrel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/star.svg b/docs/material/.icons/octicons/star.svg new file mode 100644 index 000000000..f03585c7b --- /dev/null +++ b/docs/material/.icons/octicons/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/stop.svg b/docs/material/.icons/octicons/stop.svg new file mode 100644 index 000000000..58ad20d92 --- /dev/null +++ b/docs/material/.icons/octicons/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/sync.svg b/docs/material/.icons/octicons/sync.svg new file mode 100644 index 000000000..e4d070dcf --- /dev/null +++ b/docs/material/.icons/octicons/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/tag.svg b/docs/material/.icons/octicons/tag.svg new file mode 100644 index 000000000..7ed03baa0 --- /dev/null +++ b/docs/material/.icons/octicons/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/tasklist.svg b/docs/material/.icons/octicons/tasklist.svg new file mode 100644 index 000000000..5bd21a762 --- /dev/null +++ b/docs/material/.icons/octicons/tasklist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/telescope.svg b/docs/material/.icons/octicons/telescope.svg new file mode 100644 index 000000000..37ef21823 --- /dev/null +++ b/docs/material/.icons/octicons/telescope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/terminal.svg b/docs/material/.icons/octicons/terminal.svg new file mode 100644 index 000000000..33277e4c9 --- /dev/null +++ b/docs/material/.icons/octicons/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/text-size.svg b/docs/material/.icons/octicons/text-size.svg new file mode 100644 index 000000000..7d196fdde --- /dev/null +++ b/docs/material/.icons/octicons/text-size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/three-bars.svg b/docs/material/.icons/octicons/three-bars.svg new file mode 100644 index 000000000..c3fc3f082 --- /dev/null +++ b/docs/material/.icons/octicons/three-bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/thumbsdown.svg b/docs/material/.icons/octicons/thumbsdown.svg new file mode 100644 index 000000000..11b131f47 --- /dev/null +++ b/docs/material/.icons/octicons/thumbsdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/thumbsup.svg b/docs/material/.icons/octicons/thumbsup.svg new file mode 100644 index 000000000..a949df394 --- /dev/null +++ b/docs/material/.icons/octicons/thumbsup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/tools.svg b/docs/material/.icons/octicons/tools.svg new file mode 100644 index 000000000..a1e7d72cf --- /dev/null +++ b/docs/material/.icons/octicons/tools.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/trashcan.svg b/docs/material/.icons/octicons/trashcan.svg new file mode 100644 index 000000000..d15c6255e --- /dev/null +++ b/docs/material/.icons/octicons/trashcan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/triangle-down.svg b/docs/material/.icons/octicons/triangle-down.svg new file mode 100644 index 000000000..fabf64003 --- /dev/null +++ b/docs/material/.icons/octicons/triangle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/triangle-left.svg b/docs/material/.icons/octicons/triangle-left.svg new file mode 100644 index 000000000..908a5197d --- /dev/null +++ b/docs/material/.icons/octicons/triangle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/triangle-right.svg b/docs/material/.icons/octicons/triangle-right.svg new file mode 100644 index 000000000..7d8211f01 --- /dev/null +++ b/docs/material/.icons/octicons/triangle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/triangle-up.svg b/docs/material/.icons/octicons/triangle-up.svg new file mode 100644 index 000000000..4b3eb0066 --- /dev/null +++ b/docs/material/.icons/octicons/triangle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/unfold.svg b/docs/material/.icons/octicons/unfold.svg new file mode 100644 index 000000000..ddf1cf3ab --- /dev/null +++ b/docs/material/.icons/octicons/unfold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/unmute.svg b/docs/material/.icons/octicons/unmute.svg new file mode 100644 index 000000000..112db0b9e --- /dev/null +++ b/docs/material/.icons/octicons/unmute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/unsaved.svg b/docs/material/.icons/octicons/unsaved.svg new file mode 100644 index 000000000..7edbdf610 --- /dev/null +++ b/docs/material/.icons/octicons/unsaved.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/unverified.svg b/docs/material/.icons/octicons/unverified.svg new file mode 100644 index 000000000..513b6b830 --- /dev/null +++ b/docs/material/.icons/octicons/unverified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/verified.svg b/docs/material/.icons/octicons/verified.svg new file mode 100644 index 000000000..bed5b1965 --- /dev/null +++ b/docs/material/.icons/octicons/verified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/versions.svg b/docs/material/.icons/octicons/versions.svg new file mode 100644 index 000000000..238178506 --- /dev/null +++ b/docs/material/.icons/octicons/versions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/watch.svg b/docs/material/.icons/octicons/watch.svg new file mode 100644 index 000000000..d1a60fe27 --- /dev/null +++ b/docs/material/.icons/octicons/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/workflow-all.svg b/docs/material/.icons/octicons/workflow-all.svg new file mode 100644 index 000000000..a755b742d --- /dev/null +++ b/docs/material/.icons/octicons/workflow-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/workflow.svg b/docs/material/.icons/octicons/workflow.svg new file mode 100644 index 000000000..26e4db1c0 --- /dev/null +++ b/docs/material/.icons/octicons/workflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/x.svg b/docs/material/.icons/octicons/x.svg new file mode 100644 index 000000000..202437db5 --- /dev/null +++ b/docs/material/.icons/octicons/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/.icons/octicons/zap.svg b/docs/material/.icons/octicons/zap.svg new file mode 100644 index 000000000..e7747f136 --- /dev/null +++ b/docs/material/.icons/octicons/zap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/material/404.html b/docs/material/404.html new file mode 100644 index 000000000..49c7d1648 --- /dev/null +++ b/docs/material/404.html @@ -0,0 +1,7 @@ +{#- + This file was automatically generated - do not edit +-#} +{% extends "base.html" %} +{% block content %} +

404 - Not found

+{% endblock %} diff --git a/docs/material/__init__.py b/docs/material/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/docs/material/assets/images/favicon.png b/docs/material/assets/images/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..1cf13b9f9d978896599290a74f77d5dbe7d1655c GIT binary patch literal 1870 zcmV-U2eJ5xP)Gc)JR9QMau)O=X#!i9;T z37kk-upj^(fsR36MHs_+1RCI)NNu9}lD0S{B^g8PN?Ww(5|~L#Ng*g{WsqleV}|#l zz8@ri&cTzw_h33bHI+12+kK6WN$h#n5cD8OQt`5kw6p~9H3()bUQ8OS4Q4HTQ=1Ol z_JAocz`fLbT2^{`8n~UAo=#AUOf=SOq4pYkt;XbC&f#7lb$*7=$na!mWCQ`dBQsO0 zLFBSPj*N?#u5&pf2t4XjEGH|=pPQ8xh7tpx;US5Cx_Ju;!O`ya-yF`)b%TEt5>eP1ZX~}sjjA%FJF?h7cX8=b!DZl<6%Cv z*G0uvvU+vmnpLZ2paivG-(cd*y3$hCIcsZcYOGh{$&)A6*XX&kXZd3G8m)G$Zz-LV z^GF3VAW^Mdv!)4OM8EgqRiz~*Cji;uzl2uC9^=8I84vNp;ltJ|q-*uQwGp2ma6cY7 z;`%`!9UXO@fr&Ebapfs34OmS9^u6$)bJxrucutf>`dKPKT%%*d3XlFVKunp9 zasduxjrjs>f8V=D|J=XNZp;_Zy^WgQ$9WDjgY=z@stwiEBm9u5*|34&1Na8BMjjgf3+SHcr`5~>oz1Y?SW^=K z^bTyO6>Gar#P_W2gEMwq)ot3; zREHn~U&Dp0l6YT0&k-wLwYjb?5zGK`W6S2v+K>AM(95m2C20L|3m~rN8dprPr@t)5lsk9Hu*W z?pS990s;Ez=+Rj{x7p``4>+c0G5^pYnB1^!TL=(?HLHZ+HicG{~4F1d^5Awl_2!1jICM-!9eoLhbbT^;yHcefyTAaqRcY zmuctDopPT!%k+}x%lZRKnzykr2}}XfG_ne?nRQO~?%hkzo;@RN{P6o`&mMUWBYMTe z6i8ChtjX&gXl`nvrU>jah)2iNM%JdjqoaeaU%yVn!^70x-flljp6Q5tK}5}&X8&&G zX3fpb3E(!rH=zVI_9Gjl45w@{(ITqngWFe7@9{mX;tO25Z_8 zQHEpI+FkTU#4xu>RkN>b3Tnc3UpWzPXWm#o55GKF09j^Mh~)K7{QqbO_~(@CVq! zS<8954|P8mXN2MRs86xZ&Q4EfM@JB94b=(YGuk)s&^jiSF=t3*oNK3`rD{H`yQ?d; ztE=laAUoZx5?RC8*WKOj`%LXEkgDd>&^Q4M^z`%u0rg-It=hLCVsq!Z%^6eB-OvOT zFZ28TN&cRmgU}Elrnk43)!>Z1FCPL2K$7}gwzIc48NX}#!A1BpJP?#v5wkNprhV** z?Cpalt1oH&{r!o3eSKc&ap)iz2BTn_VV`4>9M^b3;(YY}4>#ML6{~(4mH+?%07*qo IM6N<$f(jP3KmY&$ literal 0 HcmV?d00001 diff --git a/docs/material/assets/javascripts/bundle.8566d47a.min.js b/docs/material/assets/javascripts/bundle.8566d47a.min.js new file mode 100644 index 000000000..591f4e39e --- /dev/null +++ b/docs/material/assets/javascripts/bundle.8566d47a.min.js @@ -0,0 +1,2 @@ +!function(t,e){for(var n in e)t[n]=e[n]}(window,function(t){function e(e){for(var r,i,o=e[0],u=e[1],b=e[2],s=0,O=[];s0}function H(){return new _.a(new URL(location.href))}var R=n(114);function P(t,e){return e.location$.pipe(Object(R.a)(1),Object(l.a)((function(e){var n=e.href;return new URL(t,n).toString().replace(/\/$/,"")})),Object(p.a)(1))}function U(){return location.hash.substring(1)}function q(t){var e=s("a");e.href=t,e.addEventListener("click",(function(t){return t.stopPropagation()})),e.click()}function N(){return Object(c.a)(window,"hashchange").pipe(Object(l.a)(U),Object(d.a)(U()),Object(S.a)((function(t){return t.length>0})),Object(C.a)())}function I(t){var e=matchMedia(t);return Object(x.a)((function(t){return e.addListener((function(){return t(e.matches)}))})).pipe(Object(d.a)(e.matches),Object(p.a)(1))}var z={drawer:u("[data-md-toggle=drawer]"),search:u("[data-md-toggle=search]")};function V(t){return z[t].checked}function D(t,e){z[t].checked!==e&&z[t].click()}function B(t){var e=z[t];return Object(c.a)(e,"change").pipe(Object(l.a)((function(){return e.checked})),Object(d.a)(e.checked))}var Y=n(62),J=n(90);function K(){return{x:Math.max(0,pageXOffset),y:Math.max(0,pageYOffset)}}function Q(t){var e=t.x,n=t.y;window.scrollTo(e||0,n||0)}function F(){return{width:innerWidth,height:innerHeight}}function W(){return Object(Y.a)([Object(j.a)(Object(c.a)(window,"scroll",{passive:!0}),Object(c.a)(window,"resize",{passive:!0})).pipe(Object(l.a)(K),Object(d.a)(K())),Object(c.a)(window,"resize",{passive:!0}).pipe(Object(l.a)(F),Object(d.a)(F()))]).pipe(Object(l.a)((function(t){var e=Object(w.h)(t,2);return{offset:e[0],size:e[1]}})),Object(p.a)(1))}function X(t,e){var n=e.header$,r=e.viewport$,c=r.pipe(Object(J.a)("size")),a=Object(Y.a)([c,n]).pipe(Object(l.a)((function(){return{x:t.offsetLeft,y:t.offsetTop}})));return Object(Y.a)([n,r,a]).pipe(Object(l.a)((function(t){var e=Object(w.h)(t,3),n=e[0].height,r=e[1],c=r.offset,a=r.size,i=e[2],o=i.x,u=i.y;return{offset:{x:c.x-o,y:c.y-u+n},size:a}})),Object(p.a)(1))}var Z=n(101),G=n(102),tt=n(82),et=n(103);function nt(t,e){var n=e.tx$,r=Object(x.a)((function(e){return t.addEventListener("message",e)})).pipe(Object(Z.a)("data"));return n.pipe(Object(G.a)((function(){return r}),{leading:!0,trailing:!0}),Object(tt.a)((function(e){return t.postMessage(e)})),Object(et.a)(r),Object(C.a)())}},,,function(t,e,n){"use strict";function r(t){return"object"==typeof t&&"string"==typeof t.base&&"object"==typeof t.features&&"object"==typeof t.search}n.d(e,"d",(function(){return r})),n.d(e,"b",(function(){return b})),n.d(e,"a",(function(){return O})),n.d(e,"f",(function(){return d})),n.d(e,"g",(function(){return p})),n.d(e,"e",(function(){return h})),n.d(e,"c",(function(){return v}));var c=n(0),a=n(81);function i(t){switch(t){case"svg":case"path":return document.createElementNS("http://www.w3.org/2000/svg",t);default:return document.createElement(t)}}function o(t,e,n){switch(e){case"xmlns":break;case"viewBox":case"d":"boolean"!=typeof n?t.setAttributeNS(null,e,n):n&&t.setAttributeNS(null,e,"");break;default:"boolean"!=typeof n?t.setAttribute(e,n):n&&t.setAttribute(e,"")}}function u(t,e){var n,r;if("string"==typeof e||"number"==typeof e)t.innerHTML+=e.toString();else if(e instanceof Node)t.appendChild(e);else if(Array.isArray(e))try{for(var a=Object(c.k)(e),i=a.next();!i.done;i=a.next()){u(t,i.value)}}catch(t){n={error:t}}finally{try{i&&!i.done&&(r=a.return)&&r.call(a)}finally{if(n)throw n.error}}}function b(t,e){for(var n,r,b,f,s=[],O=2;On){for(;" "!==t[n]&&--n>0;);return t.substring(0,n)+"..."}return t}function h(t){return t>999?((t+1e-6)/1e3).toFixed(+((t-950)%1e3>99))+"k":t.toString()}function v(t){for(var e=0,n=0,r=t.length;n code").forEach((function(t,e){var n=t.parentElement;n.id="__code_"+e,n.insertBefore(Object(f.a)(n.id),t)}))}));var O=Object(a.a)((function(t){new r(".md-clipboard").on("success",t)})).pipe(Object(i.a)());return O.pipe(Object(o.a)((function(t){return t.clearSelection()})),Object(u.a)(Object(s.f)("clipboard.copied"))).subscribe(n),O}var j=n(27),l=n(41),d=n(85),p=n(35),h=n(9),v=n(59),m=n(116);function y(t){var e=(void 0===t?{}:t).duration,n=new j.a,r=Object(b.a)("div");return r.classList.add("md-dialog","md-typeset"),n.pipe(Object(p.a)((function(t){return Object(l.a)(document.body).pipe(Object(h.a)((function(t){return t.appendChild(r)})),Object(v.b)(d.a),Object(m.a)(1),Object(o.a)((function(e){e.innerHTML=t,e.setAttribute("data-md-state","open")})),Object(m.a)(e||2e3),Object(o.a)((function(t){return t.removeAttribute("data-md-state")})),Object(m.a)(400),Object(o.a)((function(t){t.innerHTML="",t.remove()})))}))).subscribe(),n}var g=n(0),w=n(95),$=n(97),x=n(117),k=n(99),S=n(48),C=n(101),T=n(90),A=n(106),_=n(107),E=n(104),L=n(91),M=n(108),H=n(92);function R(t,e){var n=e.document$,r=e.viewport$,a=e.location$;"scrollRestoration"in history&&(history.scrollRestoration="manual"),Object(w.a)(window,"beforeunload").subscribe((function(){history.scrollRestoration="auto"}));var o=Object(b.c)('link[rel="shortcut icon"]');void 0!==o&&(o.href=o.href);var u=Object(w.a)(document.body,"click").pipe(Object(k.a)((function(t){return!(t.metaKey||t.ctrlKey)})),Object(p.a)((function(e){if(e.target instanceof HTMLElement){var n=e.target.closest("a");if(n&&!n.target&&Object(b.h)(n)&&t.includes(n.href))return Object(b.g)(n)||e.preventDefault(),Object(l.a)(n)}return c.a})),Object(h.a)((function(t){return{url:new URL(t.href)}})),Object(i.a)());u.subscribe((function(){Object(b.o)("search",!1)}));var f=u.pipe(Object(k.a)((function(t){var e=t.url;return!Object(b.g)(e)})),Object(i.a)()),s=Object(w.a)(window,"popstate").pipe(Object(k.a)((function(t){return null!==t.state})),Object(h.a)((function(t){return{url:new URL(location.href),offset:t.state}})),Object(i.a)());Object($.a)(f,s).pipe(Object(S.a)((function(t,e){return t.url.href===e.url.href})),Object(C.a)("url")).subscribe(a);var O=a.pipe(Object(T.a)("pathname"),Object(A.a)(1),Object(p.a)((function(t){return Object(x.a)({url:t.href,responseType:"text",withCredentials:!0}).pipe(Object(_.a)((function(){return Object(b.m)(t),c.a})))})));f.pipe(Object(E.a)(O)).subscribe((function(t){var e=t.url;history.pushState({},"",e.toString())}));var j=new DOMParser;O.pipe(Object(h.a)((function(t){var e=t.response;return j.parseFromString(e,"text/html")}))).subscribe(n);var d=Object($.a)(f,s).pipe(Object(E.a)(n));d.subscribe((function(t){var e=t.url,n=t.offset;e.hash&&!n?Object(b.n)(e.hash):Object(b.p)(n||{y:0})})),d.pipe(Object(L.a)(n)).subscribe((function(t){var e,n,r=Object(g.h)(t,2)[1],c=r.title,a=r.head;document.dispatchEvent(new CustomEvent("DOMContentSwitch")),document.title=c;try{for(var i=Object(g.k)(['link[rel="canonical"]','meta[name="author"]','meta[name="description"]']),o=i.next();!o.done;o=i.next()){var u=o.value,f=Object(b.c)(u,a),s=Object(b.c)(u,document.head);void 0!==f&&void 0!==s&&Object(b.j)(s,f)}}catch(t){e={error:t}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(e)throw e.error}}})),r.pipe(Object(M.a)(250),Object(T.a)("offset")).subscribe((function(t){var e=t.offset;history.replaceState(e,"")})),Object($.a)(u,s).pipe(Object(H.a)(2,1),Object(k.a)((function(t){var e=Object(g.h)(t,2),n=e[0],r=e[1];return n.url.pathname===r.url.pathname&&!Object(b.g)(r.url)})),Object(h.a)((function(t){return Object(g.h)(t,2)[1]}))).subscribe((function(t){var e=t.offset;Object(b.p)(e||{y:0})}))}var P=n(7);function U(){var t=Object(b.u)().pipe(Object(h.a)((function(t){return Object(g.a)({mode:Object(b.f)("search")?"search":"global"},t)})),Object(k.a)((function(t){if("global"===t.mode){var e=Object(b.b)();if(void 0!==e)return!Object(b.i)(e)}return!0})),Object(i.a)());return t.pipe(Object(k.a)((function(t){return"search"===t.mode})),Object(L.a)(Object(P.useComponent)("search-query"),Object(P.useComponent)("search-result"))).subscribe((function(t){var e=Object(g.h)(t,3),n=e[0],r=e[1],c=e[2],a=Object(b.b)();switch(n.type){case"Enter":a===r&&n.claim();break;case"Escape":case"Tab":Object(b.o)("search",!1),Object(b.k)(r,!1);break;case"ArrowUp":case"ArrowDown":if(void 0===a)Object(b.k)(r);else{var i=Object(g.i)([r],Object(b.e)("[href]",c)),o=Math.max(0,(Math.max(0,i.indexOf(a))+i.length+("ArrowUp"===n.type?-1:1))%i.length);Object(b.k)(i[o])}n.claim();break;default:r!==Object(b.b)()&&Object(b.k)(r)}})),t.pipe(Object(k.a)((function(t){return"global"===t.mode})),Object(L.a)(Object(P.useComponent)("search-query"))).subscribe((function(t){var e=Object(g.h)(t,2),n=e[0],r=e[1];switch(n.type){case"f":case"s":case"/":Object(b.k)(r),Object(b.l)(r),n.claim();break;case"p":case",":var c=Object(b.c)("[href][rel=prev]");void 0!==c&&c.click();break;case"n":case".":var a=Object(b.c)("[href][rel=next]");void 0!==a&&a.click()}})),t}var q=n(46)},,,,,,,function(t,e,n){"use strict";n.d(e,"a",(function(){return j})),n.d(e,"b",(function(){return l}));var r,c=n(0),a=n(41),i=n(20),o=n(9),u=n(83),b=n(89),f=n(35),s=n(48),O=n(1);function j(t,e){var n=e.document$;r=n.pipe(Object(o.a)((function(e){return t.reduce((function(t,n){var r,a=Object(O.c)("[data-md-component="+n+"]",e);return Object(c.a)(Object(c.a)({},t),void 0!==a?((r={})[n]=a,r):{})}),{})})),Object(u.a)((function(e,n){var r,a;try{for(var i=Object(c.k)(t),o=i.next();!o.done;o=i.next()){var u=o.value;switch(u){case"announce":case"header-title":case"container":case"skip":u in e&&void 0!==e[u]&&(Object(O.j)(e[u],n[u]),e[u]=n[u]);break;default:void 0!==n[u]?e[u]=Object(O.c)("[data-md-component="+u+"]"):delete e[u]}}}catch(t){r={error:t}}finally{try{o&&!o.done&&(a=i.return)&&a.call(i)}finally{if(r)throw r.error}}return e})),Object(b.a)(1))}function l(t){return r.pipe(Object(f.a)((function(e){return void 0!==e[t]?Object(a.a)(e[t]):i.a})),Object(s.a)())}},,function(t,e,n){"use strict";function r(t,e){t.setAttribute("data-md-state",e?"blur":"")}function c(t){t.removeAttribute("data-md-state")}function a(t,e){t.classList.toggle("md-nav__link--active",e)}function i(t){t.classList.remove("md-nav__link--active")}n.d(e,"d",(function(){return r})),n.d(e,"b",(function(){return c})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return i}))},,,,,,function(t,e,n){"use strict";var r=n(64);n.o(r,"applySidebar")&&n.d(e,"applySidebar",(function(){return r.applySidebar})),n.o(r,"mountTableOfContents")&&n.d(e,"mountTableOfContents",(function(){return r.mountTableOfContents})),n.o(r,"mountTabs")&&n.d(e,"mountTabs",(function(){return r.mountTabs})),n.o(r,"watchSidebar")&&n.d(e,"watchSidebar",(function(){return r.watchSidebar}))},function(t,e,n){"use strict";n.d(e,"a",(function(){return a})),n.d(e,"b",(function(){return j})),n.d(e,"c",(function(){return p})),n.d(e,"d",(function(){return m}));var r=n(4),c="md-clipboard md-icon";function a(t){return Object(r.b)("button",{class:c,title:Object(r.f)("clipboard.copy"),"data-clipboard-target":"#"+t+" > code"},Object(r.b)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(r.b)("path",{d:"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z"})))}var i=n(0),o="md-search-result__item",u="md-search-result__link",b="md-search-result__article md-search-result__article--document",f="md-search-result__article",s="md-search-result__title",O="md-search-result__teaser";function j(t){var e=t.article,n=t.sections,c=Object(r.b)("div",{class:"md-search-result__icon md-icon"},Object(r.b)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(r.b)("path",{d:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H13C12.59,21.75 12.2,21.44 11.86,21.1C11.53,20.77 11.25,20.4 11,20H6V4H13V9H18V10.18C18.71,10.34 19.39,10.61 20,11V8L14,2M20.31,18.9C21.64,16.79 21,14 18.91,12.68C16.8,11.35 14,12 12.69,14.08C11.35,16.19 12,18.97 14.09,20.3C15.55,21.23 17.41,21.23 18.88,20.32L22,23.39L23.39,22L20.31,18.9M16.5,19A2.5,2.5 0 0,1 14,16.5A2.5,2.5 0 0,1 16.5,14A2.5,2.5 0 0,1 19,16.5A2.5,2.5 0 0,1 16.5,19Z"}))),a=Object(i.i)([e],n).map((function(t){var e=t.location,n=t.title,a=t.text;return Object(r.b)("a",{href:e,class:u,tabIndex:-1},Object(r.b)("article",{class:"parent"in t?f:b},!("parent"in t)&&c,Object(r.b)("h1",{class:s},n),a.length>0&&Object(r.b)("p",{class:O},Object(r.g)(a,320))))}));return Object(r.b)("li",{class:o},a)}var l="md-source__facts",d="md-source__fact";function p(t){var e=t.map((function(t){return Object(r.b)("li",{class:d},t)}));return Object(r.b)("ul",{class:l},e)}var h="md-typeset__scrollwrap",v="md-typeset__table";function m(t){return Object(r.b)("div",{class:h},Object(r.b)("div",{class:v},t))}},function(t,e,n){"use strict";function r(t,e){t.style.top=e+"px"}function c(t){t.style.top=""}function a(t,e){t.style.height=e+"px"}function i(t){t.style.height=""}n.d(e,"d",(function(){return r})),n.d(e,"b",(function(){return c})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return i}))},,,,,,,,,,,,,function(t,e,n){"use strict";var r=n(69);n.o(r,"applyAnchorList")&&n.d(e,"applyAnchorList",(function(){return r.applyAnchorList})),n.o(r,"watchAnchorList")&&n.d(e,"watchAnchorList",(function(){return r.watchAnchorList}));var c=n(70);n.d(e,"applyAnchorList",(function(){return c.a})),n.d(e,"watchAnchorList",(function(){return c.b}));n(24)},function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"f",(function(){return y})),n.d(e,"a",(function(){return i})),n.d(e,"d",(function(){return p})),n.d(e,"c",(function(){return h})),n.d(e,"e",(function(){return v}));var r=n(0),c=n(78);!function(){function t(t){var e=t.config,n=t.docs,a=t.pipeline,i=t.index;this.documents=function(t){var e,n,a=new Map;try{for(var i=Object(r.k)(t),o=i.next();!o.done;o=i.next()){var u=o.value,b=Object(r.h)(u.location.split("#"),2),f=b[0],s=b[1],O=u.location,j=u.title,l=c(u.text).replace(/\s+(?=[,.:;!?])/g,"").replace(/\s+/g," ");if(s){var d=a.get(f);d.linked?a.set(O,{location:O,title:j,text:l,parent:d}):(d.title=u.title,d.text=l,d.linked=!0)}else a.set(O,{location:O,title:j,text:l,linked:!1})}}catch(t){e={error:t}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(e)throw e.error}}return a}(n),this.highlight=function(t){var e=new RegExp(t.separator,"img"),n=function(t,e,n){return e+""+n+""};return function(c){c=c.replace(/[\s*+-:~^]+/g," ").trim();var a=new RegExp("(^|"+t.separator+")("+c.replace(/[|\\{}()[\]^$+*?.-]/g,"\\$&").replace(e,"|")+")","img");return function(t){return Object(r.a)(Object(r.a)({},t),{title:t.title.replace(a,n),text:t.text.replace(a,n)})}}}(e),this.index=void 0===i?lunr((function(){var t,c,i,o,u;a=a||["trimmer","stopWordFilter"],this.pipeline.reset();try{for(var b=Object(r.k)(a),f=b.next();!f.done;f=b.next()){var s=f.value;this.pipeline.add(lunr[s])}}catch(e){t={error:e}}finally{try{f&&!f.done&&(c=b.return)&&c.call(b)}finally{if(t)throw t.error}}1===e.lang.length&&"en"!==e.lang[0]?this.use(lunr[e.lang[0]]):e.lang.length>1&&this.use((i=lunr).multiLanguage.apply(i,Object(r.i)(e.lang))),this.field("title",{boost:1e3}),this.field("text"),this.ref("location");try{for(var O=Object(r.k)(n),j=O.next();!j.done;j=O.next()){var l=j.value;this.add(l)}}catch(t){o={error:t}}finally{try{j&&!j.done&&(u=O.return)&&u.call(O)}finally{if(o)throw o.error}}})):lunr.Index.load("string"==typeof i?JSON.parse(i):i)}t.prototype.query=function(t){var e=this;if(t)try{var n=this.index.search(t).reduce((function(t,n){var c=e.documents.get(n.ref);if(void 0!==c)if("parent"in c){var a=c.parent.location;t.set(a,Object(r.i)(t.get(a)||[],[n]))}else{a=c.location;t.set(a,t.get(a)||[])}return t}),new Map),c=this.highlight(t);return Object(r.i)(n).map((function(t){var n=Object(r.h)(t,2),a=n[0],i=n[1];return{article:c(e.documents.get(a)),sections:i.map((function(t){return c(e.documents.get(t.ref))}))}}))}catch(e){console.warn("Invalid query: "+t+" – see https://bit.ly/2s3ChXG")}return[]}}();function a(t){return t.replace(/(?:^|\s+)[*+-:^~]+(?=\s+|$)/g,"").trim().replace(/\s+|\b$/g,"* ")}var i,o=n(115),u=n(27),b=n(55),f=n(91),s=n(9),O=n(89),j=n(59),l=n(1),d=n(4);function p(t){return t.type===i.READY}function h(t){return t.type===i.QUERY}function v(t){return t.type===i.RESULT}function m(t){var e=t.config,n=t.docs,r=t.index;return 1===e.lang.length&&"en"===e.lang[0]&&(e.lang=[Object(d.f)("search.config.lang")]),"[s-]+"===e.separator&&(e.separator=Object(d.f)("search.config.separator")),{config:e,docs:n,index:r,pipeline:Object(d.f)("search.config.pipeline").split(/\s*,\s*/).filter(o.a)}}function y(t,e){var n=e.index$,c=e.base$,a=new Worker(t),o=new u.a,d=Object(l.C)(a,{tx$:o}).pipe(Object(f.a)(c),Object(s.a)((function(t){var e,n,c,a,i=Object(r.h)(t,2),o=i[0],u=i[1];if(v(o))try{for(var b=Object(r.k)(o.data),f=b.next();!f.done;f=b.next()){var s=f.value,O=s.article,j=s.sections;O.location=u+"/"+O.location;try{for(var l=(c=void 0,Object(r.k)(j)),d=l.next();!d.done;d=l.next()){var p=d.value;p.location=u+"/"+p.location}}catch(t){c={error:t}}finally{try{d&&!d.done&&(a=l.return)&&a.call(l)}finally{if(c)throw c.error}}}}catch(t){e={error:t}}finally{try{f&&!f.done&&(n=b.return)&&n.call(b)}finally{if(e)throw e.error}}return o})),Object(O.a)(1));return n.pipe(Object(s.a)((function(t){return{type:i.SETUP,data:m(t)}})),Object(j.b)(b.a)).subscribe(o.next.bind(o)),{tx$:o,rx$:d}}!function(t){t[t.SETUP=0]="SETUP",t[t.READY=1]="READY",t[t.QUERY=2]="QUERY",t[t.RESULT=3]="RESULT"}(i||(i={}))},,,,,,,,,,,,,,,,,,function(t,e,n){"use strict";var r=n(65);n.o(r,"applySidebar")&&n.d(e,"applySidebar",(function(){return r.applySidebar})),n.o(r,"mountTableOfContents")&&n.d(e,"mountTableOfContents",(function(){return r.mountTableOfContents})),n.o(r,"mountTabs")&&n.d(e,"mountTabs",(function(){return r.mountTabs})),n.o(r,"watchSidebar")&&n.d(e,"watchSidebar",(function(){return r.watchSidebar}));var c=n(66);n.d(e,"applySidebar",(function(){return c.a})),n.d(e,"watchSidebar",(function(){return c.b}));n(32)},function(t,e){},function(t,e,n){"use strict";n.d(e,"b",(function(){return l})),n.d(e,"a",(function(){return d}));var r=n(0),c=n(62),a=n(47),i=n(85),o=n(9),u=n(48),b=n(59),f=n(91),s=n(82),O=n(84),j=n(32);function l(t,e){var n=e.main$,a=e.viewport$,i=t.parentElement.offsetTop-t.parentElement.parentElement.offsetTop;return Object(c.a)([n,a]).pipe(Object(o.a)((function(t){var e=Object(r.h)(t,2),n=e[0],c=n.offset,a=n.height,o=e[1].offset.y;return{height:a=a+Math.min(i,Math.max(0,o-c))-i,lock:o>=c+i}})),Object(u.a)((function(t,e){return t.height===e.height&&t.lock===e.lock})))}function d(t,e){var n=e.header$;return Object(a.a)(Object(b.b)(i.a),Object(f.a)(n),Object(s.a)((function(e){var n=Object(r.h)(e,2),c=n[0],a=c.height,i=c.lock,o=n[1].height;Object(j.c)(t,a),i?Object(j.d)(t,o):Object(j.b)(t)})),Object(o.a)((function(t){return Object(r.h)(t,1)[0]})),Object(O.a)((function(){Object(j.b)(t),Object(j.a)(t)})))}},function(t,e,n){"use strict";var r=n(68);n.d(e,"mountTableOfContents",(function(){return r.a}));n(45)},function(t,e,n){"use strict";n.d(e,"a",(function(){return O}));var r=n(0),c=n(47),a=n(62),i=n(41),o=n(35),u=n(9),b=n(1),f=n(30),s=n(45);function O(t){var e=t.header$,n=t.main$,O=t.viewport$,j=t.tablet$;return Object(c.a)(Object(o.a)((function(t){return j.pipe(Object(o.a)((function(c){if(c){var o=Object(b.e)(".md-nav__link",t),j=Object(f.watchSidebar)(t,{main$:n,viewport$:O}).pipe(Object(f.applySidebar)(t,{header$:e})),l=Object(s.watchAnchorList)(o,{header$:e,viewport$:O}).pipe(Object(s.applyAnchorList)(o));return Object(a.a)([j,l]).pipe(Object(u.a)((function(t){var e=Object(r.h)(t,2);return{sidebar:e[0],anchors:e[1]}})))}return Object(i.a)({})})))})))}},function(t,e){},function(t,e,n){"use strict";n.d(e,"b",(function(){return y})),n.d(e,"a",(function(){return g}));var r=n(0),c=n(93),a=n(62),i=n(47),o=n(85),u=n(9),b=n(90),f=n(35),s=n(83),O=n(48),j=n(94),l=n(92),d=n(59),p=n(82),h=n(84),v=n(1),m=n(24);function y(t,e){var n,i,o=e.header$,d=e.viewport$,p=new Map;try{for(var h=Object(r.k)(t),m=h.next();!m.done;m=h.next()){var y=m.value,g=decodeURIComponent(y.hash.substring(1)),w=Object(v.c)('[id="'+g+'"]');void 0!==w&&p.set(y,w)}}catch(t){n={error:t}}finally{try{m&&!m.done&&(i=h.return)&&i.call(h)}finally{if(n)throw n.error}}var $=o.pipe(Object(u.a)((function(t){return 18+t.height})));return Object(v.t)(document.body).pipe(Object(b.a)("height"),Object(u.a)((function(){var t=[];return Object(r.i)(p).reduce((function(e,n){for(var a=Object(r.h)(n,2),i=a[0],o=a[1];t.length;){if(!(p.get(t[t.length-1]).tagName>=o.tagName))break;t.pop()}for(var u=o.offsetTop;!u&&o.parentElement;)u=(o=o.parentElement).offsetTop;return e.set(Object(c.a)(t=Object(r.i)(t,[i])),u)}),new Map)})),Object(f.a)((function(t){return Object(a.a)([$,d]).pipe(Object(s.a)((function(t,e){for(var n=Object(r.h)(t,2),c=n[0],a=n[1],i=Object(r.h)(e,2),o=i[0],u=i[1].offset.y;a.length;){if(!(Object(r.h)(a[0],2)[1]-o=u))break;a=Object(r.i)([c.pop()],a)}return[c,a]}),[[],Object(r.i)(t)]),Object(O.a)((function(t,e){return t[0]===e[0]&&t[1]===e[1]})))}))).pipe(Object(u.a)((function(t){var e=Object(r.h)(t,2),n=e[0],c=e[1];return{prev:n.map((function(t){return Object(r.h)(t,1)[0]})),next:c.map((function(t){return Object(r.h)(t,1)[0]}))}})),Object(j.a)({prev:[],next:[]}),Object(l.a)(2,1),Object(u.a)((function(t){var e=Object(r.h)(t,2),n=e[0],c=e[1];return n.prev.length16)););return n}),0),Object(u.a)(e),Object(M.a)((function(){!function(t){t.innerHTML=""}(b)})))})))}function q(t,e){var n=t.rx$,r=e.query$;return Object(c.a)(Object(i.a)((function(t){var e=t.parentElement,c=n.pipe(Object(o.a)(h.c),Object(u.a)(!0)),a=Object(p.s)(e).pipe(Object(O.a)((function(t){return t.y>=e.scrollHeight-e.offsetHeight-16})),Object(g.a)(),Object(o.a)(C.a));return n.pipe(Object(o.a)(h.d),Object(T.a)("data"),U(t,{query$:r,ready$:c,fetch$:a}),Object(b.a)([]))})))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return y}));var r=n(0),c=n(47),a=n(62),i=n(35),o=n(9),u=n(99),b=n(91),f=n(48),s=n(94),O=n(89),j=n(1),l=n(22),d=n(41),p=n(85),h=n(59),v=n(82),m=n(84);function y(t){var e=t.document$,n=t.viewport$;return Object(c.a)(Object(i.a)((function(t){var y=function(t,e){return e.document$.pipe(Object(o.a)((function(){var e=getComputedStyle(t);return["sticky","-webkit-sticky"].includes(e.position)})),Object(f.a)(),Object(i.a)((function(e){return e?Object(j.t)(t).pipe(Object(o.a)((function(t){return{sticky:!0,height:t.height}}))):Object(d.a)({sticky:!1,height:0})})),Object(O.a)(1))}(t,{document$:e}),g=Object(l.b)("main").pipe(Object(o.a)((function(t){return Object(j.c)("h1, h2, h3, h4, h5, h6",t)})),Object(u.a)((function(t){return void 0!==t})),Object(b.a)(Object(l.b)("header-title")),Object(i.a)((function(t){var e=Object(r.h)(t,2),a=e[0],i=e[1];return Object(j.B)(a,{header$:y,viewport$:n}).pipe(Object(o.a)((function(t){return t.offset.y>=a.offsetHeight?"page":"site"})),Object(f.a)(),function(t){return Object(c.a)(Object(h.b)(p.a),Object(v.a)((function(e){!function(t,e){t.setAttribute("data-md-state",e?"active":"")}(t,"page"===e)})),Object(m.a)((function(){!function(t){t.removeAttribute("data-md-state")}(t)})))}(i))})),Object(s.a)("site"));return Object(a.a)([y,g]).pipe(Object(o.a)((function(t){var e=Object(r.h)(t,2),n=e[0],c=e[1];return Object(r.a)({type:c},n)})),Object(O.a)(1))})))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return O}));var r=n(47),c=n(35),a=n(9),i=n(90),o=n(1),u=n(85),b=n(59),f=n(82),s=n(84);function O(t){var e=t.header$,n=t.viewport$;return Object(r.a)(Object(c.a)((function(t){return Object(o.B)(t,{header$:e,viewport$:n}).pipe(Object(a.a)((function(t){return{hidden:t.offset.y>=20}})),Object(i.a)("hidden"),function(t){return Object(r.a)(Object(b.b)(u.a),Object(f.a)((function(e){var n=e.hidden;!function(t,e){t.setAttribute("data-md-state",e?"hidden":"")}(t,n)})),Object(s.a)((function(){!function(t){t.removeAttribute("data-md-state")}(t)})))}(t))})))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return m}));var r=n(27),c=n(47),a=n(35),i=n(90),o=n(82),u=n(22),b=n(0),f=n(62),s=n(85),O=n(101),j=n(48),l=n(89),d=n(9),p=n(59),h=n(84),v=n(1);function m(t){var e=t.header$,n=t.viewport$,m=new r.a;return Object(u.b)("header").pipe(Object(a.a)((function(t){return m.pipe(Object(i.a)("active"),(e=t,Object(c.a)(Object(p.b)(s.a),Object(o.a)((function(t){var n=t.active;!function(t,e){t.setAttribute("data-md-state",e?"shadow":"")}(e,n)})),Object(h.a)((function(){!function(t){t.removeAttribute("data-md-state")}(e)})))));var e}))).subscribe(),Object(c.a)(Object(a.a)((function(t){return function(t,e){var n=e.header$,r=e.viewport$,c=n.pipe(Object(O.a)("height"),Object(j.a)(),Object(l.a)(1)),o=c.pipe(Object(a.a)((function(){return Object(v.t)(t).pipe(Object(d.a)((function(e){var n=e.height;return{top:t.offsetTop,bottom:t.offsetTop+n}})))})),Object(i.a)("bottom"),Object(l.a)(1));return Object(f.a)([c,o,r]).pipe(Object(d.a)((function(t){var e=Object(b.h)(t,3),n=e[0],r=e[1],c=r.top,a=r.bottom,i=e[2],o=i.offset.y,u=i.size.height;return{offset:c-n,height:u=Math.max(0,u-Math.max(0,c-o,n)-Math.max(0,u+o-a)),active:c-n<=o}})),Object(j.a)((function(t,e){return t.offset===e.offset&&t.height===e.height&&t.active===e.active})))}(t,{header$:e,viewport$:n})})),Object(o.a)((function(t){return m.next(t)})))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return j}));var r=n(47),c=n(41),a=n(35),i=n(9),o=n(90),u=n(1),b=n(85),f=n(59),s=n(82),O=n(84);function j(t){var e=t.header$,n=t.viewport$,j=t.screen$;return Object(r.a)(Object(a.a)((function(t){return j.pipe(Object(a.a)((function(a){return a?Object(u.B)(t,{header$:e,viewport$:n}).pipe(Object(i.a)((function(t){return{hidden:t.offset.y>=10}})),Object(o.a)("hidden"),function(t){return Object(r.a)(Object(f.b)(b.a),Object(s.a)((function(e){var n=e.hidden;!function(t,e){t.setAttribute("data-md-state",e?"hidden":"")}(t,n)})),Object(O.a)((function(){!function(t){t.removeAttribute("data-md-state")}(t)})))}(t)):Object(c.a)({hidden:!0})})))})))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return u}));var r=n(47),c=n(41),a=n(35),i=n(9),o=n(30);function u(t){var e=t.header$,n=t.main$,u=t.viewport$,b=t.screen$;return Object(r.a)(Object(a.a)((function(t){return b.pipe(Object(a.a)((function(r){return r?Object(o.watchSidebar)(t,{main$:n,viewport$:u}).pipe(Object(o.applySidebar)(t,{header$:e}),Object(i.a)((function(t){return{sidebar:t}}))):Object(c.a)({})})))})))}},,,,,,,,,,,,function(t,e,n){"use strict";n.r(e),n.d(e,"setScrollLock",(function(){return N})),n.d(e,"resetScrollLock",(function(){return I})),n.d(e,"initialize",(function(){return z}));var r=n(0),c=n(110),a=n(112),i=n(111),o=n(79),u=n(38),b=n(41),f=n(105),s=n(62),O=n(85),j=n(95),l=n(97),d=n(117),p=n(89),h=n(35),v=n(101),m=n(107),y=n(82),g=n(116),w=n(91),$=n(59),x=n(99),k=n(9),S=n(114),C=n(1),T=n(7),A=n(15),_=n(115),E=n(103);var L=n(106);var M=n(109),H=n(96);function R(){return/(iPad|iPhone|iPod)/.test(navigator.userAgent)}var P=n(31),U=n(4);function q(t){switch(Object(r.h)(t.match(/(git(?:hub|lab))/i)||[],1)[0].toLowerCase()){case"github":var e=Object(r.h)(t.match(/^.+github\.com\/([^\/]+)\/?([^\/]+)/i),3);return function(t,e){return Object(d.a)({url:void 0!==e?"https://api.github.com/repos/"+t+"/"+e:"https://api.github.com/users/"+t,responseType:"json"}).pipe(Object(x.a)((function(t){return 200===t.status})),Object(v.a)("response"),Object(h.a)((function(t){if(void 0!==e){var n=t.stargazers_count,r=t.forks_count;return Object(b.a)([Object(U.e)(n||0)+" Stars",Object(U.e)(r||0)+" Forks"])}var c=t.public_repos;return Object(b.a)([Object(U.e)(c||0)+" Repositories"])})))}(e[1],e[2]);case"gitlab":var n=Object(r.h)(t.match(/^.+?([^\/]*gitlab[^\/]+)\/(.+?)\/?$/i),3);return function(t,e){return Object(d.a)({url:"https://"+t+"/api/v4/projects/"+encodeURIComponent(e),responseType:"json"}).pipe(Object(x.a)((function(t){return 200===t.status})),Object(v.a)("response"),Object(k.a)((function(t){var e=t.star_count,n=t.forks_count;return[Object(U.e)(e)+" Stars",Object(U.e)(n)+" Forks"]})))}(n[1],n[2]);default:return f.a}}function N(t,e){t.setAttribute("data-md-state","lock"),t.style.top="-"+e+"px"}function I(t){var e=-1*parseInt(t.style.top,10);t.removeAttribute("data-md-state"),t.style.top="",e&&window.scrollTo(0,e)}function z(t){if(!Object(U.d)(t))throw new SyntaxError("Invalid configuration: "+JSON.stringify(t));var e=Object(C.q)(),n=Object(C.v)(),z=Object(C.w)(t.base,{location$:n}),V=Object(C.x)(),D=Object(C.A)(),B=Object(C.y)("(min-width: 960px)"),Y=Object(C.y)("(min-width: 1220px)");Object(T.setupComponents)(["announce","container","header","header-title","hero","main","navigation","search","search-query","search-reset","search-result","skip","tabs","toc"],{document$:e});var J=Object(A.h)();!function(t){var e=t.document$,n=t.hash$,c=e.pipe(Object(k.a)((function(){return Object(C.e)("details")})));Object(l.a)(Object(C.y)("print").pipe(Object(x.a)(_.a)),Object(j.a)(window,"beforeprint")).pipe(Object(E.a)(c)).subscribe((function(t){var e,n;try{for(var c=Object(r.k)(t),a=c.next();!a.done;a=c.next()){a.value.setAttribute("open","")}}catch(t){e={error:t}}finally{try{a&&!a.done&&(n=c.return)&&n.call(c)}finally{if(e)throw e.error}}})),n.pipe(Object(k.a)((function(t){return Object(C.c)('[id="'+t+'"]')})),Object(x.a)((function(t){return void 0!==t})),Object(y.a)((function(t){var e=t.closest("details");e&&!e.open&&e.setAttribute("open","")}))).subscribe((function(t){return t.scrollIntoView()}))}({document$:e,hash$:V}),{document$:e}.document$.pipe(Object(L.a)(1),Object(w.a)(Object(T.useComponent)("container")),Object(k.a)((function(t){var e=Object(r.h)(t,2)[1];return Object(C.e)("script",e)}))).subscribe((function(t){var e,n;try{for(var c=Object(r.k)(t),a=c.next();!a.done;a=c.next()){var i=a.value;if(i.src||/(^|\/javascript)$/i.test(i.type)){var o=Object(C.a)("script"),u=i.src?"src":"textContent";o[u]=i[u],Object(C.j)(i,o)}}}catch(t){e={error:t}}finally{try{a&&!a.done&&(n=c.return)&&n.call(c)}finally{if(e)throw e.error}}})),function(t){t.document$.pipe(Object(k.a)((function(){return Object(C.d)(".md-source[href]")})),Object(h.a)((function(t){var e=t.href;return Object(U.a)(""+Object(U.c)(e),(function(){return q(e)}))})),Object(m.a)((function(){return f.a}))).subscribe((function(t){var e,n;try{for(var c=Object(r.k)(Object(C.e)(".md-source__repository")),a=c.next();!a.done;a=c.next()){var i=a.value;i.hasAttribute("data-md-state")||(i.setAttribute("data-md-state","done"),i.appendChild(Object(P.c)(t)))}}catch(t){e={error:t}}finally{try{a&&!a.done&&(n=c.return)&&n.call(c)}finally{if(e)throw e.error}}}))}({document$:e}),function(t){var e=t.document$,n=Object(C.a)("table");e.pipe(Object(k.a)((function(){return Object(C.e)("table:not([class])")}))).subscribe((function(t){var e,c;try{for(var a=Object(r.k)(t),i=a.next();!i.done;i=a.next()){var o=i.value;Object(C.j)(o,n),Object(C.j)(n,Object(P.d)(o))}}catch(t){e={error:t}}finally{try{i&&!i.done&&(c=a.return)&&c.call(a)}finally{if(e)throw e.error}}}))}({document$:e}),function(t){var e=t.document$.pipe(Object(k.a)((function(){return Object(C.e)("[data-md-scrollfix]")})),Object(p.a)(1));e.subscribe((function(t){var e,n;try{for(var c=Object(r.k)(t),a=c.next();!a.done;a=c.next()){a.value.removeAttribute("data-md-scrollfix")}}catch(t){e={error:t}}finally{try{a&&!a.done&&(n=c.return)&&n.call(c)}finally{if(e)throw e.error}}})),Object(M.a)(R,e,f.a).pipe(Object(h.a)((function(t){return l.a.apply(void 0,Object(r.i)(t.map((function(t){return Object(j.a)(t,"touchstart",{passive:!0}).pipe(Object(H.a)(t))}))))}))).subscribe((function(t){var e=t.scrollTop;0===e?t.scrollTop=1:e+t.offsetHeight===t.scrollHeight&&(t.scrollTop=e-1)}))}({document$:e});var K=Object(A.f)(),Q=Object(A.e)({document$:e,dialog$:K}),F=Object(T.useComponent)("header").pipe(Object(T.mountHeader)({document$:e,viewport$:D}),Object(p.a)(1)),W=Object(T.useComponent)("main").pipe(Object(T.mountMain)({header$:F,viewport$:D}),Object(p.a)(1)),X=Object(T.useComponent)("navigation").pipe(Object(T.mountNavigation)({header$:F,main$:W,viewport$:D,screen$:Y}),Object(p.a)(1)),Z=Object(T.useComponent)("toc").pipe(Object(T.mountTableOfContents)({header$:F,main$:W,viewport$:D,tablet$:B}),Object(p.a)(1)),G=Object(T.useComponent)("tabs").pipe(Object(T.mountTabs)({header$:F,viewport$:D,screen$:Y}),Object(p.a)(1)),tt=Object(T.useComponent)("hero").pipe(Object(T.mountHero)({header$:F,viewport$:D}),Object(p.a)(1)),et=Object(o.a)((function(){var e=t.search&&t.search.index?t.search.index:void 0,n=void 0!==e?Object(u.a)(e):z.pipe(Object(h.a)((function(t){return Object(d.a)({url:t+"/search/search_index.json",responseType:"json",withCredentials:!0}).pipe(Object(v.a)("response"))})));return Object(b.a)(Object(A.i)(t.search.worker,{base$:z,index$:n}))})).pipe(Object(h.a)((function(e){var n=Object(T.useComponent)("search-query").pipe(Object(T.mountSearchQuery)(e,{transform:t.search.transform}),Object(p.a)(1)),r=Object(T.useComponent)("search-reset").pipe(Object(T.mountSearchReset)(),Object(p.a)(1)),c=Object(T.useComponent)("search-result").pipe(Object(T.mountSearchResult)(e,{query$:n}),Object(p.a)(1));return Object(T.useComponent)("search").pipe(Object(T.mountSearch)(e,{query$:n,reset$:r,result$:c}),Object(p.a)(1))})),Object(m.a)((function(){return Object(T.useComponent)("search").subscribe((function(t){return t.hidden=!0})),f.a})));V.pipe(Object(y.a)((function(){return Object(C.o)("search",!1)})),Object(g.a)(125)).subscribe((function(t){return Object(C.n)("#"+t)})),Object(s.a)([Object(C.z)("search"),B]).pipe(Object(w.a)(D),Object(h.a)((function(t){var n=Object(r.h)(t,2),c=Object(r.h)(n[0],2),a=c[0],i=c[1],o=n[1].offset.y,u=a&&!i;return e.pipe(Object(g.a)(u?400:100),Object($.b)(O.a),Object(y.a)((function(t){var e=t.body;return u?N(e,o):I(e)})))}))).subscribe(),Object(j.a)(document.body,"click").pipe(Object(x.a)((function(t){return!(t.metaKey||t.ctrlKey)})),Object(x.a)((function(t){if(t.target instanceof HTMLElement){var e=t.target.closest("a");if(e&&Object(C.h)(e))return!0}return!1}))).subscribe((function(){Object(C.o)("drawer",!1)})),t.features.includes("instant")&&"file:"!==location.protocol&&z.pipe(Object(h.a)((function(t){return Object(d.a)({url:t+"/sitemap.xml",responseType:"document",withCredentials:!0}).pipe(Object(v.a)("response"))})),Object(w.a)(z),Object(k.a)((function(t){var e=Object(r.h)(t,2),n=e[0],i=e[1],o=Object(C.e)("loc",n).map((function(t){return t.textContent}));if(o.length>1){for(var u=Object(r.h)(Object(c.a)(Object(a.a)("length"),o),2),b=u[0],f=u[1],s=0;b.charAt(s)===f.charAt(s);)s++;for(var O=0;O\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ReplaySubject, Subject, fromEvent } from \"rxjs\"\nimport { mapTo } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch document\n *\n * Documents must be implemented as subjects, so all downstream observables are\n * automatically updated when a new document is emitted. This enabled features\n * like instant loading.\n *\n * @return Document subject\n */\nexport function watchDocument(): Subject {\n const document$ = new ReplaySubject()\n fromEvent(document, \"DOMContentLoaded\")\n .pipe(\n mapTo(document)\n )\n .subscribe(document$)\n\n /* Return document */\n return document$\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve an element matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @return Element or nothing\n */\nexport function getElement(\n selector: string, node: ParentNode = document\n): T | undefined {\n return node.querySelector(selector) || undefined\n}\n\n/**\n * Retrieve an element matching a query selector or throw a reference error\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @return Element\n */\nexport function getElementOrThrow(\n selector: string, node: ParentNode = document\n): T {\n const el = getElement(selector, node)\n if (typeof el === \"undefined\")\n throw new ReferenceError(\n `Missing element: expected \"${selector}\" to be present`\n )\n return el\n}\n\n/**\n * Retrieve the currently active element\n *\n * @return Element or nothing\n */\nexport function getActiveElement(): HTMLElement | undefined {\n return document.activeElement instanceof HTMLElement\n ? document.activeElement\n : undefined\n}\n\n/**\n * Retrieve all elements matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @return Elements\n */\nexport function getElements(\n selector: string, node: ParentNode = document\n): T[] {\n return Array.from(node.querySelectorAll(selector))\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Create an element\n *\n * @template T - Tag name type\n *\n * @param tagName - Tag name\n *\n * @return Element\n */\nexport function createElement<\n T extends keyof HTMLElementTagNameMap\n>(tagName: T): HTMLElementTagNameMap[T] {\n return document.createElement(tagName)\n}\n\n/**\n * Replace an element with another element\n *\n * @param source - Source element\n * @param target - Target element\n */\nexport function replaceElement(\n source: HTMLElement, target: Node\n): void {\n source.replaceWith(target)\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent, merge } from \"rxjs\"\nimport { map, shareReplay, startWith } from \"rxjs/operators\"\n\nimport { getActiveElement } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set element focus\n *\n * @param el - Element\n * @param value - Whether the element should be focused\n */\nexport function setElementFocus(\nel: HTMLElement, value: boolean = true\n): void {\n if (value)\n el.focus()\n else\n el.blur()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element focus\n *\n * @param el - Element\n *\n * @return Element focus observable\n */\nexport function watchElementFocus(\n el: HTMLElement\n): Observable {\n return merge(\n fromEvent(el, \"focus\"),\n fromEvent(el, \"blur\")\n )\n .pipe(\n map(({ type }) => type === \"focus\"),\n startWith(el === getActiveElement()),\n shareReplay(1)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent, merge } from \"rxjs\"\nimport { map, shareReplay, startWith } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementOffset {\n x: number /* Horizontal offset */\n y: number /* Vertical offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element offset\n *\n * @param el - Element\n *\n * @return Element offset\n */\nexport function getElementOffset(el: HTMLElement): ElementOffset {\n return {\n x: el.scrollLeft,\n y: el.scrollTop\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element offset\n *\n * @param el - Element\n *\n * @return Element offset observable\n */\nexport function watchElementOffset(\n el: HTMLElement\n): Observable {\n return merge(\n fromEvent(el, \"scroll\"),\n fromEvent(window, \"resize\")\n )\n .pipe(\n map(() => getElementOffset(el)),\n startWith(getElementOffset(el)),\n shareReplay(1)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set element text selection\n *\n * @param el - Element\n */\nexport function setElementSelection(\n el: HTMLElement\n): void {\n if (el instanceof HTMLInputElement)\n el.select()\n else\n throw new Error(\"Not implemented\")\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport ResizeObserver from \"resize-observer-polyfill\"\nimport { Observable, fromEventPattern } from \"rxjs\"\nimport { shareReplay, startWith } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementSize {\n width: number /* Element width */\n height: number /* Element height */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element size\n *\n * @param el - Element\n *\n * @return Element size\n */\nexport function getElementSize(el: HTMLElement): ElementSize {\n return {\n width: el.offsetWidth,\n height: el.offsetHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element size\n *\n * @param el - Element\n *\n * @return Element size observable\n */\nexport function watchElementSize(\n el: HTMLElement\n): Observable {\n return fromEventPattern(next => {\n new ResizeObserver(([{ contentRect }]) => next({\n width: Math.round(contentRect.width),\n height: Math.round(contentRect.height)\n }))\n .observe(el)\n })\n .pipe(\n startWith(getElementSize(el)),\n shareReplay(1)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { filter, map, share } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Key\n */\nexport interface Key {\n type: string /* Key type */\n claim(): void /* Key claim */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Check whether an element may receive keyboard input\n *\n * @param el - Element\n *\n * @return Test result\n */\nexport function isSusceptibleToKeyboard(el: HTMLElement): boolean {\n switch (el.tagName) {\n\n /* Form elements */\n case \"INPUT\":\n case \"SELECT\":\n case \"TEXTAREA\":\n return true\n\n /* Everything else */\n default:\n return el.isContentEditable\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch keyboard\n *\n * @return Keyboard observable\n */\nexport function watchKeyboard(): Observable {\n return fromEvent(window, \"keydown\")\n .pipe(\n filter(ev => !(ev.metaKey || ev.ctrlKey)),\n map(ev => ({\n type: ev.key,\n claim() {\n ev.preventDefault()\n ev.stopPropagation()\n }\n })),\n share()\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { BehaviorSubject, Subject } from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location\n *\n * This function will return a `URL` object (and not `Location`) in order to\n * normalize typings across the application. Furthermore, locations need to be\n * tracked without setting them and `Location` is a singleton which represents\n * the current location.\n *\n * @return URL\n */\nexport function getLocation(): URL {\n return new URL(location.href)\n}\n\n/**\n * Set location\n *\n * @param url - URL to change to\n */\nexport function setLocation(url: URL): void {\n location.href = url.href\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Check whether a URL is a local link or a file (except `.html`)\n *\n * @param url - URL or HTML anchor element\n * @param ref - Reference URL\n *\n * @return Test result\n */\nexport function isLocalLocation(\n url: URL | HTMLAnchorElement,\n ref: URL | Location = location\n): boolean {\n return url.host === ref.host\n && /^(?:\\/[\\w-]+)*(?:\\/?|\\.html)$/i.test(url.pathname)\n}\n\n/**\n * Check whether a URL is an anchor link on the current page\n *\n * @param url - URL or HTML anchor element\n * @param ref - Reference URL\n *\n * @return Test result\n */\nexport function isAnchorLocation(\n url: URL | HTMLAnchorElement,\n ref: URL | Location = location\n): boolean {\n return url.pathname === ref.pathname\n && url.hash.length > 0\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location\n *\n * @return Location subject\n */\nexport function watchLocation(): Subject {\n return new BehaviorSubject(getLocation())\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable } from \"rxjs\"\nimport { map, shareReplay, take } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n location$: Observable /* Location observable */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location base\n *\n * @return Location base observable\n */\nexport function watchLocationBase(\n base: string, { location$ }: WatchOptions\n): Observable {\n return location$\n .pipe(\n take(1),\n map(({ href }) => new URL(base, href)\n .toString()\n .replace(/\\/$/, \"\")\n ),\n shareReplay(1)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { filter, map, share, startWith } from \"rxjs/operators\"\n\nimport { createElement } from \"browser\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location hash\n *\n * @return Location hash\n */\nexport function getLocationHash(): string {\n return location.hash.substring(1)\n}\n\n/**\n * Set location hash\n *\n * Setting a new fragment identifier via `location.hash` will have no effect\n * if the value doesn't change. When a new fragment identifier is set, we want\n * the browser to target the respective element at all times, which is why we\n * use this dirty little trick.\n *\n * @param hash - Location hash\n */\nexport function setLocationHash(hash: string): void {\n const el = createElement(\"a\")\n el.href = hash\n el.addEventListener(\"click\", ev => ev.stopPropagation())\n el.click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location hash\n *\n * @return Location hash observable\n */\nexport function watchLocationHash(): Observable {\n return fromEvent(window, \"hashchange\")\n .pipe(\n map(getLocationHash),\n startWith(getLocationHash()),\n filter(hash => hash.length > 0),\n share()\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEventPattern } from \"rxjs\"\nimport { shareReplay, startWith } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch media query\n *\n * @param query - Media query\n *\n * @return Media observable\n */\nexport function watchMedia(query: string): Observable {\n const media = matchMedia(query)\n return fromEventPattern(next =>\n media.addListener(() => next(media.matches))\n )\n .pipe(\n startWith(media.matches),\n shareReplay(1)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { map, startWith } from \"rxjs/operators\"\n\nimport { getElementOrThrow } from \"../element\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle\n */\nexport type Toggle =\n | \"drawer\" /* Toggle for drawer */\n | \"search\" /* Toggle for search */\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle map\n */\nconst toggles: Record = {\n drawer: getElementOrThrow(`[data-md-toggle=drawer]`),\n search: getElementOrThrow(`[data-md-toggle=search]`)\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the value of a toggle\n *\n * @param name - Toggle\n *\n * @return Toggle value\n */\nexport function getToggle(name: Toggle): boolean {\n return toggles[name].checked\n}\n\n/**\n * Set toggle\n *\n * Simulating a click event seems to be the most cross-browser compatible way\n * of changing the value while also emitting a `change` event. Before, Material\n * used `CustomEvent` to programmatically change the value of a toggle, but this\n * is a much simpler and cleaner solution which doesn't require a polyfill.\n *\n * @param name - Toggle\n * @param value - Toggle value\n */\nexport function setToggle(name: Toggle, value: boolean): void {\n if (toggles[name].checked !== value)\n toggles[name].click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch toggle\n *\n * @param name - Toggle\n *\n * @return Toggle value observable\n */\nexport function watchToggle(name: Toggle): Observable {\n const el = toggles[name]\n return fromEvent(el, \"change\")\n .pipe(\n map(() => el.checked),\n startWith(el.checked)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent, merge } from \"rxjs\"\nimport { map, startWith } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport offset\n */\nexport interface ViewportOffset {\n x: number /* Horizontal offset */\n y: number /* Vertical offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve viewport offset\n *\n * On iOS Safari, viewport offset can be negative due to overflow scrolling.\n * As this may induce strange behaviors downstream, we'll just limit it to 0.\n *\n * @return Viewport offset\n */\nexport function getViewportOffset(): ViewportOffset {\n return {\n x: Math.max(0, pageXOffset),\n y: Math.max(0, pageYOffset)\n }\n}\n\n/**\n * Set viewport offset\n *\n * @param offset - Viewport offset\n */\nexport function setViewportOffset(\n { x, y }: Partial\n): void {\n window.scrollTo(x || 0, y || 0)\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport offset\n *\n * @return Viewport offset observable\n */\nexport function watchViewportOffset(): Observable {\n return merge(\n fromEvent(window, \"scroll\", { passive: true }),\n fromEvent(window, \"resize\", { passive: true })\n )\n .pipe(\n map(getViewportOffset),\n startWith(getViewportOffset())\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { map, startWith } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport size\n */\nexport interface ViewportSize {\n width: number /* Viewport width */\n height: number /* Viewport height */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve viewport size\n *\n * @return Viewport size\n */\nexport function getViewportSize(): ViewportSize {\n return {\n width: innerWidth,\n height: innerHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport size\n *\n * @return Viewport size observable\n */\nexport function watchViewportSize(): Observable {\n return fromEvent(window, \"resize\", { passive: true })\n .pipe(\n map(getViewportSize),\n startWith(getViewportSize())\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, combineLatest } from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n map,\n shareReplay\n} from \"rxjs/operators\"\n\nimport { Header } from \"components\"\n\nimport {\n ViewportOffset,\n watchViewportOffset\n} from \"../offset\"\nimport {\n ViewportSize,\n watchViewportSize\n} from \"../size\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport\n */\nexport interface Viewport {\n offset: ViewportOffset /* Viewport offset */\n size: ViewportSize /* Viewport size */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch at options\n */\ninterface WatchAtOptions {\n header$: Observable
/* Header observable */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport\n *\n * @return Viewport observable\n */\nexport function watchViewport(): Observable {\n return combineLatest([\n watchViewportOffset(),\n watchViewportSize()\n ])\n .pipe(\n map(([offset, size]) => ({ offset, size })),\n shareReplay(1)\n )\n}\n\n/**\n * Watch viewport relative to element\n *\n * @param el - Element\n * @param options - Options\n *\n * @return Viewport observable\n */\nexport function watchViewportAt(\n el: HTMLElement, { header$, viewport$ }: WatchAtOptions\n): Observable {\n const size$ = viewport$\n .pipe(\n distinctUntilKeyChanged(\"size\")\n )\n\n /* Compute element offset */\n const offset$ = combineLatest([size$, header$])\n .pipe(\n map((): ViewportOffset => ({\n x: el.offsetLeft,\n y: el.offsetTop\n }))\n )\n\n /* Compute relative viewport, return hot observable */\n return combineLatest([header$, viewport$, offset$])\n .pipe(\n map(([{ height }, { offset, size }, { x, y }]) => ({\n offset: {\n x: offset.x - x,\n y: offset.y - y + height\n },\n size\n })),\n shareReplay(1)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, Subject, fromEventPattern } from \"rxjs\"\nimport {\n pluck,\n share,\n switchMapTo,\n tap,\n throttle\n} from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Worker message\n */\nexport interface WorkerMessage {\n type: unknown /* Message type */\n data?: unknown /* Message data */\n}\n\n/**\n * Worker handler\n *\n * @template T - Message type\n */\nexport interface WorkerHandler<\n T extends WorkerMessage\n> {\n tx$: Subject /* Message transmission subject */\n rx$: Observable /* Message receive observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n *\n * @template T - Worker message type\n */\ninterface WatchOptions {\n tx$: Observable /* Message transmission observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch a web worker\n *\n * This function returns an observable that will send all values emitted by the\n * message observable to the web worker. Web worker communication is expected\n * to be bidirectional (request-response) and synchronous. Messages that are\n * emitted during a pending request are throttled, the last one is emitted.\n *\n * @param worker - Web worker\n * @param options - Options\n *\n * @return Worker message observable\n */\nexport function watchWorker(\n worker: Worker, { tx$ }: WatchOptions\n): Observable {\n\n /* Intercept messages from worker-like objects */\n const rx$ = fromEventPattern(next =>\n worker.addEventListener(\"message\", next)\n )\n .pipe(\n pluck(\"data\")\n )\n\n /* Send and receive messages, return hot observable */\n return tx$\n .pipe(\n throttle(() => rx$, { leading: true, trailing: true }),\n tap(message => worker.postMessage(message)),\n switchMapTo(rx$),\n share()\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchIndex, SearchTransformFn } from \"integrations\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Feature flags\n */\nexport type Feature =\n | \"tabs\" /* Tabs navigation */\n | \"instant\" /* Instant loading\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Configuration\n */\nexport interface Config {\n base: string /* Base URL */\n features: Feature[] /* Feature flags */\n search: {\n worker: string /* Worker URL */\n index?: Promise /* Promise resolving with index */\n transform?: SearchTransformFn /* Transformation function */\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Ensure that the given value is a valid configuration\n *\n * We could use `jsonschema` or any other schema validation framework, but that\n * would just add more bloat to the bundle, so we'll keep it plain and simple.\n *\n * @param config - Configuration\n *\n * @return Test result\n */\nexport function isConfig(config: any): config is Config {\n return typeof config === \"object\"\n && typeof config.base === \"string\"\n && typeof config.features === \"object\"\n && typeof config.search === \"object\"\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n// tslint:disable no-null-keyword\n\nimport { JSX as JSXInternal } from \"preact\"\nimport { keys } from \"ramda\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * HTML and SVG attributes\n */\ntype Attributes =\n & JSXInternal.HTMLAttributes\n & JSXInternal.SVGAttributes\n & Record\n\n/**\n * Child element\n */\ntype Child =\n | HTMLElement\n | SVGElement\n | Text\n | string\n | number\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create an element\n *\n * @param tagName - HTML or SVG tag\n *\n * @return Element\n */\nfunction createElement(tagName: string): HTMLElement | SVGElement {\n switch (tagName) {\n\n /* SVG elements */\n case \"svg\":\n case \"path\":\n return document.createElementNS(\"http://www.w3.org/2000/svg\", tagName)\n\n /* HTML elements */\n default:\n return document.createElement(tagName)\n }\n}\n\n/**\n * Set an attribute\n *\n * @param el - Element\n * @param name - Attribute name\n * @param value - Attribute value\n */\nfunction setAttribute(\n el: HTMLElement | SVGElement, name: string, value: string) {\n switch (name) {\n\n /* Attributes to be ignored */\n case \"xmlns\":\n break\n\n /* Attributes of SVG elements */\n case \"viewBox\":\n case \"d\":\n if (typeof value !== \"boolean\")\n el.setAttributeNS(null, name, value)\n else if (value)\n el.setAttributeNS(null, name, \"\")\n break\n\n /* Attributes of HTML elements */\n default:\n if (typeof value !== \"boolean\")\n el.setAttribute(name, value)\n else if (value)\n el.setAttribute(name, \"\")\n }\n}\n\n/**\n * Append a child node to an element\n *\n * @param el - Element\n * @param child - Child node(s)\n */\nfunction appendChild(\n el: HTMLElement | SVGElement, child: Child | Child[]\n): void {\n\n /* Handle primitive types (including raw HTML) */\n if (typeof child === \"string\" || typeof child === \"number\") {\n el.innerHTML += child.toString()\n\n /* Handle nodes */\n } else if (child instanceof Node) {\n el.appendChild(child)\n\n /* Handle nested children */\n } else if (Array.isArray(child)) {\n for (const node of child)\n appendChild(el, node)\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * JSX factory\n *\n * @param tagName - HTML or SVG tag\n * @param attributes - HTML attributes\n * @param children - Child elements\n *\n * @return Element\n */\nexport function h(\n tagName: string, attributes: Attributes | null, ...children: Child[]\n): HTMLElement | SVGElement {\n const el = createElement(tagName)\n\n /* Set attributes, if any */\n if (attributes)\n for (const attr of keys(attributes))\n setAttribute(el, attr, attributes[attr])\n\n /* Append child nodes */\n for (const child of children)\n appendChild(el, child)\n\n /* Return element */\n return el\n}\n\n/* ----------------------------------------------------------------------------\n * Namespace\n * ------------------------------------------------------------------------- */\n\nexport declare namespace h {\n namespace JSX {\n type Element = HTMLElement | SVGElement\n type IntrinsicElements = JSXInternal.IntrinsicElements\n }\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, defer, of } from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Cache the last value emitted by an observable in session storage\n *\n * If the key is not found in session storage, the factory is executed and the\n * latest value emitted will automatically be persisted to sessions storage.\n * Note that the values emitted by the returned observable must be serializable\n * as `JSON`, or data will be lost.\n *\n * @template T - Value type\n *\n * @param key - Cache key\n * @param factory - Observable factory\n *\n * @return Value observable\n */\nexport function cache(\n key: string, factory: () => Observable\n): Observable {\n return defer(() => {\n const data = sessionStorage.getItem(key)\n if (data) {\n return of(JSON.parse(data) as T)\n\n /* Retrieve value from observable factory and write to storage */\n } else {\n const value$ = factory()\n value$.subscribe(value => {\n try {\n sessionStorage.setItem(key, JSON.stringify(value))\n } catch (err) {\n /* Uncritical, just swallow */\n }\n })\n\n /* Return value */\n return value$\n }\n })\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { getElementOrThrow } from \"browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Translation keys\n */\ntype TranslateKey =\n | \"clipboard.copy\" /* Copy to clipboard */\n | \"clipboard.copied\" /* Copied to clipboard */\n | \"search.config.lang\" /* Search language */\n | \"search.config.pipeline\" /* Search pipeline */\n | \"search.config.separator\" /* Search separator */\n | \"search.result.placeholder\" /* Type to start searching */\n | \"search.result.none\" /* No matching documents */\n | \"search.result.one\" /* 1 matching document */\n | \"search.result.other\" /* # matching documents */\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Translations\n */\nlet lang: Record\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Translate the given key\n *\n * @param key - Key to be translated\n * @param value - Value to be replaced\n *\n * @return Translation\n */\nexport function translate(key: TranslateKey, value?: string): string {\n if (typeof lang === \"undefined\") {\n const el = getElementOrThrow(\"#__lang\")\n lang = JSON.parse(el.textContent!)\n }\n if (typeof lang[key] === \"undefined\") {\n throw new ReferenceError(`Invalid translation: ${key}`)\n }\n return typeof value !== \"undefined\"\n ? lang[key].replace(\"#\", value)\n : lang[key]\n}\n\n/**\n * Truncate a string after the given number of characters\n *\n * This is not a very reasonable approach, since the summaries kind of suck.\n * It would be better to create something more intelligent, highlighting the\n * search occurrences and making a better summary out of it, but this note was\n * written three years ago, so who knows if we'll ever fix it.\n *\n * @param value - Value to be truncated\n * @param n - Number of characters\n *\n * @return Truncated value\n */\nexport function truncate(value: string, n: number): string {\n let i = n\n if (value.length > i) {\n while (value[i] !== \" \" && --i > 0); // tslint:disable-line\n return `${value.substring(0, i)}...`\n }\n return value\n}\n\n/**\n * Round a number for display with source facts\n *\n * This is a reverse engineered version of GitHub's weird rounding algorithm\n * for stars, forks and all other numbers. While all numbers below `1,000` are\n * returned as-is, bigger numbers are converted to fixed numbers:\n *\n * - `1,049` => `1k`\n * - `1,050` => `1.1k`\n * - `1,949` => `1.9k`\n * - `1,950` => `2k`\n *\n * @param value - Original value\n *\n * @return Rounded value\n */\nexport function round(value: number): string {\n if (value > 999) {\n const digits = +((value - 950) % 1000 > 99)\n return `${((value + 0.000001) / 1000).toFixed(digits)}k`\n } else {\n return value.toString()\n }\n}\n\n/**\n * Simple hash function\n *\n * @see https://bit.ly/2wsVjJ4 - Original source\n *\n * @param value - Value to be hashed\n *\n * @return Hash as 32bit integer\n */\nexport function hash(value: string): number {\n let h = 0\n for (let i = 0, len = value.length; i < len; i++) {\n h = ((h << 5) - h) + value.charCodeAt(i)\n h |= 0 // Convert to 32bit integer\n }\n return h\n }\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nexport * from \"./_\"\nexport * from \"./header\"\nexport * from \"./hero\"\nexport * from \"./main\"\nexport * from \"./navigation\"\nexport * from \"./search\"\nexport * from \"./shared\"\nexport * from \"./tabs\"\nexport * from \"./toc\"\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport * as ClipboardJS from \"clipboard\"\nimport { NEVER, Observable, Subject, fromEventPattern } from \"rxjs\"\nimport { mapTo, share, tap } from \"rxjs/operators\"\n\nimport { getElements } from \"browser\"\nimport { renderClipboardButton } from \"templates\"\nimport { translate } from \"utilities\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n document$: Observable /* Document observable */\n dialog$: Subject /* Dialog subject */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up clipboard\n *\n * This function implements the Clipboard.js integration and injects a button\n * into all code blocks when the document changes.\n *\n * @param options - Options\n *\n * @return Clipboard observable\n */\nexport function setupClipboard(\n { document$, dialog$ }: SetupOptions\n): Observable {\n if (!ClipboardJS.isSupported())\n return NEVER\n\n /* Inject 'copy-to-clipboard' buttons */\n document$.subscribe(() => {\n const blocks = getElements(\"pre > code\")\n blocks.forEach((block, index) => {\n const parent = block.parentElement!\n parent.id = `__code_${index}`\n parent.insertBefore(renderClipboardButton(parent.id), block)\n })\n })\n\n /* Initialize clipboard */\n const clipboard$ = fromEventPattern(next => {\n new ClipboardJS(\".md-clipboard\").on(\"success\", next)\n })\n .pipe(\n share()\n )\n\n /* Display notification for clipboard event */\n clipboard$\n .pipe(\n tap(ev => ev.clearSelection()),\n mapTo(translate(\"clipboard.copied\"))\n )\n .subscribe(dialog$)\n\n /* Return clipboard */\n return clipboard$\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Subject, animationFrameScheduler, of } from \"rxjs\"\nimport {\n delay,\n map,\n observeOn,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport { createElement } from \"browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n duration?: number /* Display duration (default: 2s) */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up dialog\n *\n * @param options - Options\n *\n * @return Dialog observable\n */\nexport function setupDialog(\n { duration }: SetupOptions = {}\n): Subject {\n const dialog$ = new Subject()\n\n /* Create dialog */\n const dialog = createElement(\"div\") // TODO: improve scoping\n dialog.classList.add(\"md-dialog\", \"md-typeset\")\n\n /* Display dialog */\n dialog$\n .pipe(\n switchMap(text => of(document.body) // useComponent(\"container\")\n .pipe(\n map(container => container.appendChild(dialog)),\n observeOn(animationFrameScheduler),\n delay(1), // Strangley it doesnt work when we push things to the new animation frame...\n tap(el => {\n el.innerHTML = text\n el.setAttribute(\"data-md-state\", \"open\")\n }),\n delay(duration || 2000),\n tap(el => el.removeAttribute(\"data-md-state\")),\n delay(400),\n tap(el => {\n el.innerHTML = \"\"\n el.remove()\n })\n )\n )\n )\n .subscribe()\n\n /* Return dialog */\n return dialog$\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { NEVER, Observable, Subject, fromEvent, merge, of } from \"rxjs\"\nimport { ajax } from \"rxjs//ajax\"\nimport {\n bufferCount,\n catchError,\n debounceTime,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n filter,\n map,\n pluck,\n sample,\n share,\n skip,\n switchMap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport {\n Viewport,\n ViewportOffset,\n getElement,\n isAnchorLocation,\n isLocalLocation,\n replaceElement,\n setLocation,\n setLocationHash,\n setToggle,\n setViewportOffset\n} from \"browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * History state\n */\ninterface State {\n url: URL /* State URL */\n offset?: ViewportOffset /* State viewport offset */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n document$: Subject /* Document subject */\n location$: Subject /* Location subject */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up instant loading\n *\n * When fetching, theoretically, we could use `responseType: \"document\"`, but\n * since all MkDocs links are relative, we need to make sure that the current\n * location matches the document we just loaded. Otherwise any relative links\n * in the document could use the old location.\n *\n * This is the reason why we need to synchronize history events and the process\n * of fetching the document for navigation changes (except `popstate` events):\n *\n * 1. Fetch document via `XMLHTTPRequest`\n * 2. Set new location via `history.pushState`\n * 3. Parse and emit fetched document\n *\n * For `popstate` events, we must not use `history.pushState`, or the forward\n * history will be irreversibly overwritten. In case the request fails, the\n * location change is dispatched regularly.\n *\n * @param options - Options\n */\nexport function setupInstantLoading(\n urls: string[], { document$, viewport$, location$ }: SetupOptions\n): void {\n\n /* Disable automatic scroll restoration */\n if (\"scrollRestoration\" in history)\n history.scrollRestoration = \"manual\"\n\n /* Hack: ensure that reloads restore viewport offset */\n fromEvent(window, \"beforeunload\")\n .subscribe(() => {\n history.scrollRestoration = \"auto\"\n })\n\n /* Hack: ensure absolute favicon link to omit 404s on document switch */\n const favicon = getElement(`link[rel=\"shortcut icon\"]`)\n if (typeof favicon !== \"undefined\")\n favicon.href = favicon.href // tslint:disable-line no-self-assignment\n\n /* Intercept link clicks and convert to state change */\n const state$ = fromEvent(document.body, \"click\")\n .pipe(\n filter(ev => !(ev.metaKey || ev.ctrlKey)),\n switchMap(ev => {\n if (ev.target instanceof HTMLElement) {\n const el = ev.target.closest(\"a\")\n if (\n el && !el.target &&\n isLocalLocation(el) &&\n urls.includes(el.href)\n ) {\n if (!isAnchorLocation(el))\n ev.preventDefault()\n return of(el)\n }\n }\n return NEVER\n }),\n map(el => ({ url: new URL(el.href) })),\n share()\n )\n\n /* Always close search on link click */\n state$.subscribe(() => {\n setToggle(\"search\", false)\n })\n\n /* Filter state changes to dispatch */\n const push$ = state$\n .pipe(\n filter(({ url }) => !isAnchorLocation(url)),\n share()\n )\n\n /* Intercept popstate events (history back and forward) */\n const pop$ = fromEvent(window, \"popstate\")\n .pipe(\n filter(ev => ev.state !== null),\n map(ev => ({\n url: new URL(location.href),\n offset: ev.state\n })),\n share()\n )\n\n /* Emit location change */\n merge(push$, pop$)\n .pipe(\n distinctUntilChanged((prev, next) => prev.url.href === next.url.href),\n pluck(\"url\")\n )\n .subscribe(location$)\n\n /* Fetch document on location change */\n const ajax$ = location$\n .pipe(\n distinctUntilKeyChanged(\"pathname\"),\n skip(1),\n switchMap(url => ajax({\n url: url.href,\n responseType: \"text\",\n withCredentials: true\n })\n .pipe(\n catchError(() => {\n setLocation(url)\n return NEVER\n })\n )\n )\n )\n\n /* Set new location as soon as the document was fetched */\n push$\n .pipe(\n sample(ajax$)\n )\n .subscribe(({ url }) => {\n history.pushState({}, \"\", url.toString())\n })\n\n /* Parse and emit document */\n const dom = new DOMParser()\n ajax$\n .pipe(\n map(({ response }) => dom.parseFromString(response, \"text/html\"))\n )\n .subscribe(document$)\n\n /* Intercept instant loading */\n const instant$ = merge(push$, pop$)\n .pipe(\n sample(document$)\n )\n\n // TODO: this must be combined with search scroll restoration on mobile\n instant$.subscribe(({ url, offset }) => {\n if (url.hash && !offset) {\n setLocationHash(url.hash)\n } else {\n setViewportOffset(offset || { y: 0 })\n }\n })\n\n /* Replace document metadata */\n instant$\n .pipe(\n withLatestFrom(document$)\n )\n .subscribe(([, { title, head }]) => {\n document.dispatchEvent(new CustomEvent(\"DOMContentSwitch\"))\n document.title = title\n\n /* Replace meta tags */\n for (const selector of [\n `link[rel=\"canonical\"]`,\n `meta[name=\"author\"]`,\n `meta[name=\"description\"]`\n ]) {\n const next = getElement(selector, head)\n const prev = getElement(selector, document.head)\n if (\n typeof next !== \"undefined\" &&\n typeof prev !== \"undefined\"\n ) {\n replaceElement(prev, next)\n }\n }\n })\n\n /* Debounce update of viewport offset */\n viewport$\n .pipe(\n debounceTime(250),\n distinctUntilKeyChanged(\"offset\")\n )\n .subscribe(({ offset }) => {\n history.replaceState(offset, \"\")\n })\n\n /* Set viewport offset from history */\n merge(state$, pop$)\n .pipe(\n bufferCount(2, 1),\n filter(([prev, next]) => {\n return prev.url.pathname === next.url.pathname\n && !isAnchorLocation(next.url)\n }),\n map(([, state]) => state)\n )\n .subscribe(({ offset }) => {\n setViewportOffset(offset || { y: 0 })\n })\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable } from \"rxjs\"\nimport {\n filter,\n map,\n share,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport {\n Key,\n getActiveElement,\n getElement,\n getElements,\n getToggle,\n isSusceptibleToKeyboard,\n setElementFocus,\n setElementSelection,\n setToggle,\n watchKeyboard\n} from \"browser\"\nimport { useComponent } from \"components\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Keyboard mode\n */\nexport type KeyboardMode =\n | \"global\" /* Global */\n | \"search\" /* Search is open */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Keyboard\n */\nexport interface Keyboard extends Key {\n mode: KeyboardMode /* Keyboard mode */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up keyboard\n *\n * This function will set up the keyboard handlers and ensure that keys are\n * correctly propagated. Currently there are two modes:\n *\n * - `global`: This mode is active when the search is closed. It is intended\n * to assign hotkeys to specific functions of the site. Currently the search,\n * previous and next page can be triggered.\n *\n * - `search`: This mode is active when the search is open. It maps certain\n * navigational keys to offer search results that can be entirely navigated\n * through keyboard input.\n *\n * The keyboard observable is returned and can be used to monitor the keyboard\n * in order toassign further hotkeys to custom functions.\n *\n * @return Keyboard observable\n */\nexport function setupKeyboard(): Observable {\n const keyboard$ = watchKeyboard()\n .pipe(\n map(key => ({\n mode: getToggle(\"search\") ? \"search\" : \"global\",\n ...key\n })),\n filter(({ mode }) => {\n if (mode === \"global\") {\n const active = getActiveElement()\n if (typeof active !== \"undefined\")\n return !isSusceptibleToKeyboard(active)\n }\n return true\n }),\n share()\n )\n\n /* Set up search keyboard handlers */\n keyboard$\n .pipe(\n filter(({ mode }) => mode === \"search\"),\n withLatestFrom(\n useComponent(\"search-query\"),\n useComponent(\"search-result\")\n )\n )\n .subscribe(([key, query, result]) => {\n const active = getActiveElement()\n switch (key.type) {\n\n /* Enter: prevent form submission */\n case \"Enter\":\n if (active === query)\n key.claim()\n break\n\n /* Escape or Tab: close search */\n case \"Escape\":\n case \"Tab\":\n setToggle(\"search\", false)\n setElementFocus(query, false)\n break\n\n /* Vertical arrows: select previous or next search result */\n case \"ArrowUp\":\n case \"ArrowDown\":\n if (typeof active === \"undefined\") {\n setElementFocus(query)\n } else {\n const els = [query, ...getElements(\"[href]\", result)]\n const i = Math.max(0, (\n Math.max(0, els.indexOf(active)) + els.length + (\n key.type === \"ArrowUp\" ? -1 : +1\n )\n ) % els.length)\n setElementFocus(els[i])\n }\n\n /* Prevent scrolling of page */\n key.claim()\n break\n\n /* All other keys: hand to search query */\n default:\n if (query !== getActiveElement())\n setElementFocus(query)\n }\n })\n\n /* Set up global keyboard handlers */\n keyboard$\n .pipe(\n filter(({ mode }) => mode === \"global\"),\n withLatestFrom(useComponent(\"search-query\"))\n )\n .subscribe(([key, query]) => {\n switch (key.type) {\n\n /* Open search and select query */\n case \"f\":\n case \"s\":\n case \"/\":\n setElementFocus(query)\n setElementSelection(query)\n key.claim()\n break\n\n /* Go to previous page */\n case \"p\":\n case \",\":\n const prev = getElement(\"[href][rel=prev]\")\n if (typeof prev !== \"undefined\")\n prev.click()\n break\n\n /* Go to next page */\n case \"n\":\n case \".\":\n const next = getElement(\"[href][rel=next]\")\n if (typeof next !== \"undefined\")\n next.click()\n break\n }\n })\n\n /* Return keyboard */\n return keyboard$\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { EMPTY, Observable, of } from \"rxjs\"\nimport {\n distinctUntilChanged,\n map,\n scan,\n shareReplay,\n switchMap\n} from \"rxjs/operators\"\n\nimport { getElement, replaceElement } from \"browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component\n */\nexport type Component =\n | \"announce\" /* Announcement bar */\n | \"container\" /* Container */\n | \"header\" /* Header */\n | \"header-title\" /* Header title */\n | \"hero\" /* Hero */\n | \"main\" /* Main area */\n | \"navigation\" /* Navigation */\n | \"search\" /* Search */\n | \"search-query\" /* Search input */\n | \"search-reset\" /* Search reset */\n | \"search-result\" /* Search results */\n | \"skip\" /* Skip link */\n | \"tabs\" /* Tabs */\n | \"toc\" /* Table of contents */\n\n/**\n * Component map\n */\nexport type ComponentMap = {\n [P in Component]?: HTMLElement\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n document$: Observable /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Component map observable\n */\nlet components$: Observable\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up bindings to components with given names\n *\n * This function will maintain bindings to the elements identified by the given\n * names in-between document switches and update the elements in-place.\n *\n * @param names - Component names\n * @param options - Options\n */\nexport function setupComponents(\n names: Component[], { document$ }: WatchOptions\n): void {\n components$ = document$\n .pipe(\n\n /* Build component map */\n map(document => names.reduce((components, name) => {\n const el = getElement(`[data-md-component=${name}]`, document)\n return {\n ...components,\n ...typeof el !== \"undefined\" ? { [name]: el } : {}\n }\n }, {})),\n\n /* Re-compute component map on document switch */\n scan((prev, next) => {\n for (const name of names) {\n switch (name) {\n\n /* Top-level components: update */\n case \"announce\":\n case \"header-title\":\n case \"container\":\n case \"skip\":\n if (name in prev && typeof prev[name] !== \"undefined\") {\n replaceElement(prev[name]!, next[name]!)\n prev[name] = next[name]\n }\n break\n\n /* All other components: rebind */\n default:\n if (typeof next[name] !== \"undefined\")\n prev[name] = getElement(`[data-md-component=${name}]`)\n else\n delete prev[name]\n }\n }\n return prev\n }),\n\n /* Convert to hot observable */\n shareReplay(1)\n )\n}\n\n/**\n * Retrieve a component\n *\n * The returned observable will only re-emit if the element changed, i.e. if\n * it was replaced from a document which was switched to.\n *\n * @template T - Element type\n *\n * @param name - Component name\n *\n * @return Component observable\n */\nexport function useComponent(\n name: \"search-query\"\n): Observable\nexport function useComponent(\n name: Component\n): Observable\nexport function useComponent(\n name: Component\n): Observable {\n return components$\n .pipe(\n switchMap(components => (\n typeof components[name] !== \"undefined\"\n ? of(components[name] as T)\n : EMPTY\n )),\n distinctUntilChanged()\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set anchor blur\n *\n * @param el - Anchor element\n * @param value - Whether the anchor is blurred\n */\nexport function setAnchorBlur(\n el: HTMLElement, value: boolean\n): void {\n el.setAttribute(\"data-md-state\", value ? \"blur\" : \"\")\n}\n\n/**\n * Reset anchor blur\n *\n * @param el - Anchor element\n */\nexport function resetAnchorBlur(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Set anchor active\n *\n * @param el - Anchor element\n * @param value - Whether the anchor is active\n */\nexport function setAnchorActive(\n el: HTMLElement, value: boolean\n): void {\n el.classList.toggle(\"md-nav__link--active\", value)\n}\n\n/**\n * Reset anchor active\n *\n * @param el - Anchor element\n */\nexport function resetAnchorActive(\n el: HTMLElement\n): void {\n el.classList.remove(\"md-nav__link--active\")\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nexport * from \"./sidebar\"\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h, translate } from \"utilities\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * CSS classes\n */\nconst css = {\n container: \"md-clipboard md-icon\"\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Path of `file-search-outline` icon\n */\nconst path =\n \"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 \" +\n \"21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a 'copy-to-clipboard' button\n *\n * @param id - Unique identifier\n *\n * @return Element\n */\nexport function renderClipboardButton(\n id: string\n) {\n return (\n code`}\n >\n \n \n \n \n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchResult } from \"integrations/search\"\nimport { h, truncate } from \"utilities\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * CSS classes\n */\nconst css = {\n item: \"md-search-result__item\",\n link: \"md-search-result__link\",\n article: \"md-search-result__article md-search-result__article--document\",\n section: \"md-search-result__article\",\n title: \"md-search-result__title\",\n teaser: \"md-search-result__teaser\"\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Path of `content-copy` icon\n */\nconst path =\n \"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H13C12.59,21.75 12.2,21.44 \" +\n \"11.86,21.1C11.53,20.77 11.25,20.4 11,20H6V4H13V9H18V10.18C18.71,10.34 \" +\n \"19.39,10.61 20,11V8L14,2M20.31,18.9C21.64,16.79 21,14 \" +\n \"18.91,12.68C16.8,11.35 14,12 12.69,14.08C11.35,16.19 12,18.97 \" +\n \"14.09,20.3C15.55,21.23 17.41,21.23 \" +\n \"18.88,20.32L22,23.39L23.39,22L20.31,18.9M16.5,19A2.5,2.5 0 0,1 \" +\n \"14,16.5A2.5,2.5 0 0,1 16.5,14A2.5,2.5 0 0,1 19,16.5A2.5,2.5 0 0,1 16.5,19Z\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a search result\n *\n * @param result - Search result\n *\n * @return Element\n */\nexport function renderSearchResult(\n { article, sections }: SearchResult\n) {\n\n /* Render icon */\n const icon = (\n
\n \n \n \n
\n )\n\n /* Render article and sections */\n const children = [article, ...sections].map(document => {\n const { location, title, text } = document\n return (\n \n
\n {!(\"parent\" in document) && icon}\n

{title}

\n {text.length > 0 &&

{truncate(text, 320)}

}\n
\n
\n )\n })\n\n /* Render search result */\n return (\n
  • \n {children}\n
  • \n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SourceFacts } from \"patches/source\"\nimport { h } from \"utilities\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * CSS classes\n */\nconst css = {\n facts: \"md-source__facts\",\n fact: \"md-source__fact\"\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render source facts\n *\n * @param facts - Source facts\n *\n * @return Element\n */\nexport function renderSource(\n facts: SourceFacts\n) {\n const children = facts.map(fact => (\n
  • {fact}
  • \n ))\n return (\n
      \n {children}\n
    \n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { h } from \"utilities\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * CSS classes\n */\nconst css = {\n wrapper: \"md-typeset__scrollwrap\",\n table: \"md-typeset__table\"\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a table inside a wrapper to improve scrolling on mobile\n *\n * @param table - Table element\n *\n * @return Element\n */\nexport function renderTable(\n table: HTMLTableElement\n) {\n return (\n
    \n
    \n {table}\n
    \n
    \n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set sidebar offset\n *\n * @param el - Sidebar element\n * @param value - Sidebar offset\n */\nexport function setSidebarOffset(\n el: HTMLElement, value: number\n): void {\n el.style.top = `${value}px`\n}\n\n/**\n * Reset sidebar offset\n *\n * @param el - Sidebar element\n */\nexport function resetSidebarOffset(\n el: HTMLElement\n): void {\n el.style.top = \"\"\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Set sidebar height\n *\n * @param el - Sidebar element\n * @param value - Sidebar height\n */\nexport function setSidebarHeight(\n el: HTMLElement, value: number\n): void {\n el.style.height = `${value}px`\n}\n\n/**\n * Reset sidebar height\n *\n * @param el - Sidebar element\n */\nexport function resetSidebarHeight(\n el: HTMLElement\n): void {\n el.style.height = \"\"\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nexport * from \"./_\"\nexport * from \"./react\"\nexport * from \"./set\"\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n ArticleDocument,\n SearchDocumentMap,\n SectionDocument,\n setupSearchDocumentMap\n} from \"../document\"\nimport {\n SearchHighlightFactoryFn,\n setupSearchHighlighter\n} from \"../highlighter\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search index configuration\n */\nexport interface SearchIndexConfig {\n lang: string[] /* Search languages */\n separator: string /* Search separator */\n}\n\n/**\n * Search index document\n */\nexport interface SearchIndexDocument {\n location: string /* Document location */\n title: string /* Document title */\n text: string /* Document text */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search index pipeline function\n */\nexport type SearchIndexPipelineFn =\n | \"stemmer\" /* Stemmer */\n | \"stopWordFilter\" /* Stop word filter */\n | \"trimmer\" /* Trimmer */\n\n/**\n * Search index pipeline\n */\nexport type SearchIndexPipeline = SearchIndexPipelineFn[]\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search index\n *\n * This interfaces describes the format of the `search_index.json` file which\n * is automatically built by the MkDocs search plugin.\n */\nexport interface SearchIndex {\n config: SearchIndexConfig /* Search index configuration */\n docs: SearchIndexDocument[] /* Search index documents */\n index?: object | string /* Prebuilt or serialized index */\n pipeline?: SearchIndexPipeline /* Search index pipeline */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search result\n */\nexport interface SearchResult {\n article: ArticleDocument /* Article document */\n sections: SectionDocument[] /* Section documents */\n}\n\n/* ----------------------------------------------------------------------------\n * Class\n * ------------------------------------------------------------------------- */\n\n/**\n * Search\n *\n * Note that `lunr` is injected via Webpack, as it will otherwise also be\n * bundled in the application bundle.\n */\nexport class Search {\n\n /**\n * Search document mapping\n *\n * A mapping of URLs (including hash fragments) to the actual articles and\n * sections of the documentation. The search document mapping must be created\n * regardless of whether the index was prebuilt or not, as `lunr` itself will\n * only store the actual index.\n */\n protected documents: SearchDocumentMap\n\n /**\n * Search highlight factory function\n */\n protected highlight: SearchHighlightFactoryFn\n\n /**\n * The `lunr` search index\n */\n protected index: lunr.Index\n\n /**\n * Create the search integration\n *\n * @param data - Search index\n */\n public constructor({ config, docs, pipeline, index }: SearchIndex) {\n this.documents = setupSearchDocumentMap(docs)\n this.highlight = setupSearchHighlighter(config)\n\n /* If no index was given, create it */\n if (typeof index === \"undefined\") {\n this.index = lunr(function() {\n pipeline = pipeline || [\"trimmer\", \"stopWordFilter\"]\n\n /* Set up pipeline according to configuration */\n this.pipeline.reset()\n for (const fn of pipeline)\n this.pipeline.add(lunr[fn])\n\n /* Set up alternate search languages */\n if (config.lang.length === 1 && config.lang[0] !== \"en\") {\n this.use((lunr as any)[config.lang[0]])\n } else if (config.lang.length > 1) {\n this.use((lunr as any).multiLanguage(...config.lang))\n }\n\n /* Set up fields and reference */\n this.field(\"title\", { boost: 1000 })\n this.field(\"text\")\n this.ref(\"location\")\n\n /* Index documents */\n for (const doc of docs)\n this.add(doc)\n })\n\n /* Prebuilt or serialized index */\n } else {\n this.index = lunr.Index.load(\n typeof index === \"string\"\n ? JSON.parse(index)\n : index\n )\n }\n }\n\n /**\n * Search for matching documents\n *\n * The search index which MkDocs provides is divided up into articles, which\n * contain the whole content of the individual pages, and sections, which only\n * contain the contents of the subsections obtained by breaking the individual\n * pages up at `h1` ... `h6`. As there may be many sections on different pages\n * with identical titles (for example within this very project, e.g. \"Usage\"\n * or \"Installation\"), they need to be put into the context of the containing\n * page. For this reason, section results are grouped within their respective\n * articles which are the top-level results that are returned.\n *\n * @param value - Query value\n *\n * @return Search results\n */\n public query(value: string): SearchResult[] {\n if (value) {\n try {\n\n /* Group sections by containing article */\n const groups = this.index.search(value)\n .reduce((results, result) => {\n const document = this.documents.get(result.ref)\n if (typeof document !== \"undefined\") {\n if (\"parent\" in document) {\n const ref = document.parent.location\n results.set(ref, [...results.get(ref) || [], result])\n } else {\n const ref = document.location\n results.set(ref, results.get(ref) || [])\n }\n }\n return results\n }, new Map())\n\n /* Create highlighter for query */\n const fn = this.highlight(value)\n\n /* Map groups to search documents */\n return [...groups].map(([ref, sections]) => ({\n article: fn(this.documents.get(ref) as ArticleDocument),\n sections: sections.map(section => {\n return fn(this.documents.get(section.ref) as SectionDocument)\n })\n }))\n\n /* Log errors to console (for now) */\n } catch (err) {\n // tslint:disable-next-line no-console\n console.warn(`Invalid query: ${value} – see https://bit.ly/2s3ChXG`)\n }\n }\n\n /* Return nothing in case of error or empty query */\n return []\n }\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport * as escapeHTML from \"escape-html\"\n\nimport { SearchIndexDocument } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * A top-level article\n */\nexport interface ArticleDocument extends SearchIndexDocument {\n linked: boolean /* Whether the section was linked */\n}\n\n/**\n * A section of an article\n */\nexport interface SectionDocument extends SearchIndexDocument {\n parent: ArticleDocument /* Parent article */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search document\n */\nexport type SearchDocument =\n | ArticleDocument\n | SectionDocument\n\n/**\n * Search document mapping\n */\nexport type SearchDocumentMap = Map\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a search document mapping\n *\n * @param docs - Search index documents\n *\n * @return Search document map\n */\nexport function setupSearchDocumentMap(\n docs: SearchIndexDocument[]\n): SearchDocumentMap {\n const documents = new Map()\n for (const doc of docs) {\n const [path, hash] = doc.location.split(\"#\")\n\n /* Extract location and title */\n const location = doc.location\n const title = doc.title\n\n /* Escape and cleanup text */\n const text = escapeHTML(doc.text)\n .replace(/\\s+(?=[,.:;!?])/g, \"\")\n .replace(/\\s+/g, \" \")\n\n /* Handle section */\n if (hash) {\n const parent = documents.get(path) as ArticleDocument\n\n /* Ignore first section, override article */\n if (!parent.linked) {\n parent.title = doc.title\n parent.text = text\n parent.linked = true\n\n /* Add subsequent section */\n } else {\n documents.set(location, {\n location,\n title,\n text,\n parent\n })\n }\n\n /* Add article */\n } else {\n documents.set(location, {\n location,\n title,\n text,\n linked: false\n })\n }\n }\n return documents\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchIndexConfig } from \"../_\"\nimport { SearchDocument } from \"../document\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search highlight function\n *\n * @template T - Search document type\n *\n * @param document - Search document\n *\n * @return Highlighted document\n */\nexport type SearchHighlightFn = <\n T extends SearchDocument\n>(document: Readonly) => T\n\n/**\n * Search highlight factory function\n *\n * @param value - Query value\n *\n * @return Search highlight function\n */\nexport type SearchHighlightFactoryFn = (value: string) => SearchHighlightFn\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a search highlighter\n *\n * @param config - Search index configuration\n *\n * @return Search highlight factory function\n */\nexport function setupSearchHighlighter(\n config: SearchIndexConfig\n): SearchHighlightFactoryFn {\n const separator = new RegExp(config.separator, \"img\")\n const highlight = (_: unknown, data: string, term: string) => {\n return `${data}${term}`\n }\n\n /* Return factory function */\n return (value: string) => {\n value = value\n .replace(/[\\s*+-:~^]+/g, \" \")\n .trim()\n\n /* Create search term match expression */\n const match = new RegExp(`(^|${config.separator})(${\n value\n .replace(/[|\\\\{}()[\\]^$+*?.-]/g, \"\\\\$&\")\n .replace(separator, \"|\")\n })`, \"img\")\n\n /* Highlight document */\n return document => ({\n ...document,\n title: document.title.replace(match, highlight),\n text: document.text.replace(match, highlight)\n })\n }\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search transformation function\n *\n * @param value - Query value\n *\n * @return Transformed query value\n */\nexport type SearchTransformFn = (value: string) => string\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Default transformation function\n *\n * Rogue control characters are filtered before handing the query to the\n * search index, as `lunr` will throw otherwise.\n *\n * @param value - Query value\n *\n * @return Transformed query value\n */\nexport function defaultTransform(value: string): string {\n return value\n .replace(/(?:^|\\s+)[*+-:^~]+(?=\\s+|$)/g, \"\")\n .trim()\n .replace(/\\s+|\\b$/g, \"* \")\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchIndex, SearchResult } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search message type\n */\nexport const enum SearchMessageType {\n SETUP, /* Search index setup */\n READY, /* Search index ready */\n QUERY, /* Search query */\n RESULT /* Search results */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * A message containing the data necessary to setup the search index\n */\nexport interface SearchSetupMessage {\n type: SearchMessageType.SETUP /* Message type */\n data: SearchIndex /* Message data */\n}\n\n/**\n * A message indicating the search index is ready\n */\nexport interface SearchReadyMessage {\n type: SearchMessageType.READY /* Message type */\n}\n\n/**\n * A message containing a search query\n */\nexport interface SearchQueryMessage {\n type: SearchMessageType.QUERY /* Message type */\n data: string /* Message data */\n}\n\n/**\n * A message containing results for a search query\n */\nexport interface SearchResultMessage {\n type: SearchMessageType.RESULT /* Message type */\n data: SearchResult[] /* Message data */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * A message exchanged with the search worker\n */\nexport type SearchMessage =\n | SearchSetupMessage\n | SearchReadyMessage\n | SearchQueryMessage\n | SearchResultMessage\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Type guard for search setup messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchSetupMessage(\n message: SearchMessage\n): message is SearchSetupMessage {\n return message.type === SearchMessageType.SETUP\n}\n\n/**\n * Type guard for search ready messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchReadyMessage(\n message: SearchMessage\n): message is SearchReadyMessage {\n return message.type === SearchMessageType.READY\n}\n\n/**\n * Type guard for search query messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchQueryMessage(\n message: SearchMessage\n): message is SearchQueryMessage {\n return message.type === SearchMessageType.QUERY\n}\n\n/**\n * Type guard for search result messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchResultMessage(\n message: SearchMessage\n): message is SearchResultMessage {\n return message.type === SearchMessageType.RESULT\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { identity } from \"ramda\"\nimport { Observable, Subject, asyncScheduler } from \"rxjs\"\nimport {\n map,\n observeOn,\n shareReplay,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport { WorkerHandler, watchWorker } from \"browser\"\nimport { translate } from \"utilities\"\n\nimport { SearchIndex, SearchIndexPipeline } from \"../../_\"\nimport {\n SearchMessage,\n SearchMessageType,\n SearchSetupMessage,\n isSearchResultMessage\n} from \"../message\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n index$: Observable /* Search index observable */\n base$: Observable /* Location base observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up search index\n *\n * @param data - Search index\n *\n * @return Search index\n */\nfunction setupSearchIndex(\n { config, docs, index }: SearchIndex\n): SearchIndex {\n\n /* Override default language with value from translation */\n if (config.lang.length === 1 && config.lang[0] === \"en\")\n config.lang = [translate(\"search.config.lang\")]\n\n /* Override default separator with value from translation */\n if (config.separator === \"[\\s\\-]+\")\n config.separator = translate(\"search.config.separator\")\n\n /* Set pipeline from translation */\n const pipeline = translate(\"search.config.pipeline\")\n .split(/\\s*,\\s*/)\n .filter(identity) as SearchIndexPipeline\n\n /* Return search index after defaulting */\n return { config, docs, index, pipeline }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up search web worker\n *\n * This function will create a web worker to set up and query the search index\n * which is done using `lunr`. The index must be passed as an observable to\n * enable hacks like _localsearch_ via search index embedding as JSON.\n *\n * @param url - Worker URL\n * @param options - Options\n *\n * @return Worker handler\n */\nexport function setupSearchWorker(\n url: string, { index$, base$ }: SetupOptions\n): WorkerHandler {\n const worker = new Worker(url)\n\n /* Create communication channels and resolve relative links */\n const tx$ = new Subject()\n const rx$ = watchWorker(worker, { tx$ })\n .pipe(\n withLatestFrom(base$),\n map(([message, base]) => {\n if (isSearchResultMessage(message)) {\n for (const { article, sections } of message.data) {\n article.location = `${base}/${article.location}`\n for (const section of sections)\n section.location = `${base}/${section.location}`\n }\n }\n return message\n }),\n shareReplay(1)\n )\n\n /* Set up search index */\n index$\n .pipe(\n map(index => ({\n type: SearchMessageType.SETUP,\n data: setupSearchIndex(index)\n })),\n observeOn(asyncScheduler)\n )\n .subscribe(tx$.next.bind(tx$))\n\n /* Return worker handler */\n return { tx$, rx$ }\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nexport * from \"./_\"\nexport * from \"./react\"\nexport * from \"./set\"\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n MonoTypeOperatorFunction,\n Observable,\n animationFrameScheduler,\n combineLatest,\n pipe\n} from \"rxjs\"\nimport {\n distinctUntilChanged,\n finalize,\n map,\n observeOn,\n tap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport { Viewport } from \"browser\"\n\nimport { Header } from \"../../../header\"\nimport { Main } from \"../../../main\"\nimport { Sidebar } from \"../_\"\nimport {\n resetSidebarHeight,\n resetSidebarOffset,\n setSidebarHeight,\n setSidebarOffset\n} from \"../set\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n main$: Observable
    /* Main area observable */\n viewport$: Observable /* Viewport observable */\n}\n\n/**\n * Apply options\n */\ninterface ApplyOptions {\n header$: Observable
    /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch sidebar\n *\n * This function returns an observable that computes the visual parameters of\n * the sidebar which depends on the vertical viewport offset, as well as the\n * height of the main area. When the page is scrolled beyond the header, the\n * sidebar is locked and fills the remaining space.\n *\n * @param el - Sidebar element\n * @param options - Options\n *\n * @return Sidebar observable\n */\nexport function watchSidebar(\n el: HTMLElement, { main$, viewport$ }: WatchOptions\n): Observable {\n const adjust = el.parentElement!.offsetTop\n - el.parentElement!.parentElement!.offsetTop\n\n /* Compute the sidebar's available height and if it should be locked */\n return combineLatest([main$, viewport$])\n .pipe(\n map(([{ offset, height }, { offset: { y } }]) => {\n height = height\n + Math.min(adjust, Math.max(0, y - offset))\n - adjust\n return {\n height,\n lock: y >= offset + adjust\n }\n }),\n distinctUntilChanged((a, b) => {\n return a.height === b.height\n && a.lock === b.lock\n })\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Apply sidebar\n *\n * @param el - Sidebar element\n * @param options - Options\n *\n * @return Operator function\n */\nexport function applySidebar(\n el: HTMLElement, { header$ }: ApplyOptions\n): MonoTypeOperatorFunction {\n return pipe(\n\n /* Defer repaint to next animation frame */\n observeOn(animationFrameScheduler),\n withLatestFrom(header$),\n tap(([{ height, lock }, { height: offset }]) => {\n setSidebarHeight(el, height)\n\n /* Set offset in locked state depending on header height */\n if (lock)\n setSidebarOffset(el, offset)\n else\n resetSidebarOffset(el)\n }),\n\n /* Re-map to sidebar */\n map(([sidebar]) => sidebar),\n\n /* Reset on complete or error */\n finalize(() => {\n resetSidebarOffset(el)\n resetSidebarHeight(el)\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nexport * from \"./_\"\nexport * from \"./anchor\"\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n Observable,\n OperatorFunction,\n combineLatest,\n of,\n pipe\n} from \"rxjs\"\nimport { map, switchMap } from \"rxjs/operators\"\n\nimport { Viewport, getElements } from \"browser\"\n\nimport { Header } from \"../../header\"\nimport { Main } from \"../../main\"\nimport {\n Sidebar,\n applySidebar,\n watchSidebar\n} from \"../../shared\"\nimport {\n AnchorList,\n applyAnchorList,\n watchAnchorList\n} from \"../anchor\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Table of contents for [tablet -]\n */\ninterface TableOfContentsBelowTablet {} // tslint:disable-line\n\n/**\n * Table of contents for [tablet +]\n */\ninterface TableOfContentsAboveTablet {\n sidebar: Sidebar /* Sidebar */\n anchors: AnchorList /* Anchor list */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Table of contents\n */\nexport type TableOfContents =\n | TableOfContentsBelowTablet\n | TableOfContentsAboveTablet\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n header$: Observable
    /* Header observable */\n main$: Observable
    /* Main area observable */\n viewport$: Observable /* Viewport observable */\n tablet$: Observable /* Tablet media observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount table of contents from source observable\n *\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountTableOfContents(\n { header$, main$, viewport$, tablet$ }: MountOptions\n): OperatorFunction {\n return pipe(\n switchMap(el => tablet$\n .pipe(\n switchMap(tablet => {\n\n /* [tablet +]: Mount table of contents in sidebar */\n if (tablet) {\n const els = getElements(\".md-nav__link\", el)\n\n /* Watch and apply sidebar */\n const sidebar$ = watchSidebar(el, { main$, viewport$ })\n .pipe(\n applySidebar(el, { header$ })\n )\n\n /* Watch and apply anchor list (scroll spy) */\n const anchors$ = watchAnchorList(els, { header$, viewport$ })\n .pipe(\n applyAnchorList(els)\n )\n\n /* Combine into single hot observable */\n return combineLatest([sidebar$, anchors$])\n .pipe(\n map(([sidebar, anchors]) => ({ sidebar, anchors }))\n )\n\n /* [tablet -]: Unmount table of contents */\n } else {\n return of({})\n }\n })\n )\n )\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { reverse } from \"ramda\"\nimport {\n MonoTypeOperatorFunction,\n Observable,\n animationFrameScheduler,\n combineLatest,\n pipe\n} from \"rxjs\"\nimport {\n bufferCount,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n finalize,\n map,\n observeOn,\n scan,\n startWith,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport { Viewport, getElement, watchElementSize } from \"browser\"\n\nimport { Header } from \"../../../header\"\nimport { AnchorList } from \"../_\"\nimport {\n resetAnchorActive,\n resetAnchorBlur,\n setAnchorActive,\n setAnchorBlur\n} from \"../set\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n header$: Observable
    /* Header observable */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch anchor list\n *\n * This is effectively a scroll-spy implementation which will account for the\n * fixed header and automatically re-calculate anchor offsets when the viewport\n * is resized. The returned observable will only emit if the anchor list needs\n * to be repainted.\n *\n * This implementation tracks an anchor element's entire path starting from its\n * level up to the top-most anchor element, e.g. `[h3, h2, h1]`. Although the\n * Material theme currently doesn't make use of this information, it enables\n * the styling of the entire hierarchy through customization.\n *\n * Note that the current anchor is the last item of the `prev` anchor list.\n *\n * @param els - Anchor elements\n * @param options - Options\n *\n * @return Anchor list observable\n */\nexport function watchAnchorList(\n els: HTMLAnchorElement[], { header$, viewport$ }: WatchOptions\n): Observable {\n const table = new Map()\n for (const el of els) {\n const id = decodeURIComponent(el.hash.substring(1))\n const target = getElement(`[id=\"${id}\"]`)\n if (typeof target !== \"undefined\")\n table.set(el, target)\n }\n\n /* Compute necessary adjustment for header */\n const adjust$ = header$\n .pipe(\n map(header => 18 + header.height)\n )\n\n /* Compute partition of previous and next anchors */\n const partition$ = watchElementSize(document.body)\n .pipe(\n distinctUntilKeyChanged(\"height\"),\n\n /* Build index to map anchor paths to vertical offsets */\n map(() => {\n let path: HTMLAnchorElement[] = []\n return [...table].reduce((index, [anchor, target]) => {\n while (path.length) {\n const last = table.get(path[path.length - 1])!\n if (last.tagName >= target.tagName) {\n path.pop()\n } else {\n break\n }\n }\n\n /* If the current anchor is hidden, continue with its parent */\n let offset = target.offsetTop\n while (!offset && target.parentElement) {\n target = target.parentElement\n offset = target.offsetTop\n }\n\n /* Map reversed anchor path to vertical offset */\n return index.set(\n reverse(path = [...path, anchor]),\n offset\n )\n }, new Map())\n }),\n\n /* Re-compute partition when viewport offset changes */\n switchMap(index => combineLatest([adjust$, viewport$])\n .pipe(\n scan(([prev, next], [adjust, { offset: { y } }]) => {\n\n /* Look forward */\n while (next.length) {\n const [, offset] = next[0]\n if (offset - adjust < y) {\n prev = [...prev, next.shift()!]\n } else {\n break\n }\n }\n\n /* Look backward */\n while (prev.length) {\n const [, offset] = prev[prev.length - 1]\n if (offset - adjust >= y) {\n next = [prev.pop()!, ...next]\n } else {\n break\n }\n }\n\n /* Return partition */\n return [prev, next]\n }, [[], [...index]]),\n distinctUntilChanged((a, b) => {\n return a[0] === b[0]\n && a[1] === b[1]\n })\n )\n )\n )\n\n /* Compute and return anchor list migrations */\n return partition$\n .pipe(\n map(([prev, next]) => ({\n prev: prev.map(([path]) => path),\n next: next.map(([path]) => path)\n })),\n\n /* Extract anchor list migrations */\n startWith({ prev: [], next: [] }),\n bufferCount(2, 1),\n map(([a, b]) => {\n\n /* Moving down */\n if (a.prev.length < b.prev.length) {\n return {\n prev: b.prev.slice(Math.max(0, a.prev.length - 1), b.prev.length),\n next: []\n }\n\n /* Moving up */\n } else {\n return {\n prev: b.prev.slice(-1),\n next: b.next.slice(0, b.next.length - a.next.length)\n }\n }\n })\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Apply anchor list\n *\n * @param els - Anchor elements\n *\n * @return Operator function\n */\nexport function applyAnchorList(\n els: HTMLAnchorElement[]\n): MonoTypeOperatorFunction {\n return pipe(\n\n /* Defer repaint to next animation frame */\n observeOn(animationFrameScheduler),\n tap(({ prev, next }) => {\n\n /* Look forward */\n for (const [el] of next) {\n resetAnchorActive(el)\n resetAnchorBlur(el)\n }\n\n /* Look backward */\n prev.forEach(([el], index) => {\n setAnchorActive(el, index === prev.length - 1)\n setAnchorBlur(el, true)\n })\n }),\n\n /* Reset on complete or error */\n finalize(() => {\n for (const el of els) {\n resetAnchorActive(el)\n resetAnchorBlur(el)\n }\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, OperatorFunction, combineLatest, pipe } from \"rxjs\"\nimport {\n filter,\n map,\n mapTo,\n sample,\n startWith,\n switchMap,\n take\n} from \"rxjs/operators\"\n\nimport { WorkerHandler } from \"browser\"\nimport {\n SearchMessage,\n SearchResult,\n isSearchQueryMessage,\n isSearchReadyMessage\n} from \"integrations/search\"\n\nimport { SearchQuery } from \"../query\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search status\n */\nexport type SearchStatus =\n | \"waiting\" /* Search waiting for initialization */\n | \"ready\" /* Search ready */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search\n */\nexport interface Search {\n status: SearchStatus /* Search status */\n query: SearchQuery /* Search query */\n result: SearchResult[] /* Search result list */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n query$: Observable /* Search query observable */\n reset$: Observable /* Search reset observable */\n result$: Observable /* Search result observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search from source observable\n *\n * @param handler - Worker handler\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountSearch(\n { rx$, tx$ }: WorkerHandler,\n { query$, reset$, result$ }: MountOptions\n): OperatorFunction {\n return pipe(\n switchMap(() => {\n\n /* Compute search status */\n const status$ = rx$\n .pipe(\n filter(isSearchReadyMessage),\n mapTo(\"ready\"),\n startWith(\"waiting\")\n ) as Observable\n\n /* Re-emit the latest query when search is ready */\n tx$\n .pipe(\n filter(isSearchQueryMessage),\n sample(status$),\n take(1)\n )\n .subscribe(tx$.next.bind(tx$))\n\n /* Combine into single observable */\n return combineLatest([status$, query$, result$, reset$])\n .pipe(\n map(([status, query, result]) => ({\n status,\n query,\n result\n }))\n )\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { OperatorFunction, pipe } from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n map,\n switchMap\n} from \"rxjs/operators\"\n\nimport { WorkerHandler, setToggle } from \"browser\"\nimport {\n SearchMessage,\n SearchMessageType,\n SearchQueryMessage,\n SearchTransformFn\n} from \"integrations\"\n\nimport { watchSearchQuery } from \"../react\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search query\n */\nexport interface SearchQuery {\n value: string /* Query value */\n focus: boolean /* Query focus */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n transform?: SearchTransformFn /* Transformation function */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search query from source observable\n *\n * @param handler - Worker handler\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountSearchQuery(\n { tx$ }: WorkerHandler, options: MountOptions = {}\n): OperatorFunction {\n return pipe(\n switchMap(el => {\n const query$ = watchSearchQuery(el, options)\n\n /* Subscribe worker to search query */\n query$\n .pipe(\n distinctUntilKeyChanged(\"value\"),\n map(({ value }): SearchQueryMessage => ({\n type: SearchMessageType.QUERY,\n data: value\n }))\n )\n .subscribe(tx$.next.bind(tx$))\n\n /* Toggle search on focus */\n query$\n .pipe(\n distinctUntilKeyChanged(\"focus\")\n )\n .subscribe(({ focus }) => {\n if (focus)\n setToggle(\"search\", focus)\n })\n\n /* Return search query */\n return query$\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, combineLatest, fromEvent, merge } from \"rxjs\"\nimport {\n delay,\n distinctUntilChanged,\n map,\n startWith\n} from \"rxjs/operators\"\n\nimport { watchElementFocus } from \"browser\"\nimport { SearchTransformFn, defaultTransform } from \"integrations\"\n\nimport { SearchQuery } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n transform?: SearchTransformFn /* Transformation function */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch search query\n *\n * Note that the focus event which triggers re-reading the current query value\n * is delayed by `1ms` so the input's empty state is allowed to propagate.\n *\n * @param el - Search query element\n * @param options - Options\n *\n * @return Search query observable\n */\nexport function watchSearchQuery(\n el: HTMLInputElement, { transform }: WatchOptions = {}\n): Observable {\n const fn = transform || defaultTransform\n\n /* Intercept keyboard events */\n const value$ = merge(\n fromEvent(el, \"keyup\"),\n fromEvent(el, \"focus\").pipe(delay(1))\n )\n .pipe(\n map(() => fn(el.value)),\n startWith(fn(el.value)),\n distinctUntilChanged()\n )\n\n /* Intercept focus events */\n const focus$ = watchElementFocus(el)\n\n /* Combine into single observable */\n return combineLatest([value$, focus$])\n .pipe(\n map(([value, focus]) => ({ value, focus }))\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { OperatorFunction, pipe } from \"rxjs\"\nimport {\n mapTo,\n startWith,\n switchMap,\n switchMapTo,\n tap\n} from \"rxjs/operators\"\n\nimport { setElementFocus } from \"browser\"\n\nimport { useComponent } from \"../../../_\"\nimport { watchSearchReset } from \"../react\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search reset from source observable\n *\n * @return Operator function\n */\nexport function mountSearchReset(): OperatorFunction {\n return pipe(\n switchMap(el => watchSearchReset(el)\n .pipe(\n switchMapTo(useComponent(\"search-query\")),\n tap(setElementFocus),\n mapTo(undefined)\n )\n ),\n startWith(undefined)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { mapTo } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch search reset\n *\n * @param el - Search reset element\n *\n * @return Search reset observable\n */\nexport function watchSearchReset(\n el: HTMLElement\n): Observable {\n return fromEvent(el, \"click\")\n .pipe(\n mapTo(undefined)\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { translate } from \"utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set number of search results\n *\n * @param el - Search result metadata element\n * @param value - Number of results\n */\nexport function setSearchResultMeta(\n el: HTMLElement, value: number\n): void {\n switch (value) {\n\n /* No results */\n case 0:\n el.textContent = translate(\"search.result.none\")\n break\n\n /* One result */\n case 1:\n el.textContent = translate(\"search.result.one\")\n break\n\n /* Multiple result */\n default:\n el.textContent = translate(\"search.result.other\", value.toString())\n }\n}\n\n/**\n * Reset number of search results\n *\n * @param el - Search result metadata element\n */\nexport function resetSearchResultMeta(\n el: HTMLElement\n): void {\n el.textContent = translate(\"search.result.placeholder\")\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Add an element to the search result list\n *\n * @param el - Search result list element\n * @param child - Search result element\n */\nexport function addToSearchResultList(\n el: HTMLElement, child: Element\n): void {\n el.appendChild(child)\n}\n\n/**\n * Reset search result list\n *\n * @param el - Search result list element\n */\nexport function resetSearchResultList(\n el: HTMLElement\n): void {\n el.innerHTML = \"\"\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n MonoTypeOperatorFunction,\n Observable,\n animationFrameScheduler,\n pipe\n} from \"rxjs\"\nimport {\n finalize,\n map,\n mapTo,\n observeOn,\n scan,\n switchMap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport { getElementOrThrow } from \"browser\"\nimport { SearchResult } from \"integrations/search\"\nimport { renderSearchResult } from \"templates\"\n\nimport { SearchQuery } from \"../../query\"\nimport {\n addToSearchResultList,\n resetSearchResultList,\n resetSearchResultMeta,\n setSearchResultMeta\n} from \"../set\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Apply options\n */\ninterface ApplyOptions {\n query$: Observable /* Search query observable */\n ready$: Observable /* Search ready observable */\n fetch$: Observable /* Result fetch observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Apply search results\n *\n * This function will perform a lazy rendering of the search results, depending\n * on the vertical offset of the search result container. When the scroll offset\n * reaches the bottom of the element, more results are fetched and rendered.\n *\n * @param el - Search result element\n * @param options - Options\n *\n * @return Operator function\n */\nexport function applySearchResult(\n el: HTMLElement, { query$, ready$, fetch$ }: ApplyOptions\n): MonoTypeOperatorFunction {\n const list = getElementOrThrow(\".md-search-result__list\", el)\n const meta = getElementOrThrow(\".md-search-result__meta\", el)\n return pipe(\n\n /* Apply search result metadata */\n withLatestFrom(query$, ready$),\n map(([result, query]) => {\n if (query.value) {\n setSearchResultMeta(meta, result.length)\n } else {\n resetSearchResultMeta(meta)\n }\n return result\n }),\n\n /* Apply search result list */\n switchMap(result => fetch$\n .pipe(\n\n /* Defer repaint to next animation frame */\n observeOn(animationFrameScheduler),\n scan(index => {\n const container = el.parentElement!\n while (index < result.length) {\n addToSearchResultList(list, renderSearchResult(result[index++]))\n if (container.scrollHeight - container.offsetHeight > 16)\n break\n }\n return index\n }, 0),\n\n /* Re-map to search result */\n mapTo(result),\n\n /* Reset on complete or error */\n finalize(() => {\n resetSearchResultList(list)\n })\n )\n )\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { identity } from \"ramda\"\nimport { Observable, OperatorFunction, pipe } from \"rxjs\"\nimport {\n distinctUntilChanged,\n filter,\n map,\n mapTo,\n pluck,\n startWith,\n switchMap\n} from \"rxjs/operators\"\n\nimport { WorkerHandler, watchElementOffset } from \"browser\"\nimport {\n SearchMessage,\n SearchResult,\n isSearchReadyMessage,\n isSearchResultMessage\n} from \"integrations\"\n\nimport { SearchQuery } from \"../../query\"\nimport { applySearchResult } from \"../react\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n query$: Observable /* Search query observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search result from source observable\n *\n * @param handler - Worker handler\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountSearchResult(\n { rx$ }: WorkerHandler, { query$ }: MountOptions\n): OperatorFunction {\n return pipe(\n switchMap(el => {\n const container = el.parentElement!\n\n /* Compute if search is ready */\n const ready$ = rx$\n .pipe(\n filter(isSearchReadyMessage),\n mapTo(true)\n )\n\n /* Compute whether there are more search results to fetch */\n const fetch$ = watchElementOffset(container)\n .pipe(\n map(({ y }) => {\n return y >= container.scrollHeight - container.offsetHeight - 16\n }),\n distinctUntilChanged(),\n filter(identity)\n )\n\n /* Apply search results */\n return rx$\n .pipe(\n filter(isSearchResultMessage),\n pluck(\"data\"),\n applySearchResult(el, { query$, ready$, fetch$ }),\n startWith([])\n )\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, OperatorFunction, combineLatest, pipe } from \"rxjs\"\nimport {\n distinctUntilChanged,\n filter,\n map,\n shareReplay,\n startWith,\n switchMap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport {\n Viewport,\n getElement,\n watchViewportAt\n} from \"browser\"\n\nimport { useComponent } from \"../../_\"\nimport {\n applyHeaderType,\n watchHeader\n} from \"../react\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Header type\n */\nexport type HeaderType =\n | \"site\" /* Header shows site title */\n | \"page\" /* Header shows page title */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Header\n */\nexport interface Header {\n type: HeaderType /* Header type */\n sticky: boolean /* Header stickyness */\n height: number /* Header visible height */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n document$: Observable /* Document observable */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount header from source observable\n *\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountHeader(\n { document$, viewport$ }: MountOptions\n): OperatorFunction {\n return pipe(\n switchMap(el => {\n const header$ = watchHeader(el, { document$ })\n\n /* Compute whether the header should switch to page header */\n const type$ = useComponent(\"main\")\n .pipe(\n map(main => getElement(\"h1, h2, h3, h4, h5, h6\", main)!),\n filter(hx => typeof hx !== \"undefined\"),\n withLatestFrom(useComponent(\"header-title\")),\n switchMap(([hx, title]) => watchViewportAt(hx, { header$, viewport$ })\n .pipe(\n map(({ offset: { y } }) => {\n return y >= hx.offsetHeight ? \"page\" : \"site\"\n }),\n distinctUntilChanged(),\n applyHeaderType(title)\n )\n ),\n startWith(\"site\")\n )\n\n /* Combine into single observable */\n return combineLatest([header$, type$])\n .pipe(\n map(([header, type]): Header => ({ type, ...header })),\n shareReplay(1)\n )\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n MonoTypeOperatorFunction,\n Observable,\n animationFrameScheduler,\n of,\n pipe\n} from \"rxjs\"\nimport {\n distinctUntilChanged,\n finalize,\n map,\n observeOn,\n shareReplay,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport { watchElementSize } from \"browser\"\n\nimport { Header, HeaderType } from \"../_\"\nimport {\n resetHeaderTitleActive,\n setHeaderTitleActive\n} from \"../set\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n document$: Observable /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch header\n *\n * @param el - Header element\n *\n * @return Header observable\n */\nexport function watchHeader(\n el: HTMLElement, { document$ }: WatchOptions\n): Observable> {\n return document$\n .pipe(\n map(() => {\n const styles = getComputedStyle(el)\n return [\n \"sticky\", /* Modern browsers */\n \"-webkit-sticky\" /* Safari */\n ].includes(styles.position)\n }),\n distinctUntilChanged(),\n switchMap(sticky => {\n if (sticky) {\n return watchElementSize(el)\n .pipe(\n map(({ height }) => ({\n sticky: true,\n height\n }))\n )\n } else {\n return of({\n sticky: false,\n height: 0\n })\n }\n }),\n shareReplay(1)\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Apply header title type\n *\n * @param el - Header title element\n *\n * @return Operator function\n */\nexport function applyHeaderType(\n el: HTMLElement\n): MonoTypeOperatorFunction {\n return pipe(\n\n /* Defer repaint to next animation frame */\n observeOn(animationFrameScheduler),\n tap(type => {\n setHeaderTitleActive(el, type === \"page\")\n }),\n\n /* Reset on complete or error */\n finalize(() => {\n resetHeaderTitleActive(el)\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set header title active\n *\n * @param el - Header title element\n * @param value - Whether the title is shown\n */\nexport function setHeaderTitleActive(\n el: HTMLElement, value: boolean\n): void {\n el.setAttribute(\"data-md-state\", value ? \"active\" : \"\")\n}\n\n/**\n * Reset header title active\n *\n * @param el - Header title element\n */\nexport function resetHeaderTitleActive(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, OperatorFunction, pipe } from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n map,\n switchMap\n} from \"rxjs/operators\"\n\nimport { Viewport, watchViewportAt } from \"browser\"\n\nimport { Header } from \"../../header\"\nimport { applyHero } from \"../react\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Hero\n */\nexport interface Hero {\n hidden: boolean /* Whether the hero is hidden */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n header$: Observable
    /* Header observable */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount hero from source observable\n *\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountHero(\n { header$, viewport$ }: MountOptions\n): OperatorFunction {\n return pipe(\n switchMap(el => watchViewportAt(el, { header$, viewport$ })\n .pipe(\n map(({ offset: { y } }) => ({ hidden: y >= 20 })),\n distinctUntilKeyChanged(\"hidden\"),\n applyHero(el)\n )\n )\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n MonoTypeOperatorFunction,\n animationFrameScheduler,\n pipe\n} from \"rxjs\"\nimport { finalize, observeOn, tap } from \"rxjs/operators\"\n\nimport { Hero } from \"../_\"\nimport {\n resetHeroHidden,\n setHeroHidden\n} from \"../set\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Apply hero\n *\n * @param el - Hero element\n *\n * @return Operator function\n */\nexport function applyHero(\n el: HTMLElement\n): MonoTypeOperatorFunction {\n return pipe(\n\n /* Defer repaint to next animation frame */\n observeOn(animationFrameScheduler),\n tap(({ hidden }) => {\n setHeroHidden(el, hidden)\n }),\n\n /* Reset on complete or error */\n finalize(() => {\n resetHeroHidden(el)\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set hero hidden\n *\n * @param el - Hero element\n * @param value - Whether the element is hidden\n */\nexport function setHeroHidden(\n el: HTMLElement, value: boolean\n): void {\n el.setAttribute(\"data-md-state\", value ? \"hidden\" : \"\")\n}\n\n/**\n * Reset hero hidden\n *\n * @param el - Hero element\n */\nexport function resetHeroHidden(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, OperatorFunction, Subject, pipe } from \"rxjs\"\nimport { distinctUntilKeyChanged, switchMap, tap } from \"rxjs/operators\"\n\nimport { Viewport } from \"browser\"\n\nimport { useComponent } from \"../../_\"\nimport { Header } from \"../../header\"\nimport {\n applyHeaderShadow,\n watchMain\n} from \"../react\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Main area\n */\nexport interface Main {\n offset: number /* Main area top offset */\n height: number /* Main area visible height */\n active: boolean /* Scrolled past top offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n header$: Observable
    /* Header observable */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount main area from source observable\n *\n * The header must be connected to the main area observable outside of the\n * operator function, as the header will persist in-between document switches\n * while the main area is replaced. However, the header observable must be\n * passed to this function, so we connect both via a long-living subject.\n *\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountMain(\n { header$, viewport$ }: MountOptions\n): OperatorFunction {\n const main$ = new Subject
    ()\n\n /* Connect to main area observable via long-living subject */\n useComponent(\"header\")\n .pipe(\n switchMap(header => main$\n .pipe(\n distinctUntilKeyChanged(\"active\"),\n applyHeaderShadow(header)\n )\n )\n )\n .subscribe()\n\n /* Return operator */\n return pipe(\n switchMap(el => watchMain(el, { header$, viewport$ })),\n tap(main => main$.next(main))\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n MonoTypeOperatorFunction,\n Observable,\n animationFrameScheduler,\n combineLatest,\n pipe\n} from \"rxjs\"\nimport {\n distinctUntilChanged,\n distinctUntilKeyChanged,\n finalize,\n map,\n observeOn,\n pluck,\n shareReplay,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport { Viewport, watchElementSize } from \"browser\"\n\nimport { Header } from \"../../header\"\nimport { Main } from \"../_\"\nimport {\n resetHeaderShadow,\n setHeaderShadow\n} from \"../set\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n header$: Observable
    /* Header observable */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch main area\n *\n * This function returns an observable that computes the visual parameters of\n * the main area which depends on the viewport vertical offset and height, as\n * well as the height of the header element, if the header is fixed.\n *\n * @param el - Main area element\n * @param options - Options\n *\n * @return Main area observable\n */\nexport function watchMain(\n el: HTMLElement, { header$, viewport$ }: WatchOptions\n): Observable
    {\n\n /* Compute necessary adjustment for header */\n const adjust$ = header$\n .pipe(\n pluck(\"height\"),\n distinctUntilChanged(),\n shareReplay(1)\n )\n\n /* Compute the main area's top and bottom borders */\n const border$ = adjust$\n .pipe(\n switchMap(() => watchElementSize(el)\n .pipe(\n map(({ height }) => ({\n top: el.offsetTop,\n bottom: el.offsetTop + height\n }))\n )\n ),\n distinctUntilKeyChanged(\"bottom\"),\n shareReplay(1)\n )\n\n /* Compute the main area's offset, visible height and if we scrolled past */\n return combineLatest([adjust$, border$, viewport$])\n .pipe(\n map(([header, { top, bottom }, { offset: { y }, size: { height } }]) => {\n height = Math.max(0, height\n - Math.max(0, top - y, header)\n - Math.max(0, height + y - bottom)\n )\n return {\n offset: top - header,\n height,\n active: top - header <= y\n }\n }),\n distinctUntilChanged
    ((a, b) => {\n return a.offset === b.offset\n && a.height === b.height\n && a.active === b.active\n })\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Apply header shadow\n *\n * @param el - Header element\n *\n * @return Operator function\n */\nexport function applyHeaderShadow(\n el: HTMLElement\n): MonoTypeOperatorFunction
    {\n return pipe(\n\n /* Defer repaint to next animation frame */\n observeOn(animationFrameScheduler),\n tap(({ active }) => {\n setHeaderShadow(el, active)\n }),\n\n /* Reset on complete or error */\n finalize(() => {\n resetHeaderShadow(el)\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set header shadow\n *\n * @param el - Header element\n * @param value - Whether the shadow is shown\n */\nexport function setHeaderShadow(\n el: HTMLElement, value: boolean\n): void {\n el.setAttribute(\"data-md-state\", value ? \"shadow\" : \"\")\n}\n\n/**\n * Reset header shadow\n *\n * @param el - Header element\n */\nexport function resetHeaderShadow(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, OperatorFunction, of, pipe } from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n map,\n switchMap\n} from \"rxjs/operators\"\n\nimport { Viewport, watchViewportAt } from \"browser\"\n\nimport { Header } from \"../../header\"\nimport { applyTabs } from \"../react\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Tabs\n */\nexport interface Tabs {\n hidden: boolean /* Whether the tabs are hidden */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n header$: Observable
    /* Header observable */\n viewport$: Observable /* Viewport observable */\n screen$: Observable /* Media screen observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount tabs from source observable\n *\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountTabs(\n { header$, viewport$, screen$ }: MountOptions\n): OperatorFunction {\n return pipe(\n switchMap(el => screen$\n .pipe(\n switchMap(screen => {\n\n /* [screen +]: Mount tabs above screen breakpoint */\n if (screen) {\n return watchViewportAt(el, { header$, viewport$ })\n .pipe(\n map(({ offset: { y } }) => ({ hidden: y >= 10 })),\n distinctUntilKeyChanged(\"hidden\"),\n applyTabs(el)\n )\n\n /* [screen -]: Unmount tabs below screen breakpoint */\n } else {\n return of({ hidden: true })\n }\n })\n )\n )\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n MonoTypeOperatorFunction,\n animationFrameScheduler,\n pipe\n} from \"rxjs\"\nimport { finalize, observeOn, tap } from \"rxjs/operators\"\n\nimport { Tabs } from \"../_\"\nimport {\n resetTabsHidden,\n setTabsHidden\n} from \"../set\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Apply tabs\n *\n * @param el - Tabs element\n *\n * @return Operator function\n */\nexport function applyTabs(\n el: HTMLElement\n): MonoTypeOperatorFunction {\n return pipe(\n\n /* Defer repaint to next animation frame */\n observeOn(animationFrameScheduler),\n tap(({ hidden }) => {\n setTabsHidden(el, hidden)\n }),\n\n /* Reset on complete or error */\n finalize(() => {\n resetTabsHidden(el)\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set tabs hidden\n *\n * @param el - Tabs element\n * @param value - Whether the element is hidden\n */\nexport function setTabsHidden(\n el: HTMLElement, value: boolean\n): void {\n el.setAttribute(\"data-md-state\", value ? \"hidden\" : \"\")\n}\n\n/**\n * Reset tabs hidden\n *\n * @param el - Tabs element\n */\nexport function resetTabsHidden(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable, OperatorFunction, of, pipe } from \"rxjs\"\nimport { map, switchMap } from \"rxjs/operators\"\n\nimport { Viewport } from \"browser\"\n\nimport { Header } from \"../../header\"\nimport { Main } from \"../../main\"\nimport {\n Sidebar,\n applySidebar,\n watchSidebar\n} from \"../../shared\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Navigation for [screen -]\n */\ninterface NavigationBelowScreen {} // tslint:disable-line\n\n/**\n * Navigation for [screen +]\n */\ninterface NavigationAboveScreen {\n sidebar: Sidebar /* Sidebar */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Navigation\n */\nexport type Navigation =\n | NavigationBelowScreen\n | NavigationAboveScreen\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n header$: Observable
    /* Header observable */\n main$: Observable
    /* Main area observable */\n viewport$: Observable /* Viewport observable */\n screen$: Observable /* Screen media observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount navigation from source observable\n *\n * @param options - Options\n *\n * @return Operator function\n */\nexport function mountNavigation(\n { header$, main$, viewport$, screen$ }: MountOptions\n): OperatorFunction {\n return pipe(\n switchMap(el => screen$\n .pipe(\n switchMap(screen => {\n\n /* [screen +]: Mount navigation in sidebar */\n if (screen) {\n return watchSidebar(el, { main$, viewport$ })\n .pipe(\n applySidebar(el, { header$ }),\n map(sidebar => ({ sidebar }))\n )\n\n /* [screen -]: Mount navigation in drawer */\n } else {\n return of({})\n }\n })\n )\n )\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { NEVER, Observable, fromEvent, iif, merge } from \"rxjs\"\nimport { map, mapTo, shareReplay, switchMap } from \"rxjs/operators\"\n\nimport { getElements } from \"browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Check whether the given device is an Apple device\n *\n * @return Test result\n */\nfunction isAppleDevice(): boolean {\n return /(iPad|iPhone|iPod)/.test(navigator.userAgent)\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch all elements with `data-md-scrollfix` attributes\n *\n * This is a year-old patch which ensures that overflow scrolling works at the\n * top and bottom of containers on iOS by ensuring a `1px` scroll offset upon\n * the start of a touch event.\n *\n * @see https://bit.ly/2SCtAOO - Original source\n *\n * @param options - Options\n */\nexport function patchScrollfix(\n { document$ }: PatchOptions\n): void {\n const els$ = document$\n .pipe(\n map(() => getElements(\"[data-md-scrollfix]\")),\n shareReplay(1)\n )\n\n /* Remove marker attribute, so we'll only add the fix once */\n els$.subscribe(els => {\n for (const el of els)\n el.removeAttribute(\"data-md-scrollfix\")\n })\n\n /* Patch overflow scrolling on touch start */\n iif(isAppleDevice, els$, NEVER)\n .pipe(\n switchMap(els => merge(...els.map(el => (\n fromEvent(el, \"touchstart\", { passive: true })\n .pipe(\n mapTo(el)\n )\n ))))\n )\n .subscribe(el => {\n const top = el.scrollTop\n\n /* We're at the top of the container */\n if (top === 0) {\n el.scrollTop = 1\n\n /* We're at the bottom of the container */\n } else if (top + el.offsetHeight === el.scrollHeight) {\n el.scrollTop = top - 1\n }\n })\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { NEVER, Observable } from \"rxjs\"\nimport { catchError, map, switchMap } from \"rxjs/operators\"\n\nimport { getElementOrThrow, getElements } from \"browser\"\nimport { renderSource } from \"templates\"\nimport { cache, hash } from \"utilities\"\n\nimport { fetchSourceFactsFromGitHub } from \"./github\"\nimport { fetchSourceFactsFromGitLab } from \"./gitlab\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Source facts\n */\nexport type SourceFacts = string[]\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch source facts\n *\n * @param url - Source repository URL\n *\n * @return Source facts observable\n */\nfunction fetchSourceFacts(\n url: string\n): Observable {\n const [type] = url.match(/(git(?:hub|lab))/i) || []\n switch (type.toLowerCase()) {\n\n /* GitHub repository */\n case \"github\":\n const [, user, repo] = url.match(/^.+github\\.com\\/([^\\/]+)\\/?([^\\/]+)/i)\n return fetchSourceFactsFromGitHub(user, repo)\n\n /* GitLab repository */\n case \"gitlab\":\n const [, base, slug] = url.match(/^.+?([^\\/]*gitlab[^\\/]+)\\/(.+?)\\/?$/i)\n return fetchSourceFactsFromGitLab(base, slug)\n\n /* Everything else */\n default:\n return NEVER\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch elements containing repository information\n *\n * This function will retrieve the URL from the repository link and try to\n * query data from integrated source code platforms like GitHub or GitLab.\n *\n * @param options - Options\n */\nexport function patchSource(\n { document$ }: PatchOptions\n): void {\n document$\n .pipe(\n map(() => getElementOrThrow(\".md-source[href]\")),\n switchMap(({ href }) => (\n cache(`${hash(href)}`, () => fetchSourceFacts(href))\n )),\n catchError(() => NEVER)\n )\n .subscribe(facts => {\n for (const el of getElements(\".md-source__repository\")) {\n if (!el.hasAttribute(\"data-md-state\")) {\n el.setAttribute(\"data-md-state\", \"done\")\n el.appendChild(renderSource(facts))\n }\n }\n })\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Repo, User } from \"github-types\"\nimport { Observable, of } from \"rxjs\"\nimport { ajax } from \"rxjs/ajax\"\nimport { filter, pluck, switchMap } from \"rxjs/operators\"\n\nimport { round } from \"utilities\"\n\nimport { SourceFacts } from \"..\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch GitHub source facts\n *\n * @param user - GitHub user\n * @param repo - GitHub repository\n *\n * @return Source facts observable\n */\nexport function fetchSourceFactsFromGitHub(\n user: string, repo?: string\n): Observable {\n return ajax({\n url: typeof repo !== \"undefined\"\n ? `https://api.github.com/repos/${user}/${repo}`\n : `https://api.github.com/users/${user}`,\n responseType: \"json\"\n })\n .pipe(\n filter(({ status }) => status === 200),\n pluck(\"response\"),\n switchMap(data => {\n\n /* GitHub repository */\n if (typeof repo !== \"undefined\") {\n const { stargazers_count, forks_count }: Repo = data\n return of([\n `${round(stargazers_count || 0)} Stars`,\n `${round(forks_count || 0)} Forks`\n ])\n\n /* GitHub user/organization */\n } else {\n const { public_repos }: User = data\n return of([\n `${round(public_repos || 0)} Repositories`\n ])\n }\n })\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ProjectSchema } from \"gitlab\"\nimport { Observable } from \"rxjs\"\nimport { ajax } from \"rxjs/ajax\"\nimport { filter, map, pluck } from \"rxjs/operators\"\n\nimport { round } from \"utilities\"\n\nimport { SourceFacts } from \"..\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch GitLab source facts\n *\n * @param base - GitLab base\n * @param project - GitLab project\n *\n * @return Source facts observable\n */\nexport function fetchSourceFactsFromGitLab(\n base: string, project: string\n): Observable {\n return ajax({\n url: `https://${base}/api/v4/projects/${encodeURIComponent(project)}`,\n responseType: \"json\"\n })\n .pipe(\n filter(({ status }) => status === 200),\n pluck(\"response\"),\n map(({ star_count, forks_count }: ProjectSchema) => ([\n `${round(star_count)} Stars`,\n `${round(forks_count)} Forks`\n ]))\n )\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\n// DISCLAIMER: this file is still WIP. There're some refactoring opportunities\n// which must be tackled after we gathered some feedback on v5.\n// tslint:disable\n\nimport { sortBy, prop, values } from \"ramda\"\nimport {\n merge,\n combineLatest,\n animationFrameScheduler,\n fromEvent,\n from,\n defer,\n of,\n NEVER\n} from \"rxjs\"\nimport { ajax } from \"rxjs/ajax\"\nimport {\n delay,\n switchMap,\n tap,\n filter,\n withLatestFrom,\n observeOn,\n take,\n shareReplay,\n pluck,\n catchError,\n map\n} from \"rxjs/operators\"\n\nimport {\n watchToggle,\n setToggle,\n getElements,\n watchMedia,\n watchDocument,\n watchLocation,\n watchLocationHash,\n watchViewport,\n isLocalLocation,\n setLocationHash,\n watchLocationBase\n} from \"browser\"\nimport {\n mountHeader,\n mountHero,\n mountMain,\n mountNavigation,\n mountSearch,\n mountTableOfContents,\n mountTabs,\n useComponent,\n setupComponents,\n mountSearchQuery,\n mountSearchReset,\n mountSearchResult\n} from \"components\"\nimport {\n setupClipboard,\n setupDialog,\n setupKeyboard,\n setupInstantLoading,\n setupSearchWorker,\n SearchIndex\n} from \"integrations\"\nimport {\n patchTables,\n patchDetails,\n patchScrollfix,\n patchSource,\n patchScripts\n} from \"patches\"\nimport { isConfig } from \"utilities\"\n\n/* ------------------------------------------------------------------------- */\n\n/* Denote that JavaScript is available */\ndocument.documentElement.classList.remove(\"no-js\")\ndocument.documentElement.classList.add(\"js\")\n\n/* Test for iOS */\nif (navigator.userAgent.match(/(iPad|iPhone|iPod)/g))\n document.documentElement.classList.add(\"ios\")\n\n/**\n * Set scroll lock\n *\n * @param el - Scrollable element\n * @param value - Vertical offset\n */\nexport function setScrollLock(\n el: HTMLElement, value: number\n): void {\n el.setAttribute(\"data-md-state\", \"lock\")\n el.style.top = `-${value}px`\n}\n\n/**\n * Reset scroll lock\n *\n * @param el - Scrollable element\n */\nexport function resetScrollLock(\n el: HTMLElement\n): void {\n const value = -1 * parseInt(el.style.top, 10)\n el.removeAttribute(\"data-md-state\")\n el.style.top = \"\"\n if (value)\n window.scrollTo(0, value)\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Initialize Material for MkDocs\n *\n * @param config - Configuration\n */\nexport function initialize(config: unknown) {\n if (!isConfig(config))\n throw new SyntaxError(`Invalid configuration: ${JSON.stringify(config)}`)\n\n /* Set up subjects */\n const document$ = watchDocument()\n const location$ = watchLocation()\n\n /* Set up user interface observables */\n const base$ = watchLocationBase(config.base, { location$ })\n const hash$ = watchLocationHash()\n const viewport$ = watchViewport()\n const tablet$ = watchMedia(\"(min-width: 960px)\")\n const screen$ = watchMedia(\"(min-width: 1220px)\")\n\n /* ----------------------------------------------------------------------- */\n\n /* Set up component bindings */\n setupComponents([\n \"announce\", /* Announcement bar */\n \"container\", /* Container */\n \"header\", /* Header */\n \"header-title\", /* Header title */\n \"hero\", /* Hero */\n \"main\", /* Main area */\n \"navigation\", /* Navigation */\n \"search\", /* Search */\n \"search-query\", /* Search input */\n \"search-reset\", /* Search reset */\n \"search-result\", /* Search results */\n \"skip\", /* Skip link */\n \"tabs\", /* Tabs */\n \"toc\" /* Table of contents */\n ], { document$ })\n\n const keyboard$ = setupKeyboard()\n\n patchDetails({ document$, hash$ })\n patchScripts({ document$ })\n patchSource({ document$ })\n patchTables({ document$ })\n\n /* Force 1px scroll offset to trigger overflow scrolling */\n patchScrollfix({ document$ })\n\n /* Set up clipboard and dialog */\n const dialog$ = setupDialog()\n const clipboard$ = setupClipboard({ document$, dialog$ })\n\n /* ----------------------------------------------------------------------- */\n\n /* Create header observable */\n const header$ = useComponent(\"header\")\n .pipe(\n mountHeader({ document$, viewport$ }),\n shareReplay(1)\n )\n\n const main$ = useComponent(\"main\")\n .pipe(\n mountMain({ header$, viewport$ }),\n shareReplay(1)\n )\n\n /* ----------------------------------------------------------------------- */\n\n const navigation$ = useComponent(\"navigation\")\n .pipe(\n mountNavigation({ header$, main$, viewport$, screen$ }),\n shareReplay(1) // shareReplay because there might be late subscribers\n )\n\n const toc$ = useComponent(\"toc\")\n .pipe(\n mountTableOfContents({ header$, main$, viewport$, tablet$ }),\n shareReplay(1)\n )\n\n const tabs$ = useComponent(\"tabs\")\n .pipe(\n mountTabs({ header$, viewport$, screen$ }),\n shareReplay(1)\n )\n\n const hero$ = useComponent(\"hero\")\n .pipe(\n mountHero({ header$, viewport$ }),\n shareReplay(1)\n )\n\n /* ----------------------------------------------------------------------- */\n\n /* Search worker */\n const worker$ = defer(() => {\n const index = config.search && config.search.index\n ? config.search.index\n : undefined\n\n /* Fetch index if it wasn't passed explicitly */\n const index$ = typeof index !== \"undefined\"\n ? from(index)\n : base$\n .pipe(\n switchMap(base => ajax({\n url: `${base}/search/search_index.json`,\n responseType: \"json\",\n withCredentials: true\n })\n .pipe(\n pluck(\"response\")\n )\n )\n )\n\n return of(setupSearchWorker(config.search.worker, {\n base$, index$\n }))\n })\n\n /* ----------------------------------------------------------------------- */\n\n /* Mount search query */\n const search$ = worker$\n .pipe(\n switchMap(worker => {\n\n const query$ = useComponent(\"search-query\")\n .pipe(\n mountSearchQuery(worker, { transform: config.search.transform }),\n shareReplay(1)\n )\n\n /* Mount search reset */\n const reset$ = useComponent(\"search-reset\")\n .pipe(\n mountSearchReset(),\n shareReplay(1)\n )\n\n /* Mount search result */\n const result$ = useComponent(\"search-result\")\n .pipe(\n mountSearchResult(worker, { query$ }),\n shareReplay(1)\n )\n\n return useComponent(\"search\")\n .pipe(\n mountSearch(worker, { query$, reset$, result$ }),\n shareReplay(1)\n )\n }),\n catchError(() => {\n useComponent(\"search\")\n .subscribe(el => el.hidden = true) // TODO: Hack\n return NEVER\n })\n )\n\n /* ----------------------------------------------------------------------- */\n\n // // put into search...\n hash$\n .pipe(\n tap(() => setToggle(\"search\", false)),\n delay(125), // ensure that it runs after the body scroll reset...\n )\n .subscribe(hash => setLocationHash(`#${hash}`))\n\n // TODO: scroll restoration must be centralized\n combineLatest([\n watchToggle(\"search\"),\n tablet$,\n ])\n .pipe(\n withLatestFrom(viewport$),\n switchMap(([[toggle, tablet], { offset: { y }}]) => {\n const active = toggle && !tablet\n return document$\n .pipe(\n delay(active ? 400 : 100),\n observeOn(animationFrameScheduler),\n tap(({ body }) => active\n ? setScrollLock(body, y)\n : resetScrollLock(body)\n )\n )\n })\n )\n .subscribe()\n\n /* ----------------------------------------------------------------------- */\n\n /* Always close drawer on click */\n fromEvent(document.body, \"click\")\n .pipe(\n filter(ev => !(ev.metaKey || ev.ctrlKey)),\n filter(ev => {\n if (ev.target instanceof HTMLElement) {\n const el = ev.target.closest(\"a\") // TODO: abstract as link click?\n if (el && isLocalLocation(el)) {\n return true\n }\n }\n return false\n })\n )\n .subscribe(() => {\n setToggle(\"drawer\", false)\n })\n\n /* Enable instant loading, if not on file:// protocol */\n if (config.features.includes(\"instant\") && location.protocol !== \"file:\") {\n\n /* Fetch sitemap and extract URL whitelist */\n base$\n .pipe(\n switchMap(base => ajax({\n url: `${base}/sitemap.xml`,\n responseType: \"document\",\n withCredentials: true\n })\n .pipe(\n pluck(\"response\")\n )\n ),\n withLatestFrom(base$),\n map(([document, base]) => {\n const urls = getElements(\"loc\", document)\n .map(node => node.textContent!)\n\n // Hack: This is a temporary fix to normalize instant loading lookup\n // on localhost and Netlify previews. If this approach proves to be\n // suitable, we'll refactor URL whitelisting anyway. We take the two\n // shortest URLs and determine the common prefix to isolate the\n // domain. If there're no two domains, we just leave it as-is, as\n // there isn't anything to be loaded anway.\n if (urls.length > 1) {\n const [a, b] = sortBy(prop(\"length\"), urls)\n\n /* Determine common prefix */\n let index = 0\n while (a.charAt(index) === b.charAt(index))\n index++\n\n /* Replace common prefix (i.e. base) with effective base */\n for (let i = 0; i < urls.length; i++)\n urls[i] = urls[i].replace(a.slice(0, index), `${base}/`)\n }\n return urls\n })\n )\n .subscribe(urls => {\n setupInstantLoading(urls, { document$, location$, viewport$ })\n })\n }\n\n /* ----------------------------------------------------------------------- */\n\n /* Unhide permalinks on first tab */\n keyboard$\n .pipe(\n filter(key => key.mode === \"global\" && key.type === \"Tab\"),\n take(1)\n )\n .subscribe(() => {\n for (const link of getElements(\".headerlink\"))\n link.style.visibility = \"visible\"\n })\n\n /* ----------------------------------------------------------------------- */\n\n const state = {\n\n /* Browser observables */\n document$,\n location$,\n viewport$,\n\n /* Component observables */\n header$,\n hero$,\n main$,\n navigation$,\n search$,\n tabs$,\n toc$,\n\n /* Integration observables */\n clipboard$,\n keyboard$,\n dialog$\n }\n\n /* Subscribe to all observables */\n merge(...values(state))\n .subscribe()\n return state\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { identity } from \"ramda\"\nimport { Observable, fromEvent, merge } from \"rxjs\"\nimport {\n filter,\n map,\n switchMapTo,\n tap\n} from \"rxjs/operators\"\n\nimport {\n getElement,\n getElements,\n watchMedia\n} from \"browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable /* Document observable */\n hash$: Observable /* Location hash observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch all `details` elements\n *\n * This function will ensure that all `details` tags are opened prior to\n * printing, so the whole content of the page is included, and on anchor jumps.\n *\n * @param options - Options\n */\nexport function patchDetails(\n { document$, hash$ }: PatchOptions\n): void {\n const els$ = document$\n .pipe(\n map(() => getElements(\"details\"))\n )\n\n /* Open all details before printing */\n merge(\n watchMedia(\"print\").pipe(filter(identity)), /* Webkit */\n fromEvent(window, \"beforeprint\") /* IE, FF */\n )\n .pipe(\n switchMapTo(els$)\n )\n .subscribe(els => {\n for (const el of els)\n el.setAttribute(\"open\", \"\")\n })\n\n /* Open parent details and fix anchor jump */\n hash$\n .pipe(\n map(id => getElement(`[id=\"${id}\"]`)!),\n filter(el => typeof el !== \"undefined\"),\n tap(el => {\n const details = el.closest(\"details\")\n if (details && !details.open)\n details.setAttribute(\"open\", \"\")\n })\n )\n .subscribe(el => el.scrollIntoView())\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable } from \"rxjs\"\nimport { map, skip, withLatestFrom } from \"rxjs/operators\"\n\nimport {\n createElement,\n getElements,\n replaceElement\n} from \"browser\"\nimport { useComponent } from \"components\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch all `script` elements\n *\n * This function must be run after a document switch, which means the first\n * emission must be ignored.\n *\n * @param options - Options\n */\nexport function patchScripts(\n { document$ }: PatchOptions\n): void {\n const els$ = document$\n .pipe(\n skip(1),\n withLatestFrom(useComponent(\"container\")),\n map(([, el]) => getElements(\"script\", el))\n )\n\n /* Evaluate all scripts via replacement */\n els$.subscribe(els => {\n for (const el of els) {\n if (el.src || /(^|\\/javascript)$/i.test(el.type)) {\n const script = createElement(\"script\")\n const key = el.src ? \"src\" : \"textContent\"\n script[key] = el[key]!\n replaceElement(el, script)\n }\n }\n })\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { Observable } from \"rxjs\"\nimport { map } from \"rxjs/operators\"\n\nimport {\n createElement,\n getElements,\n replaceElement\n} from \"browser\"\nimport { renderTable } from \"templates\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n document$: Observable /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch all `table` elements\n *\n * This function will re-render all tables by wrapping them to improve overflow\n * scrolling on smaller screen sizes.\n *\n * @param options - Options\n */\nexport function patchTables(\n { document$ }: MountOptions\n): void {\n const sentinel = createElement(\"table\")\n document$\n .pipe(\n map(() => getElements(\"table:not([class])\"))\n )\n .subscribe(els => {\n for (const el of els) {\n replaceElement(el, sentinel)\n replaceElement(sentinel, renderTable(el))\n }\n })\n}\n"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.ar.min.js b/docs/material/assets/javascripts/lunr/min/lunr.ar.min.js new file mode 100644 index 000000000..248ddc5d1 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.ar.min.js @@ -0,0 +1 @@ +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ar=function(){this.pipeline.reset(),this.pipeline.add(e.ar.trimmer,e.ar.stopWordFilter,e.ar.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ar.stemmer))},e.ar.wordCharacters="ء-ٛٱـ",e.ar.trimmer=e.trimmerSupport.generateTrimmer(e.ar.wordCharacters),e.Pipeline.registerFunction(e.ar.trimmer,"trimmer-ar"),e.ar.stemmer=function(){var e=this;return e.result=!1,e.preRemoved=!1,e.sufRemoved=!1,e.pre={pre1:"ف ك ب و س ل ن ا ي ت",pre2:"ال لل",pre3:"بال وال فال تال كال ولل",pre4:"فبال كبال وبال وكال"},e.suf={suf1:"ه ك ت ن ا ي",suf2:"نك نه ها وك يا اه ون ين تن تم نا وا ان كم كن ني نن ما هم هن تك ته ات يه",suf3:"تين كهم نيه نهم ونه وها يهم ونا ونك وني وهم تكم تنا تها تني تهم كما كها ناه نكم هنا تان يها",suf4:"كموه ناها ونني ونهم تكما تموه تكاه كماه ناكم ناهم نيها وننا"},e.patterns=JSON.parse('{"pt43":[{"pt":[{"c":"ا","l":1}]},{"pt":[{"c":"ا,ت,ن,ي","l":0}],"mPt":[{"c":"ف","l":0,"m":1},{"c":"ع","l":1,"m":2},{"c":"ل","l":2,"m":3}]},{"pt":[{"c":"و","l":2}],"mPt":[{"c":"ف","l":0,"m":0},{"c":"ع","l":1,"m":1},{"c":"ل","l":2,"m":3}]},{"pt":[{"c":"ا","l":2}]},{"pt":[{"c":"ي","l":2}],"mPt":[{"c":"ف","l":0,"m":0},{"c":"ع","l":1,"m":1},{"c":"ا","l":2},{"c":"ل","l":3,"m":3}]},{"pt":[{"c":"م","l":0}]}],"pt53":[{"pt":[{"c":"ت","l":0},{"c":"ا","l":2}]},{"pt":[{"c":"ا,ن,ت,ي","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":0},{"c":"ا","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ع","l":2,"m":3},{"c":"ل","l":3,"m":4},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":0},{"c":"ا","l":3}],"mPt":[{"c":"ف","l":0,"m":1},{"c":"ع","l":1,"m":2},{"c":"ل","l":2,"m":4}]},{"pt":[{"c":"ا","l":3},{"c":"ن","l":4}]},{"pt":[{"c":"ت","l":0},{"c":"ي","l":3}]},{"pt":[{"c":"م","l":0},{"c":"و","l":3}]},{"pt":[{"c":"ا","l":1},{"c":"و","l":3}]},{"pt":[{"c":"و","l":1},{"c":"ا","l":2}]},{"pt":[{"c":"م","l":0},{"c":"ا","l":3}]},{"pt":[{"c":"م","l":0},{"c":"ي","l":3}]},{"pt":[{"c":"ا","l":2},{"c":"ن","l":3}]},{"pt":[{"c":"م","l":0},{"c":"ن","l":1}],"mPt":[{"c":"ا","l":0},{"c":"ن","l":1},{"c":"ف","l":2,"m":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"م","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"م","l":0},{"c":"ا","l":2}]},{"pt":[{"c":"م","l":1},{"c":"ا","l":3}]},{"pt":[{"c":"ي,ت,ا,ن","l":0},{"c":"ت","l":1}],"mPt":[{"c":"ف","l":0,"m":2},{"c":"ع","l":1,"m":3},{"c":"ا","l":2},{"c":"ل","l":3,"m":4}]},{"pt":[{"c":"ت,ي,ا,ن","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":2},{"c":"ي","l":3}]},{"pt":[{"c":"ا,ي,ت,ن","l":0},{"c":"ن","l":1}],"mPt":[{"c":"ا","l":0},{"c":"ن","l":1},{"c":"ف","l":2,"m":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"ل","l":5,"m":4}]},{"pt":[{"c":"ا","l":3},{"c":"ء","l":4}]}],"pt63":[{"pt":[{"c":"ا","l":0},{"c":"ت","l":2},{"c":"ا","l":4}]},{"pt":[{"c":"ا,ت,ن,ي","l":0},{"c":"س","l":1},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"ف","l":3,"m":3},{"c":"ع","l":4,"m":4},{"c":"ا","l":5},{"c":"ل","l":6,"m":5}]},{"pt":[{"c":"ا,ن,ت,ي","l":0},{"c":"و","l":3}]},{"pt":[{"c":"م","l":0},{"c":"س","l":1},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"ف","l":3,"m":3},{"c":"ع","l":4,"m":4},{"c":"ا","l":5},{"c":"ل","l":6,"m":5}]},{"pt":[{"c":"ي","l":1},{"c":"ي","l":3},{"c":"ا","l":4},{"c":"ء","l":5}]},{"pt":[{"c":"ا","l":0},{"c":"ن","l":1},{"c":"ا","l":4}]}],"pt54":[{"pt":[{"c":"ت","l":0}]},{"pt":[{"c":"ا,ي,ت,ن","l":0}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ع","l":2,"m":2},{"c":"ل","l":3,"m":3},{"c":"ر","l":4,"m":4},{"c":"ا","l":5},{"c":"ر","l":6,"m":4}]},{"pt":[{"c":"م","l":0}],"mPt":[{"c":"ا","l":0},{"c":"ف","l":1,"m":1},{"c":"ع","l":2,"m":2},{"c":"ل","l":3,"m":3},{"c":"ر","l":4,"m":4},{"c":"ا","l":5},{"c":"ر","l":6,"m":4}]},{"pt":[{"c":"ا","l":2}]},{"pt":[{"c":"ا","l":0},{"c":"ن","l":2}]}],"pt64":[{"pt":[{"c":"ا","l":0},{"c":"ا","l":4}]},{"pt":[{"c":"م","l":0},{"c":"ت","l":1}]}],"pt73":[{"pt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"ا","l":5}]}],"pt75":[{"pt":[{"c":"ا","l":0},{"c":"ا","l":5}]}]}'),e.execArray=["cleanWord","removeDiacritics","cleanAlef","removeStopWords","normalizeHamzaAndAlef","removeStartWaw","removePre432","removeEndTaa","wordCheck"],e.stem=function(){var r=0;for(e.result=!1,e.preRemoved=!1,e.sufRemoved=!1;r=0)return!0},e.normalizeHamzaAndAlef=function(){return e.word=e.word.replace("ؤ","ء"),e.word=e.word.replace("ئ","ء"),e.word=e.word.replace(/([\u0627])\1+/gi,"ا"),!1},e.removeEndTaa=function(){return!(e.word.length>2)||(e.word=e.word.replace(/[\u0627]$/,""),e.word=e.word.replace("ة",""),!1)},e.removeStartWaw=function(){return e.word.length>3&&"و"==e.word[0]&&"و"==e.word[1]&&(e.word=e.word.slice(1)),!1},e.removePre432=function(){var r=e.word;if(e.word.length>=7){var t=new RegExp("^("+e.pre.pre4.split(" ").join("|")+")");e.word=e.word.replace(t,"")}if(e.word==r&&e.word.length>=6){var c=new RegExp("^("+e.pre.pre3.split(" ").join("|")+")");e.word=e.word.replace(c,"")}if(e.word==r&&e.word.length>=5){var l=new RegExp("^("+e.pre.pre2.split(" ").join("|")+")");e.word=e.word.replace(l,"")}return r!=e.word&&(e.preRemoved=!0),!1},e.patternCheck=function(r){for(var t=0;t3){var t=new RegExp("^("+e.pre.pre1.split(" ").join("|")+")");e.word=e.word.replace(t,"")}return r!=e.word&&(e.preRemoved=!0),!1},e.removeSuf1=function(){var r=e.word;if(0==e.sufRemoved&&e.word.length>3){var t=new RegExp("("+e.suf.suf1.split(" ").join("|")+")$");e.word=e.word.replace(t,"")}return r!=e.word&&(e.sufRemoved=!0),!1},e.removeSuf432=function(){var r=e.word;if(e.word.length>=6){var t=new RegExp("("+e.suf.suf4.split(" ").join("|")+")$");e.word=e.word.replace(t,"")}if(e.word==r&&e.word.length>=5){var c=new RegExp("("+e.suf.suf3.split(" ").join("|")+")$");e.word=e.word.replace(c,"")}if(e.word==r&&e.word.length>=4){var l=new RegExp("("+e.suf.suf2.split(" ").join("|")+")$");e.word=e.word.replace(l,"")}return r!=e.word&&(e.sufRemoved=!0),!1},e.wordCheck=function(){for(var r=(e.word,[e.removeSuf432,e.removeSuf1,e.removePre1]),t=0,c=!1;e.word.length>=7&&!e.result&&t=f.limit)return;f.cursor++}for(;!f.out_grouping(w,97,248);){if(f.cursor>=f.limit)return;f.cursor++}d=f.cursor,d=d&&(r=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,e=f.find_among_b(c,32),f.limit_backward=r,e))switch(f.bra=f.cursor,e){case 1:f.slice_del();break;case 2:f.in_grouping_b(p,97,229)&&f.slice_del()}}function t(){var e,r=f.limit-f.cursor;f.cursor>=d&&(e=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,f.find_among_b(l,4)?(f.bra=f.cursor,f.limit_backward=e,f.cursor=f.limit-r,f.cursor>f.limit_backward&&(f.cursor--,f.bra=f.cursor,f.slice_del())):f.limit_backward=e)}function s(){var e,r,i,n=f.limit-f.cursor;if(f.ket=f.cursor,f.eq_s_b(2,"st")&&(f.bra=f.cursor,f.eq_s_b(2,"ig")&&f.slice_del()),f.cursor=f.limit-n,f.cursor>=d&&(r=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,e=f.find_among_b(m,5),f.limit_backward=r,e))switch(f.bra=f.cursor,e){case 1:f.slice_del(),i=f.limit-f.cursor,t(),f.cursor=f.limit-i;break;case 2:f.slice_from("løs")}}function o(){var e;f.cursor>=d&&(e=f.limit_backward,f.limit_backward=d,f.ket=f.cursor,f.out_grouping_b(w,97,248)?(f.bra=f.cursor,u=f.slice_to(u),f.limit_backward=e,f.eq_v_b(u)&&f.slice_del()):f.limit_backward=e)}var a,d,u,c=[new r("hed",-1,1),new r("ethed",0,1),new r("ered",-1,1),new r("e",-1,1),new r("erede",3,1),new r("ende",3,1),new r("erende",5,1),new r("ene",3,1),new r("erne",3,1),new r("ere",3,1),new r("en",-1,1),new r("heden",10,1),new r("eren",10,1),new r("er",-1,1),new r("heder",13,1),new r("erer",13,1),new r("s",-1,2),new r("heds",16,1),new r("es",16,1),new r("endes",18,1),new r("erendes",19,1),new r("enes",18,1),new r("ernes",18,1),new r("eres",18,1),new r("ens",16,1),new r("hedens",24,1),new r("erens",24,1),new r("ers",16,1),new r("ets",16,1),new r("erets",28,1),new r("et",-1,1),new r("eret",30,1)],l=[new r("gd",-1,-1),new r("dt",-1,-1),new r("gt",-1,-1),new r("kt",-1,-1)],m=[new r("ig",-1,1),new r("lig",0,1),new r("elig",1,1),new r("els",-1,1),new r("løst",-1,2)],w=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,128],p=[239,254,42,3,0,0,0,0,0,0,0,0,0,0,0,0,16],f=new i;this.setCurrent=function(e){f.setCurrent(e)},this.getCurrent=function(){return f.getCurrent()},this.stem=function(){var r=f.cursor;return e(),f.limit_backward=r,f.cursor=f.limit,n(),f.cursor=f.limit,t(),f.cursor=f.limit,s(),f.cursor=f.limit,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.da.stemmer,"stemmer-da"),e.da.stopWordFilter=e.generateStopWordFilter("ad af alle alt anden at blev blive bliver da de dem den denne der deres det dette dig din disse dog du efter eller en end er et for fra ham han hans har havde have hende hendes her hos hun hvad hvis hvor i ikke ind jeg jer jo kunne man mange med meget men mig min mine mit mod ned noget nogle nu når og også om op os over på selv sig sin sine sit skal skulle som sådan thi til ud under var vi vil ville vor være været".split(" ")),e.Pipeline.registerFunction(e.da.stopWordFilter,"stopWordFilter-da")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.de.min.js b/docs/material/assets/javascripts/lunr/min/lunr.de.min.js new file mode 100644 index 000000000..f3b5c108c --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.de.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `German` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.de=function(){this.pipeline.reset(),this.pipeline.add(e.de.trimmer,e.de.stopWordFilter,e.de.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.de.stemmer))},e.de.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.de.trimmer=e.trimmerSupport.generateTrimmer(e.de.wordCharacters),e.Pipeline.registerFunction(e.de.trimmer,"trimmer-de"),e.de.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,i=new function(){function e(e,r,n){return!(!v.eq_s(1,e)||(v.ket=v.cursor,!v.in_grouping(p,97,252)))&&(v.slice_from(r),v.cursor=n,!0)}function i(){for(var r,n,i,s,t=v.cursor;;)if(r=v.cursor,v.bra=r,v.eq_s(1,"ß"))v.ket=v.cursor,v.slice_from("ss");else{if(r>=v.limit)break;v.cursor=r+1}for(v.cursor=t;;)for(n=v.cursor;;){if(i=v.cursor,v.in_grouping(p,97,252)){if(s=v.cursor,v.bra=s,e("u","U",i))break;if(v.cursor=s,e("y","Y",i))break}if(i>=v.limit)return void(v.cursor=n);v.cursor=i+1}}function s(){for(;!v.in_grouping(p,97,252);){if(v.cursor>=v.limit)return!0;v.cursor++}for(;!v.out_grouping(p,97,252);){if(v.cursor>=v.limit)return!0;v.cursor++}return!1}function t(){m=v.limit,l=m;var e=v.cursor+3;0<=e&&e<=v.limit&&(d=e,s()||(m=v.cursor,m=v.limit)return;v.cursor++}}}function c(){return m<=v.cursor}function u(){return l<=v.cursor}function a(){var e,r,n,i,s=v.limit-v.cursor;if(v.ket=v.cursor,(e=v.find_among_b(w,7))&&(v.bra=v.cursor,c()))switch(e){case 1:v.slice_del();break;case 2:v.slice_del(),v.ket=v.cursor,v.eq_s_b(1,"s")&&(v.bra=v.cursor,v.eq_s_b(3,"nis")&&v.slice_del());break;case 3:v.in_grouping_b(g,98,116)&&v.slice_del()}if(v.cursor=v.limit-s,v.ket=v.cursor,(e=v.find_among_b(f,4))&&(v.bra=v.cursor,c()))switch(e){case 1:v.slice_del();break;case 2:if(v.in_grouping_b(k,98,116)){var t=v.cursor-3;v.limit_backward<=t&&t<=v.limit&&(v.cursor=t,v.slice_del())}}if(v.cursor=v.limit-s,v.ket=v.cursor,(e=v.find_among_b(_,8))&&(v.bra=v.cursor,u()))switch(e){case 1:v.slice_del(),v.ket=v.cursor,v.eq_s_b(2,"ig")&&(v.bra=v.cursor,r=v.limit-v.cursor,v.eq_s_b(1,"e")||(v.cursor=v.limit-r,u()&&v.slice_del()));break;case 2:n=v.limit-v.cursor,v.eq_s_b(1,"e")||(v.cursor=v.limit-n,v.slice_del());break;case 3:if(v.slice_del(),v.ket=v.cursor,i=v.limit-v.cursor,!v.eq_s_b(2,"er")&&(v.cursor=v.limit-i,!v.eq_s_b(2,"en")))break;v.bra=v.cursor,c()&&v.slice_del();break;case 4:v.slice_del(),v.ket=v.cursor,e=v.find_among_b(b,2),e&&(v.bra=v.cursor,u()&&1==e&&v.slice_del())}}var d,l,m,h=[new r("",-1,6),new r("U",0,2),new r("Y",0,1),new r("ä",0,3),new r("ö",0,4),new r("ü",0,5)],w=[new r("e",-1,2),new r("em",-1,1),new r("en",-1,2),new r("ern",-1,1),new r("er",-1,1),new r("s",-1,3),new r("es",5,2)],f=[new r("en",-1,1),new r("er",-1,1),new r("st",-1,2),new r("est",2,1)],b=[new r("ig",-1,1),new r("lich",-1,1)],_=[new r("end",-1,1),new r("ig",-1,2),new r("ung",-1,1),new r("lich",-1,3),new r("isch",-1,2),new r("ik",-1,2),new r("heit",-1,3),new r("keit",-1,4)],p=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32,8],g=[117,30,5],k=[117,30,4],v=new n;this.setCurrent=function(e){v.setCurrent(e)},this.getCurrent=function(){return v.getCurrent()},this.stem=function(){var e=v.cursor;return i(),v.cursor=e,t(),v.limit_backward=e,v.cursor=v.limit,a(),v.cursor=v.limit_backward,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.de.stemmer,"stemmer-de"),e.de.stopWordFilter=e.generateStopWordFilter("aber alle allem allen aller alles als also am an ander andere anderem anderen anderer anderes anderm andern anderr anders auch auf aus bei bin bis bist da damit dann das dasselbe dazu daß dein deine deinem deinen deiner deines dem demselben den denn denselben der derer derselbe derselben des desselben dessen dich die dies diese dieselbe dieselben diesem diesen dieser dieses dir doch dort du durch ein eine einem einen einer eines einig einige einigem einigen einiger einiges einmal er es etwas euch euer eure eurem euren eurer eures für gegen gewesen hab habe haben hat hatte hatten hier hin hinter ich ihm ihn ihnen ihr ihre ihrem ihren ihrer ihres im in indem ins ist jede jedem jeden jeder jedes jene jenem jenen jener jenes jetzt kann kein keine keinem keinen keiner keines können könnte machen man manche manchem manchen mancher manches mein meine meinem meinen meiner meines mich mir mit muss musste nach nicht nichts noch nun nur ob oder ohne sehr sein seine seinem seinen seiner seines selbst sich sie sind so solche solchem solchen solcher solches soll sollte sondern sonst um und uns unse unsem unsen unser unses unter viel vom von vor war waren warst was weg weil weiter welche welchem welchen welcher welches wenn werde werden wie wieder will wir wird wirst wo wollen wollte während würde würden zu zum zur zwar zwischen über".split(" ")),e.Pipeline.registerFunction(e.de.stopWordFilter,"stopWordFilter-de")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.du.min.js b/docs/material/assets/javascripts/lunr/min/lunr.du.min.js new file mode 100644 index 000000000..49a0f3f0a --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.du.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Dutch` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");console.warn('[Lunr Languages] Please use the "nl" instead of the "du". The "nl" code is the standard code for Dutch language, and "du" will be removed in the next major versions.'),e.du=function(){this.pipeline.reset(),this.pipeline.add(e.du.trimmer,e.du.stopWordFilter,e.du.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.du.stemmer))},e.du.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.du.trimmer=e.trimmerSupport.generateTrimmer(e.du.wordCharacters),e.Pipeline.registerFunction(e.du.trimmer,"trimmer-du"),e.du.stemmer=function(){var r=e.stemmerSupport.Among,i=e.stemmerSupport.SnowballProgram,n=new function(){function e(){for(var e,r,i,o=C.cursor;;){if(C.bra=C.cursor,e=C.find_among(b,11))switch(C.ket=C.cursor,e){case 1:C.slice_from("a");continue;case 2:C.slice_from("e");continue;case 3:C.slice_from("i");continue;case 4:C.slice_from("o");continue;case 5:C.slice_from("u");continue;case 6:if(C.cursor>=C.limit)break;C.cursor++;continue}break}for(C.cursor=o,C.bra=o,C.eq_s(1,"y")?(C.ket=C.cursor,C.slice_from("Y")):C.cursor=o;;)if(r=C.cursor,C.in_grouping(q,97,232)){if(i=C.cursor,C.bra=i,C.eq_s(1,"i"))C.ket=C.cursor,C.in_grouping(q,97,232)&&(C.slice_from("I"),C.cursor=r);else if(C.cursor=i,C.eq_s(1,"y"))C.ket=C.cursor,C.slice_from("Y"),C.cursor=r;else if(n(r))break}else if(n(r))break}function n(e){return C.cursor=e,e>=C.limit||(C.cursor++,!1)}function o(){_=C.limit,f=_,t()||(_=C.cursor,_<3&&(_=3),t()||(f=C.cursor))}function t(){for(;!C.in_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}for(;!C.out_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}return!1}function s(){for(var e;;)if(C.bra=C.cursor,e=C.find_among(p,3))switch(C.ket=C.cursor,e){case 1:C.slice_from("y");break;case 2:C.slice_from("i");break;case 3:if(C.cursor>=C.limit)return;C.cursor++}}function u(){return _<=C.cursor}function c(){return f<=C.cursor}function a(){var e=C.limit-C.cursor;C.find_among_b(g,3)&&(C.cursor=C.limit-e,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del()))}function l(){var e;w=!1,C.ket=C.cursor,C.eq_s_b(1,"e")&&(C.bra=C.cursor,u()&&(e=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-e,C.slice_del(),w=!0,a())))}function m(){var e;u()&&(e=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-e,C.eq_s_b(3,"gem")||(C.cursor=C.limit-e,C.slice_del(),a())))}function d(){var e,r,i,n,o,t,s=C.limit-C.cursor;if(C.ket=C.cursor,e=C.find_among_b(h,5))switch(C.bra=C.cursor,e){case 1:u()&&C.slice_from("heid");break;case 2:m();break;case 3:u()&&C.out_grouping_b(z,97,232)&&C.slice_del()}if(C.cursor=C.limit-s,l(),C.cursor=C.limit-s,C.ket=C.cursor,C.eq_s_b(4,"heid")&&(C.bra=C.cursor,c()&&(r=C.limit-C.cursor,C.eq_s_b(1,"c")||(C.cursor=C.limit-r,C.slice_del(),C.ket=C.cursor,C.eq_s_b(2,"en")&&(C.bra=C.cursor,m())))),C.cursor=C.limit-s,C.ket=C.cursor,e=C.find_among_b(k,6))switch(C.bra=C.cursor,e){case 1:if(c()){if(C.slice_del(),i=C.limit-C.cursor,C.ket=C.cursor,C.eq_s_b(2,"ig")&&(C.bra=C.cursor,c()&&(n=C.limit-C.cursor,!C.eq_s_b(1,"e")))){C.cursor=C.limit-n,C.slice_del();break}C.cursor=C.limit-i,a()}break;case 2:c()&&(o=C.limit-C.cursor,C.eq_s_b(1,"e")||(C.cursor=C.limit-o,C.slice_del()));break;case 3:c()&&(C.slice_del(),l());break;case 4:c()&&C.slice_del();break;case 5:c()&&w&&C.slice_del()}C.cursor=C.limit-s,C.out_grouping_b(j,73,232)&&(t=C.limit-C.cursor,C.find_among_b(v,4)&&C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-t,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del())))}var f,_,w,b=[new r("",-1,6),new r("á",0,1),new r("ä",0,1),new r("é",0,2),new r("ë",0,2),new r("í",0,3),new r("ï",0,3),new r("ó",0,4),new r("ö",0,4),new r("ú",0,5),new r("ü",0,5)],p=[new r("",-1,3),new r("I",0,2),new r("Y",0,1)],g=[new r("dd",-1,-1),new r("kk",-1,-1),new r("tt",-1,-1)],h=[new r("ene",-1,2),new r("se",-1,3),new r("en",-1,2),new r("heden",2,1),new r("s",-1,3)],k=[new r("end",-1,1),new r("ig",-1,2),new r("ing",-1,1),new r("lijk",-1,3),new r("baar",-1,4),new r("bar",-1,5)],v=[new r("aa",-1,-1),new r("ee",-1,-1),new r("oo",-1,-1),new r("uu",-1,-1)],q=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],j=[1,0,0,17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],z=[17,67,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],C=new i;this.setCurrent=function(e){C.setCurrent(e)},this.getCurrent=function(){return C.getCurrent()},this.stem=function(){var r=C.cursor;return e(),C.cursor=r,o(),C.limit_backward=r,C.cursor=C.limit,d(),C.cursor=C.limit_backward,s(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.du.stemmer,"stemmer-du"),e.du.stopWordFilter=e.generateStopWordFilter(" aan al alles als altijd andere ben bij daar dan dat de der deze die dit doch doen door dus een eens en er ge geen geweest haar had heb hebben heeft hem het hier hij hoe hun iemand iets ik in is ja je kan kon kunnen maar me meer men met mij mijn moet na naar niet niets nog nu of om omdat onder ons ook op over reeds te tegen toch toen tot u uit uw van veel voor want waren was wat werd wezen wie wil worden wordt zal ze zelf zich zij zijn zo zonder zou".split(" ")),e.Pipeline.registerFunction(e.du.stopWordFilter,"stopWordFilter-du")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.es.min.js b/docs/material/assets/javascripts/lunr/min/lunr.es.min.js new file mode 100644 index 000000000..2989d3426 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.es.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Spanish` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,s){"function"==typeof define&&define.amd?define(s):"object"==typeof exports?module.exports=s():s()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.es=function(){this.pipeline.reset(),this.pipeline.add(e.es.trimmer,e.es.stopWordFilter,e.es.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.es.stemmer))},e.es.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.es.trimmer=e.trimmerSupport.generateTrimmer(e.es.wordCharacters),e.Pipeline.registerFunction(e.es.trimmer,"trimmer-es"),e.es.stemmer=function(){var s=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,n=new function(){function e(){if(A.out_grouping(x,97,252)){for(;!A.in_grouping(x,97,252);){if(A.cursor>=A.limit)return!0;A.cursor++}return!1}return!0}function n(){if(A.in_grouping(x,97,252)){var s=A.cursor;if(e()){if(A.cursor=s,!A.in_grouping(x,97,252))return!0;for(;!A.out_grouping(x,97,252);){if(A.cursor>=A.limit)return!0;A.cursor++}}return!1}return!0}function i(){var s,r=A.cursor;if(n()){if(A.cursor=r,!A.out_grouping(x,97,252))return;if(s=A.cursor,e()){if(A.cursor=s,!A.in_grouping(x,97,252)||A.cursor>=A.limit)return;A.cursor++}}g=A.cursor}function a(){for(;!A.in_grouping(x,97,252);){if(A.cursor>=A.limit)return!1;A.cursor++}for(;!A.out_grouping(x,97,252);){if(A.cursor>=A.limit)return!1;A.cursor++}return!0}function t(){var e=A.cursor;g=A.limit,p=g,v=g,i(),A.cursor=e,a()&&(p=A.cursor,a()&&(v=A.cursor))}function o(){for(var e;;){if(A.bra=A.cursor,e=A.find_among(k,6))switch(A.ket=A.cursor,e){case 1:A.slice_from("a");continue;case 2:A.slice_from("e");continue;case 3:A.slice_from("i");continue;case 4:A.slice_from("o");continue;case 5:A.slice_from("u");continue;case 6:if(A.cursor>=A.limit)break;A.cursor++;continue}break}}function u(){return g<=A.cursor}function w(){return p<=A.cursor}function c(){return v<=A.cursor}function m(){var e;if(A.ket=A.cursor,A.find_among_b(y,13)&&(A.bra=A.cursor,(e=A.find_among_b(q,11))&&u()))switch(e){case 1:A.bra=A.cursor,A.slice_from("iendo");break;case 2:A.bra=A.cursor,A.slice_from("ando");break;case 3:A.bra=A.cursor,A.slice_from("ar");break;case 4:A.bra=A.cursor,A.slice_from("er");break;case 5:A.bra=A.cursor,A.slice_from("ir");break;case 6:A.slice_del();break;case 7:A.eq_s_b(1,"u")&&A.slice_del()}}function l(e,s){if(!c())return!0;A.slice_del(),A.ket=A.cursor;var r=A.find_among_b(e,s);return r&&(A.bra=A.cursor,1==r&&c()&&A.slice_del()),!1}function d(e){return!c()||(A.slice_del(),A.ket=A.cursor,A.eq_s_b(2,e)&&(A.bra=A.cursor,c()&&A.slice_del()),!1)}function b(){var e;if(A.ket=A.cursor,e=A.find_among_b(S,46)){switch(A.bra=A.cursor,e){case 1:if(!c())return!1;A.slice_del();break;case 2:if(d("ic"))return!1;break;case 3:if(!c())return!1;A.slice_from("log");break;case 4:if(!c())return!1;A.slice_from("u");break;case 5:if(!c())return!1;A.slice_from("ente");break;case 6:if(!w())return!1;A.slice_del(),A.ket=A.cursor,e=A.find_among_b(C,4),e&&(A.bra=A.cursor,c()&&(A.slice_del(),1==e&&(A.ket=A.cursor,A.eq_s_b(2,"at")&&(A.bra=A.cursor,c()&&A.slice_del()))));break;case 7:if(l(P,3))return!1;break;case 8:if(l(F,3))return!1;break;case 9:if(d("at"))return!1}return!0}return!1}function f(){var e,s;if(A.cursor>=g&&(s=A.limit_backward,A.limit_backward=g,A.ket=A.cursor,e=A.find_among_b(W,12),A.limit_backward=s,e)){if(A.bra=A.cursor,1==e){if(!A.eq_s_b(1,"u"))return!1;A.slice_del()}return!0}return!1}function _(){var e,s,r,n;if(A.cursor>=g&&(s=A.limit_backward,A.limit_backward=g,A.ket=A.cursor,e=A.find_among_b(L,96),A.limit_backward=s,e))switch(A.bra=A.cursor,e){case 1:r=A.limit-A.cursor,A.eq_s_b(1,"u")?(n=A.limit-A.cursor,A.eq_s_b(1,"g")?A.cursor=A.limit-n:A.cursor=A.limit-r):A.cursor=A.limit-r,A.bra=A.cursor;case 2:A.slice_del()}}function h(){var e,s;if(A.ket=A.cursor,e=A.find_among_b(z,8))switch(A.bra=A.cursor,e){case 1:u()&&A.slice_del();break;case 2:u()&&(A.slice_del(),A.ket=A.cursor,A.eq_s_b(1,"u")&&(A.bra=A.cursor,s=A.limit-A.cursor,A.eq_s_b(1,"g")&&(A.cursor=A.limit-s,u()&&A.slice_del())))}}var v,p,g,k=[new s("",-1,6),new s("á",0,1),new s("é",0,2),new s("í",0,3),new s("ó",0,4),new s("ú",0,5)],y=[new s("la",-1,-1),new s("sela",0,-1),new s("le",-1,-1),new s("me",-1,-1),new s("se",-1,-1),new s("lo",-1,-1),new s("selo",5,-1),new s("las",-1,-1),new s("selas",7,-1),new s("les",-1,-1),new s("los",-1,-1),new s("selos",10,-1),new s("nos",-1,-1)],q=[new s("ando",-1,6),new s("iendo",-1,6),new s("yendo",-1,7),new s("ándo",-1,2),new s("iéndo",-1,1),new s("ar",-1,6),new s("er",-1,6),new s("ir",-1,6),new s("ár",-1,3),new s("ér",-1,4),new s("ír",-1,5)],C=[new s("ic",-1,-1),new s("ad",-1,-1),new s("os",-1,-1),new s("iv",-1,1)],P=[new s("able",-1,1),new s("ible",-1,1),new s("ante",-1,1)],F=[new s("ic",-1,1),new s("abil",-1,1),new s("iv",-1,1)],S=[new s("ica",-1,1),new s("ancia",-1,2),new s("encia",-1,5),new s("adora",-1,2),new s("osa",-1,1),new s("ista",-1,1),new s("iva",-1,9),new s("anza",-1,1),new s("logía",-1,3),new s("idad",-1,8),new s("able",-1,1),new s("ible",-1,1),new s("ante",-1,2),new s("mente",-1,7),new s("amente",13,6),new s("ación",-1,2),new s("ución",-1,4),new s("ico",-1,1),new s("ismo",-1,1),new s("oso",-1,1),new s("amiento",-1,1),new s("imiento",-1,1),new s("ivo",-1,9),new s("ador",-1,2),new s("icas",-1,1),new s("ancias",-1,2),new s("encias",-1,5),new s("adoras",-1,2),new s("osas",-1,1),new s("istas",-1,1),new s("ivas",-1,9),new s("anzas",-1,1),new s("logías",-1,3),new s("idades",-1,8),new s("ables",-1,1),new s("ibles",-1,1),new s("aciones",-1,2),new s("uciones",-1,4),new s("adores",-1,2),new s("antes",-1,2),new s("icos",-1,1),new s("ismos",-1,1),new s("osos",-1,1),new s("amientos",-1,1),new s("imientos",-1,1),new s("ivos",-1,9)],W=[new s("ya",-1,1),new s("ye",-1,1),new s("yan",-1,1),new s("yen",-1,1),new s("yeron",-1,1),new s("yendo",-1,1),new s("yo",-1,1),new s("yas",-1,1),new s("yes",-1,1),new s("yais",-1,1),new s("yamos",-1,1),new s("yó",-1,1)],L=[new s("aba",-1,2),new s("ada",-1,2),new s("ida",-1,2),new s("ara",-1,2),new s("iera",-1,2),new s("ía",-1,2),new s("aría",5,2),new s("ería",5,2),new s("iría",5,2),new s("ad",-1,2),new s("ed",-1,2),new s("id",-1,2),new s("ase",-1,2),new s("iese",-1,2),new s("aste",-1,2),new s("iste",-1,2),new s("an",-1,2),new s("aban",16,2),new s("aran",16,2),new s("ieran",16,2),new s("ían",16,2),new s("arían",20,2),new s("erían",20,2),new s("irían",20,2),new s("en",-1,1),new s("asen",24,2),new s("iesen",24,2),new s("aron",-1,2),new s("ieron",-1,2),new s("arán",-1,2),new s("erán",-1,2),new s("irán",-1,2),new s("ado",-1,2),new s("ido",-1,2),new s("ando",-1,2),new s("iendo",-1,2),new s("ar",-1,2),new s("er",-1,2),new s("ir",-1,2),new s("as",-1,2),new s("abas",39,2),new s("adas",39,2),new s("idas",39,2),new s("aras",39,2),new s("ieras",39,2),new s("ías",39,2),new s("arías",45,2),new s("erías",45,2),new s("irías",45,2),new s("es",-1,1),new s("ases",49,2),new s("ieses",49,2),new s("abais",-1,2),new s("arais",-1,2),new s("ierais",-1,2),new s("íais",-1,2),new s("aríais",55,2),new s("eríais",55,2),new s("iríais",55,2),new s("aseis",-1,2),new s("ieseis",-1,2),new s("asteis",-1,2),new s("isteis",-1,2),new s("áis",-1,2),new s("éis",-1,1),new s("aréis",64,2),new s("eréis",64,2),new s("iréis",64,2),new s("ados",-1,2),new s("idos",-1,2),new s("amos",-1,2),new s("ábamos",70,2),new s("áramos",70,2),new s("iéramos",70,2),new s("íamos",70,2),new s("aríamos",74,2),new s("eríamos",74,2),new s("iríamos",74,2),new s("emos",-1,1),new s("aremos",78,2),new s("eremos",78,2),new s("iremos",78,2),new s("ásemos",78,2),new s("iésemos",78,2),new s("imos",-1,2),new s("arás",-1,2),new s("erás",-1,2),new s("irás",-1,2),new s("ís",-1,2),new s("ará",-1,2),new s("erá",-1,2),new s("irá",-1,2),new s("aré",-1,2),new s("eré",-1,2),new s("iré",-1,2),new s("ió",-1,2)],z=[new s("a",-1,1),new s("e",-1,2),new s("o",-1,1),new s("os",-1,1),new s("á",-1,1),new s("é",-1,2),new s("í",-1,1),new s("ó",-1,1)],x=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,4,10],A=new r;this.setCurrent=function(e){A.setCurrent(e)},this.getCurrent=function(){return A.getCurrent()},this.stem=function(){var e=A.cursor;return t(),A.limit_backward=e,A.cursor=A.limit,m(),A.cursor=A.limit,b()||(A.cursor=A.limit,f()||(A.cursor=A.limit,_())),A.cursor=A.limit,h(),A.cursor=A.limit_backward,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.es.stemmer,"stemmer-es"),e.es.stopWordFilter=e.generateStopWordFilter("a al algo algunas algunos ante antes como con contra cual cuando de del desde donde durante e el ella ellas ellos en entre era erais eran eras eres es esa esas ese eso esos esta estaba estabais estaban estabas estad estada estadas estado estados estamos estando estar estaremos estará estarán estarás estaré estaréis estaría estaríais estaríamos estarían estarías estas este estemos esto estos estoy estuve estuviera estuvierais estuvieran estuvieras estuvieron estuviese estuvieseis estuviesen estuvieses estuvimos estuviste estuvisteis estuviéramos estuviésemos estuvo está estábamos estáis están estás esté estéis estén estés fue fuera fuerais fueran fueras fueron fuese fueseis fuesen fueses fui fuimos fuiste fuisteis fuéramos fuésemos ha habida habidas habido habidos habiendo habremos habrá habrán habrás habré habréis habría habríais habríamos habrían habrías habéis había habíais habíamos habían habías han has hasta hay haya hayamos hayan hayas hayáis he hemos hube hubiera hubierais hubieran hubieras hubieron hubiese hubieseis hubiesen hubieses hubimos hubiste hubisteis hubiéramos hubiésemos hubo la las le les lo los me mi mis mucho muchos muy más mí mía mías mío míos nada ni no nos nosotras nosotros nuestra nuestras nuestro nuestros o os otra otras otro otros para pero poco por porque que quien quienes qué se sea seamos sean seas seremos será serán serás seré seréis sería seríais seríamos serían serías seáis sido siendo sin sobre sois somos son soy su sus suya suyas suyo suyos sí también tanto te tendremos tendrá tendrán tendrás tendré tendréis tendría tendríais tendríamos tendrían tendrías tened tenemos tenga tengamos tengan tengas tengo tengáis tenida tenidas tenido tenidos teniendo tenéis tenía teníais teníamos tenían tenías ti tiene tienen tienes todo todos tu tus tuve tuviera tuvierais tuvieran tuvieras tuvieron tuviese tuvieseis tuviesen tuvieses tuvimos tuviste tuvisteis tuviéramos tuviésemos tuvo tuya tuyas tuyo tuyos tú un una uno unos vosotras vosotros vuestra vuestras vuestro vuestros y ya yo él éramos".split(" ")),e.Pipeline.registerFunction(e.es.stopWordFilter,"stopWordFilter-es")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.fi.min.js b/docs/material/assets/javascripts/lunr/min/lunr.fi.min.js new file mode 100644 index 000000000..29f5dfcea --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.fi.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Finnish` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(i,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():e()(i.lunr)}(this,function(){return function(i){if(void 0===i)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===i.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");i.fi=function(){this.pipeline.reset(),this.pipeline.add(i.fi.trimmer,i.fi.stopWordFilter,i.fi.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(i.fi.stemmer))},i.fi.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",i.fi.trimmer=i.trimmerSupport.generateTrimmer(i.fi.wordCharacters),i.Pipeline.registerFunction(i.fi.trimmer,"trimmer-fi"),i.fi.stemmer=function(){var e=i.stemmerSupport.Among,r=i.stemmerSupport.SnowballProgram,n=new function(){function i(){f=A.limit,d=f,n()||(f=A.cursor,n()||(d=A.cursor))}function n(){for(var i;;){if(i=A.cursor,A.in_grouping(W,97,246))break;if(A.cursor=i,i>=A.limit)return!0;A.cursor++}for(A.cursor=i;!A.out_grouping(W,97,246);){if(A.cursor>=A.limit)return!0;A.cursor++}return!1}function t(){return d<=A.cursor}function s(){var i,e;if(A.cursor>=f)if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,i=A.find_among_b(h,10)){switch(A.bra=A.cursor,A.limit_backward=e,i){case 1:if(!A.in_grouping_b(x,97,246))return;break;case 2:if(!t())return}A.slice_del()}else A.limit_backward=e}function o(){var i,e,r;if(A.cursor>=f)if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,i=A.find_among_b(v,9))switch(A.bra=A.cursor,A.limit_backward=e,i){case 1:r=A.limit-A.cursor,A.eq_s_b(1,"k")||(A.cursor=A.limit-r,A.slice_del());break;case 2:A.slice_del(),A.ket=A.cursor,A.eq_s_b(3,"kse")&&(A.bra=A.cursor,A.slice_from("ksi"));break;case 3:A.slice_del();break;case 4:A.find_among_b(p,6)&&A.slice_del();break;case 5:A.find_among_b(g,6)&&A.slice_del();break;case 6:A.find_among_b(j,2)&&A.slice_del()}else A.limit_backward=e}function l(){return A.find_among_b(q,7)}function a(){return A.eq_s_b(1,"i")&&A.in_grouping_b(L,97,246)}function u(){var i,e,r;if(A.cursor>=f)if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,i=A.find_among_b(C,30)){switch(A.bra=A.cursor,A.limit_backward=e,i){case 1:if(!A.eq_s_b(1,"a"))return;break;case 2:case 9:if(!A.eq_s_b(1,"e"))return;break;case 3:if(!A.eq_s_b(1,"i"))return;break;case 4:if(!A.eq_s_b(1,"o"))return;break;case 5:if(!A.eq_s_b(1,"ä"))return;break;case 6:if(!A.eq_s_b(1,"ö"))return;break;case 7:if(r=A.limit-A.cursor,!l()&&(A.cursor=A.limit-r,!A.eq_s_b(2,"ie"))){A.cursor=A.limit-r;break}if(A.cursor=A.limit-r,A.cursor<=A.limit_backward){A.cursor=A.limit-r;break}A.cursor--,A.bra=A.cursor;break;case 8:if(!A.in_grouping_b(W,97,246)||!A.out_grouping_b(W,97,246))return}A.slice_del(),k=!0}else A.limit_backward=e}function c(){var i,e,r;if(A.cursor>=d)if(e=A.limit_backward,A.limit_backward=d,A.ket=A.cursor,i=A.find_among_b(P,14)){if(A.bra=A.cursor,A.limit_backward=e,1==i){if(r=A.limit-A.cursor,A.eq_s_b(2,"po"))return;A.cursor=A.limit-r}A.slice_del()}else A.limit_backward=e}function m(){var i;A.cursor>=f&&(i=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,A.find_among_b(F,2)?(A.bra=A.cursor,A.limit_backward=i,A.slice_del()):A.limit_backward=i)}function w(){var i,e,r,n,t,s;if(A.cursor>=f){if(e=A.limit_backward,A.limit_backward=f,A.ket=A.cursor,A.eq_s_b(1,"t")&&(A.bra=A.cursor,r=A.limit-A.cursor,A.in_grouping_b(W,97,246)&&(A.cursor=A.limit-r,A.slice_del(),A.limit_backward=e,n=A.limit-A.cursor,A.cursor>=d&&(A.cursor=d,t=A.limit_backward,A.limit_backward=A.cursor,A.cursor=A.limit-n,A.ket=A.cursor,i=A.find_among_b(S,2))))){if(A.bra=A.cursor,A.limit_backward=t,1==i){if(s=A.limit-A.cursor,A.eq_s_b(2,"po"))return;A.cursor=A.limit-s}return void A.slice_del()}A.limit_backward=e}}function _(){var i,e,r,n;if(A.cursor>=f){for(i=A.limit_backward,A.limit_backward=f,e=A.limit-A.cursor,l()&&(A.cursor=A.limit-e,A.ket=A.cursor,A.cursor>A.limit_backward&&(A.cursor--,A.bra=A.cursor,A.slice_del())),A.cursor=A.limit-e,A.ket=A.cursor,A.in_grouping_b(y,97,228)&&(A.bra=A.cursor,A.out_grouping_b(W,97,246)&&A.slice_del()),A.cursor=A.limit-e,A.ket=A.cursor,A.eq_s_b(1,"j")&&(A.bra=A.cursor,r=A.limit-A.cursor,A.eq_s_b(1,"o")?A.slice_del():(A.cursor=A.limit-r,A.eq_s_b(1,"u")&&A.slice_del())),A.cursor=A.limit-e,A.ket=A.cursor,A.eq_s_b(1,"o")&&(A.bra=A.cursor,A.eq_s_b(1,"j")&&A.slice_del()),A.cursor=A.limit-e,A.limit_backward=i;;){if(n=A.limit-A.cursor,A.out_grouping_b(W,97,246)){A.cursor=A.limit-n;break}if(A.cursor=A.limit-n,A.cursor<=A.limit_backward)return;A.cursor--}A.ket=A.cursor,A.cursor>A.limit_backward&&(A.cursor--,A.bra=A.cursor,b=A.slice_to(),A.eq_v_b(b)&&A.slice_del())}}var k,b,d,f,h=[new e("pa",-1,1),new e("sti",-1,2),new e("kaan",-1,1),new e("han",-1,1),new e("kin",-1,1),new e("hän",-1,1),new e("kään",-1,1),new e("ko",-1,1),new e("pä",-1,1),new e("kö",-1,1)],p=[new e("lla",-1,-1),new e("na",-1,-1),new e("ssa",-1,-1),new e("ta",-1,-1),new e("lta",3,-1),new e("sta",3,-1)],g=[new e("llä",-1,-1),new e("nä",-1,-1),new e("ssä",-1,-1),new e("tä",-1,-1),new e("ltä",3,-1),new e("stä",3,-1)],j=[new e("lle",-1,-1),new e("ine",-1,-1)],v=[new e("nsa",-1,3),new e("mme",-1,3),new e("nne",-1,3),new e("ni",-1,2),new e("si",-1,1),new e("an",-1,4),new e("en",-1,6),new e("än",-1,5),new e("nsä",-1,3)],q=[new e("aa",-1,-1),new e("ee",-1,-1),new e("ii",-1,-1),new e("oo",-1,-1),new e("uu",-1,-1),new e("ää",-1,-1),new e("öö",-1,-1)],C=[new e("a",-1,8),new e("lla",0,-1),new e("na",0,-1),new e("ssa",0,-1),new e("ta",0,-1),new e("lta",4,-1),new e("sta",4,-1),new e("tta",4,9),new e("lle",-1,-1),new e("ine",-1,-1),new e("ksi",-1,-1),new e("n",-1,7),new e("han",11,1),new e("den",11,-1,a),new e("seen",11,-1,l),new e("hen",11,2),new e("tten",11,-1,a),new e("hin",11,3),new e("siin",11,-1,a),new e("hon",11,4),new e("hän",11,5),new e("hön",11,6),new e("ä",-1,8),new e("llä",22,-1),new e("nä",22,-1),new e("ssä",22,-1),new e("tä",22,-1),new e("ltä",26,-1),new e("stä",26,-1),new e("ttä",26,9)],P=[new e("eja",-1,-1),new e("mma",-1,1),new e("imma",1,-1),new e("mpa",-1,1),new e("impa",3,-1),new e("mmi",-1,1),new e("immi",5,-1),new e("mpi",-1,1),new e("impi",7,-1),new e("ejä",-1,-1),new e("mmä",-1,1),new e("immä",10,-1),new e("mpä",-1,1),new e("impä",12,-1)],F=[new e("i",-1,-1),new e("j",-1,-1)],S=[new e("mma",-1,1),new e("imma",0,-1)],y=[17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8],W=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],L=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],x=[17,97,24,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],A=new r;this.setCurrent=function(i){A.setCurrent(i)},this.getCurrent=function(){return A.getCurrent()},this.stem=function(){var e=A.cursor;return i(),k=!1,A.limit_backward=e,A.cursor=A.limit,s(),A.cursor=A.limit,o(),A.cursor=A.limit,u(),A.cursor=A.limit,c(),A.cursor=A.limit,k?(m(),A.cursor=A.limit):(A.cursor=A.limit,w(),A.cursor=A.limit),_(),!0}};return function(i){return"function"==typeof i.update?i.update(function(i){return n.setCurrent(i),n.stem(),n.getCurrent()}):(n.setCurrent(i),n.stem(),n.getCurrent())}}(),i.Pipeline.registerFunction(i.fi.stemmer,"stemmer-fi"),i.fi.stopWordFilter=i.generateStopWordFilter("ei eivät emme en et ette että he heidän heidät heihin heille heillä heiltä heissä heistä heitä hän häneen hänelle hänellä häneltä hänen hänessä hänestä hänet häntä itse ja johon joiden joihin joiksi joilla joille joilta joina joissa joista joita joka joksi jolla jolle jolta jona jonka jos jossa josta jota jotka kanssa keiden keihin keiksi keille keillä keiltä keinä keissä keistä keitä keneen keneksi kenelle kenellä keneltä kenen kenenä kenessä kenestä kenet ketkä ketkä ketä koska kuin kuka kun me meidän meidät meihin meille meillä meiltä meissä meistä meitä mihin miksi mikä mille millä miltä minkä minkä minua minulla minulle minulta minun minussa minusta minut minuun minä minä missä mistä mitkä mitä mukaan mutta ne niiden niihin niiksi niille niillä niiltä niin niin niinä niissä niistä niitä noiden noihin noiksi noilla noille noilta noin noina noissa noista noita nuo nyt näiden näihin näiksi näille näillä näiltä näinä näissä näistä näitä nämä ole olemme olen olet olette oli olimme olin olisi olisimme olisin olisit olisitte olisivat olit olitte olivat olla olleet ollut on ovat poikki se sekä sen siihen siinä siitä siksi sille sillä sillä siltä sinua sinulla sinulle sinulta sinun sinussa sinusta sinut sinuun sinä sinä sitä tai te teidän teidät teihin teille teillä teiltä teissä teistä teitä tuo tuohon tuoksi tuolla tuolle tuolta tuon tuona tuossa tuosta tuota tähän täksi tälle tällä tältä tämä tämän tänä tässä tästä tätä vaan vai vaikka yli".split(" ")),i.Pipeline.registerFunction(i.fi.stopWordFilter,"stopWordFilter-fi")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.fr.min.js b/docs/material/assets/javascripts/lunr/min/lunr.fr.min.js new file mode 100644 index 000000000..68cd0094a --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.fr.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `French` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.fr=function(){this.pipeline.reset(),this.pipeline.add(e.fr.trimmer,e.fr.stopWordFilter,e.fr.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.fr.stemmer))},e.fr.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.fr.trimmer=e.trimmerSupport.generateTrimmer(e.fr.wordCharacters),e.Pipeline.registerFunction(e.fr.trimmer,"trimmer-fr"),e.fr.stemmer=function(){var r=e.stemmerSupport.Among,s=e.stemmerSupport.SnowballProgram,i=new function(){function e(e,r,s){return!(!W.eq_s(1,e)||(W.ket=W.cursor,!W.in_grouping(F,97,251)))&&(W.slice_from(r),W.cursor=s,!0)}function i(e,r,s){return!!W.eq_s(1,e)&&(W.ket=W.cursor,W.slice_from(r),W.cursor=s,!0)}function n(){for(var r,s;;){if(r=W.cursor,W.in_grouping(F,97,251)){if(W.bra=W.cursor,s=W.cursor,e("u","U",r))continue;if(W.cursor=s,e("i","I",r))continue;if(W.cursor=s,i("y","Y",r))continue}if(W.cursor=r,W.bra=r,!e("y","Y",r)){if(W.cursor=r,W.eq_s(1,"q")&&(W.bra=W.cursor,i("u","U",r)))continue;if(W.cursor=r,r>=W.limit)return;W.cursor++}}}function t(){for(;!W.in_grouping(F,97,251);){if(W.cursor>=W.limit)return!0;W.cursor++}for(;!W.out_grouping(F,97,251);){if(W.cursor>=W.limit)return!0;W.cursor++}return!1}function u(){var e=W.cursor;if(q=W.limit,g=q,p=q,W.in_grouping(F,97,251)&&W.in_grouping(F,97,251)&&W.cursor=W.limit){W.cursor=q;break}W.cursor++}while(!W.in_grouping(F,97,251))}q=W.cursor,W.cursor=e,t()||(g=W.cursor,t()||(p=W.cursor))}function o(){for(var e,r;;){if(r=W.cursor,W.bra=r,!(e=W.find_among(h,4)))break;switch(W.ket=W.cursor,e){case 1:W.slice_from("i");break;case 2:W.slice_from("u");break;case 3:W.slice_from("y");break;case 4:if(W.cursor>=W.limit)return;W.cursor++}}}function c(){return q<=W.cursor}function a(){return g<=W.cursor}function l(){return p<=W.cursor}function w(){var e,r;if(W.ket=W.cursor,e=W.find_among_b(C,43)){switch(W.bra=W.cursor,e){case 1:if(!l())return!1;W.slice_del();break;case 2:if(!l())return!1;W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"ic")&&(W.bra=W.cursor,l()?W.slice_del():W.slice_from("iqU"));break;case 3:if(!l())return!1;W.slice_from("log");break;case 4:if(!l())return!1;W.slice_from("u");break;case 5:if(!l())return!1;W.slice_from("ent");break;case 6:if(!c())return!1;if(W.slice_del(),W.ket=W.cursor,e=W.find_among_b(z,6))switch(W.bra=W.cursor,e){case 1:l()&&(W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"at")&&(W.bra=W.cursor,l()&&W.slice_del()));break;case 2:l()?W.slice_del():a()&&W.slice_from("eux");break;case 3:l()&&W.slice_del();break;case 4:c()&&W.slice_from("i")}break;case 7:if(!l())return!1;if(W.slice_del(),W.ket=W.cursor,e=W.find_among_b(y,3))switch(W.bra=W.cursor,e){case 1:l()?W.slice_del():W.slice_from("abl");break;case 2:l()?W.slice_del():W.slice_from("iqU");break;case 3:l()&&W.slice_del()}break;case 8:if(!l())return!1;if(W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"at")&&(W.bra=W.cursor,l()&&(W.slice_del(),W.ket=W.cursor,W.eq_s_b(2,"ic")))){W.bra=W.cursor,l()?W.slice_del():W.slice_from("iqU");break}break;case 9:W.slice_from("eau");break;case 10:if(!a())return!1;W.slice_from("al");break;case 11:if(l())W.slice_del();else{if(!a())return!1;W.slice_from("eux")}break;case 12:if(!a()||!W.out_grouping_b(F,97,251))return!1;W.slice_del();break;case 13:return c()&&W.slice_from("ant"),!1;case 14:return c()&&W.slice_from("ent"),!1;case 15:return r=W.limit-W.cursor,W.in_grouping_b(F,97,251)&&c()&&(W.cursor=W.limit-r,W.slice_del()),!1}return!0}return!1}function f(){var e,r;if(W.cursor=q){if(s=W.limit_backward,W.limit_backward=q,W.ket=W.cursor,e=W.find_among_b(P,7))switch(W.bra=W.cursor,e){case 1:if(l()){if(i=W.limit-W.cursor,!W.eq_s_b(1,"s")&&(W.cursor=W.limit-i,!W.eq_s_b(1,"t")))break;W.slice_del()}break;case 2:W.slice_from("i");break;case 3:W.slice_del();break;case 4:W.eq_s_b(2,"gu")&&W.slice_del()}W.limit_backward=s}}function b(){var e=W.limit-W.cursor;W.find_among_b(U,5)&&(W.cursor=W.limit-e,W.ket=W.cursor,W.cursor>W.limit_backward&&(W.cursor--,W.bra=W.cursor,W.slice_del()))}function d(){for(var e,r=1;W.out_grouping_b(F,97,251);)r--;if(r<=0){if(W.ket=W.cursor,e=W.limit-W.cursor,!W.eq_s_b(1,"é")&&(W.cursor=W.limit-e,!W.eq_s_b(1,"è")))return;W.bra=W.cursor,W.slice_from("e")}}function k(){if(!w()&&(W.cursor=W.limit,!f()&&(W.cursor=W.limit,!m())))return W.cursor=W.limit,void _();W.cursor=W.limit,W.ket=W.cursor,W.eq_s_b(1,"Y")?(W.bra=W.cursor,W.slice_from("i")):(W.cursor=W.limit,W.eq_s_b(1,"ç")&&(W.bra=W.cursor,W.slice_from("c")))}var p,g,q,v=[new r("col",-1,-1),new r("par",-1,-1),new r("tap",-1,-1)],h=[new r("",-1,4),new r("I",0,1),new r("U",0,2),new r("Y",0,3)],z=[new r("iqU",-1,3),new r("abl",-1,3),new r("Ièr",-1,4),new r("ièr",-1,4),new r("eus",-1,2),new r("iv",-1,1)],y=[new r("ic",-1,2),new r("abil",-1,1),new r("iv",-1,3)],C=[new r("iqUe",-1,1),new r("atrice",-1,2),new r("ance",-1,1),new r("ence",-1,5),new r("logie",-1,3),new r("able",-1,1),new r("isme",-1,1),new r("euse",-1,11),new r("iste",-1,1),new r("ive",-1,8),new r("if",-1,8),new r("usion",-1,4),new r("ation",-1,2),new r("ution",-1,4),new r("ateur",-1,2),new r("iqUes",-1,1),new r("atrices",-1,2),new r("ances",-1,1),new r("ences",-1,5),new r("logies",-1,3),new r("ables",-1,1),new r("ismes",-1,1),new r("euses",-1,11),new r("istes",-1,1),new r("ives",-1,8),new r("ifs",-1,8),new r("usions",-1,4),new r("ations",-1,2),new r("utions",-1,4),new r("ateurs",-1,2),new r("ments",-1,15),new r("ements",30,6),new r("issements",31,12),new r("ités",-1,7),new r("ment",-1,15),new r("ement",34,6),new r("issement",35,12),new r("amment",34,13),new r("emment",34,14),new r("aux",-1,10),new r("eaux",39,9),new r("eux",-1,1),new r("ité",-1,7)],x=[new r("ira",-1,1),new r("ie",-1,1),new r("isse",-1,1),new r("issante",-1,1),new r("i",-1,1),new r("irai",4,1),new r("ir",-1,1),new r("iras",-1,1),new r("ies",-1,1),new r("îmes",-1,1),new r("isses",-1,1),new r("issantes",-1,1),new r("îtes",-1,1),new r("is",-1,1),new r("irais",13,1),new r("issais",13,1),new r("irions",-1,1),new r("issions",-1,1),new r("irons",-1,1),new r("issons",-1,1),new r("issants",-1,1),new r("it",-1,1),new r("irait",21,1),new r("issait",21,1),new r("issant",-1,1),new r("iraIent",-1,1),new r("issaIent",-1,1),new r("irent",-1,1),new r("issent",-1,1),new r("iront",-1,1),new r("ît",-1,1),new r("iriez",-1,1),new r("issiez",-1,1),new r("irez",-1,1),new r("issez",-1,1)],I=[new r("a",-1,3),new r("era",0,2),new r("asse",-1,3),new r("ante",-1,3),new r("ée",-1,2),new r("ai",-1,3),new r("erai",5,2),new r("er",-1,2),new r("as",-1,3),new r("eras",8,2),new r("âmes",-1,3),new r("asses",-1,3),new r("antes",-1,3),new r("âtes",-1,3),new r("ées",-1,2),new r("ais",-1,3),new r("erais",15,2),new r("ions",-1,1),new r("erions",17,2),new r("assions",17,3),new r("erons",-1,2),new r("ants",-1,3),new r("és",-1,2),new r("ait",-1,3),new r("erait",23,2),new r("ant",-1,3),new r("aIent",-1,3),new r("eraIent",26,2),new r("èrent",-1,2),new r("assent",-1,3),new r("eront",-1,2),new r("ât",-1,3),new r("ez",-1,2),new r("iez",32,2),new r("eriez",33,2),new r("assiez",33,3),new r("erez",32,2),new r("é",-1,2)],P=[new r("e",-1,3),new r("Ière",0,2),new r("ière",0,2),new r("ion",-1,1),new r("Ier",-1,2),new r("ier",-1,2),new r("ë",-1,4)],U=[new r("ell",-1,-1),new r("eill",-1,-1),new r("enn",-1,-1),new r("onn",-1,-1),new r("ett",-1,-1)],F=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,128,130,103,8,5],S=[1,65,20,0,0,0,0,0,0,0,0,0,0,0,0,0,128],W=new s;this.setCurrent=function(e){W.setCurrent(e)},this.getCurrent=function(){return W.getCurrent()},this.stem=function(){var e=W.cursor;return n(),W.cursor=e,u(),W.limit_backward=e,W.cursor=W.limit,k(),W.cursor=W.limit,b(),W.cursor=W.limit,d(),W.cursor=W.limit_backward,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.fr.stemmer,"stemmer-fr"),e.fr.stopWordFilter=e.generateStopWordFilter("ai aie aient aies ait as au aura aurai auraient aurais aurait auras aurez auriez aurions aurons auront aux avaient avais avait avec avez aviez avions avons ayant ayez ayons c ce ceci celà ces cet cette d dans de des du elle en es est et eu eue eues eurent eus eusse eussent eusses eussiez eussions eut eux eûmes eût eûtes furent fus fusse fussent fusses fussiez fussions fut fûmes fût fûtes ici il ils j je l la le les leur leurs lui m ma mais me mes moi mon même n ne nos notre nous on ont ou par pas pour qu que quel quelle quelles quels qui s sa sans se sera serai seraient serais serait seras serez seriez serions serons seront ses soi soient sois soit sommes son sont soyez soyons suis sur t ta te tes toi ton tu un une vos votre vous y à étaient étais était étant étiez étions été étée étées étés êtes".split(" ")),e.Pipeline.registerFunction(e.fr.stopWordFilter,"stopWordFilter-fr")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.hu.min.js b/docs/material/assets/javascripts/lunr/min/lunr.hu.min.js new file mode 100644 index 000000000..ed9d909f7 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.hu.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Hungarian` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.hu=function(){this.pipeline.reset(),this.pipeline.add(e.hu.trimmer,e.hu.stopWordFilter,e.hu.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.hu.stemmer))},e.hu.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.hu.trimmer=e.trimmerSupport.generateTrimmer(e.hu.wordCharacters),e.Pipeline.registerFunction(e.hu.trimmer,"trimmer-hu"),e.hu.stemmer=function(){var n=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,i=new function(){function e(){var e,n=L.cursor;if(d=L.limit,L.in_grouping(W,97,252))for(;;){if(e=L.cursor,L.out_grouping(W,97,252))return L.cursor=e,L.find_among(g,8)||(L.cursor=e,e=L.limit)return void(d=e);L.cursor++}if(L.cursor=n,L.out_grouping(W,97,252)){for(;!L.in_grouping(W,97,252);){if(L.cursor>=L.limit)return;L.cursor++}d=L.cursor}}function i(){return d<=L.cursor}function a(){var e;if(L.ket=L.cursor,(e=L.find_among_b(h,2))&&(L.bra=L.cursor,i()))switch(e){case 1:L.slice_from("a");break;case 2:L.slice_from("e")}}function t(){var e=L.limit-L.cursor;return!!L.find_among_b(p,23)&&(L.cursor=L.limit-e,!0)}function s(){if(L.cursor>L.limit_backward){L.cursor--,L.ket=L.cursor;var e=L.cursor-1;L.limit_backward<=e&&e<=L.limit&&(L.cursor=e,L.bra=e,L.slice_del())}}function c(){var e;if(L.ket=L.cursor,(e=L.find_among_b(_,2))&&(L.bra=L.cursor,i())){if((1==e||2==e)&&!t())return;L.slice_del(),s()}}function o(){L.ket=L.cursor,L.find_among_b(v,44)&&(L.bra=L.cursor,i()&&(L.slice_del(),a()))}function w(){var e;if(L.ket=L.cursor,(e=L.find_among_b(z,3))&&(L.bra=L.cursor,i()))switch(e){case 1:L.slice_from("e");break;case 2:case 3:L.slice_from("a")}}function l(){var e;if(L.ket=L.cursor,(e=L.find_among_b(y,6))&&(L.bra=L.cursor,i()))switch(e){case 1:case 2:L.slice_del();break;case 3:L.slice_from("a");break;case 4:L.slice_from("e")}}function u(){var e;if(L.ket=L.cursor,(e=L.find_among_b(j,2))&&(L.bra=L.cursor,i())){if((1==e||2==e)&&!t())return;L.slice_del(),s()}}function m(){var e;if(L.ket=L.cursor,(e=L.find_among_b(C,7))&&(L.bra=L.cursor,i()))switch(e){case 1:L.slice_from("a");break;case 2:L.slice_from("e");break;case 3:case 4:case 5:case 6:case 7:L.slice_del()}}function k(){var e;if(L.ket=L.cursor,(e=L.find_among_b(P,12))&&(L.bra=L.cursor,i()))switch(e){case 1:case 4:case 7:case 9:L.slice_del();break;case 2:case 5:case 8:L.slice_from("e");break;case 3:case 6:L.slice_from("a")}}function f(){var e;if(L.ket=L.cursor,(e=L.find_among_b(F,31))&&(L.bra=L.cursor,i()))switch(e){case 1:case 4:case 7:case 8:case 9:case 12:case 13:case 16:case 17:case 18:L.slice_del();break;case 2:case 5:case 10:case 14:case 19:L.slice_from("a");break;case 3:case 6:case 11:case 15:case 20:L.slice_from("e")}}function b(){var e;if(L.ket=L.cursor,(e=L.find_among_b(S,42))&&(L.bra=L.cursor,i()))switch(e){case 1:case 4:case 5:case 6:case 9:case 10:case 11:case 14:case 15:case 16:case 17:case 20:case 21:case 24:case 25:case 26:case 29:L.slice_del();break;case 2:case 7:case 12:case 18:case 22:case 27:L.slice_from("a");break;case 3:case 8:case 13:case 19:case 23:case 28:L.slice_from("e")}}var d,g=[new n("cs",-1,-1),new n("dzs",-1,-1),new n("gy",-1,-1),new n("ly",-1,-1),new n("ny",-1,-1),new n("sz",-1,-1),new n("ty",-1,-1),new n("zs",-1,-1)],h=[new n("á",-1,1),new n("é",-1,2)],p=[new n("bb",-1,-1),new n("cc",-1,-1),new n("dd",-1,-1),new n("ff",-1,-1),new n("gg",-1,-1),new n("jj",-1,-1),new n("kk",-1,-1),new n("ll",-1,-1),new n("mm",-1,-1),new n("nn",-1,-1),new n("pp",-1,-1),new n("rr",-1,-1),new n("ccs",-1,-1),new n("ss",-1,-1),new n("zzs",-1,-1),new n("tt",-1,-1),new n("vv",-1,-1),new n("ggy",-1,-1),new n("lly",-1,-1),new n("nny",-1,-1),new n("tty",-1,-1),new n("ssz",-1,-1),new n("zz",-1,-1)],_=[new n("al",-1,1),new n("el",-1,2)],v=[new n("ba",-1,-1),new n("ra",-1,-1),new n("be",-1,-1),new n("re",-1,-1),new n("ig",-1,-1),new n("nak",-1,-1),new n("nek",-1,-1),new n("val",-1,-1),new n("vel",-1,-1),new n("ul",-1,-1),new n("nál",-1,-1),new n("nél",-1,-1),new n("ból",-1,-1),new n("ról",-1,-1),new n("tól",-1,-1),new n("bõl",-1,-1),new n("rõl",-1,-1),new n("tõl",-1,-1),new n("ül",-1,-1),new n("n",-1,-1),new n("an",19,-1),new n("ban",20,-1),new n("en",19,-1),new n("ben",22,-1),new n("képpen",22,-1),new n("on",19,-1),new n("ön",19,-1),new n("képp",-1,-1),new n("kor",-1,-1),new n("t",-1,-1),new n("at",29,-1),new n("et",29,-1),new n("ként",29,-1),new n("anként",32,-1),new n("enként",32,-1),new n("onként",32,-1),new n("ot",29,-1),new n("ért",29,-1),new n("öt",29,-1),new n("hez",-1,-1),new n("hoz",-1,-1),new n("höz",-1,-1),new n("vá",-1,-1),new n("vé",-1,-1)],z=[new n("án",-1,2),new n("én",-1,1),new n("ánként",-1,3)],y=[new n("stul",-1,2),new n("astul",0,1),new n("ástul",0,3),new n("stül",-1,2),new n("estül",3,1),new n("éstül",3,4)],j=[new n("á",-1,1),new n("é",-1,2)],C=[new n("k",-1,7),new n("ak",0,4),new n("ek",0,6),new n("ok",0,5),new n("ák",0,1),new n("ék",0,2),new n("ök",0,3)],P=[new n("éi",-1,7),new n("áéi",0,6),new n("ééi",0,5),new n("é",-1,9),new n("ké",3,4),new n("aké",4,1),new n("eké",4,1),new n("oké",4,1),new n("áké",4,3),new n("éké",4,2),new n("öké",4,1),new n("éé",3,8)],F=[new n("a",-1,18),new n("ja",0,17),new n("d",-1,16),new n("ad",2,13),new n("ed",2,13),new n("od",2,13),new n("ád",2,14),new n("éd",2,15),new n("öd",2,13),new n("e",-1,18),new n("je",9,17),new n("nk",-1,4),new n("unk",11,1),new n("ánk",11,2),new n("énk",11,3),new n("ünk",11,1),new n("uk",-1,8),new n("juk",16,7),new n("ájuk",17,5),new n("ük",-1,8),new n("jük",19,7),new n("éjük",20,6),new n("m",-1,12),new n("am",22,9),new n("em",22,9),new n("om",22,9),new n("ám",22,10),new n("ém",22,11),new n("o",-1,18),new n("á",-1,19),new n("é",-1,20)],S=[new n("id",-1,10),new n("aid",0,9),new n("jaid",1,6),new n("eid",0,9),new n("jeid",3,6),new n("áid",0,7),new n("éid",0,8),new n("i",-1,15),new n("ai",7,14),new n("jai",8,11),new n("ei",7,14),new n("jei",10,11),new n("ái",7,12),new n("éi",7,13),new n("itek",-1,24),new n("eitek",14,21),new n("jeitek",15,20),new n("éitek",14,23),new n("ik",-1,29),new n("aik",18,26),new n("jaik",19,25),new n("eik",18,26),new n("jeik",21,25),new n("áik",18,27),new n("éik",18,28),new n("ink",-1,20),new n("aink",25,17),new n("jaink",26,16),new n("eink",25,17),new n("jeink",28,16),new n("áink",25,18),new n("éink",25,19),new n("aitok",-1,21),new n("jaitok",32,20),new n("áitok",-1,22),new n("im",-1,5),new n("aim",35,4),new n("jaim",36,1),new n("eim",35,4),new n("jeim",38,1),new n("áim",35,2),new n("éim",35,3)],W=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,52,14],L=new r;this.setCurrent=function(e){L.setCurrent(e)},this.getCurrent=function(){return L.getCurrent()},this.stem=function(){var n=L.cursor;return e(),L.limit_backward=n,L.cursor=L.limit,c(),L.cursor=L.limit,o(),L.cursor=L.limit,w(),L.cursor=L.limit,l(),L.cursor=L.limit,u(),L.cursor=L.limit,k(),L.cursor=L.limit,f(),L.cursor=L.limit,b(),L.cursor=L.limit,m(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.hu.stemmer,"stemmer-hu"),e.hu.stopWordFilter=e.generateStopWordFilter("a abban ahhoz ahogy ahol aki akik akkor alatt amely amelyek amelyekben amelyeket amelyet amelynek ami amikor amit amolyan amíg annak arra arról az azok azon azonban azt aztán azután azzal azért be belül benne bár cikk cikkek cikkeket csak de e ebben eddig egy egyes egyetlen egyik egyre egyéb egész ehhez ekkor el ellen elsõ elég elõ elõször elõtt emilyen ennek erre ez ezek ezen ezt ezzel ezért fel felé hanem hiszen hogy hogyan igen ill ill. illetve ilyen ilyenkor ismét ison itt jobban jó jól kell kellett keressünk keresztül ki kívül között közül legalább legyen lehet lehetett lenne lenni lesz lett maga magát majd majd meg mellett mely melyek mert mi mikor milyen minden mindenki mindent mindig mint mintha mit mivel miért most már más másik még míg nagy nagyobb nagyon ne nekem neki nem nincs néha néhány nélkül olyan ott pedig persze rá s saját sem semmi sok sokat sokkal szemben szerint szinte számára talán tehát teljes tovább továbbá több ugyanis utolsó után utána vagy vagyis vagyok valaki valami valamint való van vannak vele vissza viszont volna volt voltak voltam voltunk által általában át én éppen és így õ õk õket össze úgy új újabb újra".split(" ")),e.Pipeline.registerFunction(e.hu.stopWordFilter,"stopWordFilter-hu")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.it.min.js b/docs/material/assets/javascripts/lunr/min/lunr.it.min.js new file mode 100644 index 000000000..344b6a3c0 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.it.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Italian` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.it=function(){this.pipeline.reset(),this.pipeline.add(e.it.trimmer,e.it.stopWordFilter,e.it.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.it.stemmer))},e.it.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.it.trimmer=e.trimmerSupport.generateTrimmer(e.it.wordCharacters),e.Pipeline.registerFunction(e.it.trimmer,"trimmer-it"),e.it.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,i=new function(){function e(e,r,n){return!(!x.eq_s(1,e)||(x.ket=x.cursor,!x.in_grouping(L,97,249)))&&(x.slice_from(r),x.cursor=n,!0)}function i(){for(var r,n,i,o,t=x.cursor;;){if(x.bra=x.cursor,r=x.find_among(h,7))switch(x.ket=x.cursor,r){case 1:x.slice_from("à");continue;case 2:x.slice_from("è");continue;case 3:x.slice_from("ì");continue;case 4:x.slice_from("ò");continue;case 5:x.slice_from("ù");continue;case 6:x.slice_from("qU");continue;case 7:if(x.cursor>=x.limit)break;x.cursor++;continue}break}for(x.cursor=t;;)for(n=x.cursor;;){if(i=x.cursor,x.in_grouping(L,97,249)){if(x.bra=x.cursor,o=x.cursor,e("u","U",i))break;if(x.cursor=o,e("i","I",i))break}if(x.cursor=i,x.cursor>=x.limit)return void(x.cursor=n);x.cursor++}}function o(e){if(x.cursor=e,!x.in_grouping(L,97,249))return!1;for(;!x.out_grouping(L,97,249);){if(x.cursor>=x.limit)return!1;x.cursor++}return!0}function t(){if(x.in_grouping(L,97,249)){var e=x.cursor;if(x.out_grouping(L,97,249)){for(;!x.in_grouping(L,97,249);){if(x.cursor>=x.limit)return o(e);x.cursor++}return!0}return o(e)}return!1}function s(){var e,r=x.cursor;if(!t()){if(x.cursor=r,!x.out_grouping(L,97,249))return;if(e=x.cursor,x.out_grouping(L,97,249)){for(;!x.in_grouping(L,97,249);){if(x.cursor>=x.limit)return x.cursor=e,void(x.in_grouping(L,97,249)&&x.cursor=x.limit)return;x.cursor++}k=x.cursor}function a(){for(;!x.in_grouping(L,97,249);){if(x.cursor>=x.limit)return!1;x.cursor++}for(;!x.out_grouping(L,97,249);){if(x.cursor>=x.limit)return!1;x.cursor++}return!0}function u(){var e=x.cursor;k=x.limit,p=k,g=k,s(),x.cursor=e,a()&&(p=x.cursor,a()&&(g=x.cursor))}function c(){for(var e;;){if(x.bra=x.cursor,!(e=x.find_among(q,3)))break;switch(x.ket=x.cursor,e){case 1:x.slice_from("i");break;case 2:x.slice_from("u");break;case 3:if(x.cursor>=x.limit)return;x.cursor++}}}function w(){return k<=x.cursor}function l(){return p<=x.cursor}function m(){return g<=x.cursor}function f(){var e;if(x.ket=x.cursor,x.find_among_b(C,37)&&(x.bra=x.cursor,(e=x.find_among_b(z,5))&&w()))switch(e){case 1:x.slice_del();break;case 2:x.slice_from("e")}}function v(){var e;if(x.ket=x.cursor,!(e=x.find_among_b(S,51)))return!1;switch(x.bra=x.cursor,e){case 1:if(!m())return!1;x.slice_del();break;case 2:if(!m())return!1;x.slice_del(),x.ket=x.cursor,x.eq_s_b(2,"ic")&&(x.bra=x.cursor,m()&&x.slice_del());break;case 3:if(!m())return!1;x.slice_from("log");break;case 4:if(!m())return!1;x.slice_from("u");break;case 5:if(!m())return!1;x.slice_from("ente");break;case 6:if(!w())return!1;x.slice_del();break;case 7:if(!l())return!1;x.slice_del(),x.ket=x.cursor,e=x.find_among_b(P,4),e&&(x.bra=x.cursor,m()&&(x.slice_del(),1==e&&(x.ket=x.cursor,x.eq_s_b(2,"at")&&(x.bra=x.cursor,m()&&x.slice_del()))));break;case 8:if(!m())return!1;x.slice_del(),x.ket=x.cursor,e=x.find_among_b(F,3),e&&(x.bra=x.cursor,1==e&&m()&&x.slice_del());break;case 9:if(!m())return!1;x.slice_del(),x.ket=x.cursor,x.eq_s_b(2,"at")&&(x.bra=x.cursor,m()&&(x.slice_del(),x.ket=x.cursor,x.eq_s_b(2,"ic")&&(x.bra=x.cursor,m()&&x.slice_del())))}return!0}function b(){var e,r;x.cursor>=k&&(r=x.limit_backward,x.limit_backward=k,x.ket=x.cursor,e=x.find_among_b(W,87),e&&(x.bra=x.cursor,1==e&&x.slice_del()),x.limit_backward=r)}function d(){var e=x.limit-x.cursor;if(x.ket=x.cursor,x.in_grouping_b(y,97,242)&&(x.bra=x.cursor,w()&&(x.slice_del(),x.ket=x.cursor,x.eq_s_b(1,"i")&&(x.bra=x.cursor,w()))))return void x.slice_del();x.cursor=x.limit-e}function _(){d(),x.ket=x.cursor,x.eq_s_b(1,"h")&&(x.bra=x.cursor,x.in_grouping_b(U,99,103)&&w()&&x.slice_del())}var g,p,k,h=[new r("",-1,7),new r("qu",0,6),new r("á",0,1),new r("é",0,2),new r("í",0,3),new r("ó",0,4),new r("ú",0,5)],q=[new r("",-1,3),new r("I",0,1),new r("U",0,2)],C=[new r("la",-1,-1),new r("cela",0,-1),new r("gliela",0,-1),new r("mela",0,-1),new r("tela",0,-1),new r("vela",0,-1),new r("le",-1,-1),new r("cele",6,-1),new r("gliele",6,-1),new r("mele",6,-1),new r("tele",6,-1),new r("vele",6,-1),new r("ne",-1,-1),new r("cene",12,-1),new r("gliene",12,-1),new r("mene",12,-1),new r("sene",12,-1),new r("tene",12,-1),new r("vene",12,-1),new r("ci",-1,-1),new r("li",-1,-1),new r("celi",20,-1),new r("glieli",20,-1),new r("meli",20,-1),new r("teli",20,-1),new r("veli",20,-1),new r("gli",20,-1),new r("mi",-1,-1),new r("si",-1,-1),new r("ti",-1,-1),new r("vi",-1,-1),new r("lo",-1,-1),new r("celo",31,-1),new r("glielo",31,-1),new r("melo",31,-1),new r("telo",31,-1),new r("velo",31,-1)],z=[new r("ando",-1,1),new r("endo",-1,1),new r("ar",-1,2),new r("er",-1,2),new r("ir",-1,2)],P=[new r("ic",-1,-1),new r("abil",-1,-1),new r("os",-1,-1),new r("iv",-1,1)],F=[new r("ic",-1,1),new r("abil",-1,1),new r("iv",-1,1)],S=[new r("ica",-1,1),new r("logia",-1,3),new r("osa",-1,1),new r("ista",-1,1),new r("iva",-1,9),new r("anza",-1,1),new r("enza",-1,5),new r("ice",-1,1),new r("atrice",7,1),new r("iche",-1,1),new r("logie",-1,3),new r("abile",-1,1),new r("ibile",-1,1),new r("usione",-1,4),new r("azione",-1,2),new r("uzione",-1,4),new r("atore",-1,2),new r("ose",-1,1),new r("ante",-1,1),new r("mente",-1,1),new r("amente",19,7),new r("iste",-1,1),new r("ive",-1,9),new r("anze",-1,1),new r("enze",-1,5),new r("ici",-1,1),new r("atrici",25,1),new r("ichi",-1,1),new r("abili",-1,1),new r("ibili",-1,1),new r("ismi",-1,1),new r("usioni",-1,4),new r("azioni",-1,2),new r("uzioni",-1,4),new r("atori",-1,2),new r("osi",-1,1),new r("anti",-1,1),new r("amenti",-1,6),new r("imenti",-1,6),new r("isti",-1,1),new r("ivi",-1,9),new r("ico",-1,1),new r("ismo",-1,1),new r("oso",-1,1),new r("amento",-1,6),new r("imento",-1,6),new r("ivo",-1,9),new r("ità",-1,8),new r("istà",-1,1),new r("istè",-1,1),new r("istì",-1,1)],W=[new r("isca",-1,1),new r("enda",-1,1),new r("ata",-1,1),new r("ita",-1,1),new r("uta",-1,1),new r("ava",-1,1),new r("eva",-1,1),new r("iva",-1,1),new r("erebbe",-1,1),new r("irebbe",-1,1),new r("isce",-1,1),new r("ende",-1,1),new r("are",-1,1),new r("ere",-1,1),new r("ire",-1,1),new r("asse",-1,1),new r("ate",-1,1),new r("avate",16,1),new r("evate",16,1),new r("ivate",16,1),new r("ete",-1,1),new r("erete",20,1),new r("irete",20,1),new r("ite",-1,1),new r("ereste",-1,1),new r("ireste",-1,1),new r("ute",-1,1),new r("erai",-1,1),new r("irai",-1,1),new r("isci",-1,1),new r("endi",-1,1),new r("erei",-1,1),new r("irei",-1,1),new r("assi",-1,1),new r("ati",-1,1),new r("iti",-1,1),new r("eresti",-1,1),new r("iresti",-1,1),new r("uti",-1,1),new r("avi",-1,1),new r("evi",-1,1),new r("ivi",-1,1),new r("isco",-1,1),new r("ando",-1,1),new r("endo",-1,1),new r("Yamo",-1,1),new r("iamo",-1,1),new r("avamo",-1,1),new r("evamo",-1,1),new r("ivamo",-1,1),new r("eremo",-1,1),new r("iremo",-1,1),new r("assimo",-1,1),new r("ammo",-1,1),new r("emmo",-1,1),new r("eremmo",54,1),new r("iremmo",54,1),new r("immo",-1,1),new r("ano",-1,1),new r("iscano",58,1),new r("avano",58,1),new r("evano",58,1),new r("ivano",58,1),new r("eranno",-1,1),new r("iranno",-1,1),new r("ono",-1,1),new r("iscono",65,1),new r("arono",65,1),new r("erono",65,1),new r("irono",65,1),new r("erebbero",-1,1),new r("irebbero",-1,1),new r("assero",-1,1),new r("essero",-1,1),new r("issero",-1,1),new r("ato",-1,1),new r("ito",-1,1),new r("uto",-1,1),new r("avo",-1,1),new r("evo",-1,1),new r("ivo",-1,1),new r("ar",-1,1),new r("ir",-1,1),new r("erà",-1,1),new r("irà",-1,1),new r("erò",-1,1),new r("irò",-1,1)],L=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,128,128,8,2,1],y=[17,65,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,8,2],U=[17],x=new n;this.setCurrent=function(e){x.setCurrent(e)},this.getCurrent=function(){return x.getCurrent()},this.stem=function(){var e=x.cursor;return i(),x.cursor=e,u(),x.limit_backward=e,x.cursor=x.limit,f(),x.cursor=x.limit,v()||(x.cursor=x.limit,b()),x.cursor=x.limit,_(),x.cursor=x.limit_backward,c(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.it.stemmer,"stemmer-it"),e.it.stopWordFilter=e.generateStopWordFilter("a abbia abbiamo abbiano abbiate ad agl agli ai al all alla alle allo anche avemmo avendo avesse avessero avessi avessimo aveste avesti avete aveva avevamo avevano avevate avevi avevo avrai avranno avrebbe avrebbero avrei avremmo avremo avreste avresti avrete avrà avrò avuta avute avuti avuto c che chi ci coi col come con contro cui da dagl dagli dai dal dall dalla dalle dallo degl degli dei del dell della delle dello di dov dove e ebbe ebbero ebbi ed era erano eravamo eravate eri ero essendo faccia facciamo facciano facciate faccio facemmo facendo facesse facessero facessi facessimo faceste facesti faceva facevamo facevano facevate facevi facevo fai fanno farai faranno farebbe farebbero farei faremmo faremo fareste faresti farete farà farò fece fecero feci fosse fossero fossi fossimo foste fosti fu fui fummo furono gli ha hai hanno ho i il in io l la le lei li lo loro lui ma mi mia mie miei mio ne negl negli nei nel nell nella nelle nello noi non nostra nostre nostri nostro o per perché più quale quanta quante quanti quanto quella quelle quelli quello questa queste questi questo sarai saranno sarebbe sarebbero sarei saremmo saremo sareste saresti sarete sarà sarò se sei si sia siamo siano siate siete sono sta stai stando stanno starai staranno starebbe starebbero starei staremmo staremo stareste staresti starete starà starò stava stavamo stavano stavate stavi stavo stemmo stesse stessero stessi stessimo steste stesti stette stettero stetti stia stiamo stiano stiate sto su sua sue sugl sugli sui sul sull sulla sulle sullo suo suoi ti tra tu tua tue tuo tuoi tutti tutto un una uno vi voi vostra vostre vostri vostro è".split(" ")),e.Pipeline.registerFunction(e.it.stopWordFilter,"stopWordFilter-it")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.ja.min.js b/docs/material/assets/javascripts/lunr/min/lunr.ja.min.js new file mode 100644 index 000000000..5f254ebe9 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.ja.min.js @@ -0,0 +1 @@ +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r="2"==e.version[0];e.ja=function(){this.pipeline.reset(),this.pipeline.add(e.ja.trimmer,e.ja.stopWordFilter,e.ja.stemmer),r?this.tokenizer=e.ja.tokenizer:(e.tokenizer&&(e.tokenizer=e.ja.tokenizer),this.tokenizerFn&&(this.tokenizerFn=e.ja.tokenizer))};var t=new e.TinySegmenter;e.ja.tokenizer=function(i){var n,o,s,p,a,u,m,l,c,f;if(!arguments.length||null==i||void 0==i)return[];if(Array.isArray(i))return i.map(function(t){return r?new e.Token(t.toLowerCase()):t.toLowerCase()});for(o=i.toString().toLowerCase().replace(/^\s+/,""),n=o.length-1;n>=0;n--)if(/\S/.test(o.charAt(n))){o=o.substring(0,n+1);break}for(a=[],s=o.length,c=0,l=0;c<=s;c++)if(u=o.charAt(c),m=c-l,u.match(/\s/)||c==s){if(m>0)for(p=t.segment(o.slice(l,c)).filter(function(e){return!!e}),f=l,n=0;n=C.limit)break;C.cursor++;continue}break}for(C.cursor=o,C.bra=o,C.eq_s(1,"y")?(C.ket=C.cursor,C.slice_from("Y")):C.cursor=o;;)if(e=C.cursor,C.in_grouping(q,97,232)){if(i=C.cursor,C.bra=i,C.eq_s(1,"i"))C.ket=C.cursor,C.in_grouping(q,97,232)&&(C.slice_from("I"),C.cursor=e);else if(C.cursor=i,C.eq_s(1,"y"))C.ket=C.cursor,C.slice_from("Y"),C.cursor=e;else if(n(e))break}else if(n(e))break}function n(r){return C.cursor=r,r>=C.limit||(C.cursor++,!1)}function o(){_=C.limit,d=_,t()||(_=C.cursor,_<3&&(_=3),t()||(d=C.cursor))}function t(){for(;!C.in_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}for(;!C.out_grouping(q,97,232);){if(C.cursor>=C.limit)return!0;C.cursor++}return!1}function s(){for(var r;;)if(C.bra=C.cursor,r=C.find_among(p,3))switch(C.ket=C.cursor,r){case 1:C.slice_from("y");break;case 2:C.slice_from("i");break;case 3:if(C.cursor>=C.limit)return;C.cursor++}}function u(){return _<=C.cursor}function c(){return d<=C.cursor}function a(){var r=C.limit-C.cursor;C.find_among_b(g,3)&&(C.cursor=C.limit-r,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del()))}function l(){var r;w=!1,C.ket=C.cursor,C.eq_s_b(1,"e")&&(C.bra=C.cursor,u()&&(r=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-r,C.slice_del(),w=!0,a())))}function m(){var r;u()&&(r=C.limit-C.cursor,C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-r,C.eq_s_b(3,"gem")||(C.cursor=C.limit-r,C.slice_del(),a())))}function f(){var r,e,i,n,o,t,s=C.limit-C.cursor;if(C.ket=C.cursor,r=C.find_among_b(h,5))switch(C.bra=C.cursor,r){case 1:u()&&C.slice_from("heid");break;case 2:m();break;case 3:u()&&C.out_grouping_b(j,97,232)&&C.slice_del()}if(C.cursor=C.limit-s,l(),C.cursor=C.limit-s,C.ket=C.cursor,C.eq_s_b(4,"heid")&&(C.bra=C.cursor,c()&&(e=C.limit-C.cursor,C.eq_s_b(1,"c")||(C.cursor=C.limit-e,C.slice_del(),C.ket=C.cursor,C.eq_s_b(2,"en")&&(C.bra=C.cursor,m())))),C.cursor=C.limit-s,C.ket=C.cursor,r=C.find_among_b(k,6))switch(C.bra=C.cursor,r){case 1:if(c()){if(C.slice_del(),i=C.limit-C.cursor,C.ket=C.cursor,C.eq_s_b(2,"ig")&&(C.bra=C.cursor,c()&&(n=C.limit-C.cursor,!C.eq_s_b(1,"e")))){C.cursor=C.limit-n,C.slice_del();break}C.cursor=C.limit-i,a()}break;case 2:c()&&(o=C.limit-C.cursor,C.eq_s_b(1,"e")||(C.cursor=C.limit-o,C.slice_del()));break;case 3:c()&&(C.slice_del(),l());break;case 4:c()&&C.slice_del();break;case 5:c()&&w&&C.slice_del()}C.cursor=C.limit-s,C.out_grouping_b(z,73,232)&&(t=C.limit-C.cursor,C.find_among_b(v,4)&&C.out_grouping_b(q,97,232)&&(C.cursor=C.limit-t,C.ket=C.cursor,C.cursor>C.limit_backward&&(C.cursor--,C.bra=C.cursor,C.slice_del())))}var d,_,w,b=[new e("",-1,6),new e("á",0,1),new e("ä",0,1),new e("é",0,2),new e("ë",0,2),new e("í",0,3),new e("ï",0,3),new e("ó",0,4),new e("ö",0,4),new e("ú",0,5),new e("ü",0,5)],p=[new e("",-1,3),new e("I",0,2),new e("Y",0,1)],g=[new e("dd",-1,-1),new e("kk",-1,-1),new e("tt",-1,-1)],h=[new e("ene",-1,2),new e("se",-1,3),new e("en",-1,2),new e("heden",2,1),new e("s",-1,3)],k=[new e("end",-1,1),new e("ig",-1,2),new e("ing",-1,1),new e("lijk",-1,3),new e("baar",-1,4),new e("bar",-1,5)],v=[new e("aa",-1,-1),new e("ee",-1,-1),new e("oo",-1,-1),new e("uu",-1,-1)],q=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],z=[1,0,0,17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],j=[17,67,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],C=new i;this.setCurrent=function(r){C.setCurrent(r)},this.getCurrent=function(){return C.getCurrent()},this.stem=function(){var e=C.cursor;return r(),C.cursor=e,o(),C.limit_backward=e,C.cursor=C.limit,f(),C.cursor=C.limit_backward,s(),!0}};return function(r){return"function"==typeof r.update?r.update(function(r){return n.setCurrent(r),n.stem(),n.getCurrent()}):(n.setCurrent(r),n.stem(),n.getCurrent())}}(),r.Pipeline.registerFunction(r.nl.stemmer,"stemmer-nl"),r.nl.stopWordFilter=r.generateStopWordFilter(" aan al alles als altijd andere ben bij daar dan dat de der deze die dit doch doen door dus een eens en er ge geen geweest haar had heb hebben heeft hem het hier hij hoe hun iemand iets ik in is ja je kan kon kunnen maar me meer men met mij mijn moet na naar niet niets nog nu of om omdat onder ons ook op over reeds te tegen toch toen tot u uit uw van veel voor want waren was wat werd wezen wie wil worden wordt zal ze zelf zich zij zijn zo zonder zou".split(" ")),r.Pipeline.registerFunction(r.nl.stopWordFilter,"stopWordFilter-nl")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.no.min.js b/docs/material/assets/javascripts/lunr/min/lunr.no.min.js new file mode 100644 index 000000000..92bc7e4e8 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.no.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Norwegian` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.no=function(){this.pipeline.reset(),this.pipeline.add(e.no.trimmer,e.no.stopWordFilter,e.no.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.no.stemmer))},e.no.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.no.trimmer=e.trimmerSupport.generateTrimmer(e.no.wordCharacters),e.Pipeline.registerFunction(e.no.trimmer,"trimmer-no"),e.no.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,i=new function(){function e(){var e,r=w.cursor+3;if(a=w.limit,0<=r||r<=w.limit){for(s=r;;){if(e=w.cursor,w.in_grouping(d,97,248)){w.cursor=e;break}if(e>=w.limit)return;w.cursor=e+1}for(;!w.out_grouping(d,97,248);){if(w.cursor>=w.limit)return;w.cursor++}a=w.cursor,a=a&&(r=w.limit_backward,w.limit_backward=a,w.ket=w.cursor,e=w.find_among_b(m,29),w.limit_backward=r,e))switch(w.bra=w.cursor,e){case 1:w.slice_del();break;case 2:n=w.limit-w.cursor,w.in_grouping_b(c,98,122)?w.slice_del():(w.cursor=w.limit-n,w.eq_s_b(1,"k")&&w.out_grouping_b(d,97,248)&&w.slice_del());break;case 3:w.slice_from("er")}}function t(){var e,r=w.limit-w.cursor;w.cursor>=a&&(e=w.limit_backward,w.limit_backward=a,w.ket=w.cursor,w.find_among_b(u,2)?(w.bra=w.cursor,w.limit_backward=e,w.cursor=w.limit-r,w.cursor>w.limit_backward&&(w.cursor--,w.bra=w.cursor,w.slice_del())):w.limit_backward=e)}function o(){var e,r;w.cursor>=a&&(r=w.limit_backward,w.limit_backward=a,w.ket=w.cursor,e=w.find_among_b(l,11),e?(w.bra=w.cursor,w.limit_backward=r,1==e&&w.slice_del()):w.limit_backward=r)}var s,a,m=[new r("a",-1,1),new r("e",-1,1),new r("ede",1,1),new r("ande",1,1),new r("ende",1,1),new r("ane",1,1),new r("ene",1,1),new r("hetene",6,1),new r("erte",1,3),new r("en",-1,1),new r("heten",9,1),new r("ar",-1,1),new r("er",-1,1),new r("heter",12,1),new r("s",-1,2),new r("as",14,1),new r("es",14,1),new r("edes",16,1),new r("endes",16,1),new r("enes",16,1),new r("hetenes",19,1),new r("ens",14,1),new r("hetens",21,1),new r("ers",14,1),new r("ets",14,1),new r("et",-1,1),new r("het",25,1),new r("ert",-1,3),new r("ast",-1,1)],u=[new r("dt",-1,-1),new r("vt",-1,-1)],l=[new r("leg",-1,1),new r("eleg",0,1),new r("ig",-1,1),new r("eig",2,1),new r("lig",2,1),new r("elig",4,1),new r("els",-1,1),new r("lov",-1,1),new r("elov",7,1),new r("slov",7,1),new r("hetslov",9,1)],d=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,128],c=[119,125,149,1],w=new n;this.setCurrent=function(e){w.setCurrent(e)},this.getCurrent=function(){return w.getCurrent()},this.stem=function(){var r=w.cursor;return e(),w.limit_backward=r,w.cursor=w.limit,i(),w.cursor=w.limit,t(),w.cursor=w.limit,o(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}}(),e.Pipeline.registerFunction(e.no.stemmer,"stemmer-no"),e.no.stopWordFilter=e.generateStopWordFilter("alle at av bare begge ble blei bli blir blitt både båe da de deg dei deim deira deires dem den denne der dere deres det dette di din disse ditt du dykk dykkar då eg ein eit eitt eller elles en enn er et ett etter for fordi fra før ha hadde han hans har hennar henne hennes her hjå ho hoe honom hoss hossen hun hva hvem hver hvilke hvilken hvis hvor hvordan hvorfor i ikke ikkje ikkje ingen ingi inkje inn inni ja jeg kan kom korleis korso kun kunne kva kvar kvarhelst kven kvi kvifor man mange me med medan meg meget mellom men mi min mine mitt mot mykje ned no noe noen noka noko nokon nokor nokre nå når og også om opp oss over på samme seg selv si si sia sidan siden sin sine sitt sjøl skal skulle slik so som som somme somt så sånn til um upp ut uten var vart varte ved vere verte vi vil ville vore vors vort vår være være vært å".split(" ")),e.Pipeline.registerFunction(e.no.stopWordFilter,"stopWordFilter-no")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.pt.min.js b/docs/material/assets/javascripts/lunr/min/lunr.pt.min.js new file mode 100644 index 000000000..6c16996d6 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.pt.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Portuguese` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.pt=function(){this.pipeline.reset(),this.pipeline.add(e.pt.trimmer,e.pt.stopWordFilter,e.pt.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.pt.stemmer))},e.pt.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.pt.trimmer=e.trimmerSupport.generateTrimmer(e.pt.wordCharacters),e.Pipeline.registerFunction(e.pt.trimmer,"trimmer-pt"),e.pt.stemmer=function(){var r=e.stemmerSupport.Among,s=e.stemmerSupport.SnowballProgram,n=new function(){function e(){for(var e;;){if(z.bra=z.cursor,e=z.find_among(k,3))switch(z.ket=z.cursor,e){case 1:z.slice_from("a~");continue;case 2:z.slice_from("o~");continue;case 3:if(z.cursor>=z.limit)break;z.cursor++;continue}break}}function n(){if(z.out_grouping(y,97,250)){for(;!z.in_grouping(y,97,250);){if(z.cursor>=z.limit)return!0;z.cursor++}return!1}return!0}function i(){if(z.in_grouping(y,97,250))for(;!z.out_grouping(y,97,250);){if(z.cursor>=z.limit)return!1;z.cursor++}return g=z.cursor,!0}function o(){var e,r,s=z.cursor;if(z.in_grouping(y,97,250))if(e=z.cursor,n()){if(z.cursor=e,i())return}else g=z.cursor;if(z.cursor=s,z.out_grouping(y,97,250)){if(r=z.cursor,n()){if(z.cursor=r,!z.in_grouping(y,97,250)||z.cursor>=z.limit)return;z.cursor++}g=z.cursor}}function t(){for(;!z.in_grouping(y,97,250);){if(z.cursor>=z.limit)return!1;z.cursor++}for(;!z.out_grouping(y,97,250);){if(z.cursor>=z.limit)return!1;z.cursor++}return!0}function a(){var e=z.cursor;g=z.limit,b=g,h=g,o(),z.cursor=e,t()&&(b=z.cursor,t()&&(h=z.cursor))}function u(){for(var e;;){if(z.bra=z.cursor,e=z.find_among(q,3))switch(z.ket=z.cursor,e){case 1:z.slice_from("ã");continue;case 2:z.slice_from("õ");continue;case 3:if(z.cursor>=z.limit)break;z.cursor++;continue}break}}function w(){return g<=z.cursor}function m(){return b<=z.cursor}function c(){return h<=z.cursor}function l(){var e;if(z.ket=z.cursor,!(e=z.find_among_b(F,45)))return!1;switch(z.bra=z.cursor,e){case 1:if(!c())return!1;z.slice_del();break;case 2:if(!c())return!1;z.slice_from("log");break;case 3:if(!c())return!1;z.slice_from("u");break;case 4:if(!c())return!1;z.slice_from("ente");break;case 5:if(!m())return!1;z.slice_del(),z.ket=z.cursor,e=z.find_among_b(j,4),e&&(z.bra=z.cursor,c()&&(z.slice_del(),1==e&&(z.ket=z.cursor,z.eq_s_b(2,"at")&&(z.bra=z.cursor,c()&&z.slice_del()))));break;case 6:if(!c())return!1;z.slice_del(),z.ket=z.cursor,e=z.find_among_b(C,3),e&&(z.bra=z.cursor,1==e&&c()&&z.slice_del());break;case 7:if(!c())return!1;z.slice_del(),z.ket=z.cursor,e=z.find_among_b(P,3),e&&(z.bra=z.cursor,1==e&&c()&&z.slice_del());break;case 8:if(!c())return!1;z.slice_del(),z.ket=z.cursor,z.eq_s_b(2,"at")&&(z.bra=z.cursor,c()&&z.slice_del());break;case 9:if(!w()||!z.eq_s_b(1,"e"))return!1;z.slice_from("ir")}return!0}function f(){var e,r;if(z.cursor>=g){if(r=z.limit_backward,z.limit_backward=g,z.ket=z.cursor,e=z.find_among_b(S,120))return z.bra=z.cursor,1==e&&z.slice_del(),z.limit_backward=r,!0;z.limit_backward=r}return!1}function d(){var e;z.ket=z.cursor,(e=z.find_among_b(W,7))&&(z.bra=z.cursor,1==e&&w()&&z.slice_del())}function v(e,r){if(z.eq_s_b(1,e)){z.bra=z.cursor;var s=z.limit-z.cursor;if(z.eq_s_b(1,r))return z.cursor=z.limit-s,w()&&z.slice_del(),!1}return!0}function p(){var e;if(z.ket=z.cursor,e=z.find_among_b(L,4))switch(z.bra=z.cursor,e){case 1:w()&&(z.slice_del(),z.ket=z.cursor,z.limit-z.cursor,v("u","g")&&v("i","c"));break;case 2:z.slice_from("c")}}function _(){if(!l()&&(z.cursor=z.limit,!f()))return z.cursor=z.limit,void d();z.cursor=z.limit,z.ket=z.cursor,z.eq_s_b(1,"i")&&(z.bra=z.cursor,z.eq_s_b(1,"c")&&(z.cursor=z.limit,w()&&z.slice_del()))}var h,b,g,k=[new r("",-1,3),new r("ã",0,1),new r("õ",0,2)],q=[new r("",-1,3),new r("a~",0,1),new r("o~",0,2)],j=[new r("ic",-1,-1),new r("ad",-1,-1),new r("os",-1,-1),new r("iv",-1,1)],C=[new r("ante",-1,1),new r("avel",-1,1),new r("ível",-1,1)],P=[new r("ic",-1,1),new r("abil",-1,1),new r("iv",-1,1)],F=[new r("ica",-1,1),new r("ância",-1,1),new r("ência",-1,4),new r("ira",-1,9),new r("adora",-1,1),new r("osa",-1,1),new r("ista",-1,1),new r("iva",-1,8),new r("eza",-1,1),new r("logía",-1,2),new r("idade",-1,7),new r("ante",-1,1),new r("mente",-1,6),new r("amente",12,5),new r("ável",-1,1),new r("ível",-1,1),new r("ución",-1,3),new r("ico",-1,1),new r("ismo",-1,1),new r("oso",-1,1),new r("amento",-1,1),new r("imento",-1,1),new r("ivo",-1,8),new r("aça~o",-1,1),new r("ador",-1,1),new r("icas",-1,1),new r("ências",-1,4),new r("iras",-1,9),new r("adoras",-1,1),new r("osas",-1,1),new r("istas",-1,1),new r("ivas",-1,8),new r("ezas",-1,1),new r("logías",-1,2),new r("idades",-1,7),new r("uciones",-1,3),new r("adores",-1,1),new r("antes",-1,1),new r("aço~es",-1,1),new r("icos",-1,1),new r("ismos",-1,1),new r("osos",-1,1),new r("amentos",-1,1),new r("imentos",-1,1),new r("ivos",-1,8)],S=[new r("ada",-1,1),new r("ida",-1,1),new r("ia",-1,1),new r("aria",2,1),new r("eria",2,1),new r("iria",2,1),new r("ara",-1,1),new r("era",-1,1),new r("ira",-1,1),new r("ava",-1,1),new r("asse",-1,1),new r("esse",-1,1),new r("isse",-1,1),new r("aste",-1,1),new r("este",-1,1),new r("iste",-1,1),new r("ei",-1,1),new r("arei",16,1),new r("erei",16,1),new r("irei",16,1),new r("am",-1,1),new r("iam",20,1),new r("ariam",21,1),new r("eriam",21,1),new r("iriam",21,1),new r("aram",20,1),new r("eram",20,1),new r("iram",20,1),new r("avam",20,1),new r("em",-1,1),new r("arem",29,1),new r("erem",29,1),new r("irem",29,1),new r("assem",29,1),new r("essem",29,1),new r("issem",29,1),new r("ado",-1,1),new r("ido",-1,1),new r("ando",-1,1),new r("endo",-1,1),new r("indo",-1,1),new r("ara~o",-1,1),new r("era~o",-1,1),new r("ira~o",-1,1),new r("ar",-1,1),new r("er",-1,1),new r("ir",-1,1),new r("as",-1,1),new r("adas",47,1),new r("idas",47,1),new r("ias",47,1),new r("arias",50,1),new r("erias",50,1),new r("irias",50,1),new r("aras",47,1),new r("eras",47,1),new r("iras",47,1),new r("avas",47,1),new r("es",-1,1),new r("ardes",58,1),new r("erdes",58,1),new r("irdes",58,1),new r("ares",58,1),new r("eres",58,1),new r("ires",58,1),new r("asses",58,1),new r("esses",58,1),new r("isses",58,1),new r("astes",58,1),new r("estes",58,1),new r("istes",58,1),new r("is",-1,1),new r("ais",71,1),new r("eis",71,1),new r("areis",73,1),new r("ereis",73,1),new r("ireis",73,1),new r("áreis",73,1),new r("éreis",73,1),new r("íreis",73,1),new r("ásseis",73,1),new r("ésseis",73,1),new r("ísseis",73,1),new r("áveis",73,1),new r("íeis",73,1),new r("aríeis",84,1),new r("eríeis",84,1),new r("iríeis",84,1),new r("ados",-1,1),new r("idos",-1,1),new r("amos",-1,1),new r("áramos",90,1),new r("éramos",90,1),new r("íramos",90,1),new r("ávamos",90,1),new r("íamos",90,1),new r("aríamos",95,1),new r("eríamos",95,1),new r("iríamos",95,1),new r("emos",-1,1),new r("aremos",99,1),new r("eremos",99,1),new r("iremos",99,1),new r("ássemos",99,1),new r("êssemos",99,1),new r("íssemos",99,1),new r("imos",-1,1),new r("armos",-1,1),new r("ermos",-1,1),new r("irmos",-1,1),new r("ámos",-1,1),new r("arás",-1,1),new r("erás",-1,1),new r("irás",-1,1),new r("eu",-1,1),new r("iu",-1,1),new r("ou",-1,1),new r("ará",-1,1),new r("erá",-1,1),new r("irá",-1,1)],W=[new r("a",-1,1),new r("i",-1,1),new r("o",-1,1),new r("os",-1,1),new r("á",-1,1),new r("í",-1,1),new r("ó",-1,1)],L=[new r("e",-1,1),new r("ç",-1,2),new r("é",-1,1),new r("ê",-1,1)],y=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,19,12,2],z=new s;this.setCurrent=function(e){z.setCurrent(e)},this.getCurrent=function(){return z.getCurrent()},this.stem=function(){var r=z.cursor;return e(),z.cursor=r,a(),z.limit_backward=r,z.cursor=z.limit,_(),z.cursor=z.limit,p(),z.cursor=z.limit_backward,u(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.pt.stemmer,"stemmer-pt"),e.pt.stopWordFilter=e.generateStopWordFilter("a ao aos aquela aquelas aquele aqueles aquilo as até com como da das de dela delas dele deles depois do dos e ela elas ele eles em entre era eram essa essas esse esses esta estamos estas estava estavam este esteja estejam estejamos estes esteve estive estivemos estiver estivera estiveram estiverem estivermos estivesse estivessem estivéramos estivéssemos estou está estávamos estão eu foi fomos for fora foram forem formos fosse fossem fui fôramos fôssemos haja hajam hajamos havemos hei houve houvemos houver houvera houveram houverei houverem houveremos houveria houveriam houvermos houverá houverão houveríamos houvesse houvessem houvéramos houvéssemos há hão isso isto já lhe lhes mais mas me mesmo meu meus minha minhas muito na nas nem no nos nossa nossas nosso nossos num numa não nós o os ou para pela pelas pelo pelos por qual quando que quem se seja sejam sejamos sem serei seremos seria seriam será serão seríamos seu seus somos sou sua suas são só também te tem temos tenha tenham tenhamos tenho terei teremos teria teriam terá terão teríamos teu teus teve tinha tinham tive tivemos tiver tivera tiveram tiverem tivermos tivesse tivessem tivéramos tivéssemos tu tua tuas tém tínhamos um uma você vocês vos à às éramos".split(" ")),e.Pipeline.registerFunction(e.pt.stopWordFilter,"stopWordFilter-pt")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.ro.min.js b/docs/material/assets/javascripts/lunr/min/lunr.ro.min.js new file mode 100644 index 000000000..727714018 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.ro.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Romanian` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ro=function(){this.pipeline.reset(),this.pipeline.add(e.ro.trimmer,e.ro.stopWordFilter,e.ro.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ro.stemmer))},e.ro.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.ro.trimmer=e.trimmerSupport.generateTrimmer(e.ro.wordCharacters),e.Pipeline.registerFunction(e.ro.trimmer,"trimmer-ro"),e.ro.stemmer=function(){var i=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,n=new function(){function e(e,i){L.eq_s(1,e)&&(L.ket=L.cursor,L.in_grouping(W,97,259)&&L.slice_from(i))}function n(){for(var i,r;;){if(i=L.cursor,L.in_grouping(W,97,259)&&(r=L.cursor,L.bra=r,e("u","U"),L.cursor=r,e("i","I")),L.cursor=i,L.cursor>=L.limit)break;L.cursor++}}function t(){if(L.out_grouping(W,97,259)){for(;!L.in_grouping(W,97,259);){if(L.cursor>=L.limit)return!0;L.cursor++}return!1}return!0}function a(){if(L.in_grouping(W,97,259))for(;!L.out_grouping(W,97,259);){if(L.cursor>=L.limit)return!0;L.cursor++}return!1}function o(){var e,i,r=L.cursor;if(L.in_grouping(W,97,259)){if(e=L.cursor,!t())return void(h=L.cursor);if(L.cursor=e,!a())return void(h=L.cursor)}L.cursor=r,L.out_grouping(W,97,259)&&(i=L.cursor,t()&&(L.cursor=i,L.in_grouping(W,97,259)&&L.cursor=L.limit)return!1;L.cursor++}for(;!L.out_grouping(W,97,259);){if(L.cursor>=L.limit)return!1;L.cursor++}return!0}function c(){var e=L.cursor;h=L.limit,k=h,g=h,o(),L.cursor=e,u()&&(k=L.cursor,u()&&(g=L.cursor))}function s(){for(var e;;){if(L.bra=L.cursor,e=L.find_among(z,3))switch(L.ket=L.cursor,e){case 1:L.slice_from("i");continue;case 2:L.slice_from("u");continue;case 3:if(L.cursor>=L.limit)break;L.cursor++;continue}break}}function w(){return h<=L.cursor}function m(){return k<=L.cursor}function l(){return g<=L.cursor}function f(){var e,i;if(L.ket=L.cursor,(e=L.find_among_b(C,16))&&(L.bra=L.cursor,m()))switch(e){case 1:L.slice_del();break;case 2:L.slice_from("a");break;case 3:L.slice_from("e");break;case 4:L.slice_from("i");break;case 5:i=L.limit-L.cursor,L.eq_s_b(2,"ab")||(L.cursor=L.limit-i,L.slice_from("i"));break;case 6:L.slice_from("at");break;case 7:L.slice_from("aţi")}}function p(){var e,i=L.limit-L.cursor;if(L.ket=L.cursor,(e=L.find_among_b(P,46))&&(L.bra=L.cursor,m())){switch(e){case 1:L.slice_from("abil");break;case 2:L.slice_from("ibil");break;case 3:L.slice_from("iv");break;case 4:L.slice_from("ic");break;case 5:L.slice_from("at");break;case 6:L.slice_from("it")}return _=!0,L.cursor=L.limit-i,!0}return!1}function d(){var e,i;for(_=!1;;)if(i=L.limit-L.cursor,!p()){L.cursor=L.limit-i;break}if(L.ket=L.cursor,(e=L.find_among_b(F,62))&&(L.bra=L.cursor,l())){switch(e){case 1:L.slice_del();break;case 2:L.eq_s_b(1,"ţ")&&(L.bra=L.cursor,L.slice_from("t"));break;case 3:L.slice_from("ist")}_=!0}}function b(){var e,i,r;if(L.cursor>=h){if(i=L.limit_backward,L.limit_backward=h,L.ket=L.cursor,e=L.find_among_b(q,94))switch(L.bra=L.cursor,e){case 1:if(r=L.limit-L.cursor,!L.out_grouping_b(W,97,259)&&(L.cursor=L.limit-r,!L.eq_s_b(1,"u")))break;case 2:L.slice_del()}L.limit_backward=i}}function v(){var e;L.ket=L.cursor,(e=L.find_among_b(S,5))&&(L.bra=L.cursor,w()&&1==e&&L.slice_del())}var _,g,k,h,z=[new i("",-1,3),new i("I",0,1),new i("U",0,2)],C=[new i("ea",-1,3),new i("aţia",-1,7),new i("aua",-1,2),new i("iua",-1,4),new i("aţie",-1,7),new i("ele",-1,3),new i("ile",-1,5),new i("iile",6,4),new i("iei",-1,4),new i("atei",-1,6),new i("ii",-1,4),new i("ului",-1,1),new i("ul",-1,1),new i("elor",-1,3),new i("ilor",-1,4),new i("iilor",14,4)],P=[new i("icala",-1,4),new i("iciva",-1,4),new i("ativa",-1,5),new i("itiva",-1,6),new i("icale",-1,4),new i("aţiune",-1,5),new i("iţiune",-1,6),new i("atoare",-1,5),new i("itoare",-1,6),new i("ătoare",-1,5),new i("icitate",-1,4),new i("abilitate",-1,1),new i("ibilitate",-1,2),new i("ivitate",-1,3),new i("icive",-1,4),new i("ative",-1,5),new i("itive",-1,6),new i("icali",-1,4),new i("atori",-1,5),new i("icatori",18,4),new i("itori",-1,6),new i("ători",-1,5),new i("icitati",-1,4),new i("abilitati",-1,1),new i("ivitati",-1,3),new i("icivi",-1,4),new i("ativi",-1,5),new i("itivi",-1,6),new i("icităi",-1,4),new i("abilităi",-1,1),new i("ivităi",-1,3),new i("icităţi",-1,4),new i("abilităţi",-1,1),new i("ivităţi",-1,3),new i("ical",-1,4),new i("ator",-1,5),new i("icator",35,4),new i("itor",-1,6),new i("ător",-1,5),new i("iciv",-1,4),new i("ativ",-1,5),new i("itiv",-1,6),new i("icală",-1,4),new i("icivă",-1,4),new i("ativă",-1,5),new i("itivă",-1,6)],F=[new i("ica",-1,1),new i("abila",-1,1),new i("ibila",-1,1),new i("oasa",-1,1),new i("ata",-1,1),new i("ita",-1,1),new i("anta",-1,1),new i("ista",-1,3),new i("uta",-1,1),new i("iva",-1,1),new i("ic",-1,1),new i("ice",-1,1),new i("abile",-1,1),new i("ibile",-1,1),new i("isme",-1,3),new i("iune",-1,2),new i("oase",-1,1),new i("ate",-1,1),new i("itate",17,1),new i("ite",-1,1),new i("ante",-1,1),new i("iste",-1,3),new i("ute",-1,1),new i("ive",-1,1),new i("ici",-1,1),new i("abili",-1,1),new i("ibili",-1,1),new i("iuni",-1,2),new i("atori",-1,1),new i("osi",-1,1),new i("ati",-1,1),new i("itati",30,1),new i("iti",-1,1),new i("anti",-1,1),new i("isti",-1,3),new i("uti",-1,1),new i("işti",-1,3),new i("ivi",-1,1),new i("ităi",-1,1),new i("oşi",-1,1),new i("ităţi",-1,1),new i("abil",-1,1),new i("ibil",-1,1),new i("ism",-1,3),new i("ator",-1,1),new i("os",-1,1),new i("at",-1,1),new i("it",-1,1),new i("ant",-1,1),new i("ist",-1,3),new i("ut",-1,1),new i("iv",-1,1),new i("ică",-1,1),new i("abilă",-1,1),new i("ibilă",-1,1),new i("oasă",-1,1),new i("ată",-1,1),new i("ită",-1,1),new i("antă",-1,1),new i("istă",-1,3),new i("ută",-1,1),new i("ivă",-1,1)],q=[new i("ea",-1,1),new i("ia",-1,1),new i("esc",-1,1),new i("ăsc",-1,1),new i("ind",-1,1),new i("ând",-1,1),new i("are",-1,1),new i("ere",-1,1),new i("ire",-1,1),new i("âre",-1,1),new i("se",-1,2),new i("ase",10,1),new i("sese",10,2),new i("ise",10,1),new i("use",10,1),new i("âse",10,1),new i("eşte",-1,1),new i("ăşte",-1,1),new i("eze",-1,1),new i("ai",-1,1),new i("eai",19,1),new i("iai",19,1),new i("sei",-1,2),new i("eşti",-1,1),new i("ăşti",-1,1),new i("ui",-1,1),new i("ezi",-1,1),new i("âi",-1,1),new i("aşi",-1,1),new i("seşi",-1,2),new i("aseşi",29,1),new i("seseşi",29,2),new i("iseşi",29,1),new i("useşi",29,1),new i("âseşi",29,1),new i("işi",-1,1),new i("uşi",-1,1),new i("âşi",-1,1),new i("aţi",-1,2),new i("eaţi",38,1),new i("iaţi",38,1),new i("eţi",-1,2),new i("iţi",-1,2),new i("âţi",-1,2),new i("arăţi",-1,1),new i("serăţi",-1,2),new i("aserăţi",45,1),new i("seserăţi",45,2),new i("iserăţi",45,1),new i("userăţi",45,1),new i("âserăţi",45,1),new i("irăţi",-1,1),new i("urăţi",-1,1),new i("ârăţi",-1,1),new i("am",-1,1),new i("eam",54,1),new i("iam",54,1),new i("em",-1,2),new i("asem",57,1),new i("sesem",57,2),new i("isem",57,1),new i("usem",57,1),new i("âsem",57,1),new i("im",-1,2),new i("âm",-1,2),new i("ăm",-1,2),new i("arăm",65,1),new i("serăm",65,2),new i("aserăm",67,1),new i("seserăm",67,2),new i("iserăm",67,1),new i("userăm",67,1),new i("âserăm",67,1),new i("irăm",65,1),new i("urăm",65,1),new i("ârăm",65,1),new i("au",-1,1),new i("eau",76,1),new i("iau",76,1),new i("indu",-1,1),new i("ându",-1,1),new i("ez",-1,1),new i("ească",-1,1),new i("ară",-1,1),new i("seră",-1,2),new i("aseră",84,1),new i("seseră",84,2),new i("iseră",84,1),new i("useră",84,1),new i("âseră",84,1),new i("iră",-1,1),new i("ură",-1,1),new i("âră",-1,1),new i("ează",-1,1)],S=[new i("a",-1,1),new i("e",-1,1),new i("ie",1,1),new i("i",-1,1),new i("ă",-1,1)],W=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,32,0,0,4],L=new r;this.setCurrent=function(e){L.setCurrent(e)},this.getCurrent=function(){return L.getCurrent()},this.stem=function(){var e=L.cursor;return n(),L.cursor=e,c(),L.limit_backward=e,L.cursor=L.limit,f(),L.cursor=L.limit,d(),L.cursor=L.limit,_||(L.cursor=L.limit,b(),L.cursor=L.limit),v(),L.cursor=L.limit_backward,s(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}}(),e.Pipeline.registerFunction(e.ro.stemmer,"stemmer-ro"),e.ro.stopWordFilter=e.generateStopWordFilter("acea aceasta această aceea acei aceia acel acela acele acelea acest acesta aceste acestea aceşti aceştia acolo acord acum ai aia aibă aici al ale alea altceva altcineva am ar are asemenea asta astea astăzi asupra au avea avem aveţi azi aş aşadar aţi bine bucur bună ca care caut ce cel ceva chiar cinci cine cineva contra cu cum cumva curând curînd când cât câte câtva câţi cînd cît cîte cîtva cîţi că căci cărei căror cărui către da dacă dar datorită dată dau de deci deja deoarece departe deşi din dinaintea dintr- dintre doi doilea două drept după dă ea ei el ele eram este eu eşti face fata fi fie fiecare fii fim fiu fiţi frumos fără graţie halbă iar ieri la le li lor lui lângă lîngă mai mea mei mele mereu meu mi mie mine mult multă mulţi mulţumesc mâine mîine mă ne nevoie nici nicăieri nimeni nimeri nimic nişte noastre noastră noi noroc nostru nouă noştri nu opt ori oricare orice oricine oricum oricând oricât oricînd oricît oriunde patra patru patrulea pe pentru peste pic poate pot prea prima primul prin puţin puţina puţină până pînă rog sa sale sau se spate spre sub sunt suntem sunteţi sută sînt sîntem sînteţi să săi său ta tale te timp tine toate toată tot totuşi toţi trei treia treilea tu tăi tău un una unde undeva unei uneia unele uneori unii unor unora unu unui unuia unul vi voastre voastră voi vostru vouă voştri vreme vreo vreun vă zece zero zi zice îi îl îmi împotriva în înainte înaintea încotro încât încît între întrucât întrucît îţi ăla ălea ăsta ăstea ăştia şapte şase şi ştiu ţi ţie".split(" ")),e.Pipeline.registerFunction(e.ro.stopWordFilter,"stopWordFilter-ro")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.ru.min.js b/docs/material/assets/javascripts/lunr/min/lunr.ru.min.js new file mode 100644 index 000000000..186cc485c --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.ru.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Russian` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ru=function(){this.pipeline.reset(),this.pipeline.add(e.ru.trimmer,e.ru.stopWordFilter,e.ru.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ru.stemmer))},e.ru.wordCharacters="Ѐ-҄҇-ԯᴫᵸⷠ-ⷿꙀ-ꚟ︮︯",e.ru.trimmer=e.trimmerSupport.generateTrimmer(e.ru.wordCharacters),e.Pipeline.registerFunction(e.ru.trimmer,"trimmer-ru"),e.ru.stemmer=function(){var n=e.stemmerSupport.Among,r=e.stemmerSupport.SnowballProgram,t=new function(){function e(){for(;!W.in_grouping(S,1072,1103);){if(W.cursor>=W.limit)return!1;W.cursor++}return!0}function t(){for(;!W.out_grouping(S,1072,1103);){if(W.cursor>=W.limit)return!1;W.cursor++}return!0}function w(){b=W.limit,_=b,e()&&(b=W.cursor,t()&&e()&&t()&&(_=W.cursor))}function i(){return _<=W.cursor}function u(e,n){var r,t;if(W.ket=W.cursor,r=W.find_among_b(e,n)){switch(W.bra=W.cursor,r){case 1:if(t=W.limit-W.cursor,!W.eq_s_b(1,"а")&&(W.cursor=W.limit-t,!W.eq_s_b(1,"я")))return!1;case 2:W.slice_del()}return!0}return!1}function o(){return u(h,9)}function s(e,n){var r;return W.ket=W.cursor,!!(r=W.find_among_b(e,n))&&(W.bra=W.cursor,1==r&&W.slice_del(),!0)}function c(){return s(g,26)}function m(){return!!c()&&(u(C,8),!0)}function f(){return s(k,2)}function l(){return u(P,46)}function a(){s(v,36)}function p(){var e;W.ket=W.cursor,(e=W.find_among_b(F,2))&&(W.bra=W.cursor,i()&&1==e&&W.slice_del())}function d(){var e;if(W.ket=W.cursor,e=W.find_among_b(q,4))switch(W.bra=W.cursor,e){case 1:if(W.slice_del(),W.ket=W.cursor,!W.eq_s_b(1,"н"))break;W.bra=W.cursor;case 2:if(!W.eq_s_b(1,"н"))break;case 3:W.slice_del()}}var _,b,h=[new n("в",-1,1),new n("ив",0,2),new n("ыв",0,2),new n("вши",-1,1),new n("ивши",3,2),new n("ывши",3,2),new n("вшись",-1,1),new n("ившись",6,2),new n("ывшись",6,2)],g=[new n("ее",-1,1),new n("ие",-1,1),new n("ое",-1,1),new n("ые",-1,1),new n("ими",-1,1),new n("ыми",-1,1),new n("ей",-1,1),new n("ий",-1,1),new n("ой",-1,1),new n("ый",-1,1),new n("ем",-1,1),new n("им",-1,1),new n("ом",-1,1),new n("ым",-1,1),new n("его",-1,1),new n("ого",-1,1),new n("ему",-1,1),new n("ому",-1,1),new n("их",-1,1),new n("ых",-1,1),new n("ею",-1,1),new n("ою",-1,1),new n("ую",-1,1),new n("юю",-1,1),new n("ая",-1,1),new n("яя",-1,1)],C=[new n("ем",-1,1),new n("нн",-1,1),new n("вш",-1,1),new n("ивш",2,2),new n("ывш",2,2),new n("щ",-1,1),new n("ющ",5,1),new n("ующ",6,2)],k=[new n("сь",-1,1),new n("ся",-1,1)],P=[new n("ла",-1,1),new n("ила",0,2),new n("ыла",0,2),new n("на",-1,1),new n("ена",3,2),new n("ете",-1,1),new n("ите",-1,2),new n("йте",-1,1),new n("ейте",7,2),new n("уйте",7,2),new n("ли",-1,1),new n("или",10,2),new n("ыли",10,2),new n("й",-1,1),new n("ей",13,2),new n("уй",13,2),new n("л",-1,1),new n("ил",16,2),new n("ыл",16,2),new n("ем",-1,1),new n("им",-1,2),new n("ым",-1,2),new n("н",-1,1),new n("ен",22,2),new n("ло",-1,1),new n("ило",24,2),new n("ыло",24,2),new n("но",-1,1),new n("ено",27,2),new n("нно",27,1),new n("ет",-1,1),new n("ует",30,2),new n("ит",-1,2),new n("ыт",-1,2),new n("ют",-1,1),new n("уют",34,2),new n("ят",-1,2),new n("ны",-1,1),new n("ены",37,2),new n("ть",-1,1),new n("ить",39,2),new n("ыть",39,2),new n("ешь",-1,1),new n("ишь",-1,2),new n("ю",-1,2),new n("ую",44,2)],v=[new n("а",-1,1),new n("ев",-1,1),new n("ов",-1,1),new n("е",-1,1),new n("ие",3,1),new n("ье",3,1),new n("и",-1,1),new n("еи",6,1),new n("ии",6,1),new n("ами",6,1),new n("ями",6,1),new n("иями",10,1),new n("й",-1,1),new n("ей",12,1),new n("ией",13,1),new n("ий",12,1),new n("ой",12,1),new n("ам",-1,1),new n("ем",-1,1),new n("ием",18,1),new n("ом",-1,1),new n("ям",-1,1),new n("иям",21,1),new n("о",-1,1),new n("у",-1,1),new n("ах",-1,1),new n("ях",-1,1),new n("иях",26,1),new n("ы",-1,1),new n("ь",-1,1),new n("ю",-1,1),new n("ию",30,1),new n("ью",30,1),new n("я",-1,1),new n("ия",33,1),new n("ья",33,1)],F=[new n("ост",-1,1),new n("ость",-1,1)],q=[new n("ейше",-1,1),new n("н",-1,2),new n("ейш",-1,1),new n("ь",-1,3)],S=[33,65,8,232],W=new r;this.setCurrent=function(e){W.setCurrent(e)},this.getCurrent=function(){return W.getCurrent()},this.stem=function(){return w(),W.cursor=W.limit,!(W.cursor=i&&(e-=i,t[e>>3]&1<<(7&e)))return this.cursor++,!0}return!1},in_grouping_b:function(t,i,s){if(this.cursor>this.limit_backward){var e=r.charCodeAt(this.cursor-1);if(e<=s&&e>=i&&(e-=i,t[e>>3]&1<<(7&e)))return this.cursor--,!0}return!1},out_grouping:function(t,i,s){if(this.cursors||e>3]&1<<(7&e)))return this.cursor++,!0}return!1},out_grouping_b:function(t,i,s){if(this.cursor>this.limit_backward){var e=r.charCodeAt(this.cursor-1);if(e>s||e>3]&1<<(7&e)))return this.cursor--,!0}return!1},eq_s:function(t,i){if(this.limit-this.cursor>1),f=0,l=o0||e==s||c)break;c=!0}}for(;;){var _=t[s];if(o>=_.s_size){if(this.cursor=n+_.s_size,!_.method)return _.result;var b=_.method();if(this.cursor=n+_.s_size,b)return _.result}if((s=_.substring_i)<0)return 0}},find_among_b:function(t,i){for(var s=0,e=i,n=this.cursor,u=this.limit_backward,o=0,h=0,c=!1;;){for(var a=s+(e-s>>1),f=0,l=o=0;m--){if(n-l==u){f=-1;break}if(f=r.charCodeAt(n-1-l)-_.s[m])break;l++}if(f<0?(e=a,h=l):(s=a,o=l),e-s<=1){if(s>0||e==s||c)break;c=!0}}for(;;){var _=t[s];if(o>=_.s_size){if(this.cursor=n-_.s_size,!_.method)return _.result;var b=_.method();if(this.cursor=n-_.s_size,b)return _.result}if((s=_.substring_i)<0)return 0}},replace_s:function(t,i,s){var e=s.length-(i-t),n=r.substring(0,t),u=r.substring(i);return r=n+s+u,this.limit+=e,this.cursor>=i?this.cursor+=e:this.cursor>t&&(this.cursor=t),e},slice_check:function(){if(this.bra<0||this.bra>this.ket||this.ket>this.limit||this.limit>r.length)throw"faulty slice operation"},slice_from:function(r){this.slice_check(),this.replace_s(this.bra,this.ket,r)},slice_del:function(){this.slice_from("")},insert:function(r,t,i){var s=this.replace_s(r,t,i);r<=this.bra&&(this.bra+=s),r<=this.ket&&(this.ket+=s)},slice_to:function(){return this.slice_check(),r.substring(this.bra,this.ket)},eq_v_b:function(r){return this.eq_s_b(r.length,r)}}}},r.trimmerSupport={generateTrimmer:function(r){var t=new RegExp("^[^"+r+"]+"),i=new RegExp("[^"+r+"]+$");return function(r){return"function"==typeof r.update?r.update(function(r){return r.replace(t,"").replace(i,"")}):r.replace(t,"").replace(i,"")}}}}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.sv.min.js b/docs/material/assets/javascripts/lunr/min/lunr.sv.min.js new file mode 100644 index 000000000..3e5eb6400 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.sv.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Swedish` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.sv=function(){this.pipeline.reset(),this.pipeline.add(e.sv.trimmer,e.sv.stopWordFilter,e.sv.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.sv.stemmer))},e.sv.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.sv.trimmer=e.trimmerSupport.generateTrimmer(e.sv.wordCharacters),e.Pipeline.registerFunction(e.sv.trimmer,"trimmer-sv"),e.sv.stemmer=function(){var r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,t=new function(){function e(){var e,r=w.cursor+3;if(o=w.limit,0<=r||r<=w.limit){for(a=r;;){if(e=w.cursor,w.in_grouping(l,97,246)){w.cursor=e;break}if(w.cursor=e,w.cursor>=w.limit)return;w.cursor++}for(;!w.out_grouping(l,97,246);){if(w.cursor>=w.limit)return;w.cursor++}o=w.cursor,o=o&&(w.limit_backward=o,w.cursor=w.limit,w.ket=w.cursor,e=w.find_among_b(u,37),w.limit_backward=r,e))switch(w.bra=w.cursor,e){case 1:w.slice_del();break;case 2:w.in_grouping_b(d,98,121)&&w.slice_del()}}function i(){var e=w.limit_backward;w.cursor>=o&&(w.limit_backward=o,w.cursor=w.limit,w.find_among_b(c,7)&&(w.cursor=w.limit,w.ket=w.cursor,w.cursor>w.limit_backward&&(w.bra=--w.cursor,w.slice_del())),w.limit_backward=e)}function s(){var e,r;if(w.cursor>=o){if(r=w.limit_backward,w.limit_backward=o,w.cursor=w.limit,w.ket=w.cursor,e=w.find_among_b(m,5))switch(w.bra=w.cursor,e){case 1:w.slice_del();break;case 2:w.slice_from("lös");break;case 3:w.slice_from("full")}w.limit_backward=r}}var a,o,u=[new r("a",-1,1),new r("arna",0,1),new r("erna",0,1),new r("heterna",2,1),new r("orna",0,1),new r("ad",-1,1),new r("e",-1,1),new r("ade",6,1),new r("ande",6,1),new r("arne",6,1),new r("are",6,1),new r("aste",6,1),new r("en",-1,1),new r("anden",12,1),new r("aren",12,1),new r("heten",12,1),new r("ern",-1,1),new r("ar",-1,1),new r("er",-1,1),new r("heter",18,1),new r("or",-1,1),new r("s",-1,2),new r("as",21,1),new r("arnas",22,1),new r("ernas",22,1),new r("ornas",22,1),new r("es",21,1),new r("ades",26,1),new r("andes",26,1),new r("ens",21,1),new r("arens",29,1),new r("hetens",29,1),new r("erns",21,1),new r("at",-1,1),new r("andet",-1,1),new r("het",-1,1),new r("ast",-1,1)],c=[new r("dd",-1,-1),new r("gd",-1,-1),new r("nn",-1,-1),new r("dt",-1,-1),new r("gt",-1,-1),new r("kt",-1,-1),new r("tt",-1,-1)],m=[new r("ig",-1,1),new r("lig",0,1),new r("els",-1,1),new r("fullt",-1,3),new r("löst",-1,2)],l=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,24,0,32],d=[119,127,149],w=new n;this.setCurrent=function(e){w.setCurrent(e)},this.getCurrent=function(){return w.getCurrent()},this.stem=function(){var r=w.cursor;return e(),w.limit_backward=r,w.cursor=w.limit,t(),w.cursor=w.limit,i(),w.cursor=w.limit,s(),!0}};return function(e){return"function"==typeof e.update?e.update(function(e){return t.setCurrent(e),t.stem(),t.getCurrent()}):(t.setCurrent(e),t.stem(),t.getCurrent())}}(),e.Pipeline.registerFunction(e.sv.stemmer,"stemmer-sv"),e.sv.stopWordFilter=e.generateStopWordFilter("alla allt att av blev bli blir blivit de dem den denna deras dess dessa det detta dig din dina ditt du där då efter ej eller en er era ert ett från för ha hade han hans har henne hennes hon honom hur här i icke ingen inom inte jag ju kan kunde man med mellan men mig min mina mitt mot mycket ni nu när någon något några och om oss på samma sedan sig sin sina sitta själv skulle som så sådan sådana sådant till under upp ut utan vad var vara varför varit varje vars vart vem vi vid vilka vilkas vilken vilket vår våra vårt än är åt över".split(" ")),e.Pipeline.registerFunction(e.sv.stopWordFilter,"stopWordFilter-sv")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.tr.min.js b/docs/material/assets/javascripts/lunr/min/lunr.tr.min.js new file mode 100644 index 000000000..563f6ec1f --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.tr.min.js @@ -0,0 +1,18 @@ +/*! + * Lunr languages, `Turkish` language + * https://github.com/MihaiValentin/lunr-languages + * + * Copyright 2014, Mihai Valentin + * http://www.mozilla.org/MPL/ + */ +/*! + * based on + * Snowball JavaScript Library v0.3 + * http://code.google.com/p/urim/ + * http://snowball.tartarus.org/ + * + * Copyright 2010, Oleg Mazko + * http://www.mozilla.org/MPL/ + */ + +!function(r,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(r.lunr)}(this,function(){return function(r){if(void 0===r)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===r.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");r.tr=function(){this.pipeline.reset(),this.pipeline.add(r.tr.trimmer,r.tr.stopWordFilter,r.tr.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(r.tr.stemmer))},r.tr.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",r.tr.trimmer=r.trimmerSupport.generateTrimmer(r.tr.wordCharacters),r.Pipeline.registerFunction(r.tr.trimmer,"trimmer-tr"),r.tr.stemmer=function(){var i=r.stemmerSupport.Among,e=r.stemmerSupport.SnowballProgram,n=new function(){function r(r,i,e){for(;;){var n=Dr.limit-Dr.cursor;if(Dr.in_grouping_b(r,i,e)){Dr.cursor=Dr.limit-n;break}if(Dr.cursor=Dr.limit-n,Dr.cursor<=Dr.limit_backward)return!1;Dr.cursor--}return!0}function n(){var i,e;i=Dr.limit-Dr.cursor,r(Wr,97,305);for(var n=0;nDr.limit_backward&&(Dr.cursor--,e=Dr.limit-Dr.cursor,i()))?(Dr.cursor=Dr.limit-e,!0):(Dr.cursor=Dr.limit-n,r()?(Dr.cursor=Dr.limit-n,!1):(Dr.cursor=Dr.limit-n,!(Dr.cursor<=Dr.limit_backward)&&(Dr.cursor--,!!i()&&(Dr.cursor=Dr.limit-n,!0))))}function u(r){return t(r,function(){return Dr.in_grouping_b(Wr,97,305)})}function o(){return u(function(){return Dr.eq_s_b(1,"n")})}function s(){return u(function(){return Dr.eq_s_b(1,"s")})}function c(){return u(function(){return Dr.eq_s_b(1,"y")})}function l(){return t(function(){return Dr.in_grouping_b(Lr,105,305)},function(){return Dr.out_grouping_b(Wr,97,305)})}function a(){return Dr.find_among_b(ur,10)&&l()}function m(){return n()&&Dr.in_grouping_b(Lr,105,305)&&s()}function d(){return Dr.find_among_b(or,2)}function f(){return n()&&Dr.in_grouping_b(Lr,105,305)&&c()}function b(){return n()&&Dr.find_among_b(sr,4)}function w(){return n()&&Dr.find_among_b(cr,4)&&o()}function _(){return n()&&Dr.find_among_b(lr,2)&&c()}function k(){return n()&&Dr.find_among_b(ar,2)}function p(){return n()&&Dr.find_among_b(mr,4)}function g(){return n()&&Dr.find_among_b(dr,2)}function y(){return n()&&Dr.find_among_b(fr,4)}function z(){return n()&&Dr.find_among_b(br,2)}function v(){return n()&&Dr.find_among_b(wr,2)&&c()}function h(){return Dr.eq_s_b(2,"ki")}function q(){return n()&&Dr.find_among_b(_r,2)&&o()}function C(){return n()&&Dr.find_among_b(kr,4)&&c()}function P(){return n()&&Dr.find_among_b(pr,4)}function F(){return n()&&Dr.find_among_b(gr,4)&&c()}function S(){return Dr.find_among_b(yr,4)}function W(){return n()&&Dr.find_among_b(zr,2)}function L(){return n()&&Dr.find_among_b(vr,4)}function x(){return n()&&Dr.find_among_b(hr,8)}function A(){return Dr.find_among_b(qr,2)}function E(){return n()&&Dr.find_among_b(Cr,32)&&c()}function j(){return Dr.find_among_b(Pr,8)&&c()}function T(){return n()&&Dr.find_among_b(Fr,4)&&c()}function Z(){return Dr.eq_s_b(3,"ken")&&c()}function B(){var r=Dr.limit-Dr.cursor;return!(T()||(Dr.cursor=Dr.limit-r,E()||(Dr.cursor=Dr.limit-r,j()||(Dr.cursor=Dr.limit-r,Z()))))}function D(){if(A()){var r=Dr.limit-Dr.cursor;if(S()||(Dr.cursor=Dr.limit-r,W()||(Dr.cursor=Dr.limit-r,C()||(Dr.cursor=Dr.limit-r,P()||(Dr.cursor=Dr.limit-r,F()||(Dr.cursor=Dr.limit-r))))),T())return!1}return!0}function G(){if(W()){Dr.bra=Dr.cursor,Dr.slice_del();var r=Dr.limit-Dr.cursor;return Dr.ket=Dr.cursor,x()||(Dr.cursor=Dr.limit-r,E()||(Dr.cursor=Dr.limit-r,j()||(Dr.cursor=Dr.limit-r,T()||(Dr.cursor=Dr.limit-r)))),nr=!1,!1}return!0}function H(){if(!L())return!0;var r=Dr.limit-Dr.cursor;return!E()&&(Dr.cursor=Dr.limit-r,!j())}function I(){var r,i=Dr.limit-Dr.cursor;return!(S()||(Dr.cursor=Dr.limit-i,F()||(Dr.cursor=Dr.limit-i,P()||(Dr.cursor=Dr.limit-i,C()))))||(Dr.bra=Dr.cursor,Dr.slice_del(),r=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,T()||(Dr.cursor=Dr.limit-r),!1)}function J(){var r,i=Dr.limit-Dr.cursor;if(Dr.ket=Dr.cursor,nr=!0,B()&&(Dr.cursor=Dr.limit-i,D()&&(Dr.cursor=Dr.limit-i,G()&&(Dr.cursor=Dr.limit-i,H()&&(Dr.cursor=Dr.limit-i,I()))))){if(Dr.cursor=Dr.limit-i,!x())return;Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,r=Dr.limit-Dr.cursor,S()||(Dr.cursor=Dr.limit-r,W()||(Dr.cursor=Dr.limit-r,C()||(Dr.cursor=Dr.limit-r,P()||(Dr.cursor=Dr.limit-r,F()||(Dr.cursor=Dr.limit-r))))),T()||(Dr.cursor=Dr.limit-r)}Dr.bra=Dr.cursor,Dr.slice_del()}function K(){var r,i,e,n;if(Dr.ket=Dr.cursor,h()){if(r=Dr.limit-Dr.cursor,p())return Dr.bra=Dr.cursor,Dr.slice_del(),i=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,W()?(Dr.bra=Dr.cursor,Dr.slice_del(),K()):(Dr.cursor=Dr.limit-i,a()&&(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()))),!0;if(Dr.cursor=Dr.limit-r,w()){if(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,e=Dr.limit-Dr.cursor,d())Dr.bra=Dr.cursor,Dr.slice_del();else{if(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,!a()&&(Dr.cursor=Dr.limit-e,!m()&&(Dr.cursor=Dr.limit-e,!K())))return!0;Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K())}return!0}if(Dr.cursor=Dr.limit-r,g()){if(n=Dr.limit-Dr.cursor,d())Dr.bra=Dr.cursor,Dr.slice_del();else if(Dr.cursor=Dr.limit-n,m())Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K());else if(Dr.cursor=Dr.limit-n,!K())return!1;return!0}}return!1}function M(r){if(Dr.ket=Dr.cursor,!g()&&(Dr.cursor=Dr.limit-r,!k()))return!1;var i=Dr.limit-Dr.cursor;if(d())Dr.bra=Dr.cursor,Dr.slice_del();else if(Dr.cursor=Dr.limit-i,m())Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K());else if(Dr.cursor=Dr.limit-i,!K())return!1;return!0}function N(r){if(Dr.ket=Dr.cursor,!z()&&(Dr.cursor=Dr.limit-r,!b()))return!1;var i=Dr.limit-Dr.cursor;return!(!m()&&(Dr.cursor=Dr.limit-i,!d()))&&(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()),!0)}function O(){var r,i=Dr.limit-Dr.cursor;return Dr.ket=Dr.cursor,!(!w()&&(Dr.cursor=Dr.limit-i,!v()))&&(Dr.bra=Dr.cursor,Dr.slice_del(),r=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,!(!W()||(Dr.bra=Dr.cursor,Dr.slice_del(),!K()))||(Dr.cursor=Dr.limit-r,Dr.ket=Dr.cursor,!(a()||(Dr.cursor=Dr.limit-r,m()||(Dr.cursor=Dr.limit-r,K())))||(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()),!0)))}function Q(){var r,i,e=Dr.limit-Dr.cursor;if(Dr.ket=Dr.cursor,!p()&&(Dr.cursor=Dr.limit-e,!f()&&(Dr.cursor=Dr.limit-e,!_())))return!1;if(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,r=Dr.limit-Dr.cursor,a())Dr.bra=Dr.cursor,Dr.slice_del(),i=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,W()||(Dr.cursor=Dr.limit-i);else if(Dr.cursor=Dr.limit-r,!W())return!0;return Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,K(),!0}function R(){var r,i,e=Dr.limit-Dr.cursor;if(Dr.ket=Dr.cursor,W())return Dr.bra=Dr.cursor,Dr.slice_del(),void K();if(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,q())if(Dr.bra=Dr.cursor,Dr.slice_del(),r=Dr.limit-Dr.cursor,Dr.ket=Dr.cursor,d())Dr.bra=Dr.cursor,Dr.slice_del();else{if(Dr.cursor=Dr.limit-r,Dr.ket=Dr.cursor,!a()&&(Dr.cursor=Dr.limit-r,!m())){if(Dr.cursor=Dr.limit-r,Dr.ket=Dr.cursor,!W())return;if(Dr.bra=Dr.cursor,Dr.slice_del(),!K())return}Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K())}else if(Dr.cursor=Dr.limit-e,!M(e)&&(Dr.cursor=Dr.limit-e,!N(e))){if(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,y())return Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,i=Dr.limit-Dr.cursor,void(a()?(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K())):(Dr.cursor=Dr.limit-i,W()?(Dr.bra=Dr.cursor,Dr.slice_del(),K()):(Dr.cursor=Dr.limit-i,K())));if(Dr.cursor=Dr.limit-e,!O()){if(Dr.cursor=Dr.limit-e,d())return Dr.bra=Dr.cursor,void Dr.slice_del();Dr.cursor=Dr.limit-e,K()||(Dr.cursor=Dr.limit-e,Q()||(Dr.cursor=Dr.limit-e,Dr.ket=Dr.cursor,(a()||(Dr.cursor=Dr.limit-e,m()))&&(Dr.bra=Dr.cursor,Dr.slice_del(),Dr.ket=Dr.cursor,W()&&(Dr.bra=Dr.cursor,Dr.slice_del(),K()))))}}}function U(){var r;if(Dr.ket=Dr.cursor,r=Dr.find_among_b(Sr,4))switch(Dr.bra=Dr.cursor,r){case 1:Dr.slice_from("p");break;case 2:Dr.slice_from("ç");break;case 3:Dr.slice_from("t");break;case 4:Dr.slice_from("k")}}function V(){for(;;){var r=Dr.limit-Dr.cursor;if(Dr.in_grouping_b(Wr,97,305)){Dr.cursor=Dr.limit-r;break}if(Dr.cursor=Dr.limit-r,Dr.cursor<=Dr.limit_backward)return!1;Dr.cursor--}return!0}function X(r,i,e){if(Dr.cursor=Dr.limit-r,V()){var n=Dr.limit-Dr.cursor;if(!Dr.eq_s_b(1,i)&&(Dr.cursor=Dr.limit-n,!Dr.eq_s_b(1,e)))return!0;Dr.cursor=Dr.limit-r;var t=Dr.cursor;return Dr.insert(Dr.cursor,Dr.cursor,e),Dr.cursor=t,!1}return!0}function Y(){var r=Dr.limit-Dr.cursor;(Dr.eq_s_b(1,"d")||(Dr.cursor=Dr.limit-r,Dr.eq_s_b(1,"g")))&&X(r,"a","ı")&&X(r,"e","i")&&X(r,"o","u")&&X(r,"ö","ü")}function $(){for(var r,i=Dr.cursor,e=2;;){for(r=Dr.cursor;!Dr.in_grouping(Wr,97,305);){if(Dr.cursor>=Dr.limit)return Dr.cursor=r,!(e>0)&&(Dr.cursor=i,!0);Dr.cursor++}e--}}function rr(r,i,e){for(;!Dr.eq_s(i,e);){if(Dr.cursor>=Dr.limit)return!0;Dr.cursor++}return(tr=i)!=Dr.limit||(Dr.cursor=r,!1)}function ir(){var r=Dr.cursor;return!rr(r,2,"ad")||(Dr.cursor=r,!rr(r,5,"soyad"))}function er(){var r=Dr.cursor;return!ir()&&(Dr.limit_backward=r,Dr.cursor=Dr.limit,Y(),Dr.cursor=Dr.limit,U(),!0)}var nr,tr,ur=[new i("m",-1,-1),new i("n",-1,-1),new i("miz",-1,-1),new i("niz",-1,-1),new i("muz",-1,-1),new i("nuz",-1,-1),new i("müz",-1,-1),new i("nüz",-1,-1),new i("mız",-1,-1),new i("nız",-1,-1)],or=[new i("leri",-1,-1),new i("ları",-1,-1)],sr=[new i("ni",-1,-1),new i("nu",-1,-1),new i("nü",-1,-1),new i("nı",-1,-1)],cr=[new i("in",-1,-1),new i("un",-1,-1),new i("ün",-1,-1),new i("ın",-1,-1)],lr=[new i("a",-1,-1),new i("e",-1,-1)],ar=[new i("na",-1,-1),new i("ne",-1,-1)],mr=[new i("da",-1,-1),new i("ta",-1,-1),new i("de",-1,-1),new i("te",-1,-1)],dr=[new i("nda",-1,-1),new i("nde",-1,-1)],fr=[new i("dan",-1,-1),new i("tan",-1,-1),new i("den",-1,-1),new i("ten",-1,-1)],br=[new i("ndan",-1,-1),new i("nden",-1,-1)],wr=[new i("la",-1,-1),new i("le",-1,-1)],_r=[new i("ca",-1,-1),new i("ce",-1,-1)],kr=[new i("im",-1,-1),new i("um",-1,-1),new i("üm",-1,-1),new i("ım",-1,-1)],pr=[new i("sin",-1,-1),new i("sun",-1,-1),new i("sün",-1,-1),new i("sın",-1,-1)],gr=[new i("iz",-1,-1),new i("uz",-1,-1),new i("üz",-1,-1),new i("ız",-1,-1)],yr=[new i("siniz",-1,-1),new i("sunuz",-1,-1),new i("sünüz",-1,-1),new i("sınız",-1,-1)],zr=[new i("lar",-1,-1),new i("ler",-1,-1)],vr=[new i("niz",-1,-1),new i("nuz",-1,-1),new i("nüz",-1,-1),new i("nız",-1,-1)],hr=[new i("dir",-1,-1),new i("tir",-1,-1),new i("dur",-1,-1),new i("tur",-1,-1),new i("dür",-1,-1),new i("tür",-1,-1),new i("dır",-1,-1),new i("tır",-1,-1)],qr=[new i("casına",-1,-1),new i("cesine",-1,-1)],Cr=[new i("di",-1,-1),new i("ti",-1,-1),new i("dik",-1,-1),new i("tik",-1,-1),new i("duk",-1,-1),new i("tuk",-1,-1),new i("dük",-1,-1),new i("tük",-1,-1),new i("dık",-1,-1),new i("tık",-1,-1),new i("dim",-1,-1),new i("tim",-1,-1),new i("dum",-1,-1),new i("tum",-1,-1),new i("düm",-1,-1),new i("tüm",-1,-1),new i("dım",-1,-1),new i("tım",-1,-1),new i("din",-1,-1),new i("tin",-1,-1),new i("dun",-1,-1),new i("tun",-1,-1),new i("dün",-1,-1),new i("tün",-1,-1),new i("dın",-1,-1),new i("tın",-1,-1),new i("du",-1,-1),new i("tu",-1,-1),new i("dü",-1,-1),new i("tü",-1,-1),new i("dı",-1,-1),new i("tı",-1,-1)],Pr=[new i("sa",-1,-1),new i("se",-1,-1),new i("sak",-1,-1),new i("sek",-1,-1),new i("sam",-1,-1),new i("sem",-1,-1),new i("san",-1,-1),new i("sen",-1,-1)],Fr=[new i("miş",-1,-1),new i("muş",-1,-1),new i("müş",-1,-1),new i("mış",-1,-1)],Sr=[new i("b",-1,1),new i("c",-1,2),new i("d",-1,3),new i("ğ",-1,4)],Wr=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,8,0,0,0,0,0,0,1],Lr=[1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1],xr=[1,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],Ar=[17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130],Er=[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],jr=[17],Tr=[65],Zr=[65],Br=[["a",xr,97,305],["e",Ar,101,252],["ı",Er,97,305],["i",jr,101,105],["o",Tr,111,117],["ö",Zr,246,252],["u",Tr,111,117]],Dr=new e;this.setCurrent=function(r){Dr.setCurrent(r)},this.getCurrent=function(){return Dr.getCurrent()},this.stem=function(){return!!($()&&(Dr.limit_backward=Dr.cursor,Dr.cursor=Dr.limit,J(),Dr.cursor=Dr.limit,nr&&(R(),Dr.cursor=Dr.limit_backward,er())))}};return function(r){return"function"==typeof r.update?r.update(function(r){return n.setCurrent(r),n.stem(),n.getCurrent()}):(n.setCurrent(r),n.stem(),n.getCurrent())}}(),r.Pipeline.registerFunction(r.tr.stemmer,"stemmer-tr"),r.tr.stopWordFilter=r.generateStopWordFilter("acaba altmış altı ama ancak arada aslında ayrıca bana bazı belki ben benden beni benim beri beş bile bin bir biri birkaç birkez birçok birşey birşeyi biz bizden bize bizi bizim bu buna bunda bundan bunlar bunları bunların bunu bunun burada böyle böylece da daha dahi de defa değil diye diğer doksan dokuz dolayı dolayısıyla dört edecek eden ederek edilecek ediliyor edilmesi ediyor elli en etmesi etti ettiği ettiğini eğer gibi göre halen hangi hatta hem henüz hep hepsi her herhangi herkesin hiç hiçbir iki ile ilgili ise itibaren itibariyle için işte kadar karşın katrilyon kendi kendilerine kendini kendisi kendisine kendisini kez ki kim kimden kime kimi kimse kırk milyar milyon mu mü mı nasıl ne neden nedenle nerde nerede nereye niye niçin o olan olarak oldu olduklarını olduğu olduğunu olmadı olmadığı olmak olması olmayan olmaz olsa olsun olup olur olursa oluyor on ona ondan onlar onlardan onları onların onu onun otuz oysa pek rağmen sadece sanki sekiz seksen sen senden seni senin siz sizden sizi sizin tarafından trilyon tüm var vardı ve veya ya yani yapacak yapmak yaptı yaptıkları yaptığı yaptığını yapılan yapılması yapıyor yedi yerine yetmiş yine yirmi yoksa yüz zaten çok çünkü öyle üzere üç şey şeyden şeyi şeyler şu şuna şunda şundan şunları şunu şöyle".split(" ")),r.Pipeline.registerFunction(r.tr.stopWordFilter,"stopWordFilter-tr")}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/min/lunr.vi.min.js b/docs/material/assets/javascripts/lunr/min/lunr.vi.min.js new file mode 100644 index 000000000..22aed28c4 --- /dev/null +++ b/docs/material/assets/javascripts/lunr/min/lunr.vi.min.js @@ -0,0 +1 @@ +!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.vi=function(){this.pipeline.reset(),this.pipeline.add(e.vi.stopWordFilter,e.vi.trimmer)},e.vi.wordCharacters="[A-Za-ẓ̀͐́͑̉̃̓ÂâÊêÔôĂ-ăĐ-đƠ-ơƯ-ư]",e.vi.trimmer=e.trimmerSupport.generateTrimmer(e.vi.wordCharacters),e.Pipeline.registerFunction(e.vi.trimmer,"trimmer-vi"),e.vi.stopWordFilter=e.generateStopWordFilter("là cái nhưng mà".split(" "))}}); \ No newline at end of file diff --git a/docs/material/assets/javascripts/lunr/tinyseg.min.js b/docs/material/assets/javascripts/lunr/tinyseg.min.js new file mode 100644 index 000000000..02c61e9ce --- /dev/null +++ b/docs/material/assets/javascripts/lunr/tinyseg.min.js @@ -0,0 +1 @@ +!function(_,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(_.lunr)}(this,(function(){return function(_){function t(){var _={"[一二三四五六七八九十百千万億兆]":"M","[一-龠々〆ヵヶ]":"H","[ぁ-ん]":"I","[ァ-ヴーア-ン゙ー]":"K","[a-zA-Za-zA-Z]":"A","[0-90-9]":"N"};for(var t in this.chartype_=[],_){var H=new RegExp(t);this.chartype_.push([H,_[t]])}return this.BIAS__=-332,this.BC1__={HH:6,II:2461,KH:406,OH:-1378},this.BC2__={AA:-3267,AI:2744,AN:-878,HH:-4070,HM:-1711,HN:4012,HO:3761,IA:1327,IH:-1184,II:-1332,IK:1721,IO:5492,KI:3831,KK:-8741,MH:-3132,MK:3334,OO:-2920},this.BC3__={HH:996,HI:626,HK:-721,HN:-1307,HO:-836,IH:-301,KK:2762,MK:1079,MM:4034,OA:-1652,OH:266},this.BP1__={BB:295,OB:304,OO:-125,UB:352},this.BP2__={BO:60,OO:-1762},this.BQ1__={BHH:1150,BHM:1521,BII:-1158,BIM:886,BMH:1208,BNH:449,BOH:-91,BOO:-2597,OHI:451,OIH:-296,OKA:1851,OKH:-1020,OKK:904,OOO:2965},this.BQ2__={BHH:118,BHI:-1159,BHM:466,BIH:-919,BKK:-1720,BKO:864,OHH:-1139,OHM:-181,OIH:153,UHI:-1146},this.BQ3__={BHH:-792,BHI:2664,BII:-299,BKI:419,BMH:937,BMM:8335,BNN:998,BOH:775,OHH:2174,OHM:439,OII:280,OKH:1798,OKI:-793,OKO:-2242,OMH:-2402,OOO:11699},this.BQ4__={BHH:-3895,BIH:3761,BII:-4654,BIK:1348,BKK:-1806,BMI:-3385,BOO:-12396,OAH:926,OHH:266,OHK:-2036,ONN:-973},this.BW1__={",と":660,",同":727,B1あ:1404,B1同:542,"、と":660,"、同":727,"」と":1682,あっ:1505,いう:1743,いっ:-2055,いる:672,うし:-4817,うん:665,から:3472,がら:600,こう:-790,こと:2083,こん:-1262,さら:-4143,さん:4573,した:2641,して:1104,すで:-3399,そこ:1977,それ:-871,たち:1122,ため:601,った:3463,つい:-802,てい:805,てき:1249,でき:1127,です:3445,では:844,とい:-4915,とみ:1922,どこ:3887,ない:5713,なっ:3015,など:7379,なん:-1113,にし:2468,には:1498,にも:1671,に対:-912,の一:-501,の中:741,ませ:2448,まで:1711,まま:2600,まる:-2155,やむ:-1947,よっ:-2565,れた:2369,れで:-913,をし:1860,を見:731,亡く:-1886,京都:2558,取り:-2784,大き:-2604,大阪:1497,平方:-2314,引き:-1336,日本:-195,本当:-2423,毎日:-2113,目指:-724,B1あ:1404,B1同:542,"」と":1682},this.BW2__={"..":-11822,11:-669,"――":-5730,"−−":-13175,いう:-1609,うか:2490,かし:-1350,かも:-602,から:-7194,かれ:4612,がい:853,がら:-3198,きた:1941,くな:-1597,こと:-8392,この:-4193,させ:4533,され:13168,さん:-3977,しい:-1819,しか:-545,した:5078,して:972,しな:939,その:-3744,たい:-1253,たた:-662,ただ:-3857,たち:-786,たと:1224,たは:-939,った:4589,って:1647,っと:-2094,てい:6144,てき:3640,てく:2551,ては:-3110,ても:-3065,でい:2666,でき:-1528,でし:-3828,です:-4761,でも:-4203,とい:1890,とこ:-1746,とと:-2279,との:720,とみ:5168,とも:-3941,ない:-2488,なが:-1313,など:-6509,なの:2614,なん:3099,にお:-1615,にし:2748,にな:2454,によ:-7236,に対:-14943,に従:-4688,に関:-11388,のか:2093,ので:-7059,のに:-6041,のの:-6125,はい:1073,はが:-1033,はず:-2532,ばれ:1813,まし:-1316,まで:-6621,まれ:5409,めて:-3153,もい:2230,もの:-10713,らか:-944,らし:-1611,らに:-1897,りし:651,りま:1620,れた:4270,れて:849,れば:4114,ろう:6067,われ:7901,を通:-11877,んだ:728,んな:-4115,一人:602,一方:-1375,一日:970,一部:-1051,上が:-4479,会社:-1116,出て:2163,分の:-7758,同党:970,同日:-913,大阪:-2471,委員:-1250,少な:-1050,年度:-8669,年間:-1626,府県:-2363,手権:-1982,新聞:-4066,日新:-722,日本:-7068,日米:3372,曜日:-601,朝鮮:-2355,本人:-2697,東京:-1543,然と:-1384,社会:-1276,立て:-990,第に:-1612,米国:-4268,"11":-669},this.BW3__={あた:-2194,あり:719,ある:3846,"い.":-1185,"い。":-1185,いい:5308,いえ:2079,いく:3029,いた:2056,いっ:1883,いる:5600,いわ:1527,うち:1117,うと:4798,えと:1454,"か.":2857,"か。":2857,かけ:-743,かっ:-4098,かに:-669,から:6520,かり:-2670,"が,":1816,"が、":1816,がき:-4855,がけ:-1127,がっ:-913,がら:-4977,がり:-2064,きた:1645,けど:1374,こと:7397,この:1542,ころ:-2757,さい:-714,さを:976,"し,":1557,"し、":1557,しい:-3714,した:3562,して:1449,しな:2608,しま:1200,"す.":-1310,"す。":-1310,する:6521,"ず,":3426,"ず、":3426,ずに:841,そう:428,"た.":8875,"た。":8875,たい:-594,たの:812,たり:-1183,たる:-853,"だ.":4098,"だ。":4098,だっ:1004,った:-4748,って:300,てい:6240,てお:855,ても:302,です:1437,でに:-1482,では:2295,とう:-1387,とし:2266,との:541,とも:-3543,どう:4664,ない:1796,なく:-903,など:2135,"に,":-1021,"に、":-1021,にし:1771,にな:1906,には:2644,"の,":-724,"の、":-724,の子:-1e3,"は,":1337,"は、":1337,べき:2181,まし:1113,ます:6943,まっ:-1549,まで:6154,まれ:-793,らし:1479,られ:6820,るる:3818,"れ,":854,"れ、":854,れた:1850,れて:1375,れば:-3246,れる:1091,われ:-605,んだ:606,んで:798,カ月:990,会議:860,入り:1232,大会:2217,始め:1681,市:965,新聞:-5055,"日,":974,"日、":974,社会:2024,カ月:990},this.TC1__={AAA:1093,HHH:1029,HHM:580,HII:998,HOH:-390,HOM:-331,IHI:1169,IOH:-142,IOI:-1015,IOM:467,MMH:187,OOI:-1832},this.TC2__={HHO:2088,HII:-1023,HMM:-1154,IHI:-1965,KKH:703,OII:-2649},this.TC3__={AAA:-294,HHH:346,HHI:-341,HII:-1088,HIK:731,HOH:-1486,IHH:128,IHI:-3041,IHO:-1935,IIH:-825,IIM:-1035,IOI:-542,KHH:-1216,KKA:491,KKH:-1217,KOK:-1009,MHH:-2694,MHM:-457,MHO:123,MMH:-471,NNH:-1689,NNO:662,OHO:-3393},this.TC4__={HHH:-203,HHI:1344,HHK:365,HHM:-122,HHN:182,HHO:669,HIH:804,HII:679,HOH:446,IHH:695,IHO:-2324,IIH:321,III:1497,IIO:656,IOO:54,KAK:4845,KKA:3386,KKK:3065,MHH:-405,MHI:201,MMH:-241,MMM:661,MOM:841},this.TQ1__={BHHH:-227,BHHI:316,BHIH:-132,BIHH:60,BIII:1595,BNHH:-744,BOHH:225,BOOO:-908,OAKK:482,OHHH:281,OHIH:249,OIHI:200,OIIH:-68},this.TQ2__={BIHH:-1401,BIII:-1033,BKAK:-543,BOOO:-5591},this.TQ3__={BHHH:478,BHHM:-1073,BHIH:222,BHII:-504,BIIH:-116,BIII:-105,BMHI:-863,BMHM:-464,BOMH:620,OHHH:346,OHHI:1729,OHII:997,OHMH:481,OIHH:623,OIIH:1344,OKAK:2792,OKHH:587,OKKA:679,OOHH:110,OOII:-685},this.TQ4__={BHHH:-721,BHHM:-3604,BHII:-966,BIIH:-607,BIII:-2181,OAAA:-2763,OAKK:180,OHHH:-294,OHHI:2446,OHHO:480,OHIH:-1573,OIHH:1935,OIHI:-493,OIIH:626,OIII:-4007,OKAK:-8156},this.TW1__={につい:-4681,東京都:2026},this.TW2__={ある程:-2049,いった:-1256,ころが:-2434,しょう:3873,その後:-4430,だって:-1049,ていた:1833,として:-4657,ともに:-4517,もので:1882,一気に:-792,初めて:-1512,同時に:-8097,大きな:-1255,対して:-2721,社会党:-3216},this.TW3__={いただ:-1734,してい:1314,として:-4314,につい:-5483,にとっ:-5989,に当た:-6247,"ので,":-727,"ので、":-727,のもの:-600,れから:-3752,十二月:-2287},this.TW4__={"いう.":8576,"いう。":8576,からな:-2348,してい:2958,"たが,":1516,"たが、":1516,ている:1538,という:1349,ました:5543,ません:1097,ようと:-4258,よると:5865},this.UC1__={A:484,K:93,M:645,O:-505},this.UC2__={A:819,H:1059,I:409,M:3987,N:5775,O:646},this.UC3__={A:-1370,I:2311},this.UC4__={A:-2643,H:1809,I:-1032,K:-3450,M:3565,N:3876,O:6646},this.UC5__={H:313,I:-1238,K:-799,M:539,O:-831},this.UC6__={H:-506,I:-253,K:87,M:247,O:-387},this.UP1__={O:-214},this.UP2__={B:69,O:935},this.UP3__={B:189},this.UQ1__={BH:21,BI:-12,BK:-99,BN:142,BO:-56,OH:-95,OI:477,OK:410,OO:-2422},this.UQ2__={BH:216,BI:113,OK:1759},this.UQ3__={BA:-479,BH:42,BI:1913,BK:-7198,BM:3160,BN:6427,BO:14761,OI:-827,ON:-3212},this.UW1__={",":156,"、":156,"「":-463,あ:-941,う:-127,が:-553,き:121,こ:505,で:-201,と:-547,ど:-123,に:-789,の:-185,は:-847,も:-466,や:-470,よ:182,ら:-292,り:208,れ:169,を:-446,ん:-137,"・":-135,主:-402,京:-268,区:-912,午:871,国:-460,大:561,委:729,市:-411,日:-141,理:361,生:-408,県:-386,都:-718,"「":-463,"・":-135},this.UW2__={",":-829,"、":-829,〇:892,"「":-645,"」":3145,あ:-538,い:505,う:134,お:-502,か:1454,が:-856,く:-412,こ:1141,さ:878,ざ:540,し:1529,す:-675,せ:300,そ:-1011,た:188,だ:1837,つ:-949,て:-291,で:-268,と:-981,ど:1273,な:1063,に:-1764,の:130,は:-409,ひ:-1273,べ:1261,ま:600,も:-1263,や:-402,よ:1639,り:-579,る:-694,れ:571,を:-2516,ん:2095,ア:-587,カ:306,キ:568,ッ:831,三:-758,不:-2150,世:-302,中:-968,主:-861,事:492,人:-123,会:978,保:362,入:548,初:-3025,副:-1566,北:-3414,区:-422,大:-1769,天:-865,太:-483,子:-1519,学:760,実:1023,小:-2009,市:-813,年:-1060,強:1067,手:-1519,揺:-1033,政:1522,文:-1355,新:-1682,日:-1815,明:-1462,最:-630,朝:-1843,本:-1650,東:-931,果:-665,次:-2378,民:-180,気:-1740,理:752,発:529,目:-1584,相:-242,県:-1165,立:-763,第:810,米:509,自:-1353,行:838,西:-744,見:-3874,調:1010,議:1198,込:3041,開:1758,間:-1257,"「":-645,"」":3145,ッ:831,ア:-587,カ:306,キ:568},this.UW3__={",":4889,1:-800,"−":-1723,"、":4889,々:-2311,〇:5827,"」":2670,"〓":-3573,あ:-2696,い:1006,う:2342,え:1983,お:-4864,か:-1163,が:3271,く:1004,け:388,げ:401,こ:-3552,ご:-3116,さ:-1058,し:-395,す:584,せ:3685,そ:-5228,た:842,ち:-521,っ:-1444,つ:-1081,て:6167,で:2318,と:1691,ど:-899,な:-2788,に:2745,の:4056,は:4555,ひ:-2171,ふ:-1798,へ:1199,ほ:-5516,ま:-4384,み:-120,め:1205,も:2323,や:-788,よ:-202,ら:727,り:649,る:5905,れ:2773,わ:-1207,を:6620,ん:-518,ア:551,グ:1319,ス:874,ッ:-1350,ト:521,ム:1109,ル:1591,ロ:2201,ン:278,"・":-3794,一:-1619,下:-1759,世:-2087,両:3815,中:653,主:-758,予:-1193,二:974,人:2742,今:792,他:1889,以:-1368,低:811,何:4265,作:-361,保:-2439,元:4858,党:3593,全:1574,公:-3030,六:755,共:-1880,円:5807,再:3095,分:457,初:2475,別:1129,前:2286,副:4437,力:365,動:-949,務:-1872,化:1327,北:-1038,区:4646,千:-2309,午:-783,協:-1006,口:483,右:1233,各:3588,合:-241,同:3906,和:-837,員:4513,国:642,型:1389,場:1219,外:-241,妻:2016,学:-1356,安:-423,実:-1008,家:1078,小:-513,少:-3102,州:1155,市:3197,平:-1804,年:2416,広:-1030,府:1605,度:1452,建:-2352,当:-3885,得:1905,思:-1291,性:1822,戸:-488,指:-3973,政:-2013,教:-1479,数:3222,文:-1489,新:1764,日:2099,旧:5792,昨:-661,時:-1248,曜:-951,最:-937,月:4125,期:360,李:3094,村:364,東:-805,核:5156,森:2438,業:484,氏:2613,民:-1694,決:-1073,法:1868,海:-495,無:979,物:461,特:-3850,生:-273,用:914,町:1215,的:7313,直:-1835,省:792,県:6293,知:-1528,私:4231,税:401,立:-960,第:1201,米:7767,系:3066,約:3663,級:1384,統:-4229,総:1163,線:1255,者:6457,能:725,自:-2869,英:785,見:1044,調:-562,財:-733,費:1777,車:1835,軍:1375,込:-1504,通:-1136,選:-681,郎:1026,郡:4404,部:1200,金:2163,長:421,開:-1432,間:1302,関:-1282,雨:2009,電:-1045,非:2066,駅:1620,"1":-800,"」":2670,"・":-3794,ッ:-1350,ア:551,グ:1319,ス:874,ト:521,ム:1109,ル:1591,ロ:2201,ン:278},this.UW4__={",":3930,".":3508,"―":-4841,"、":3930,"。":3508,〇:4999,"「":1895,"」":3798,"〓":-5156,あ:4752,い:-3435,う:-640,え:-2514,お:2405,か:530,が:6006,き:-4482,ぎ:-3821,く:-3788,け:-4376,げ:-4734,こ:2255,ご:1979,さ:2864,し:-843,じ:-2506,す:-731,ず:1251,せ:181,そ:4091,た:5034,だ:5408,ち:-3654,っ:-5882,つ:-1659,て:3994,で:7410,と:4547,な:5433,に:6499,ぬ:1853,ね:1413,の:7396,は:8578,ば:1940,ひ:4249,び:-4134,ふ:1345,へ:6665,べ:-744,ほ:1464,ま:1051,み:-2082,む:-882,め:-5046,も:4169,ゃ:-2666,や:2795,ょ:-1544,よ:3351,ら:-2922,り:-9726,る:-14896,れ:-2613,ろ:-4570,わ:-1783,を:13150,ん:-2352,カ:2145,コ:1789,セ:1287,ッ:-724,ト:-403,メ:-1635,ラ:-881,リ:-541,ル:-856,ン:-3637,"・":-4371,ー:-11870,一:-2069,中:2210,予:782,事:-190,井:-1768,人:1036,以:544,会:950,体:-1286,作:530,側:4292,先:601,党:-2006,共:-1212,内:584,円:788,初:1347,前:1623,副:3879,力:-302,動:-740,務:-2715,化:776,区:4517,協:1013,参:1555,合:-1834,和:-681,員:-910,器:-851,回:1500,国:-619,園:-1200,地:866,場:-1410,塁:-2094,士:-1413,多:1067,大:571,子:-4802,学:-1397,定:-1057,寺:-809,小:1910,屋:-1328,山:-1500,島:-2056,川:-2667,市:2771,年:374,庁:-4556,後:456,性:553,感:916,所:-1566,支:856,改:787,政:2182,教:704,文:522,方:-856,日:1798,時:1829,最:845,月:-9066,木:-485,来:-442,校:-360,業:-1043,氏:5388,民:-2716,気:-910,沢:-939,済:-543,物:-735,率:672,球:-1267,生:-1286,産:-1101,田:-2900,町:1826,的:2586,目:922,省:-3485,県:2997,空:-867,立:-2112,第:788,米:2937,系:786,約:2171,経:1146,統:-1169,総:940,線:-994,署:749,者:2145,能:-730,般:-852,行:-792,規:792,警:-1184,議:-244,谷:-1e3,賞:730,車:-1481,軍:1158,輪:-1433,込:-3370,近:929,道:-1291,選:2596,郎:-4866,都:1192,野:-1100,銀:-2213,長:357,間:-2344,院:-2297,際:-2604,電:-878,領:-1659,題:-792,館:-1984,首:1749,高:2120,"「":1895,"」":3798,"・":-4371,ッ:-724,ー:-11870,カ:2145,コ:1789,セ:1287,ト:-403,メ:-1635,ラ:-881,リ:-541,ル:-856,ン:-3637},this.UW5__={",":465,".":-299,1:-514,E2:-32768,"]":-2762,"、":465,"。":-299,"「":363,あ:1655,い:331,う:-503,え:1199,お:527,か:647,が:-421,き:1624,ぎ:1971,く:312,げ:-983,さ:-1537,し:-1371,す:-852,だ:-1186,ち:1093,っ:52,つ:921,て:-18,で:-850,と:-127,ど:1682,な:-787,に:-1224,の:-635,は:-578,べ:1001,み:502,め:865,ゃ:3350,ょ:854,り:-208,る:429,れ:504,わ:419,を:-1264,ん:327,イ:241,ル:451,ン:-343,中:-871,京:722,会:-1153,党:-654,務:3519,区:-901,告:848,員:2104,大:-1296,学:-548,定:1785,嵐:-1304,市:-2991,席:921,年:1763,思:872,所:-814,挙:1618,新:-1682,日:218,月:-4353,査:932,格:1356,機:-1508,氏:-1347,田:240,町:-3912,的:-3149,相:1319,省:-1052,県:-4003,研:-997,社:-278,空:-813,統:1955,者:-2233,表:663,語:-1073,議:1219,選:-1018,郎:-368,長:786,間:1191,題:2368,館:-689,"1":-514,E2:-32768,"「":363,イ:241,ル:451,ン:-343},this.UW6__={",":227,".":808,1:-270,E1:306,"、":227,"。":808,あ:-307,う:189,か:241,が:-73,く:-121,こ:-200,じ:1782,す:383,た:-428,っ:573,て:-1014,で:101,と:-105,な:-253,に:-149,の:-417,は:-236,も:-206,り:187,る:-135,を:195,ル:-673,ン:-496,一:-277,中:201,件:-800,会:624,前:302,区:1792,員:-1212,委:798,学:-960,市:887,広:-695,後:535,業:-697,相:753,社:-507,福:974,空:-822,者:1811,連:463,郎:1082,"1":-270,E1:306,ル:-673,ン:-496},this}t.prototype.ctype_=function(_){for(var t in this.chartype_)if(_.match(this.chartype_[t][0]))return this.chartype_[t][1];return"O"},t.prototype.ts_=function(_){return _||0},t.prototype.segment=function(_){if(null==_||null==_||""==_)return[];var t=[],H=["B3","B2","B1"],s=["O","O","O"],h=_.split("");for(K=0;K0&&(t.push(i),i="",N="B"),I=O,O=B,B=N,i+=H[K]}return t.push(i),t},_.TinySegmenter=t}})); \ No newline at end of file diff --git a/docs/material/assets/javascripts/vendor.809e24aa.min.js b/docs/material/assets/javascripts/vendor.809e24aa.min.js new file mode 100644 index 000000000..0c99e6110 --- /dev/null +++ b/docs/material/assets/javascripts/vendor.809e24aa.min.js @@ -0,0 +1,31 @@ +(window.webpackJsonp=window.webpackJsonp||[]).push([[1],[function(t,e,n){"use strict";n.d(e,"f",(function(){return i})),n.d(e,"a",(function(){return o})),n.d(e,"e",(function(){return u})),n.d(e,"g",(function(){return s})),n.d(e,"k",(function(){return c})),n.d(e,"h",(function(){return a})),n.d(e,"i",(function(){return f})),n.d(e,"j",(function(){return h})),n.d(e,"d",(function(){return l})),n.d(e,"b",(function(){return p})),n.d(e,"c",(function(){return d})); +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ +var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)};function i(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var o=function(){return(o=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&i[i.length-1])||6!==o[0]&&2!==o[0])){u=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function a(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,o=n.call(t),u=[];try{for(;(void 0===e||e-- >0)&&!(r=o.next()).done;)u.push(r.value)}catch(t){i={error:t}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return u}function f(){for(var t=[],e=0;e1||s(t,e)}))})}function s(t,e){try{(n=i[t](e)).value instanceof l?Promise.resolve(n.value.v).then(c,a):f(o[0][2],n)}catch(t){f(o[0][3],t)}var n}function c(t){s("next",t)}function a(t){s("throw",t)}function f(t,e){t(e),o.shift(),o.length&&s(o[0][0],o[0][1])}}function d(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=c(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,i){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,i,(e=t[n](e)).done,e.value)}))}}}},,,function(t,e,n){"use strict";n.d(e,"a",(function(){return f}));var r=n(0),i=n(16),o=n(42),u=n(8),s=n(34),c=n(12),a=n(23),f=function(t){function e(n,r,i){var u=t.call(this)||this;switch(u.syncErrorValue=null,u.syncErrorThrown=!1,u.syncErrorThrowable=!1,u.isStopped=!1,arguments.length){case 0:u.destination=o.a;break;case 1:if(!n){u.destination=o.a;break}if("object"==typeof n){n instanceof e?(u.syncErrorThrowable=n.syncErrorThrowable,u.destination=n,n.add(u)):(u.syncErrorThrowable=!0,u.destination=new h(u,n));break}default:u.syncErrorThrowable=!0,u.destination=new h(u,n,r,i)}return u}return Object(r.f)(e,t),e.prototype[s.a]=function(){return this},e.create=function(t,n,r){var i=new e(t,n,r);return i.syncErrorThrowable=!1,i},e.prototype.next=function(t){this.isStopped||this._next(t)},e.prototype.error=function(t){this.isStopped||(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this))},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){this.destination.error(t),this.unsubscribe()},e.prototype._complete=function(){this.destination.complete(),this.unsubscribe()},e.prototype._unsubscribeAndRecycle=function(){var t=this._parentOrParents;return this._parentOrParents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parentOrParents=t,this},e}(u.a),h=function(t){function e(e,n,r,u){var s,c=t.call(this)||this;c._parentSubscriber=e;var a=c;return Object(i.a)(n)?s=n:n&&(s=n.next,r=n.error,u=n.complete,n!==o.a&&(a=Object.create(n),Object(i.a)(a.unsubscribe)&&c.add(a.unsubscribe.bind(a)),a.unsubscribe=c.unsubscribe.bind(c))),c._context=a,c._next=s,c._error=r,c._complete=u,c}return Object(r.f)(e,t),e.prototype.next=function(t){if(!this.isStopped&&this._next){var e=this._parentSubscriber;c.a.useDeprecatedSynchronousErrorHandling&&e.syncErrorThrowable?this.__tryOrSetError(e,this._next,t)&&this.unsubscribe():this.__tryOrUnsub(this._next,t)}},e.prototype.error=function(t){if(!this.isStopped){var e=this._parentSubscriber,n=c.a.useDeprecatedSynchronousErrorHandling;if(this._error)n&&e.syncErrorThrowable?(this.__tryOrSetError(e,this._error,t),this.unsubscribe()):(this.__tryOrUnsub(this._error,t),this.unsubscribe());else if(e.syncErrorThrowable)n?(e.syncErrorValue=t,e.syncErrorThrown=!0):Object(a.a)(t),this.unsubscribe();else{if(this.unsubscribe(),n)throw t;Object(a.a)(t)}}},e.prototype.complete=function(){var t=this;if(!this.isStopped){var e=this._parentSubscriber;if(this._complete){var n=function(){return t._complete.call(t._context)};c.a.useDeprecatedSynchronousErrorHandling&&e.syncErrorThrowable?(this.__tryOrSetError(e,n),this.unsubscribe()):(this.__tryOrUnsub(n),this.unsubscribe())}else this.unsubscribe()}},e.prototype.__tryOrUnsub=function(t,e){try{t.call(this._context,e)}catch(t){if(this.unsubscribe(),c.a.useDeprecatedSynchronousErrorHandling)throw t;Object(a.a)(t)}},e.prototype.__tryOrSetError=function(t,e,n){if(!c.a.useDeprecatedSynchronousErrorHandling)throw new Error("bad call");try{e.call(this._context,n)}catch(e){return c.a.useDeprecatedSynchronousErrorHandling?(t.syncErrorValue=e,t.syncErrorThrown=!0,!0):(Object(a.a)(e),!0)}return!1},e.prototype._unsubscribe=function(){var t=this._parentSubscriber;this._context=null,this._parentSubscriber=null,t.unsubscribe()},e}(f)},,,function(t,e,n){"use strict";n.d(e,"a",(function(){return l}));var r=n(3);var i=n(34),o=n(42);var u=n(18),s=n(47),c=n(12),a=n(0),f=function(){var t=this;this.resolve=null,this.reject=null,this.promise=new Promise((function(e,n){t.resolve=e,t.reject=n}))};function h(t){return function(t){return Object(a.b)(this,arguments,(function(){var e,n,r,i,o,u,s,c;return Object(a.g)(this,(function(h){switch(h.label){case 0:e=[],n=[],r=!1,i=null,o=!1,u=t.subscribe({next:function(t){e.length>0?e.shift().resolve({value:t,done:!1}):n.push(t)},error:function(t){for(r=!0,i=t;e.length>0;)e.shift().reject(t)},complete:function(){for(o=!0;e.length>0;)e.shift().resolve({value:void 0,done:!0})}}),h.label=1;case 1:h.trys.push([1,16,17,18]),h.label=2;case 2:return n.length>0?[4,Object(a.d)(n.shift())]:[3,5];case 3:return[4,h.sent()];case 4:return h.sent(),[3,14];case 5:return o?[4,Object(a.d)(void 0)]:[3,7];case 6:return[2,h.sent()];case 7:if(!r)return[3,8];throw i;case 8:return s=new f,e.push(s),[4,Object(a.d)(s.promise)];case 9:return(c=h.sent()).done?[4,Object(a.d)(void 0)]:[3,11];case 10:return[2,h.sent()];case 11:return[4,Object(a.d)(c.value)];case 12:return[4,h.sent()];case 13:h.sent(),h.label=14;case 14:return[3,2];case 15:return[3,18];case 16:throw h.sent();case 17:return u.unsubscribe(),[7];case 18:return[2]}}))}))}(t)}var l=function(){function t(t){this._isScalar=!1,t&&(this._subscribe=t)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(t,e,n){var u=this.operator,s=function(t,e,n){if(t){if(t instanceof r.a)return t;if(t[i.a])return t[i.a]()}return t||e||n?new r.a(t,e,n):new r.a(o.a)}(t,e,n);if(u?s.add(u.call(s,this.source)):s.add(this.source||c.a.useDeprecatedSynchronousErrorHandling&&!s.syncErrorThrowable?this._subscribe(s):this._trySubscribe(s)),c.a.useDeprecatedSynchronousErrorHandling&&s.syncErrorThrowable&&(s.syncErrorThrowable=!1,s.syncErrorThrown))throw s.syncErrorValue;return s},t.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(e){c.a.useDeprecatedSynchronousErrorHandling&&(t.syncErrorThrown=!0,t.syncErrorValue=e),!function(t){for(;t;){var e=t,n=e.closed,i=e.destination,o=e.isStopped;if(n||o)return!1;t=i&&i instanceof r.a?i:null}return!0}(t)?console.warn(e):t.error(e)}},t.prototype.forEach=function(t,e){var n=this;return new(e=p(e))((function(e,r){var i;i=n.subscribe((function(e){try{t(e)}catch(t){r(t),i&&i.unsubscribe()}}),r,e)}))},t.prototype._subscribe=function(t){var e=this.source;return e&&e.subscribe(t)},t.prototype[u.a]=function(){return this},t.prototype.pipe=function(){for(var t=[],e=0;e0?this._next(e.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()},e}(o.a),h=n(51);function l(t){return void 0===t&&(t=Number.POSITIVE_INFINITY),function t(e,n,r){return void 0===r&&(r=Number.POSITIVE_INFINITY),"function"==typeof n?function(i){return i.pipe(t((function(t,r){return Object(c.a)(e(t,r)).pipe(Object(s.a)((function(e,i){return n(t,e,r,i)})))}),r))}:("number"==typeof n&&(r=n),function(t){return t.lift(new a(e,r))})}(h.a,t)}},function(t,e,n){"use strict";n.d(e,"b",(function(){return u})),n.d(e,"a",(function(){return c}));var r=n(0),i=n(3),o=n(43);function u(t,e){return void 0===e&&(e=0),function(n){return n.lift(new s(t,e))}}var s=function(){function t(t,e){void 0===e&&(e=0),this.scheduler=t,this.delay=e}return t.prototype.call=function(t,e){return e.subscribe(new c(t,this.scheduler,this.delay))},t}(),c=function(t){function e(e,n,r){void 0===r&&(r=0);var i=t.call(this,e)||this;return i.scheduler=n,i.delay=r,i}return Object(r.f)(e,t),e.dispatch=function(t){var e=t.notification,n=t.destination;e.observe(n),this.unsubscribe()},e.prototype.scheduleMessage=function(t){this.destination.add(this.scheduler.schedule(e.dispatch,this.delay,new a(t,this.destination)))},e.prototype._next=function(t){this.scheduleMessage(o.a.createNext(t))},e.prototype._error=function(t){this.scheduleMessage(o.a.createError(t)),this.unsubscribe()},e.prototype._complete=function(){this.scheduleMessage(o.a.createComplete()),this.unsubscribe()},e}(i.a),a=function(t,e){this.notification=t,this.destination=e}},,function(t,e,n){ +/*! + * clipboard.js v2.0.6 + * https://clipboardjs.com/ + * + * Licensed MIT © Zeno Rocha + */ +var r;r=function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=6)}([function(t,e){t.exports=function(t){var e;if("SELECT"===t.nodeName)t.focus(),e=t.value;else if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName){var n=t.hasAttribute("readonly");n||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),n||t.removeAttribute("readonly"),e=t.value}else{t.hasAttribute("contenteditable")&&t.focus();var r=window.getSelection(),i=document.createRange();i.selectNodeContents(t),r.removeAllRanges(),r.addRange(i),e=r.toString()}return e}},function(t,e){function n(){}n.prototype={on:function(t,e,n){var r=this.e||(this.e={});return(r[t]||(r[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){var r=this;function i(){r.off(t,i),e.apply(n,arguments)}return i._=e,this.on(t,i,n)},emit:function(t){for(var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),r=0,i=n.length;r0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t=this,e="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[e?"right":"left"]="-9999px";var n=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=n+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=i()(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=i()(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),document.activeElement.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(t){if(void 0!==t){if(!t||"object"!==(void 0===t?"undefined":o(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function(){return this._target}}]),t}(),c=n(1),a=n.n(c),f=n(2),h=n.n(f),l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},p=function(){function t(t,e){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText,this.container="object"===l(t.container)?t.container:document.body}},{key:"listenClick",value:function(t){var e=this;this.listener=h()(t,"click",(function(t){return e.onClick(t)}))}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s({action:this.action(e),target:this.target(e),text:this.text(e),container:this.container,trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){return b("action",t)}},{key:"defaultTarget",value:function(t){var e=b("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return b("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"==typeof t?[t]:t,n=!!document.queryCommandSupported;return e.forEach((function(t){n=n&&!!document.queryCommandSupported(t)})),n}}]),e}(a.a);function b(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}e.default=d}]).default},t.exports=r()},function(t,e,n){"use strict";n.d(e,"a",(function(){return f}));var r=n(0),i=n(26),o=n(25),u=n(11),s=n(10),c=n(37),a={};function f(){for(var t=[],e=0;e0},t.prototype.connect_=function(){r&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),s?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},t.prototype.disconnect_=function(){r&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},t.prototype.onTransitionEnd_=function(t){var e=t.propertyName,n=void 0===e?"":e;u.some((function(t){return!!~n.indexOf(t)}))&&this.refresh()},t.getInstance=function(){return this.instance_||(this.instance_=new t),this.instance_},t.instance_=null,t}(),a=function(t,e){for(var n=0,r=Object.keys(e);n0},t}(),g="undefined"!=typeof WeakMap?new WeakMap:new n,O=function t(e){if(!(this instanceof t))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=c.getInstance(),r=new _(e,n,this);g.set(this,r)};["observe","unobserve","disconnect"].forEach((function(t){O.prototype[t]=function(){var e;return(e=g.get(this))[t].apply(e,arguments)}}));var x=void 0!==i.ResizeObserver?i.ResizeObserver:O;e.a=x}).call(this,n(63))},function(t,e,n){"use strict"; +/*! + * escape-html + * Copyright(c) 2012-2013 TJ Holowaychuk + * Copyright(c) 2015 Andreas Lubbe + * Copyright(c) 2015 Tiancheng "Timothy" Gu + * MIT Licensed + */var r=/["'&<>]/;t.exports=function(t){var e,n=""+t,i=r.exec(n);if(!i)return n;var o="",u=0,s=0;for(u=i.index;u0?t.prototype.schedule.call(this,e,n):(this.delay=n,this.state=e,this.scheduler.flush(this),this)},e.prototype.execute=function(e,n){return n>0||this.closed?t.prototype.execute.call(this,e,n):this._execute(e,n)},e.prototype.requestAsyncId=function(e,n,r){return void 0===r&&(r=0),null!==r&&r>0||null===r&&this.delay>0?t.prototype.requestAsyncId.call(this,e,n,r):e.flush(this)},e}(n(40).a),u=new(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Object(r.f)(e,t),e}(n(39).a))(o),s=n(8),c=n(59),a=n(21),f=n(50),h=function(t){function e(e,n,r){void 0===e&&(e=Number.POSITIVE_INFINITY),void 0===n&&(n=Number.POSITIVE_INFINITY);var i=t.call(this)||this;return i.scheduler=r,i._events=[],i._infiniteTimeWindow=!1,i._bufferSize=e<1?1:e,i._windowTime=n<1?1:n,n===Number.POSITIVE_INFINITY?(i._infiniteTimeWindow=!0,i.next=i.nextInfiniteTimeWindow):i.next=i.nextTimeWindow,i}return Object(r.f)(e,t),e.prototype.nextInfiniteTimeWindow=function(e){var n=this._events;n.push(e),n.length>this._bufferSize&&n.shift(),t.prototype.next.call(this,e)},e.prototype.nextTimeWindow=function(e){this._events.push(new l(this._getNow(),e)),this._trimBufferThenGetEvents(),t.prototype.next.call(this,e)},e.prototype._subscribe=function(t){var e,n=this._infiniteTimeWindow,r=n?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,o=r.length;if(this.closed)throw new a.a;if(this.isStopped||this.hasError?e=s.a.EMPTY:(this.observers.push(t),e=new f.a(this,t)),i&&t.add(t=new c.a(t,i)),n)for(var u=0;ue&&(o=Math.max(o,i-e)),o>0&&r.splice(0,o),r},e}(i.a),l=function(t,e){this.time=t,this.value=e}},function(t,e,n){"use strict";var r=n(14);function i(t,e){return Object.prototype.hasOwnProperty.call(e,t)}var o=Object.prototype.toString,u=function(){return"[object Arguments]"===o.call(arguments)?function(t){return"[object Arguments]"===o.call(t)}:function(t){return i("callee",t)}}(),s=!{toString:null}.propertyIsEnumerable("toString"),c=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],a=function(){return arguments.propertyIsEnumerable("length")}(),f=function(t,e){for(var n=0;n=0;)i(e=c[n],t)&&!f(r,e)&&(r[r.length]=e),n-=1;return r})):Object(r.a)((function(t){return Object(t)!==t?[]:Object.keys(t)}));e.a=h},function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n(0),i=n(3),o=n(17),u=n(16);function s(t,e,n){return function(r){return r.lift(new c(t,e,n))}}var c=function(){function t(t,e,n){this.nextOrObserver=t,this.error=e,this.complete=n}return t.prototype.call=function(t,e){return e.subscribe(new a(t,this.nextOrObserver,this.error,this.complete))},t}(),a=function(t){function e(e,n,r,i){var s=t.call(this,e)||this;return s._tapNext=o.a,s._tapError=o.a,s._tapComplete=o.a,s._tapError=r||o.a,s._tapComplete=i||o.a,Object(u.a)(n)?(s._context=s,s._tapNext=n):n&&(s._context=n,s._tapNext=n.next||o.a,s._tapError=n.error||o.a,s._tapComplete=n.complete||o.a),s}return Object(r.f)(e,t),e.prototype._next=function(t){try{this._tapNext.call(this._context,t)}catch(t){return void this.destination.error(t)}this.destination.next(t)},e.prototype._error=function(t){try{this._tapError.call(this._context,t)}catch(t){return void this.destination.error(t)}this.destination.error(t)},e.prototype._complete=function(){try{this._tapComplete.call(this._context)}catch(t){return void this.destination.error(t)}return this.destination.complete()},e}(i.a)},function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var r=n(0),i=n(3);function o(t,e){var n=!1;return arguments.length>=2&&(n=!0),function(r){return r.lift(new u(t,e,n))}}var u=function(){function t(t,e,n){void 0===n&&(n=!1),this.accumulator=t,this.seed=e,this.hasSeed=n}return t.prototype.call=function(t,e){return e.subscribe(new s(t,this.accumulator,this.seed,this.hasSeed))},t}(),s=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.accumulator=n,o._state=r,o._hasState=i,o.index=0,o}return Object(r.f)(e,t),e.prototype._next=function(t){var e=this.destination;if(this._hasState){var n=this.index++,r=void 0;try{r=this.accumulator(this._state,t,n)}catch(t){return void e.error(t)}this._state=r,e.next(r)}else this._state=t,this._hasState=!0,e.next(t)},e}(i.a)},function(t,e,n){"use strict";n.d(e,"a",(function(){return u}));var r=n(0),i=n(3),o=n(8);function u(t){return function(e){return e.lift(new s(t))}}var s=function(){function t(t){this.callback=t}return t.prototype.call=function(t,e){return e.subscribe(new c(t,this.callback))},t}(),c=function(t){function e(e,n){var r=t.call(this,e)||this;return r.add(new o.a(n)),r}return Object(r.f)(e,t),e}(i.a)},function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var r=n(0),i=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.scheduler=e,r.work=n,r}return Object(r.f)(e,t),e.prototype.requestAsyncId=function(e,n,r){return void 0===r&&(r=0),null!==r&&r>0?t.prototype.requestAsyncId.call(this,e,n,r):(e.actions.push(this),e.scheduled||(e.scheduled=requestAnimationFrame((function(){return e.flush(void 0)}))))},e.prototype.recycleAsyncId=function(e,n,r){if(void 0===r&&(r=0),null!==r&&r>0||null===r&&this.delay>0)return t.prototype.recycleAsyncId.call(this,e,n,r);0===e.actions.length&&(cancelAnimationFrame(n),e.scheduled=void 0)},e}(n(40).a),o=new(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Object(r.f)(e,t),e.prototype.flush=function(t){this.active=!0,this.scheduled=void 0;var e,n=this.actions,r=-1,i=n.length;t=t||n.shift();do{if(e=t.execute(t.state,t.delay))break}while(++r0){var u=o.indexOf(n);-1!==u&&o.splice(u,1)}},e.prototype.notifyComplete=function(){},e.prototype._next=function(t){if(0===this.toRespond.length){var e=Object(r.j)([t],this.values);this.project?this._tryProject(e):this.destination.next(e)}},e.prototype._tryProject=function(t){var e;try{e=this.project.apply(this,t)}catch(t){return void this.destination.error(t)}this.destination.next(e)},e}(i.a)},function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var r=n(0),i=n(3);function o(t,e){return void 0===e&&(e=null),function(n){return n.lift(new u(t,e))}}var u=function(){function t(t,e){this.bufferSize=t,this.startBufferEvery=e,this.subscriberClass=e&&t!==e?c:s}return t.prototype.call=function(t,e){return e.subscribe(new this.subscriberClass(t,this.bufferSize,this.startBufferEvery))},t}(),s=function(t){function e(e,n){var r=t.call(this,e)||this;return r.bufferSize=n,r.buffer=[],r}return Object(r.f)(e,t),e.prototype._next=function(t){var e=this.buffer;e.push(t),e.length==this.bufferSize&&(this.destination.next(e),this.buffer=[])},e.prototype._complete=function(){var e=this.buffer;e.length>0&&this.destination.next(e),t.prototype._complete.call(this)},e}(i.a),c=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.bufferSize=n,i.startBufferEvery=r,i.buffers=[],i.count=0,i}return Object(r.f)(e,t),e.prototype._next=function(t){var e=this.bufferSize,n=this.startBufferEvery,r=this.buffers,i=this.count;this.count++,i%n==0&&r.push([]);for(var o=r.length;o--;){var u=r[o];u.push(t),u.length===e&&(r.splice(o,1),this.destination.next(u))}},e.prototype._complete=function(){for(var e=this.buffers,n=this.destination;e.length>0;){var r=e.shift();r.length>0&&n.next(r)}t.prototype._complete.call(this)},e}(i.a)},function(t,e,n){"use strict";var r=n(14),i=n(56),o=Object(r.a)((function(t){return Object(i.a)(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()}));e.a=o},function(t,e,n){"use strict";n.d(e,"a",(function(){return c}));var r=n(41),i=n(58);function o(){return Object(i.a)(1)}function u(){for(var t=[],e=0;e1?r.next(Array.prototype.slice.call(arguments)):r.next(t)}),r,n)}))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var r=n(0),i=n(3);function o(t){return function(e){return e.lift(new u(t))}}var u=function(){function t(t){this.value=t}return t.prototype.call=function(t,e){return e.subscribe(new s(t,this.value))},t}(),s=function(t){function e(e,n){var r=t.call(this,e)||this;return r.value=n,r}return Object(r.f)(e,t),e.prototype._next=function(t){this.destination.next(this.value)},e}(i.a)},function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n(6),i=n(26),o=n(58),u=n(37);function s(){for(var t=[],e=0;e1&&"number"==typeof t[t.length-1]&&(n=t.pop())):"number"==typeof c&&(n=t.pop()),!s&&1===t.length&&t[0]instanceof r.a?t[0]:Object(o.a)(n)(Object(u.a)(t,s))}},function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n(6),i=n(25),o=n(16),u=n(9);function s(t,e,n){return n?s(t,e).pipe(Object(u.a)((function(t){return Object(i.a)(t)?n.apply(void 0,t):n(t)}))):new r.a((function(n){var r,i=function(){for(var t=[],e=0;ethis.total&&this.destination.next(t)},e}(i.a)},function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n(0),i=n(11),o=n(29),u=n(10);function s(t){return function(e){var n=new c(t),r=e.lift(n);return n.caught=r}}var c=function(){function t(t){this.selector=t}return t.prototype.call=function(t,e){return e.subscribe(new a(t,this.selector,this.caught))},t}(),a=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.selector=n,i.caught=r,i}return Object(r.f)(e,t),e.prototype.error=function(e){if(!this.isStopped){var n=void 0;try{n=this.selector(e,this.caught)}catch(e){return void t.prototype.error.call(this,e)}this._unsubscribeAndRecycle();var r=new o.a(this,void 0,void 0);this.add(r);var i=Object(u.a)(this,n,void 0,void 0,r);i!==r&&this.add(i)}},e}(i.a)},function(t,e,n){"use strict";n.d(e,"a",(function(){return u}));var r=n(0),i=n(3),o=n(55);function u(t,e){return void 0===e&&(e=o.a),function(n){return n.lift(new s(t,e))}}var s=function(){function t(t,e){this.dueTime=t,this.scheduler=e}return t.prototype.call=function(t,e){return e.subscribe(new c(t,this.dueTime,this.scheduler))},t}(),c=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.dueTime=n,i.scheduler=r,i.debouncedSubscription=null,i.lastValue=null,i.hasValue=!1,i}return Object(r.f)(e,t),e.prototype._next=function(t){this.clearDebounce(),this.lastValue=t,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(a,this.dueTime,this))},e.prototype._complete=function(){this.debouncedNext(),this.destination.complete()},e.prototype.debouncedNext=function(){if(this.clearDebounce(),this.hasValue){var t=this.lastValue;this.lastValue=null,this.hasValue=!1,this.destination.next(t)}},e.prototype.clearDebounce=function(){var t=this.debouncedSubscription;null!==t&&(this.remove(t),t.unsubscribe(),this.debouncedSubscription=null)},e}(i.a);function a(t){t.debouncedNext()}},function(t,e,n){"use strict";n.d(e,"a",(function(){return o}));var r=n(79),i=n(20);function o(t,e,n){return void 0===e&&(e=i.a),void 0===n&&(n=i.a),Object(r.a)((function(){return t()?e:n}))}},function(t,e,n){"use strict";var r=n(19),i=Object(r.a)((function(t,e){return Array.prototype.slice.call(e,0).sort((function(e,n){var r=t(e),i=t(n);return ri?1:0}))}));e.a=i},function(t,e,n){"use strict";var r=n(14),i=n(81),o=Object(r.a)((function(t){for(var e=Object(i.a)(t),n=e.length,r=[],o=0;o1)this.connection=null;else{var n=this.connection,r=t._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()}}else this.connection=null},e}(u.a),l=function(t){function e(e,n){var r=t.call(this)||this;return r.source=e,r.subjectFactory=n,r._refCount=0,r._isComplete=!1,r}return Object(r.f)(e,t),e.prototype._subscribe=function(t){return this.getSubject().subscribe(t)},e.prototype.getSubject=function(){var t=this._subject;return t&&!t.isStopped||(this._subject=this.subjectFactory()),this._subject},e.prototype.connect=function(){var t=this._connection;return t||(this._isComplete=!1,(t=this._connection=new s.a).add(this.source.subscribe(new d(this.getSubject(),this))),t.closed&&(this._connection=null,t=s.a.EMPTY)),t},e.prototype.refCount=function(){return c()(this)},e}(o.a),p={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:(a=l.prototype)._subscribe},_isComplete:{value:a._isComplete,writable:!0},getSubject:{value:a.getSubject},connect:{value:a.connect},refCount:{value:a.refCount}},d=function(t){function e(e,n){var r=t.call(this,e)||this;return r.connectable=n,r}return Object(r.f)(e,t),e.prototype._error=function(e){this._unsubscribe(),t.prototype._error.call(this,e)},e.prototype._complete=function(){this.connectable._isComplete=!0,this._unsubscribe(),t.prototype._complete.call(this)},e.prototype._unsubscribe=function(){var t=this.connectable;if(t){this.connectable=null;var e=t._connection;t._refCount=0,t._subject=null,t._connection=null,e&&e.unsubscribe()}},e}(i.b),b=(function(){function t(t){this.connectable=t}t.prototype.call=function(t,e){var n=this.connectable;n._refCount++;var r=new b(t,n),i=e.subscribe(r);return r.closed||(r.connection=n.connect()),i}}(),function(t){function e(e,n){var r=t.call(this,e)||this;return r.connectable=n,r}return Object(r.f)(e,t),e.prototype._unsubscribe=function(){var t=this.connectable;if(t){this.connectable=null;var e=t._refCount;if(e<=0)this.connection=null;else if(t._refCount=e-1,e>1)this.connection=null;else{var n=this.connection,r=t._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()}}else this.connection=null},e}(u.a));var v=function(){function t(t,e){this.subjectFactory=t,this.selector=e}return t.prototype.call=function(t,e){var n=this.selector,r=this.subjectFactory(),i=n(r).subscribe(t);return i.add(e.subscribe(r)),i},t}();function y(){return new i.a}function m(){return function(t){return c()((e=y,function(t){var r;if(r="function"==typeof e?e:function(){return e},"function"==typeof n)return t.lift(new v(r,n));var i=Object.create(t,p);return i.source=t,i.subjectFactory=r,i})(t));var e,n}}},function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n(0),i=n(3),o=function(){function t(){return Error.call(this),this.message="argument out of range",this.name="ArgumentOutOfRangeError",this}return t.prototype=Object.create(Error.prototype),t}(),u=n(20);function s(t){return function(e){return 0===t?u.a:e.lift(new c(t))}}var c=function(){function t(t){if(this.total=t,this.total<0)throw new o}return t.prototype.call=function(t,e){return e.subscribe(new a(t,this.total))},t}(),a=function(t){function e(e,n){var r=t.call(this,e)||this;return r.total=n,r.count=0,r}return Object(r.f)(e,t),e.prototype._next=function(t){var e=this.total,n=++this.count;n<=e&&(this.destination.next(t),n===e&&(this.destination.complete(),this.unsubscribe()))},e}(i.a)},function(t,e,n){"use strict";var r=n(14);function i(t){return t}var o=Object(r.a)(i);e.a=o},function(t,e,n){"use strict";n.d(e,"a",(function(){return s}));var r=n(0),i=n(55);var o=n(3),u=n(43);function s(t,e){void 0===e&&(e=i.a);var n,r=(n=t)instanceof Date&&!isNaN(+n)?+t-e.now():Math.abs(t);return function(t){return t.lift(new c(r,e))}}var c=function(){function t(t,e){this.delay=t,this.scheduler=e}return t.prototype.call=function(t,e){return e.subscribe(new a(t,this.delay,this.scheduler))},t}(),a=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.delay=n,i.scheduler=r,i.queue=[],i.active=!1,i.errored=!1,i}return Object(r.f)(e,t),e.dispatch=function(t){for(var e=t.source,n=e.queue,r=t.scheduler,i=t.destination;n.length>0&&n[0].time-r.now()<=0;)n.shift().notification.observe(i);if(n.length>0){var o=Math.max(0,n[0].time-r.now());this.schedule(t,o)}else e.isStopped?(e.destination.complete(),e.active=!1):(this.unsubscribe(),e.active=!1)},e.prototype._schedule=function(t){this.active=!0,this.destination.add(t.schedule(e.dispatch,this.delay,{source:this,destination:this.destination,scheduler:t}))},e.prototype.scheduleNotification=function(t){if(!0!==this.errored){var e=this.scheduler,n=new f(e.now()+this.delay,t);this.queue.push(n),!1===this.active&&this._schedule(e)}},e.prototype._next=function(t){this.scheduleNotification(u.a.createNext(t))},e.prototype._error=function(t){this.errored=!0,this.queue=[],this.destination.error(t),this.unsubscribe()},e.prototype._complete=function(){0===this.queue.length&&this.destination.complete(),this.unsubscribe()},e}(o.a),f=function(t,e){this.time=t,this.notification=e}},function(t,e,n){"use strict";n.d(e,"a",(function(){return g}));var r=n(0),i=n(13),o=n(6),u=n(3),s=n(9);function c(t,e){return new b({method:"GET",url:t,headers:e})}function a(t,e,n){return new b({method:"POST",url:t,body:e,headers:n})}function f(t,e){return new b({method:"DELETE",url:t,headers:e})}function h(t,e,n){return new b({method:"PUT",url:t,body:e,headers:n})}function l(t,e,n){return new b({method:"PATCH",url:t,body:e,headers:n})}var p=Object(s.a)((function(t,e){return t.response}));function d(t,e){return p(new b({method:"GET",url:t,responseType:"json",headers:e}))}var b=function(t){function e(e){var n=t.call(this)||this,r={async:!0,createXHR:function(){return this.crossDomain?function(){if(i.a.XMLHttpRequest)return new i.a.XMLHttpRequest;if(i.a.XDomainRequest)return new i.a.XDomainRequest;throw new Error("CORS is not supported by your browser")}():function(){if(i.a.XMLHttpRequest)return new i.a.XMLHttpRequest;var t=void 0;try{for(var e=["Msxml2.XMLHTTP","Microsoft.XMLHTTP","Msxml2.XMLHTTP.4.0"],n=0;n<3;n++)try{if(t=e[n],new i.a.ActiveXObject(t))break}catch(t){}return new i.a.ActiveXObject(t)}catch(t){throw new Error("XMLHttpRequest is not supported by your browser")}}()},crossDomain:!0,withCredentials:!1,headers:{},method:"GET",responseType:"json",timeout:0};if("string"==typeof e)r.url=e;else for(var o in e)e.hasOwnProperty(o)&&(r[o]=e[o]);return n.request=r,n}var n;return Object(r.f)(e,t),e.prototype._subscribe=function(t){return new v(t,this.request)},e.create=((n=function(t){return new e(t)}).get=c,n.post=a,n.delete=f,n.put=h,n.patch=l,n.getJSON=d,n),e}(o.a),v=function(t){function e(e,n){var r=t.call(this,e)||this;r.request=n,r.done=!1;var o=n.headers=n.headers||{};return n.crossDomain||r.getHeader(o,"X-Requested-With")||(o["X-Requested-With"]="XMLHttpRequest"),r.getHeader(o,"Content-Type")||i.a.FormData&&n.body instanceof i.a.FormData||void 0===n.body||(o["Content-Type"]="application/x-www-form-urlencoded; charset=UTF-8"),n.body=r.serializeBody(n.body,r.getHeader(n.headers,"Content-Type")),r.send(),r}return Object(r.f)(e,t),e.prototype.next=function(t){this.done=!0;var e,n=this.xhr,r=this.request,i=this.destination;try{e=new y(t,n,r)}catch(t){return i.error(t)}i.next(e)},e.prototype.send=function(){var t=this.request,e=this.request,n=e.user,r=e.method,i=e.url,o=e.async,u=e.password,s=e.headers,c=e.body;try{var a=this.xhr=t.createXHR();this.setupEvents(a,t),n?a.open(r,i,o,n,u):a.open(r,i,o),o&&(a.timeout=t.timeout,a.responseType=t.responseType),"withCredentials"in a&&(a.withCredentials=!!t.withCredentials),this.setHeaders(a,s),c?a.send(c):a.send()}catch(t){this.error(t)}},e.prototype.serializeBody=function(t,e){if(!t||"string"==typeof t)return t;if(i.a.FormData&&t instanceof i.a.FormData)return t;if(e){var n=e.indexOf(";");-1!==n&&(e=e.substring(0,n))}switch(e){case"application/x-www-form-urlencoded":return Object.keys(t).map((function(e){return encodeURIComponent(e)+"="+encodeURIComponent(t[e])})).join("&");case"application/json":return JSON.stringify(t);default:return t}},e.prototype.setHeaders=function(t,e){for(var n in e)e.hasOwnProperty(n)&&t.setRequestHeader(n,e[n])},e.prototype.getHeader=function(t,e){for(var n in t)if(n.toLowerCase()===e.toLowerCase())return t[n]},e.prototype.setupEvents=function(t,e){var n=e.progressSubscriber;function r(t){var e,n=r,i=n.subscriber,o=n.progressSubscriber,u=n.request;o&&o.error(t);try{e=new _(this,u)}catch(t){e=t}i.error(e)}if(t.ontimeout=r,r.request=e,r.subscriber=this,r.progressSubscriber=n,t.upload&&"withCredentials"in t){var o,u;if(n)o=function(t){o.progressSubscriber.next(t)},i.a.XDomainRequest?t.onprogress=o:t.upload.onprogress=o,o.progressSubscriber=n;u=function(t){var e,n=u,r=n.progressSubscriber,i=n.subscriber,o=n.request;r&&r.error(t);try{e=new m("ajax error",this,o)}catch(t){e=t}i.error(e)},t.onerror=u,u.request=e,u.subscriber=this,u.progressSubscriber=n}function s(t){}function c(t){var e=c,n=e.subscriber,r=e.progressSubscriber,i=e.request;if(4===this.readyState){var o=1223===this.status?204:this.status,u="text"===this.responseType?this.response||this.responseText:this.response;if(0===o&&(o=u?200:0),o<400)r&&r.complete(),n.next(t),n.complete();else{r&&r.error(t);var s=void 0;try{s=new m("ajax error "+o,this,i)}catch(t){s=t}n.error(s)}}}t.onreadystatechange=s,s.subscriber=this,s.progressSubscriber=n,s.request=e,t.onload=c,c.subscriber=this,c.progressSubscriber=n,c.request=e},e.prototype.unsubscribe=function(){var e=this.done,n=this.xhr;!e&&n&&4!==n.readyState&&"function"==typeof n.abort&&n.abort(),t.prototype.unsubscribe.call(this)},e}(u.a),y=function(t,e,n){this.originalEvent=t,this.xhr=e,this.request=n,this.status=e.status,this.responseType=e.responseType||n.responseType,this.response=w(this.responseType,e)},m=function(){function t(t,e,n){return Error.call(this),this.message=t,this.name="AjaxError",this.xhr=e,this.request=n,this.status=e.status,this.responseType=e.responseType||n.responseType,this.response=w(this.responseType,e),this}return t.prototype=Object.create(Error.prototype),t}();function w(t,e){switch(t){case"json":return function(t){return"response"in t?t.responseType?t.response:JSON.parse(t.response||t.responseText||"null"):JSON.parse(t.responseText||"null")}(e);case"xml":return e.responseXML;case"text":default:return"response"in e?e.response:e.responseText}}var _=function(){function t(t,e){return m.call(this,"ajax timeout",t,e),this.name="AjaxTimeoutError",this}return t.prototype=Object.create(m.prototype),t}(),g=b.create}]]); +//# sourceMappingURL=vendor.809e24aa.min.js.map \ No newline at end of file diff --git a/docs/material/assets/javascripts/vendor.809e24aa.min.js.map b/docs/material/assets/javascripts/vendor.809e24aa.min.js.map new file mode 100644 index 000000000..630fbbc23 --- /dev/null +++ b/docs/material/assets/javascripts/vendor.809e24aa.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["webpack:///./node_modules/tslib/tslib.es6.js","webpack:///./node_modules/rxjs/dist/esm5/internal/Subscriber.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/deferred.js","webpack:///./node_modules/rxjs/dist/esm5/internal/asyncIteratorFrom.js","webpack:///./node_modules/rxjs/dist/esm5/internal/Observable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/toSubscriber.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/canReportError.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.js","webpack:///./node_modules/rxjs/dist/esm5/internal/Subscription.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/map.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/subscribeToResult.js","webpack:///./node_modules/rxjs/dist/esm5/internal/OuterSubscriber.js","webpack:///./node_modules/rxjs/dist/esm5/internal/config.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/root.js","webpack:///./node_modules/ramda/es/internal/_curry1.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isFunction.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/noop.js","webpack:///./node_modules/rxjs/dist/esm5/internal/symbol/observable.js","webpack:///./node_modules/ramda/es/internal/_curry2.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/empty.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/hostReportError.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isArray.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isScheduler.js","webpack:///./node_modules/rxjs/dist/esm5/internal/Subject.js","webpack:///./node_modules/rxjs/dist/esm5/internal/symbol/iterator.js","webpack:///./node_modules/rxjs/dist/esm5/internal/InnerSubscriber.js","webpack:///./node_modules/ramda/es/internal/_isPlaceholder.js","webpack:///./node_modules/rxjs/dist/esm5/internal/symbol/rxSubscriber.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/switchMap.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/fromArray.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isIterable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/from.js","webpack:///./node_modules/rxjs/dist/esm5/internal/Scheduler.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/Action.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/of.js","webpack:///./node_modules/rxjs/dist/esm5/internal/Observer.js","webpack:///./node_modules/rxjs/dist/esm5/internal/Notification.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/throwError.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/pipe.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/distinctUntilChanged.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isObject.js","webpack:///./node_modules/rxjs/dist/esm5/internal/SubjectSubscription.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/identity.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/subscribeToArray.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isArrayLike.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isPromise.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/async.js","webpack:///./node_modules/ramda/es/internal/_isString.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/subscribeToAsyncIterable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/subscribeTo.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/subscribeToObservable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/subscribeToPromise.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/subscribeToIterable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/mergeMap.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/mergeAll.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/observeOn.js","webpack:///./node_modules/clipboard/dist/clipboard.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/combineLatest.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js","webpack:///./node_modules/escape-html/index.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/defer.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/QueueAction.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/queue.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/QueueScheduler.js","webpack:///./node_modules/rxjs/dist/esm5/internal/ReplaySubject.js","webpack:///./node_modules/ramda/es/internal/_has.js","webpack:///./node_modules/ramda/es/internal/_isArguments.js","webpack:///./node_modules/ramda/es/keys.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/tap.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/scan.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/finalize.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameAction.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/animationFrame.js","webpack:///./node_modules/rxjs/dist/esm5/internal/scheduler/AnimationFrameScheduler.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/shareReplay.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/distinctUntilKeyChanged.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/withLatestFrom.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/bufferCount.js","webpack:///./node_modules/ramda/es/reverse.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/concatAll.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/concat.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/startWith.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/fromEvent.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/mapTo.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/merge.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/fromEventPattern.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/filter.js","webpack:///./node_modules/rxjs/dist/esm5/internal/BehaviorSubject.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/pluck.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/throttle.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/switchMapTo.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/sample.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/never.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/skip.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/catchError.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/debounceTime.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/iif.js","webpack:///./node_modules/ramda/es/sortBy.js","webpack:///./node_modules/ramda/es/values.js","webpack:///./node_modules/ramda/es/internal/_isInteger.js","webpack:///./node_modules/ramda/es/nth.js","webpack:///./node_modules/ramda/es/paths.js","webpack:///./node_modules/ramda/es/path.js","webpack:///./node_modules/ramda/es/prop.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/refCount.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/ConnectableObservable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/multicast.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/share.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/ArgumentOutOfRangeError.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/take.js","webpack:///./node_modules/ramda/es/internal/_identity.js","webpack:///./node_modules/ramda/es/identity.js","webpack:///./node_modules/rxjs/dist/esm5/internal/operators/delay.js","webpack:///./node_modules/rxjs/dist/esm5/internal/util/isDate.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/dom/AjaxObservable.js","webpack:///./node_modules/rxjs/dist/esm5/internal/observable/dom/ajax.js"],"names":["extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","hasOwnProperty","__extends","__","this","constructor","prototype","create","__assign","assign","t","s","i","n","arguments","length","call","apply","__awaiter","thisArg","_arguments","P","generator","Promise","resolve","reject","fulfilled","value","step","next","e","rejected","result","done","then","__generator","body","f","y","g","_","label","sent","trys","ops","verb","Symbol","iterator","v","op","TypeError","pop","push","__values","o","m","__read","r","ar","error","__spread","concat","__spreadArrays","il","k","a","j","jl","__await","__asyncGenerator","asyncIterator","q","resume","fulfill","settle","shift","__asyncValues","Subscriber","_super","destinationOrNext","complete","_this","syncErrorValue","syncErrorThrown","syncErrorThrowable","isStopped","destination","add","SafeSubscriber","subscriber","_next","err","_error","_complete","unsubscribe","closed","_unsubscribeAndRecycle","_parentOrParents","_parentSubscriber","observerOrNext","context","bind","_context","useDeprecatedSynchronousErrorHandling","__tryOrSetError","__tryOrUnsub","wrappedComplete","fn","parent","Error","_unsubscribe","Deferred","promise","asyncIteratorFrom","source","deferreds","values","hasError","completed","subs","_a","subscribe","undefined","coroutine","Observable","_isScalar","_subscribe","lift","operator","observable","sink","nextOrObserver","rxSubscriber","toSubscriber","config","_trySubscribe","observer","closed_1","canReportError","console","warn","forEach","promiseCtor","getPromiseCtor","subscription","pipe","operations","_i","toPromise","x","UnsubscriptionError","UnsubscriptionErrorImpl","errors","message","map","toString","join","name","Subscription","_subscriptions","empty","remove","index","isFunction","flattenUnsubscriptionErrors","isArray","len","sub","isObject","teardown","EMPTY","tmp","indexOf","subscriptions","subscriptionIndex","splice","reduce","errs","project","MapOperator","MapSubscriber","count","subscribeToResult","outerSubscriber","outerValue","outerIndex","innerSubscriber","OuterSubscriber","notifyNext","innerValue","innerIndex","innerSub","notifyError","notifyComplete","_enable_super_gross_mode_that_will_cause_bad_things","stack","log","__window","window","__self","self","WorkerGlobalScope","_root","global","_curry1","f1","noop","_curry2","f2","_b","ObjectUnsubscribedError","ObjectUnsubscribedErrorImpl","hostReportError","setTimeout","isScheduler","schedule","SubjectSubscriber","Subject","observers","thrownError","subject","AnonymousSubject","copy","slice","asObservable","InnerSubscriber","_isPlaceholder","Math","random","switchMap","resultSelector","ii","SwitchMapOperator","SwitchMapSubscriber","_innerSub","innerSubscription","scheduleArray","input","scheduler","fromArray","scheduled","isInteropObservable","scheduleObservable","isPromise","schedulePromise","isArrayLike","isIterable","return","scheduleIterable","scheduleAsyncIterable","from","subscribeTo","Scheduler","SchedulerAction","now","work","delay","state","Date","AsyncScheduler","delegate","actions","active","flush","action","execute","AsyncAction","pending","id","recycleAsyncId","requestAsyncId","setInterval","clearInterval","_execute","errored","errorValue","Action","of","args","NotificationKind","dispatch","Notification","kind","hasValue","observe","do","accept","toObservable","createNext","undefinedValueNotification","createError","createComplete","completeNotification","fns","pipeFromArray","prev","distinctUntilChanged","compare","keySelector","DistinctUntilChangedOperator","DistinctUntilChangedSubscriber","hasKey","key","SubjectSubscription","subscriberIndex","identity","subscribeToArray","array","async","_isString","subscribeToAsyncIterable","asyncIterable","asyncIterable_1","asyncIterable_1_1","e_1","e_1_1","process","catch","obj","obs","iterable","item","MergeMapOperator","concurrent","Number","POSITIVE_INFINITY","MergeMapSubscriber","hasCompleted","buffer","_tryNext","ish","mergeAll","mergeMap","observeOn","ObserveOnOperator","ObserveOnSubscriber","arg","notification","scheduleMessage","ObserveOnMessage","factory","modules","installedModules","__webpack_require__","moduleId","exports","module","l","c","getter","defineProperty","enumerable","get","toStringTag","mode","__esModule","ns","object","property","element","selectedText","nodeName","focus","isReadOnly","hasAttribute","setAttribute","select","setSelectionRange","removeAttribute","selection","getSelection","range","document","createRange","selectNodeContents","removeAllRanges","addRange","E","on","callback","ctx","once","listener","off","emit","data","evtArr","evts","liveEvents","TinyEmitter","is","target","type","string","node","addEventListener","destroy","removeEventListener","listenNode","nodeList","listenNodeList","selector","listenSelector","HTMLElement","nodeType","String","closest","_delegate","useCapture","listenerFn","delegateTarget","elements","querySelectorAll","Element","matches","proto","matchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector","webkitMatchesSelector","parentNode","__webpack_exports__","src_select","select_default","_typeof","_createClass","defineProperties","props","descriptor","configurable","writable","Constructor","protoProps","staticProps","clipboard_action","ClipboardAction","options","instance","_classCallCheck","resolveOptions","initSelection","container","emitter","text","trigger","selectFake","selectTarget","isRTL","documentElement","getAttribute","removeFake","fakeHandlerCallback","fakeHandler","fakeElem","createElement","style","fontSize","border","padding","margin","position","yPosition","pageYOffset","scrollTop","top","appendChild","copyText","removeChild","succeeded","execCommand","handleResult","clearSelection","activeElement","blur","set","_action","_target","tiny_emitter","tiny_emitter_default","listen","listen_default","clipboard_typeof","clipboard_createClass","clipboard_Clipboard","_Emitter","Clipboard","clipboard_classCallCheck","ReferenceError","_possibleConstructorReturn","getPrototypeOf","listenClick","subClass","superClass","_inherits","defaultAction","defaultTarget","defaultText","_this2","onClick","currentTarget","clipboardAction","getAttributeValue","querySelector","support","queryCommandSupported","suffix","attribute","NONE","combineLatest","observables","CombineLatestOperator","CombineLatestSubscriber","toRespond","unused","oldVal","_tryResultSelector","Function","MapShim","Map","getIndex","arr","some","entry","class_1","__entries__","delete","entries","has","clear","isBrowser","global$1","requestAnimationFrame$1","requestAnimationFrame","transitionKeys","mutationObserverSupported","MutationObserver","ResizeObserverController","connected_","mutationEventsAdded_","mutationsObserver_","observers_","onTransitionEnd_","refresh","leadingCall","trailingCall","lastCallTime","resolvePending","proxy","timeoutCallback","timeStamp","throttle","addObserver","connect_","removeObserver","disconnect_","updateObservers_","activeObservers","filter","gatherActive","hasActive","broadcastActive","attributes","childList","characterData","subtree","disconnect","propertyName","getInstance","instance_","defineConfigurable","keys","getWindowOf","ownerDocument","defaultView","emptyRect","createRectInit","toFloat","parseFloat","getBordersSize","styles","positions","size","getHTMLElementContentRect","clientWidth","clientHeight","getComputedStyle","paddings","positions_1","getPaddings","horizPad","left","right","vertPad","bottom","width","height","boxSizing","round","isDocumentElement","vertScrollbar","horizScrollbar","abs","isSVGGraphicsElement","SVGGraphicsElement","SVGElement","getBBox","getContentRect","bbox","getSVGContentRect","ResizeObservation","broadcastWidth","broadcastHeight","contentRect_","isActive","rect","broadcastRect","ResizeObserverEntry","rectInit","Constr","contentRect","DOMRectReadOnly","ResizeObserverSPI","controller","callbackCtx","activeObservations_","observations_","callback_","controller_","callbackCtx_","observations","unobserve","clearActive","observation","WeakMap","ResizeObserver","method","matchHtmlRegExp","escape","str","match","exec","html","lastIndex","charCodeAt","substring","defer","observableFactory","QueueAction","queue","QueueScheduler","ReplaySubject","bufferSize","windowTime","_events","_infiniteTimeWindow","_bufferSize","_windowTime","nextInfiniteTimeWindow","nextTimeWindow","ReplayEvent","_getNow","_trimBufferThenGetEvents","eventsCount","spliceCount","time","max","_has","prop","hasEnumBug","propertyIsEnumerable","nonEnumerableProps","hasArgsEnumBug","contains","list","idx","nIdx","ks","checkArgsLength","tap","DoOperator","TapSubscriber","_tapNext","_tapError","_tapComplete","scan","accumulator","seed","hasSeed","ScanOperator","ScanSubscriber","_state","_hasState","finalize","FinallyOperator","FinallySubscriber","AnimationFrameAction","cancelAnimationFrame","animationFrame","AnimationFrameScheduler","shareReplay","configOrBufferSize","refCount","_c","useRefCount","isComplete","shareReplayOperator","distinctUntilKeyChanged","withLatestFrom","WithLatestFromOperator","WithLatestFromSubscriber","found","_tryProject","bufferCount","startBufferEvery","BufferCountOperator","subscriberClass","BufferSkipCountSubscriber","BufferCountSubscriber","buffers","reverse","split","concatAll","startWith","fromEvent","eventName","setupSubscription","sourceObj","handler","isEventTarget","source_1","isJQueryStyleEventEmitter","source_2","addListener","removeListener","isNodeStyleEventEmitter","source_3","mapTo","MapToOperator","MapToSubscriber","merge","last","fromEventPattern","addHandler","removeHandler","retValue","predicate","FilterOperator","FilterSubscriber","BehaviorSubject","_value","getValue","pluck","properties","currentProp","defaultThrottleConfig","leading","trailing","durationSelector","ThrottleOperator","ThrottleSubscriber","_leading","_trailing","_sendValue","_hasValue","_throttled","send","duration","tryDurationSelector","throttlingDone","switchMapTo","innerObservable","sample","notifier","SampleOperator","sampleSubscriber","SampleSubscriber","emitValue","NEVER","skip","SkipOperator","total","SkipSubscriber","catchError","CatchOperator","caught","CatchSubscriber","err2","debounceTime","dueTime","DebounceTimeOperator","DebounceTimeSubscriber","debouncedSubscription","lastValue","clearDebounce","dispatchNext","debouncedNext","iif","condition","trueResult","falseResult","sortBy","sort","aa","bb","vals","offset","charAt","pathsArray","paths","val","_isInteger","pathAr","RefCountOperator","connectableProto","connectable","_refCount","refCounter","connection","connect","RefCountSubscriber","sharedConnection","_connection","ConnectableObservable","subjectFactory","_isComplete","getSubject","_subject","connectableObservableDescriptor","ConnectableSubscriber","MulticastOperator","shareSubjectFactory","share","subjectOrSubjectFactory","ArgumentOutOfRangeError","ArgumentOutOfRangeErrorImpl","take","TakeOperator","TakeSubscriber","_identity","delayFor","isNaN","DelayOperator","DelaySubscriber","delay_1","_schedule","scheduleNotification","DelayMessage","ajaxGet","url","headers","ajaxPost","ajaxDelete","ajaxPut","ajaxPatch","mapResponse","response","ajaxGetJSON","responseType","AjaxObservable","urlOrRequest","request","createXHR","crossDomain","root","XMLHttpRequest","XDomainRequest","getCORSRequest","progId","progIds","ActiveXObject","getXMLHttpRequest","withCredentials","timeout","post","put","patch","getJSON","AjaxSubscriber","getHeader","FormData","serializeBody","xhr","AjaxResponse","user","password","setupEvents","open","setHeaders","contentType","splitIndex","encodeURIComponent","JSON","stringify","setRequestHeader","headerName","toLowerCase","progressSubscriber","xhrTimeout","AjaxTimeoutError","ontimeout","upload","xhrProgress_1","xhrError_1","onprogress","AjaxError","onerror","xhrReadyStateChange","xhrLoad","readyState","status_1","status","responseText","onreadystatechange","onload","abort","originalEvent","parseXhrResponse","AjaxErrorImpl","parse","parseJson","responseXML","AjaxTimeoutErrorImpl","ajax"],"mappings":"sFAAA;;;;;;;;;;;;;;;AAgBA,IAAIA,EAAgB,SAASC,EAAGC,GAI5B,OAHAF,EAAgBG,OAAOC,gBAClB,CAAEC,UAAW,cAAgBC,OAAS,SAAUL,EAAGC,GAAKD,EAAEI,UAAYH,IACvE,SAAUD,EAAGC,GAAK,IAAK,IAAIK,KAAKL,EAAOA,EAAEM,eAAeD,KAAIN,EAAEM,GAAKL,EAAEK,MACpDN,EAAGC,IAGrB,SAASO,EAAUR,EAAGC,GAEzB,SAASQ,IAAOC,KAAKC,YAAcX,EADnCD,EAAcC,EAAGC,GAEjBD,EAAEY,UAAkB,OAANX,EAAaC,OAAOW,OAAOZ,IAAMQ,EAAGG,UAAYX,EAAEW,UAAW,IAAIH,GAG5E,IAAIK,EAAW,WAQlB,OAPAA,EAAWZ,OAAOa,QAAU,SAAkBC,GAC1C,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAIZ,KADTW,EAAIG,UAAUF,GACOhB,OAAOU,UAAUL,eAAee,KAAKL,EAAGX,KAAIU,EAAEV,GAAKW,EAAEX,IAE9E,OAAOU,IAEKO,MAAMb,KAAMU,YA8BzB,SAASI,EAAUC,EAASC,EAAYC,EAAGC,GAE9C,OAAO,IAAKD,IAAMA,EAAIE,WAAU,SAAUC,EAASC,GAC/C,SAASC,EAAUC,GAAS,IAAMC,EAAKN,EAAUO,KAAKF,IAAW,MAAOG,GAAKL,EAAOK,IACpF,SAASC,EAASJ,GAAS,IAAMC,EAAKN,EAAiB,MAAEK,IAAW,MAAOG,GAAKL,EAAOK,IACvF,SAASF,EAAKI,GAJlB,IAAeL,EAIaK,EAAOC,KAAOT,EAAQQ,EAAOL,QAJ1CA,EAIyDK,EAAOL,MAJhDA,aAAiBN,EAAIM,EAAQ,IAAIN,GAAE,SAAUG,GAAWA,EAAQG,OAITO,KAAKR,EAAWK,GAClGH,GAAMN,EAAYA,EAAUL,MAAME,EAASC,GAAc,KAAKS,WAI/D,SAASM,EAAYhB,EAASiB,GACjC,IAAsGC,EAAGC,EAAG5B,EAAG6B,EAA3GC,EAAI,CAAEC,MAAO,EAAGC,KAAM,WAAa,GAAW,EAAPhC,EAAE,GAAQ,MAAMA,EAAE,GAAI,OAAOA,EAAE,IAAOiC,KAAM,GAAIC,IAAK,IAChG,OAAOL,EAAI,CAAEV,KAAMgB,EAAK,GAAI,MAASA,EAAK,GAAI,OAAUA,EAAK,IAAwB,mBAAXC,SAA0BP,EAAEO,OAAOC,UAAY,WAAa,OAAO3C,OAAUmC,EACvJ,SAASM,EAAKhC,GAAK,OAAO,SAAUmC,GAAK,OACzC,SAAcC,GACV,GAAIZ,EAAG,MAAM,IAAIa,UAAU,mCAC3B,KAAOV,GAAG,IACN,GAAIH,EAAI,EAAGC,IAAM5B,EAAY,EAARuC,EAAG,GAASX,EAAU,OAAIW,EAAG,GAAKX,EAAS,SAAO5B,EAAI4B,EAAU,SAAM5B,EAAEM,KAAKsB,GAAI,GAAKA,EAAET,SAAWnB,EAAIA,EAAEM,KAAKsB,EAAGW,EAAG,KAAKhB,KAAM,OAAOvB,EAE3J,OADI4B,EAAI,EAAG5B,IAAGuC,EAAK,CAAS,EAARA,EAAG,GAAQvC,EAAEiB,QACzBsB,EAAG,IACP,KAAK,EAAG,KAAK,EAAGvC,EAAIuC,EAAI,MACxB,KAAK,EAAc,OAAXT,EAAEC,QAAgB,CAAEd,MAAOsB,EAAG,GAAIhB,MAAM,GAChD,KAAK,EAAGO,EAAEC,QAASH,EAAIW,EAAG,GAAIA,EAAK,CAAC,GAAI,SACxC,KAAK,EAAGA,EAAKT,EAAEI,IAAIO,MAAOX,EAAEG,KAAKQ,MAAO,SACxC,QACI,KAAMzC,EAAI8B,EAAEG,MAAMjC,EAAIA,EAAEK,OAAS,GAAKL,EAAEA,EAAEK,OAAS,KAAkB,IAAVkC,EAAG,IAAsB,IAAVA,EAAG,IAAW,CAAET,EAAI,EAAG,SACjG,GAAc,IAAVS,EAAG,MAAcvC,GAAMuC,EAAG,GAAKvC,EAAE,IAAMuC,EAAG,GAAKvC,EAAE,IAAM,CAAE8B,EAAEC,MAAQQ,EAAG,GAAI,MAC9E,GAAc,IAAVA,EAAG,IAAYT,EAAEC,MAAQ/B,EAAE,GAAI,CAAE8B,EAAEC,MAAQ/B,EAAE,GAAIA,EAAIuC,EAAI,MAC7D,GAAIvC,GAAK8B,EAAEC,MAAQ/B,EAAE,GAAI,CAAE8B,EAAEC,MAAQ/B,EAAE,GAAI8B,EAAEI,IAAIQ,KAAKH,GAAK,MACvDvC,EAAE,IAAI8B,EAAEI,IAAIO,MAChBX,EAAEG,KAAKQ,MAAO,SAEtBF,EAAKb,EAAKpB,KAAKG,EAASqB,GAC1B,MAAOV,GAAKmB,EAAK,CAAC,EAAGnB,GAAIQ,EAAI,EAAK,QAAUD,EAAI3B,EAAI,EACtD,GAAY,EAARuC,EAAG,GAAQ,MAAMA,EAAG,GAAI,MAAO,CAAEtB,MAAOsB,EAAG,GAAKA,EAAG,QAAK,EAAQhB,MAAM,GArB9BL,CAAK,CAACf,EAAGmC,MA6BtD,SAASK,EAASC,GACrB,IAAI3C,EAAsB,mBAAXmC,QAAyBA,OAAOC,SAAUQ,EAAI5C,GAAK2C,EAAE3C,GAAIC,EAAI,EAC5E,GAAI2C,EAAG,OAAOA,EAAEvC,KAAKsC,GACrB,GAAIA,GAAyB,iBAAbA,EAAEvC,OAAqB,MAAO,CAC1Cc,KAAM,WAEF,OADIyB,GAAK1C,GAAK0C,EAAEvC,SAAQuC,OAAI,GACrB,CAAE3B,MAAO2B,GAAKA,EAAE1C,KAAMqB,MAAOqB,KAG5C,MAAM,IAAIJ,UAAUvC,EAAI,0BAA4B,mCAGjD,SAAS6C,EAAOF,EAAGzC,GACtB,IAAI0C,EAAsB,mBAAXT,QAAyBQ,EAAER,OAAOC,UACjD,IAAKQ,EAAG,OAAOD,EACf,IAAmBG,EAAY3B,EAA3BlB,EAAI2C,EAAEvC,KAAKsC,GAAOI,EAAK,GAC3B,IACI,WAAc,IAAN7C,GAAgBA,KAAM,MAAQ4C,EAAI7C,EAAEiB,QAAQI,MAAMyB,EAAGN,KAAKK,EAAE9B,OAExE,MAAOgC,GAAS7B,EAAI,CAAE6B,MAAOA,GAC7B,QACI,IACQF,IAAMA,EAAExB,OAASsB,EAAI3C,EAAU,SAAI2C,EAAEvC,KAAKJ,GAElD,QAAU,GAAIkB,EAAG,MAAMA,EAAE6B,OAE7B,OAAOD,EAGJ,SAASE,IACZ,IAAK,IAAIF,EAAK,GAAI9C,EAAI,EAAGA,EAAIE,UAAUC,OAAQH,IAC3C8C,EAAKA,EAAGG,OAAOL,EAAO1C,UAAUF,KACpC,OAAO8C,EAGJ,SAASI,IACZ,IAAK,IAAInD,EAAI,EAAGC,EAAI,EAAGmD,EAAKjD,UAAUC,OAAQH,EAAImD,EAAInD,IAAKD,GAAKG,UAAUF,GAAGG,OACxE,IAAI0C,EAAI1D,MAAMY,GAAIqD,EAAI,EAA3B,IAA8BpD,EAAI,EAAGA,EAAImD,EAAInD,IACzC,IAAK,IAAIqD,EAAInD,UAAUF,GAAIsD,EAAI,EAAGC,EAAKF,EAAElD,OAAQmD,EAAIC,EAAID,IAAKF,IAC1DP,EAAEO,GAAKC,EAAEC,GACjB,OAAOT,EAGJ,SAASW,EAAQpB,GACpB,OAAO5C,gBAAgBgE,GAAWhE,KAAK4C,EAAIA,EAAG5C,MAAQ,IAAIgE,EAAQpB,GAG/D,SAASqB,EAAiBlD,EAASC,EAAYE,GAClD,IAAKwB,OAAOwB,cAAe,MAAM,IAAIpB,UAAU,wCAC/C,IAAoDtC,EAAhD2B,EAAIjB,EAAUL,MAAME,EAASC,GAAc,IAAQmD,EAAI,GAC3D,OAAO3D,EAAI,GAAIiC,EAAK,QAASA,EAAK,SAAUA,EAAK,UAAWjC,EAAEkC,OAAOwB,eAAiB,WAAc,OAAOlE,MAASQ,EACpH,SAASiC,EAAKhC,GAAS0B,EAAE1B,KAAID,EAAEC,GAAK,SAAUmC,GAAK,OAAO,IAAIzB,SAAQ,SAAU0C,EAAGtE,GAAK4E,EAAEnB,KAAK,CAACvC,EAAGmC,EAAGiB,EAAGtE,IAAM,GAAK6E,EAAO3D,EAAGmC,QAC9H,SAASwB,EAAO3D,EAAGmC,GAAK,KACVS,EADqBlB,EAAE1B,GAAGmC,IACnBrB,iBAAiByC,EAAU7C,QAAQC,QAAQiC,EAAE9B,MAAMqB,GAAGd,KAAKuC,EAAShD,GAAUiD,EAAOH,EAAE,GAAG,GAAId,GADpE,MAAO3B,GAAK4C,EAAOH,EAAE,GAAG,GAAIzC,GAC3E,IAAc2B,EACd,SAASgB,EAAQ9C,GAAS6C,EAAO,OAAQ7C,GACzC,SAASF,EAAOE,GAAS6C,EAAO,QAAS7C,GACzC,SAAS+C,EAAOrC,EAAGW,GAASX,EAAEW,GAAIuB,EAAEI,QAASJ,EAAExD,QAAQyD,EAAOD,EAAE,GAAG,GAAIA,EAAE,GAAG,KASzE,SAASK,EAActB,GAC1B,IAAKR,OAAOwB,cAAe,MAAM,IAAIpB,UAAU,wCAC/C,IAAiCtC,EAA7B2C,EAAID,EAAER,OAAOwB,eACjB,OAAOf,EAAIA,EAAEvC,KAAKsC,IAAMA,EAAqCD,EAASC,GAA2B1C,EAAI,GAAIiC,EAAK,QAASA,EAAK,SAAUA,EAAK,UAAWjC,EAAEkC,OAAOwB,eAAiB,WAAc,OAAOlE,MAASQ,GAC9M,SAASiC,EAAKhC,GAAKD,EAAEC,GAAKyC,EAAEzC,IAAM,SAAUmC,GAAK,OAAO,IAAIzB,SAAQ,SAAUC,EAASC,IACvF,SAAgBD,EAASC,EAAQ/B,EAAGsD,GAAKzB,QAAQC,QAAQwB,GAAGd,MAAK,SAASc,GAAKxB,EAAQ,CAAEG,MAAOqB,EAAGf,KAAMvC,MAAS+B,IADJiD,CAAOlD,EAASC,GAA7BuB,EAAIM,EAAEzC,GAAGmC,IAA8Bf,KAAMe,EAAErB,c,+BClLpJ,4FAOIkD,EAAc,SAAUC,GAExB,SAASD,EAAWE,EAAmBpB,EAAOqB,GAC1C,IAAIC,EAAQH,EAAO9D,KAAKZ,OAASA,KAKjC,OAJA6E,EAAMC,eAAiB,KACvBD,EAAME,iBAAkB,EACxBF,EAAMG,oBAAqB,EAC3BH,EAAMI,WAAY,EACVvE,UAAUC,QACd,KAAK,EACDkE,EAAMK,YAAc,IACpB,MACJ,KAAK,EACD,IAAKP,EAAmB,CACpBE,EAAMK,YAAc,IACpB,MAEJ,GAAiC,iBAAtBP,EAAgC,CACnCA,aAA6BF,GAC7BI,EAAMG,mBAAqBL,EAAkBK,mBAC7CH,EAAMK,YAAcP,EACpBA,EAAkBQ,IAAIN,KAGtBA,EAAMG,oBAAqB,EAC3BH,EAAMK,YAAc,IAAIE,EAAeP,EAAOF,IAElD,MAER,QACIE,EAAMG,oBAAqB,EAC3BH,EAAMK,YAAc,IAAIE,EAAeP,EAAOF,EAAmBpB,EAAOqB,GAGhF,OAAOC,EAoDX,OArFA,YAAUJ,EAAYC,GAmCtBD,EAAWvE,UAAU,KAAsB,WAAc,OAAOF,MAChEyE,EAAWtE,OAAS,SAAUsB,EAAM8B,EAAOqB,GACvC,IAAIS,EAAa,IAAIZ,EAAWhD,EAAM8B,EAAOqB,GAE7C,OADAS,EAAWL,oBAAqB,EACzBK,GAEXZ,EAAWvE,UAAUuB,KAAO,SAAUF,GAC7BvB,KAAKiF,WACNjF,KAAKsF,MAAM/D,IAGnBkD,EAAWvE,UAAUqD,MAAQ,SAAUgC,GAC9BvF,KAAKiF,YACNjF,KAAKiF,WAAY,EACjBjF,KAAKwF,OAAOD,KAGpBd,EAAWvE,UAAU0E,SAAW,WACvB5E,KAAKiF,YACNjF,KAAKiF,WAAY,EACjBjF,KAAKyF,cAGbhB,EAAWvE,UAAUwF,YAAc,WAC3B1F,KAAK2F,SAGT3F,KAAKiF,WAAY,EACjBP,EAAOxE,UAAUwF,YAAY9E,KAAKZ,QAEtCyE,EAAWvE,UAAUoF,MAAQ,SAAU/D,GACnCvB,KAAKkF,YAAYzD,KAAKF,IAE1BkD,EAAWvE,UAAUsF,OAAS,SAAUD,GACpCvF,KAAKkF,YAAY3B,MAAMgC,GACvBvF,KAAK0F,eAETjB,EAAWvE,UAAUuF,UAAY,WAC7BzF,KAAKkF,YAAYN,WACjB5E,KAAK0F,eAETjB,EAAWvE,UAAU0F,uBAAyB,WAC1C,IAAIC,EAAmB7F,KAAK6F,iBAM5B,OALA7F,KAAK6F,iBAAmB,KACxB7F,KAAK0F,cACL1F,KAAK2F,QAAS,EACd3F,KAAKiF,WAAY,EACjBjF,KAAK6F,iBAAmBA,EACjB7F,MAEJyE,EAtFM,CAuFf,KAEEW,EAAkB,SAAUV,GAE5B,SAASU,EAAeU,EAAmBC,EAAgBxC,EAAOqB,GAC9D,IAEInD,EAFAoD,EAAQH,EAAO9D,KAAKZ,OAASA,KACjC6E,EAAMiB,kBAAoBA,EAE1B,IAAIE,EAAUnB,EAoBd,OAnBI,YAAWkB,GACXtE,EAAOsE,EAEFA,IACLtE,EAAOsE,EAAetE,KACtB8B,EAAQwC,EAAexC,MACvBqB,EAAWmB,EAAenB,SACtBmB,IAAmB,MACnBC,EAAUxG,OAAOW,OAAO4F,GACpB,YAAWC,EAAQN,cACnBb,EAAMM,IAAIa,EAAQN,YAAYO,KAAKD,IAEvCA,EAAQN,YAAcb,EAAMa,YAAYO,KAAKpB,KAGrDA,EAAMqB,SAAWF,EACjBnB,EAAMS,MAAQ7D,EACdoD,EAAMW,OAASjC,EACfsB,EAAMY,UAAYb,EACXC,EA0GX,OAnIA,YAAUO,EAAgBV,GA2B1BU,EAAelF,UAAUuB,KAAO,SAAUF,GACtC,IAAKvB,KAAKiF,WAAajF,KAAKsF,MAAO,CAC/B,IAAIQ,EAAoB9F,KAAK8F,kBACxB,IAAOK,uCAA0CL,EAAkBd,mBAG/DhF,KAAKoG,gBAAgBN,EAAmB9F,KAAKsF,MAAO/D,IACzDvB,KAAK0F,cAHL1F,KAAKqG,aAAarG,KAAKsF,MAAO/D,KAO1C6D,EAAelF,UAAUqD,MAAQ,SAAUgC,GACvC,IAAKvF,KAAKiF,UAAW,CACjB,IAAIa,EAAoB9F,KAAK8F,kBACzBK,EAAwC,IAAOA,sCACnD,GAAInG,KAAKwF,OACAW,GAA0CL,EAAkBd,oBAK7DhF,KAAKoG,gBAAgBN,EAAmB9F,KAAKwF,OAAQD,GACrDvF,KAAK0F,gBALL1F,KAAKqG,aAAarG,KAAKwF,OAAQD,GAC/BvF,KAAK0F,oBAOR,GAAKI,EAAkBd,mBAQpBmB,GACAL,EAAkBhB,eAAiBS,EACnCO,EAAkBf,iBAAkB,GAGpC,YAAgBQ,GAEpBvF,KAAK0F,kBAfuC,CAE5C,GADA1F,KAAK0F,cACDS,EACA,MAAMZ,EAEV,YAAgBA,MAc5BH,EAAelF,UAAU0E,SAAW,WAChC,IAAIC,EAAQ7E,KACZ,IAAKA,KAAKiF,UAAW,CACjB,IAAIa,EAAoB9F,KAAK8F,kBAC7B,GAAI9F,KAAKyF,UAAW,CAChB,IAAIa,EAAkB,WAAc,OAAOzB,EAAMY,UAAU7E,KAAKiE,EAAMqB,WACjE,IAAOC,uCAA0CL,EAAkBd,oBAKpEhF,KAAKoG,gBAAgBN,EAAmBQ,GACxCtG,KAAK0F,gBALL1F,KAAKqG,aAAaC,GAClBtG,KAAK0F,oBAQT1F,KAAK0F,gBAIjBN,EAAelF,UAAUmG,aAAe,SAAUE,EAAIhF,GAClD,IACIgF,EAAG3F,KAAKZ,KAAKkG,SAAU3E,GAE3B,MAAOgE,GAEH,GADAvF,KAAK0F,cACD,IAAOS,sCACP,MAAMZ,EAGN,YAAgBA,KAI5BH,EAAelF,UAAUkG,gBAAkB,SAAUI,EAAQD,EAAIhF,GAC7D,IAAK,IAAO4E,sCACR,MAAM,IAAIM,MAAM,YAEpB,IACIF,EAAG3F,KAAKZ,KAAKkG,SAAU3E,GAE3B,MAAOgE,GACH,OAAI,IAAOY,uCACPK,EAAO1B,eAAiBS,EACxBiB,EAAOzB,iBAAkB,GAClB,IAGP,YAAgBQ,IACT,GAGf,OAAO,GAEXH,EAAelF,UAAUwG,aAAe,WACpC,IAAIZ,EAAoB9F,KAAK8F,kBAC7B9F,KAAKkG,SAAW,KAChBlG,KAAK8F,kBAAoB,KACzBA,EAAkBJ,eAEfN,EApIU,CAqInBX,I,mICrOEkC,EACA,WACI,IAAI9B,EAAQ7E,KACZA,KAAKoB,QAAU,KACfpB,KAAKqB,OAAS,KACdrB,KAAK4G,QAAU,IAAIzF,SAAQ,SAAU0C,EAAGtE,GACpCsF,EAAMzD,QAAUyC,EAChBgB,EAAMxD,OAAS9B,MCLpB,SAASsH,EAAkBC,GAC9B,OAEJ,SAAmBA,GACf,OAAO,YAAiB9G,KAAMU,WAAW,WACrC,IAAIqG,EAAWC,EAAQC,EAAU1D,EAAO2D,EAAWC,EAAM7H,EAAGsC,EAC5D,OAAO,YAAY5B,MAAM,SAAUoH,GAC/B,OAAQA,EAAG/E,OACP,KAAK,EACD0E,EAAY,GACZC,EAAS,GACTC,GAAW,EACX1D,EAAQ,KACR2D,GAAY,EACZC,EAAOL,EAAOO,UAAU,CACpB5F,KAAM,SAAUF,GACRwF,EAAUpG,OAAS,EACnBoG,EAAUxC,QAAQnD,QAAQ,CAAEG,MAAOA,EAAOM,MAAM,IAGhDmF,EAAOhE,KAAKzB,IAGpBgC,MAAO,SAAUgC,GAGb,IAFA0B,GAAW,EACX1D,EAAQgC,EACDwB,EAAUpG,OAAS,GACtBoG,EAAUxC,QAAQlD,OAAOkE,IAGjCX,SAAU,WAEN,IADAsC,GAAY,EACLH,EAAUpG,OAAS,GACtBoG,EAAUxC,QAAQnD,QAAQ,CAAEG,WAAO+F,EAAWzF,MAAM,OAIhEuF,EAAG/E,MAAQ,EACf,KAAK,EACD+E,EAAG7E,KAAKS,KAAK,CAAC,EAAG,GAAI,GAAI,KACzBoE,EAAG/E,MAAQ,EACf,KAAK,EAED,OAAM2E,EAAOrG,OAAS,EACf,CAAC,EAAG,YAAQqG,EAAOzC,UADO,CAAC,EAAG,GAEzC,KAAK,EAAG,MAAO,CAAC,EAAG6C,EAAG9E,QACtB,KAAK,EAED,OADA8E,EAAG9E,OACI,CAAC,EAAG,IACf,KAAK,EACD,OAAK4E,EACE,CAAC,EAAG,iBAAQ,IADI,CAAC,EAAG,GAE/B,KAAK,EAAG,MAAO,CAAC,EAAGE,EAAG9E,QACtB,KAAK,EACD,IAAK2E,EAAU,MAAO,CAAC,EAAG,GAC1B,MAAM1D,EACV,KAAK,EAGD,OAFAjE,EAAI,IAAIqH,EACRI,EAAU/D,KAAK1D,GACR,CAAC,EAAG,YAAQA,EAAEsH,UACzB,KAAK,EAED,OADAhF,EAASwF,EAAG9E,QACAT,KACL,CAAC,EAAG,iBAAQ,IADM,CAAC,EAAG,IAEjC,KAAK,GAAI,MAAO,CAAC,EAAGuF,EAAG9E,QACvB,KAAK,GAAI,MAAO,CAAC,EAAG,YAAQV,EAAOL,QACnC,KAAK,GAAI,MAAO,CAAC,EAAG6F,EAAG9E,QACvB,KAAK,GACD8E,EAAG9E,OACH8E,EAAG/E,MAAQ,GACf,KAAK,GAAI,MAAO,CAAC,EAAG,GACpB,KAAK,GAAI,MAAO,CAAC,EAAG,IACpB,KAAK,GAED,MADQ+E,EAAG9E,OAEf,KAAK,GAED,OADA6E,EAAKzB,cACE,CAAC,GACZ,KAAK,GAAI,MAAO,CAAC,UA7EtB6B,CAAUT,GCGrB,IAAI,EAAc,WACd,SAASU,EAAWH,GAChBrH,KAAKyH,WAAY,EACbJ,IACArH,KAAK0H,WAAaL,GA6F1B,OA1FAG,EAAWtH,UAAUyH,KAAO,SAAUC,GAClC,IAAIC,EAAa,IAAIL,EAGrB,OAFAK,EAAWf,OAAS9G,KACpB6H,EAAWD,SAAWA,EACfC,GAEXL,EAAWtH,UAAUmH,UAAY,SAAUtB,EAAgBxC,EAAOqB,GAC9D,IAAIgD,EAAW5H,KAAK4H,SAChBE,EClBL,SAAsBC,EAAgBxE,EAAOqB,GAChD,GAAImD,EAAgB,CAChB,GAAIA,aAA0BtD,EAAA,EAC1B,OAAOsD,EAEX,GAAIA,EAAeC,EAAA,GACf,OAAOD,EAAeC,EAAA,KAG9B,OAAKD,GAAmBxE,GAAUqB,EAG3B,IAAIH,EAAA,EAAWsD,EAAgBxE,EAAOqB,GAFlC,IAAIH,EAAA,EAAW,KDQXwD,CAAalC,EAAgBxC,EAAOqB,GAS/C,GARIgD,EACAE,EAAK3C,IAAIyC,EAAShH,KAAKkH,EAAM9H,KAAK8G,SAGlCgB,EAAK3C,IAAInF,KAAK8G,QAAWoB,EAAA,EAAO/B,wCAA0C2B,EAAK9C,mBAC3EhF,KAAK0H,WAAWI,GAChB9H,KAAKmI,cAAcL,IAEvBI,EAAA,EAAO/B,uCACH2B,EAAK9C,qBACL8C,EAAK9C,oBAAqB,EACtB8C,EAAK/C,iBACL,MAAM+C,EAAKhD,eAIvB,OAAOgD,GAEXN,EAAWtH,UAAUiI,cAAgB,SAAUL,GAC3C,IACI,OAAO9H,KAAK0H,WAAWI,GAE3B,MAAOvC,GACC2C,EAAA,EAAO/B,wCACP2B,EAAK/C,iBAAkB,EACvB+C,EAAKhD,eAAiBS,IE9C/B,SAAwB6C,GAC3B,KAAOA,GAAU,CACb,IAAIhB,EAAKgB,EAAUC,EAAWjB,EAAGzB,OAAQT,EAAckC,EAAGlC,YAAaD,EAAYmC,EAAGnC,UACtF,GAAIoD,GAAYpD,EACZ,OAAO,EAGPmD,EADKlD,GAAeA,aAAuBT,EAAA,EAChCS,EAGA,KAGnB,OAAO,EFmCKoD,CAAeR,GAIfS,QAAQC,KAAKjD,GAHbuC,EAAKvE,MAAMgC,KAOvBiC,EAAWtH,UAAUuI,QAAU,SAAUhH,EAAMiH,GAC3C,IAAI7D,EAAQ7E,KAEZ,OAAO,IADP0I,EAAcC,EAAeD,KACN,SAAUtH,EAASC,GACtC,IAAIuH,EACJA,EAAe/D,EAAMwC,WAAU,SAAU9F,GACrC,IACIE,EAAKF,GAET,MAAOgE,GACHlE,EAAOkE,GACHqD,GACAA,EAAalD,iBAGtBrE,EAAQD,OAGnBoG,EAAWtH,UAAUwH,WAAa,SAAUrC,GACxC,IAAIyB,EAAS9G,KAAK8G,OAClB,OAAOA,GAAUA,EAAOO,UAAUhC,IAEtCmC,EAAWtH,UAAU,KAAqB,WACtC,OAAOF,MAEXwH,EAAWtH,UAAU2I,KAAO,WAExB,IADA,IAAIC,EAAa,GACRC,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpCD,EAAWC,GAAMrI,UAAUqI,GAE/B,OAA0B,IAAtBD,EAAWnI,OACJX,KAEJ,OAAA6I,EAAA,GAAcC,EAAd,CAA0B9I,OAErCwH,EAAWtH,UAAU8I,UAAY,SAAUN,GACvC,IAAI7D,EAAQ7E,KAEZ,OAAO,IADP0I,EAAcC,EAAeD,KACN,SAAUtH,EAASC,GACtC,IAAIE,EACJsD,EAAMwC,WAAU,SAAU4B,GAAK,OAAO1H,EAAQ0H,KAAM,SAAU1D,GAAO,OAAOlE,EAAOkE,MAAS,WAAc,OAAOnE,EAAQG,UAGjIiG,EAAWrH,OAAS,SAAUkH,GAC1B,OAAO,IAAIG,EAAWH,IAEnBG,EAjGM,GAoGjB,SAASmB,EAAeD,GAIpB,GAHKA,IACDA,EAAcR,EAAA,EAAO/G,SAAWA,UAE/BuH,EACD,MAAM,IAAIjC,MAAM,yBAEpB,OAAOiC,EAGHhG,QAAUA,OAAOwB,gBACjB,EAAWhE,UAAUwC,OAAOwB,eAAiB,WACzC,OAAO2C,EAAkB7G,S,4FG1G1BkJ,EAZmB,WAC1B,SAASC,EAAwBC,GAM7B,OALA3C,MAAM7F,KAAKZ,MACXA,KAAKqJ,QAAUD,EACXA,EAAOzI,OAAS,4CAA8CyI,EAAOE,KAAI,SAAU/D,EAAK/E,GAAK,OAAOA,EAAI,EAAI,KAAO+E,EAAIgE,cAAeC,KAAK,QAAU,GACzJxJ,KAAKyJ,KAAO,sBACZzJ,KAAKoJ,OAASA,EACPpJ,KAGX,OADAmJ,EAAwBjJ,UAAYV,OAAOW,OAAOsG,MAAMvG,WACjDiJ,EAVmB,GCI1B,EAAgB,WAChB,SAASO,EAAahE,GAClB1F,KAAK2F,QAAS,EACd3F,KAAK6F,iBAAmB,KACxB7F,KAAK2J,eAAiB,KAClBjE,IACA1F,KAAK0G,aAAehB,GAkHN,IAAUkE,EAIhC,OAnHAF,EAAaxJ,UAAUwF,YAAc,WACjC,IAAI0D,EACJ,IAAIpJ,KAAK2F,OAAT,CAGA,IAAeE,EAAN7F,KAA4B6F,iBAAkBa,EAA9C1G,KAAgE0G,aAAciD,EAA9E3J,KAAkG2J,eAI3G,GAHA3J,KAAK2F,QAAS,EACd3F,KAAK6F,iBAAmB,KACxB7F,KAAK2J,eAAiB,KAClB9D,aAA4B6D,EAC5B7D,EAAiBgE,OAAO7J,WAEvB,GAAyB,OAArB6F,EACL,IAAK,IAAIiE,EAAQ,EAAGA,EAAQjE,EAAiBlF,SAAUmJ,EAAO,CAC3CjE,EAAiBiE,GACvBD,OAAO7J,MAGxB,GAAI,OAAA+J,EAAA,GAAWrD,GACX,IACIA,EAAa9F,KAAKZ,MAEtB,MAAO0B,GACH0H,EAAS1H,aAAawH,EAAsBc,EAA4BtI,EAAE0H,QAAU,CAAC1H,GAG7F,GAAI,OAAAuI,EAAA,GAAQN,GACR,CAAIG,GAAS,EAEb,IAFA,IACII,EAAMP,EAAehJ,SAChBmJ,EAAQI,GAAK,CAClB,IAAIC,EAAMR,EAAeG,GACzB,GAAI,OAAAM,EAAA,GAASD,GACT,IACIA,EAAIzE,cAER,MAAOhE,GACH0H,EAASA,GAAU,GACf1H,aAAawH,EACbE,EAASA,EAAO3F,OAAOuG,EAA4BtI,EAAE0H,SAGrDA,EAAOpG,KAAKtB,KAMhC,GAAI0H,EACA,MAAM,IAAIF,EAAoBE,KAGtCM,EAAaxJ,UAAUiF,IAAM,SAAUkF,GACnC,IAAIzB,EAAeyB,EACnB,IAAKA,EACD,OAAOX,EAAaY,MAExB,cAAeD,GACX,IAAK,WACDzB,EAAe,IAAIc,EAAaW,GACpC,IAAK,SACD,GAAIzB,IAAiB5I,MAAQ4I,EAAajD,QAA8C,mBAA7BiD,EAAalD,YACpE,OAAOkD,EAEN,GAAI5I,KAAK2F,OAEV,OADAiD,EAAalD,cACNkD,EAEN,KAAMA,aAAwBc,GAAe,CAC9C,IAAIa,EAAM3B,GACVA,EAAe,IAAIc,GACNC,eAAiB,CAACY,GAEnC,MACJ,QACI,MAAM,IAAI9D,MAAM,yBAA2B4D,EAAW,2BAG9D,IAAIxE,EAAmB+C,EAAa/C,iBACpC,GAAyB,OAArBA,EACA+C,EAAa/C,iBAAmB7F,UAE/B,GAAI6F,aAA4B6D,EAAc,CAC/C,GAAI7D,IAAqB7F,KACrB,OAAO4I,EAEXA,EAAa/C,iBAAmB,CAACA,EAAkB7F,UAElD,KAAwC,IAApC6F,EAAiB2E,QAAQxK,MAI9B,OAAO4I,EAHP/C,EAAiB7C,KAAKhD,MAK1B,IAAIyK,EAAgBzK,KAAK2J,eAOzB,OANsB,OAAlBc,EACAzK,KAAK2J,eAAiB,CAACf,GAGvB6B,EAAczH,KAAK4F,GAEhBA,GAEXc,EAAaxJ,UAAU2J,OAAS,SAAUjB,GACtC,IAAI6B,EAAgBzK,KAAK2J,eACzB,GAAIc,EAAe,CACf,IAAIC,EAAoBD,EAAcD,QAAQ5B,IACnB,IAAvB8B,GACAD,EAAcE,OAAOD,EAAmB,KAIpDhB,EAAaY,QAAmBV,EAG9B,IAAIF,GAFI/D,QAAS,EACRiE,GAEJF,EA5HQ,GA+HnB,SAASM,EAA4BZ,GACjC,OAAOA,EAAOwB,QAAO,SAAUC,EAAMtF,GAAO,OAAOsF,EAAKpH,OAAQ8B,aAAe2D,EAAuB3D,EAAI6D,OAAS7D,KAAS,M,6BCpIhI,oDAEO,SAAS+D,EAAIwB,EAAS/J,GACzB,OAAO,SAAsB+F,GACzB,GAAuB,mBAAZgE,EACP,MAAM,IAAIhI,UAAU,8DAExB,OAAOgE,EAAOa,KAAK,IAAIoD,EAAYD,EAAS/J,KAGpD,IAAIgK,EAAe,WACf,SAASA,EAAYD,EAAS/J,GAC1Bf,KAAK8K,QAAUA,EACf9K,KAAKe,QAAUA,EAKnB,OAHAgK,EAAY7K,UAAUU,KAAO,SAAUyE,EAAYyB,GAC/C,OAAOA,EAAOO,UAAU,IAAI2D,EAAc3F,EAAYrF,KAAK8K,QAAS9K,KAAKe,WAEtEgK,EARO,GAWdC,EAAiB,SAAUtG,GAE3B,SAASsG,EAAc9F,EAAa4F,EAAS/J,GACzC,IAAI8D,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAI9C,OAHA6E,EAAMiG,QAAUA,EAChBjG,EAAMoG,MAAQ,EACdpG,EAAM9D,QAAUA,GAAW8D,EACpBA,EAaX,OAnBA,YAAUmG,EAAetG,GAQzBsG,EAAc9K,UAAUoF,MAAQ,SAAU/D,GACtC,IAAIK,EACJ,IACIA,EAAS5B,KAAK8K,QAAQlK,KAAKZ,KAAKe,QAASQ,EAAOvB,KAAKiL,SAEzD,MAAO1F,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAG3BvF,KAAKkF,YAAYzD,KAAKG,IAEnBoJ,EApBS,CAqBlB,M,6BC1CF,6DAGO,SAASE,EAAkBC,EAAiBvJ,EAAQwJ,EAAYC,EAAYC,GAE/E,QADwB,IAApBA,IAA8BA,EAAkB,IAAI,IAAgBH,EAAiBC,EAAYC,KACjGC,EAAgB3F,OAGpB,OAAI/D,aAAkB,IACXA,EAAOyF,UAAUiE,GAErB,YAAY1J,EAAZ,CAAoB0J,K,6BCX/B,6CAEIC,EAAmB,SAAU7G,GAE7B,SAAS6G,IACL,OAAkB,OAAX7G,GAAmBA,EAAO7D,MAAMb,KAAMU,YAAcV,KAW/D,OAbA,YAAUuL,EAAiB7G,GAI3B6G,EAAgBrL,UAAUsL,WAAa,SAAUJ,EAAYK,EAAYJ,EAAYK,EAAYC,GAC7F3L,KAAKkF,YAAYzD,KAAKgK,IAE1BF,EAAgBrL,UAAU0L,YAAc,SAAUrI,EAAOoI,GACrD3L,KAAKkF,YAAY3B,MAAMA,IAE3BgI,EAAgBrL,UAAU2L,eAAiB,SAAUF,GACjD3L,KAAKkF,YAAYN,YAEd2G,EAdW,CAFtB,KAiBE,I,6BCjBF,sCAAIO,GAAsD,EAC/C5D,EAAS,CAChB/G,aAASmG,EACT,0CAA0C/F,GACtC,GAAIA,EAAO,CACP,IAAIgC,EAAQ,IAAIkD,MAChB8B,QAAQC,KAAK,gGAAkGjF,EAAMwI,YAEhHD,GACLvD,QAAQyD,IAAI,wDAEhBF,EAAsDvK,GAE1D,4CACI,OAAOuK,K,8BCdf,kDAAIG,EAA6B,oBAAXC,QAA0BA,OAC5CC,EAAyB,oBAATC,MAAqD,oBAAtBC,mBAC/CD,gBAAgBC,mBAAqBD,KAErCE,EAAQL,QADqB,IAAXM,GAA0BA,GACZJ,GACpC,WACI,IAAKG,EACD,MAAM,IAAI7F,MAAM,iEAFxB,K,+CCLA,8CAUe,SAAS+F,EAAQjG,GAC9B,OAAO,SAASkG,EAAG5I,GACjB,OAAyB,IAArBnD,UAAUC,QAAgB,YAAekD,GACpC4I,EAEAlG,EAAG1F,MAAMb,KAAMU,c,8BCfrB,SAASqJ,EAAWd,GACvB,MAAoB,mBAANA,EADlB,mC,6BCAO,SAASyD,KAAhB,mC,6BCAA,kCAAO,IAAI7E,EAAqD,mBAAXnF,QAAyBA,OAAOmF,YAAc,gB,6BCAnG,sDAWe,SAAS8E,EAAQpG,GAC9B,OAAO,SAASqG,EAAG/I,EAAGtE,GACpB,OAAQmB,UAAUC,QAChB,KAAK,EACH,OAAOiM,EAET,KAAK,EACH,OAAO,YAAe/I,GAAK+I,EAAK,aAAQ,SAAUC,GAChD,OAAOtG,EAAG1C,EAAGgJ,MAGjB,QACE,OAAO,YAAehJ,IAAM,YAAetE,GAAKqN,EAAK,YAAe/I,GAAK,aAAQ,SAAUuD,GACzF,OAAOb,EAAGa,EAAI7H,MACX,YAAeA,GAAK,aAAQ,SAAUsN,GACzC,OAAOtG,EAAG1C,EAAGgJ,MACVtG,EAAG1C,EAAGtE,O,6BC3BnB,6CACW+K,EAAQ,IAAI,KAAW,SAAUjF,GAAc,OAAOA,EAAWT,e,6BCD5E,sCAUWkI,EAVuB,WAC9B,SAASC,IAIL,OAHAtG,MAAM7F,KAAKZ,MACXA,KAAKqJ,QAAU,sBACfrJ,KAAKyJ,KAAO,0BACLzJ,KAGX,OADA+M,EAA4B7M,UAAYV,OAAOW,OAAOsG,MAAMvG,WACrD6M,EARuB,I,8BCA3B,SAASC,EAAgBzH,GAC5B0H,YAAW,WAAc,MAAM1H,IAAQ,GAD3C,mC,8BCAA,kCAAO,IAAI0E,EAAgCtK,MAAMsK,SAAW,SAAWhB,GAAK,OAAOA,GAAyB,iBAAbA,EAAEtI,S,6BCA1F,SAASuM,EAAY3L,GACxB,OAAOA,GAAmC,mBAAnBA,EAAM4L,SADjC,mC,6BCAA,4HAOIC,EAAqB,SAAU1I,GAE/B,SAAS0I,EAAkBlI,GACvB,IAAIL,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAE9C,OADA6E,EAAMK,YAAcA,EACbL,EAEX,OANA,YAAUuI,EAAmB1I,GAMtB0I,EAPa,CAQtB,KAEEC,EAAW,SAAU3I,GAErB,SAAS2I,IACL,IAAIxI,EAAQH,EAAO9D,KAAKZ,OAASA,KAMjC,OALA6E,EAAMyI,UAAY,GAClBzI,EAAMc,QAAS,EACfd,EAAMI,WAAY,EAClBJ,EAAMoC,UAAW,EACjBpC,EAAM0I,YAAc,KACb1I,EAyFX,OAjGA,YAAUwI,EAAS3I,GAUnB2I,EAAQnN,UAAU,KAAsB,WACpC,OAAO,IAAIkN,EAAkBpN,OAEjCqN,EAAQnN,UAAUyH,KAAO,SAAUC,GAC/B,IAAI4F,EAAU,IAAIC,EAAiBzN,KAAMA,MAEzC,OADAwN,EAAQ5F,SAAWA,EACZ4F,GAEXH,EAAQnN,UAAUuB,KAAO,SAAUF,GAC/B,GAAIvB,KAAK2F,OACL,MAAM,IAAI,IAEd,IAAK3F,KAAKiF,UAIN,IAHA,IAAIqI,EAAYtN,KAAKsN,UACjBpD,EAAMoD,EAAU3M,OAChB+M,EAAOJ,EAAUK,QACZnN,EAAI,EAAGA,EAAI0J,EAAK1J,IACrBkN,EAAKlN,GAAGiB,KAAKF,IAIzB8L,EAAQnN,UAAUqD,MAAQ,SAAUgC,GAChC,GAAIvF,KAAK2F,OACL,MAAM,IAAI,IAEd3F,KAAKiH,UAAW,EAChBjH,KAAKuN,YAAchI,EACnBvF,KAAKiF,WAAY,EAIjB,IAHA,IAAIqI,EAAYtN,KAAKsN,UACjBpD,EAAMoD,EAAU3M,OAChB+M,EAAOJ,EAAUK,QACZnN,EAAI,EAAGA,EAAI0J,EAAK1J,IACrBkN,EAAKlN,GAAG+C,MAAMgC,GAElBvF,KAAKsN,UAAU3M,OAAS,GAE5B0M,EAAQnN,UAAU0E,SAAW,WACzB,GAAI5E,KAAK2F,OACL,MAAM,IAAI,IAEd3F,KAAKiF,WAAY,EAIjB,IAHA,IAAIqI,EAAYtN,KAAKsN,UACjBpD,EAAMoD,EAAU3M,OAChB+M,EAAOJ,EAAUK,QACZnN,EAAI,EAAGA,EAAI0J,EAAK1J,IACrBkN,EAAKlN,GAAGoE,WAEZ5E,KAAKsN,UAAU3M,OAAS,GAE5B0M,EAAQnN,UAAUwF,YAAc,WAC5B1F,KAAKiF,WAAY,EACjBjF,KAAK2F,QAAS,EACd3F,KAAKsN,UAAY,MAErBD,EAAQnN,UAAUiI,cAAgB,SAAU9C,GACxC,GAAIrF,KAAK2F,OACL,MAAM,IAAI,IAGV,OAAOjB,EAAOxE,UAAUiI,cAAcvH,KAAKZ,KAAMqF,IAGzDgI,EAAQnN,UAAUwH,WAAa,SAAUrC,GACrC,GAAIrF,KAAK2F,OACL,MAAM,IAAI,IAET,OAAI3F,KAAKiH,UACV5B,EAAW9B,MAAMvD,KAAKuN,aACf,IAAajD,OAEftK,KAAKiF,WACVI,EAAWT,WACJ,IAAa0F,QAGpBtK,KAAKsN,UAAUtK,KAAKqC,GACb,IAAI,IAAoBrF,KAAMqF,KAG7CgI,EAAQnN,UAAU0N,aAAe,WAC7B,IAAI/F,EAAa,IAAI,IAErB,OADAA,EAAWf,OAAS9G,KACb6H,GAEXwF,EAAQlN,OAAS,SAAU+E,EAAa4B,GACpC,OAAO,IAAI2G,EAAiBvI,EAAa4B,IAEtCuG,EAlGG,CAmGZ,KAEEI,EAAoB,SAAU/I,GAE9B,SAAS+I,EAAiBvI,EAAa4B,GACnC,IAAIjC,EAAQH,EAAO9D,KAAKZ,OAASA,KAGjC,OAFA6E,EAAMK,YAAcA,EACpBL,EAAMiC,OAASA,EACRjC,EA6BX,OAlCA,YAAU4I,EAAkB/I,GAO5B+I,EAAiBvN,UAAUuB,KAAO,SAAUF,GACxC,IAAI2D,EAAclF,KAAKkF,YACnBA,GAAeA,EAAYzD,MAC3ByD,EAAYzD,KAAKF,IAGzBkM,EAAiBvN,UAAUqD,MAAQ,SAAUgC,GACzC,IAAIL,EAAclF,KAAKkF,YACnBA,GAAeA,EAAY3B,OAC3BvD,KAAKkF,YAAY3B,MAAMgC,IAG/BkI,EAAiBvN,UAAU0E,SAAW,WAClC,IAAIM,EAAclF,KAAKkF,YACnBA,GAAeA,EAAYN,UAC3B5E,KAAKkF,YAAYN,YAGzB6I,EAAiBvN,UAAUwH,WAAa,SAAUrC,GAE9C,OADarF,KAAK8G,OAEP9G,KAAK8G,OAAOO,UAAUhC,GAGtB,IAAaiF,OAGrBmD,EAnCY,CAoCrBJ,I,6BC1JF,kCAMO,IAAI1K,EALe,mBAAXD,QAA0BA,OAAOC,SAGrCD,OAAOC,SAFH,c,6BCFf,6CAEIkL,EAAmB,SAAUnJ,GAE7B,SAASmJ,EAAgBrH,EAAQ4E,EAAYC,GACzC,IAAIxG,EAAQH,EAAO9D,KAAKZ,OAASA,KAKjC,OAJA6E,EAAM2B,OAASA,EACf3B,EAAMuG,WAAaA,EACnBvG,EAAMwG,WAAaA,EACnBxG,EAAMiF,MAAQ,EACPjF,EAaX,OApBA,YAAUgJ,EAAiBnJ,GAS3BmJ,EAAgB3N,UAAUoF,MAAQ,SAAU/D,GACxCvB,KAAKwG,OAAOgF,WAAWxL,KAAKoL,WAAY7J,EAAOvB,KAAKqL,WAAYrL,KAAK8J,QAAS9J,OAElF6N,EAAgB3N,UAAUsF,OAAS,SAAUjC,GACzCvD,KAAKwG,OAAOoF,YAAYrI,EAAOvD,MAC/BA,KAAK0F,eAETmI,EAAgB3N,UAAUuF,UAAY,WAClCzF,KAAKwG,OAAOqF,eAAe7L,MAC3BA,KAAK0F,eAEFmI,EArBW,CAFtB,KAwBE,I,gCCxBa,SAASC,EAAejK,GACrC,OAAY,MAALA,GAA0B,iBAANA,IAAoD,IAAlCA,EAAE,4BADjD,mC,6BCAA,kCAAO,IAAImE,EACkB,mBAAXtF,OACRA,OAAO,gBACP,kBAAoBqL,KAAKC,U,6BCHnC,oFAMO,SAASC,EAAUnD,EAASoD,GAC/B,MAA8B,mBAAnBA,EACA,SAAUpH,GAAU,OAAOA,EAAO+B,KAAKoF,GAAU,SAAUpK,EAAGrD,GAAK,OAAO,YAAKsK,EAAQjH,EAAGrD,IAAIqI,KAAK,aAAI,SAAUtJ,EAAG4O,GAAM,OAAOD,EAAerK,EAAGtE,EAAGiB,EAAG2N,YAE7J,SAAUrH,GAAU,OAAOA,EAAOa,KAAK,IAAIyG,EAAkBtD,KAExE,IAAIsD,EAAqB,WACrB,SAASA,EAAkBtD,GACvB9K,KAAK8K,QAAUA,EAKnB,OAHAsD,EAAkBlO,UAAUU,KAAO,SAAUyE,EAAYyB,GACrD,OAAOA,EAAOO,UAAU,IAAIgH,EAAoBhJ,EAAYrF,KAAK8K,WAE9DsD,EAPa,GASpBC,EAAuB,SAAU3J,GAEjC,SAAS2J,EAAoBnJ,EAAa4F,GACtC,IAAIjG,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAG9C,OAFA6E,EAAMiG,QAAUA,EAChBjG,EAAMiF,MAAQ,EACPjF,EAgDX,OArDA,YAAUwJ,EAAqB3J,GAO/B2J,EAAoBnO,UAAUoF,MAAQ,SAAU/D,GAC5C,IAAIK,EACAkI,EAAQ9J,KAAK8J,QACjB,IACIlI,EAAS5B,KAAK8K,QAAQvJ,EAAOuI,GAEjC,MAAOvG,GAEH,YADAvD,KAAKkF,YAAY3B,MAAMA,GAG3BvD,KAAKsO,UAAU1M,EAAQL,EAAOuI,IAElCuE,EAAoBnO,UAAUoO,UAAY,SAAU1M,EAAQL,EAAOuI,GAC/D,IAAIyE,EAAoBvO,KAAKuO,kBACzBA,GACAA,EAAkB7I,cAEtB,IAAI4F,EAAkB,IAAI,IAAgBtL,KAAMuB,EAAOuI,GACnD5E,EAAclF,KAAKkF,YACvBA,EAAYC,IAAImG,GAChBtL,KAAKuO,kBAAoB,YAAkBvO,KAAM4B,OAAQ0F,OAAWA,EAAWgE,GAC3EtL,KAAKuO,oBAAsBjD,GAC3BpG,EAAYC,IAAInF,KAAKuO,oBAG7BF,EAAoBnO,UAAUuF,UAAY,WACtC,IAAI8I,EAAoBvO,KAAKuO,kBACxBA,IAAqBA,EAAkB5I,QACxCjB,EAAOxE,UAAUuF,UAAU7E,KAAKZ,MAEpCA,KAAK0F,eAET2I,EAAoBnO,UAAUwG,aAAe,WACzC1G,KAAKuO,kBAAoB,MAE7BF,EAAoBnO,UAAU2L,eAAiB,SAAUF,GACnC3L,KAAKkF,YACX2E,OAAO8B,GACnB3L,KAAKuO,kBAAoB,KACrBvO,KAAKiF,WACLP,EAAOxE,UAAUuF,UAAU7E,KAAKZ,OAGxCqO,EAAoBnO,UAAUsL,WAAa,SAAUJ,EAAYK,EAAYJ,EAAYK,EAAYC,GACjG3L,KAAKkF,YAAYzD,KAAKgK,IAEnB4C,EAtDe,CAuDxB,M,6BC5EF,oDAEO,SAASG,EAAcC,EAAOC,GACjC,OAAO,IAAI,KAAW,SAAUrJ,GAC5B,IAAI8E,EAAM,IAAI,IACV3J,EAAI,EAWR,OAVA2J,EAAIhF,IAAIuJ,EAAUvB,UAAS,WACnB3M,IAAMiO,EAAM9N,QAIhB0E,EAAW5D,KAAKgN,EAAMjO,MACjB6E,EAAWM,QACZwE,EAAIhF,IAAInF,KAAKmN,aALb9H,EAAWT,eAQZuF,O,6BChBf,6DAGO,SAASwE,EAAUF,EAAOC,GAC7B,OAAKA,EAIM,YAAcD,EAAOC,GAHrB,IAAI,IAAW,YAAiBD,M,yICIxC,SAASG,EAAUH,EAAOC,GAC7B,GAAa,MAATD,EAAe,CACf,GCVD,SAA6BA,GAChC,OAAOA,GAA6C,mBAA7BA,EAAM,KDSrBI,CAAoBJ,GACpB,OETL,SAA4BA,EAAOC,GACtC,OAAO,IAAIlH,EAAA,GAAW,SAAUnC,GAC5B,IAAI8E,EAAM,IAAIT,EAAA,EASd,OARAS,EAAIhF,IAAIuJ,EAAUvB,UAAS,WACvB,IAAItF,EAAa4G,EAAM,OACvBtE,EAAIhF,IAAI0C,EAAWR,UAAU,CACzB5F,KAAM,SAAUF,GAAS4I,EAAIhF,IAAIuJ,EAAUvB,UAAS,WAAc,OAAO9H,EAAW5D,KAAKF,QACzFgC,MAAO,SAAUgC,GAAO4E,EAAIhF,IAAIuJ,EAAUvB,UAAS,WAAc,OAAO9H,EAAW9B,MAAMgC,QACzFX,SAAU,WAAcuF,EAAIhF,IAAIuJ,EAAUvB,UAAS,WAAc,OAAO9H,EAAWT,uBAGpFuF,KFFI2E,CAAmBL,EAAOC,GAEhC,GAAI,OAAAK,EAAA,GAAUN,GACf,OGbL,SAAyBA,EAAOC,GACnC,OAAO,IAAIlH,EAAA,GAAW,SAAUnC,GAC5B,IAAI8E,EAAM,IAAIT,EAAA,EASd,OARAS,EAAIhF,IAAIuJ,EAAUvB,UAAS,WAAc,OAAOsB,EAAM3M,MAAK,SAAUP,GACjE4I,EAAIhF,IAAIuJ,EAAUvB,UAAS,WACvB9H,EAAW5D,KAAKF,GAChB4I,EAAIhF,IAAIuJ,EAAUvB,UAAS,WAAc,OAAO9H,EAAWT,sBAEhE,SAAUW,GACT4E,EAAIhF,IAAIuJ,EAAUvB,UAAS,WAAc,OAAO9H,EAAW9B,MAAMgC,cAE9D4E,KHEI6E,CAAgBP,EAAOC,GAE7B,GAAI,OAAAO,EAAA,GAAYR,GACjB,OAAO,OAAAD,EAAA,GAAcC,EAAOC,GAE3B,GInBN,SAAoBD,GACvB,OAAOA,GAA2C,mBAA3BA,EAAM,KJkBhBS,CAAWT,IAA2B,iBAAVA,EACjC,OKlBL,SAA0BA,EAAOC,GACpC,IAAKD,EACD,MAAM,IAAIhI,MAAM,2BAEpB,OAAO,IAAIe,EAAA,GAAW,SAAUnC,GAC5B,IACI1C,EADAwH,EAAM,IAAIT,EAAA,EAiCd,OA/BAS,EAAIhF,KAAI,WACAxC,GAAuC,mBAApBA,EAASwM,QAC5BxM,EAASwM,YAGjBhF,EAAIhF,IAAIuJ,EAAUvB,UAAS,WACvBxK,EAAW8L,EAAM,OACjBtE,EAAIhF,IAAIuJ,EAAUvB,UAAS,WACvB,IAAI9H,EAAWM,OAAf,CAGA,IAAIpE,EACAM,EACJ,IACI,IAAID,EAASe,EAASlB,OACtBF,EAAQK,EAAOL,MACfM,EAAOD,EAAOC,KAElB,MAAO0D,GAEH,YADAF,EAAW9B,MAAMgC,GAGjB1D,EACAwD,EAAWT,YAGXS,EAAW5D,KAAKF,GAChBvB,KAAKmN,qBAIVhD,KLpBIiF,CAAiBX,EAAOC,GAE9B,GAAIhM,QAAUA,OAAOwB,eAAwD,mBAAhCuK,EAAM/L,OAAOwB,eAC3D,OMtBL,SAA+BuK,EAAOC,GACzC,IAAKD,EACD,MAAM,IAAIhI,MAAM,2BAEpB,OAAO,IAAIe,EAAA,GAAW,SAAUnC,GAC5B,IAAI8E,EAAM,IAAIT,EAAA,EAgBd,OAfAS,EAAIhF,IAAIuJ,EAAUvB,UAAS,WACvB,IAAIxK,EAAW8L,EAAM/L,OAAOwB,iBAC5BiG,EAAIhF,IAAIuJ,EAAUvB,UAAS,WACvB,IAAItI,EAAQ7E,KACZ2C,EAASlB,OAAOK,MAAK,SAAUF,GACvBA,EAAOC,KACPwD,EAAWT,YAGXS,EAAW5D,KAAKG,EAAOL,OACvBsD,EAAMsI,uBAKfhD,KNCIkF,CAAsBZ,EAAOC,GAG5C,MAAM,IAAI5L,WAAqB,OAAV2L,UAAyBA,GAASA,GAAS,sBOxB7D,SAASa,EAAKb,EAAOC,GACxB,OAAKA,EAOME,EAAUH,EAAOC,GANpBD,aAAiBjH,EAAA,EACViH,EAEJ,IAAIjH,EAAA,EAAW,OAAA+H,EAAA,GAAYd,M,0ECRtCe,EAAa,WACb,SAASA,EAAUC,EAAiBC,QACpB,IAARA,IAAkBA,EAAMF,EAAUE,KACtC1P,KAAKyP,gBAAkBA,EACvBzP,KAAK0P,IAAMA,EAOf,OALAF,EAAUtP,UAAUiN,SAAW,SAAUwC,EAAMC,EAAOC,GAElD,YADc,IAAVD,IAAoBA,EAAQ,GACzB,IAAI5P,KAAKyP,gBAAgBzP,KAAM2P,GAAMxC,SAAS0C,EAAOD,IAEhEJ,EAAUE,IAAM,WAAc,OAAOI,KAAKJ,OACnCF,EAXK,GCEZ,EAAkB,SAAU9K,GAE5B,SAASqL,EAAeN,EAAiBC,QACzB,IAARA,IAAkBA,EAAMF,EAAUE,KACtC,IAAI7K,EAAQH,EAAO9D,KAAKZ,KAAMyP,GAAiB,WAC3C,OAAIM,EAAeC,UAAYD,EAAeC,WAAanL,EAChDkL,EAAeC,SAASN,MAGxBA,QAET1P,KAIN,OAHA6E,EAAMoL,QAAU,GAChBpL,EAAMqL,QAAS,EACfrL,EAAM+J,eAAYtH,EACXzC,EAgCX,OA9CA,YAAUkL,EAAgBrL,GAgB1BqL,EAAe7P,UAAUiN,SAAW,SAAUwC,EAAMC,EAAOC,GAEvD,YADc,IAAVD,IAAoBA,EAAQ,GAC5BG,EAAeC,UAAYD,EAAeC,WAAahQ,KAChD+P,EAAeC,SAAS7C,SAASwC,EAAMC,EAAOC,GAG9CnL,EAAOxE,UAAUiN,SAASvM,KAAKZ,KAAM2P,EAAMC,EAAOC,IAGjEE,EAAe7P,UAAUiQ,MAAQ,SAAUC,GACvC,IAAIH,EAAUjQ,KAAKiQ,QACnB,GAAIjQ,KAAKkQ,OACLD,EAAQjN,KAAKoN,OADjB,CAIA,IAAI7M,EACJvD,KAAKkQ,QAAS,EACd,GACI,GAAI3M,EAAQ6M,EAAOC,QAAQD,EAAOP,MAAOO,EAAOR,OAC5C,YAECQ,EAASH,EAAQ1L,SAE1B,GADAvE,KAAKkQ,QAAS,EACV3M,EAAO,CACP,KAAO6M,EAASH,EAAQ1L,SACpB6L,EAAO1K,cAEX,MAAMnC,KAGPwM,EA/CU,CAgDnBP,I,0EChDE,EAAe,SAAU9K,GAEzB,SAAS4L,EAAY5B,EAAWiB,GAC5B,IAAI9K,EAAQH,EAAO9D,KAAKZ,KAAM0O,EAAWiB,IAAS3P,KAIlD,OAHA6E,EAAM6J,UAAYA,EAClB7J,EAAM8K,KAAOA,EACb9K,EAAM0L,SAAU,EACT1L,EA2EX,OAjFA,YAAUyL,EAAa5L,GAQvB4L,EAAYpQ,UAAUiN,SAAW,SAAU0C,EAAOD,GAE9C,QADc,IAAVA,IAAoBA,EAAQ,GAC5B5P,KAAK2F,OACL,OAAO3F,KAEXA,KAAK6P,MAAQA,EACb,IAAIW,EAAKxQ,KAAKwQ,GACV9B,EAAY1O,KAAK0O,UAOrB,OANU,MAAN8B,IACAxQ,KAAKwQ,GAAKxQ,KAAKyQ,eAAe/B,EAAW8B,EAAIZ,IAEjD5P,KAAKuQ,SAAU,EACfvQ,KAAK4P,MAAQA,EACb5P,KAAKwQ,GAAKxQ,KAAKwQ,IAAMxQ,KAAK0Q,eAAehC,EAAW1O,KAAKwQ,GAAIZ,GACtD5P,MAEXsQ,EAAYpQ,UAAUwQ,eAAiB,SAAUhC,EAAW8B,EAAIZ,GAE5D,YADc,IAAVA,IAAoBA,EAAQ,GACzBe,YAAYjC,EAAUyB,MAAMlK,KAAKyI,EAAW1O,MAAO4P,IAE9DU,EAAYpQ,UAAUuQ,eAAiB,SAAU/B,EAAW8B,EAAIZ,GAE5D,QADc,IAAVA,IAAoBA,EAAQ,GAClB,OAAVA,GAAkB5P,KAAK4P,QAAUA,IAA0B,IAAjB5P,KAAKuQ,QAC/C,OAAOC,EAEXI,cAAcJ,IAGlBF,EAAYpQ,UAAUmQ,QAAU,SAAUR,EAAOD,GAC7C,GAAI5P,KAAK2F,OACL,OAAO,IAAIc,MAAM,gCAErBzG,KAAKuQ,SAAU,EACf,IAAIhN,EAAQvD,KAAK6Q,SAAShB,EAAOD,GACjC,GAAIrM,EACA,OAAOA,GAEe,IAAjBvD,KAAKuQ,SAAgC,MAAXvQ,KAAKwQ,KACpCxQ,KAAKwQ,GAAKxQ,KAAKyQ,eAAezQ,KAAK0O,UAAW1O,KAAKwQ,GAAI,QAG/DF,EAAYpQ,UAAU2Q,SAAW,SAAUhB,EAAOD,GAC9C,IAAIkB,GAAU,EACVC,OAAazJ,EACjB,IACItH,KAAK2P,KAAKE,GAEd,MAAOnO,GACHoP,GAAU,EACVC,IAAerP,GAAKA,GAAK,IAAI+E,MAAM/E,GAEvC,GAAIoP,EAEA,OADA9Q,KAAK0F,cACEqL,GAGfT,EAAYpQ,UAAUwG,aAAe,WACjC,IAAI8J,EAAKxQ,KAAKwQ,GACV9B,EAAY1O,KAAK0O,UACjBuB,EAAUvB,EAAUuB,QACpBnG,EAAQmG,EAAQzF,QAAQxK,MAC5BA,KAAK2P,KAAO,KACZ3P,KAAK6P,MAAQ,KACb7P,KAAKuQ,SAAU,EACfvQ,KAAK0O,UAAY,MACF,IAAX5E,GACAmG,EAAQtF,OAAOb,EAAO,GAEhB,MAAN0G,IACAxQ,KAAKwQ,GAAKxQ,KAAKyQ,eAAe/B,EAAW8B,EAAI,OAEjDxQ,KAAK4P,MAAQ,MAEVU,EAlFO,CCAJ,SAAU5L,GAEpB,SAASsM,EAAOtC,EAAWiB,GACvB,OAAOjL,EAAO9D,KAAKZ,OAASA,KAMhC,OARA,YAAUgR,EAAQtM,GAIlBsM,EAAO9Q,UAAUiN,SAAW,SAAU0C,EAAOD,GAEzC,YADc,IAAVA,IAAoBA,EAAQ,GACzB5P,MAEJgR,EATE,C,KAUX,K,6BCZF,8DAGO,SAASC,IAEZ,IADA,IAAIC,EAAO,GACFnI,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpCmI,EAAKnI,GAAMrI,UAAUqI,GAEzB,IAAI2F,EAAYwC,EAAKA,EAAKvQ,OAAS,GACnC,OAAI,YAAY+N,IACZwC,EAAKnO,MACE,YAAcmO,EAAMxC,IAGpB,YAAUwC,K,6BCdzB,sDAEWtH,EAAQ,CACfjE,QAAQ,EACRlE,KAAM,SAAUF,KAChBgC,MAAO,SAAUgC,GACb,GAAI,IAAOY,sCACP,MAAMZ,EAGN,YAAgBA,IAGxBX,SAAU,e,mECVHuM,E,uBCMX,SAASC,EAAShK,GACd,IAAI7D,EAAQ6D,EAAG7D,MAAoB6D,EAAG/B,WAC3B9B,MAAMA,IDPrB,SAAW4N,GACPA,EAAuB,KAAI,IAC3BA,EAAwB,MAAI,IAC5BA,EAA2B,SAAI,IAHnC,CAIGA,IAAqBA,EAAmB,KAC3C,IAAI,EAAgB,WAChB,SAASE,EAAaC,EAAM/P,EAAOgC,GAC/BvD,KAAKsR,KAAOA,EACZtR,KAAKuB,MAAQA,EACbvB,KAAKuD,MAAQA,EACbvD,KAAKuR,SAAoB,MAATD,EAyDpB,OAvDAD,EAAanR,UAAUsR,QAAU,SAAUpJ,GACvC,OAAQpI,KAAKsR,MACT,IAAK,IACD,OAAOlJ,EAAS3G,MAAQ2G,EAAS3G,KAAKzB,KAAKuB,OAC/C,IAAK,IACD,OAAO6G,EAAS7E,OAAS6E,EAAS7E,MAAMvD,KAAKuD,OACjD,IAAK,IACD,OAAO6E,EAASxD,UAAYwD,EAASxD,aAGjDyM,EAAanR,UAAUuR,GAAK,SAAUhQ,EAAM8B,EAAOqB,GAE/C,OADW5E,KAAKsR,MAEZ,IAAK,IACD,OAAO7P,GAAQA,EAAKzB,KAAKuB,OAC7B,IAAK,IACD,OAAOgC,GAASA,EAAMvD,KAAKuD,OAC/B,IAAK,IACD,OAAOqB,GAAYA,MAG/ByM,EAAanR,UAAUwR,OAAS,SAAU3J,EAAgBxE,EAAOqB,GAC7D,OAAImD,GAAiD,mBAAxBA,EAAetG,KACjCzB,KAAKwR,QAAQzJ,GAGb/H,KAAKyR,GAAG1J,EAAgBxE,EAAOqB,IAG9CyM,EAAanR,UAAUyR,aAAe,WAClC,IC7CmBpO,EAAOmL,ED8C1B,OADW1O,KAAKsR,MAEZ,IAAK,IACD,OAAO,OAAAL,EAAA,GAAGjR,KAAKuB,OACnB,IAAK,IACD,OClDWgC,EDkDOvD,KAAKuD,MCjD9BmL,EAIM,IAAIlH,EAAA,GAAW,SAAUnC,GAAc,OAAOqJ,EAAUvB,SAASiE,EAAU,EAAG,CAAE7N,MAAOA,EAAO8B,WAAYA,OAH1G,IAAImC,EAAA,GAAW,SAAUnC,GAAc,OAAOA,EAAW9B,MAAMA,MDiDlE,IAAK,IACD,OAAO,IAEf,MAAM,IAAIkD,MAAM,uCAEpB4K,EAAaO,WAAa,SAAUrQ,GAChC,YAAqB,IAAVA,EACA,IAAI8P,EAAa,IAAK9P,GAE1B8P,EAAaQ,4BAExBR,EAAaS,YAAc,SAAUvM,GACjC,OAAO,IAAI8L,EAAa,SAAK/J,EAAW/B,IAE5C8L,EAAaU,eAAiB,WAC1B,OAAOV,EAAaW,sBAExBX,EAAaW,qBAAuB,IAAIX,EAAa,KACrDA,EAAaQ,2BAA6B,IAAIR,EAAa,SAAK/J,GACzD+J,EA9DQ,I,gCETnB,gFACO,SAASxI,IAEZ,IADA,IAAIoJ,EAAM,GACDlJ,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpCkJ,EAAIlJ,GAAMrI,UAAUqI,GAExB,OAAOmJ,EAAcD,GAElB,SAASC,EAAcD,GAC1B,OAAmB,IAAfA,EAAItR,OACG,IAEQ,IAAfsR,EAAItR,OACGsR,EAAI,GAER,SAAexD,GAClB,OAAOwD,EAAIrH,QAAO,SAAUuH,EAAM5L,GAAM,OAAOA,EAAG4L,KAAU1D,M,6BChBpE,oDAEO,SAAS2D,EAAqBC,EAASC,GAC1C,OAAO,SAAUxL,GAAU,OAAOA,EAAOa,KAAK,IAAI4K,EAA6BF,EAASC,KAE5F,IAAIC,EAAgC,WAChC,SAASA,EAA6BF,EAASC,GAC3CtS,KAAKqS,QAAUA,EACfrS,KAAKsS,YAAcA,EAKvB,OAHAC,EAA6BrS,UAAUU,KAAO,SAAUyE,EAAYyB,GAChE,OAAOA,EAAOO,UAAU,IAAImL,EAA+BnN,EAAYrF,KAAKqS,QAASrS,KAAKsS,eAEvFC,EARwB,GAU/BC,EAAkC,SAAU9N,GAE5C,SAAS8N,EAA+BtN,EAAamN,EAASC,GAC1D,IAAIzN,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAM9C,OALA6E,EAAMyN,YAAcA,EACpBzN,EAAM4N,QAAS,EACQ,mBAAZJ,IACPxN,EAAMwN,QAAUA,GAEbxN,EAgCX,OAxCA,YAAU2N,EAAgC9N,GAU1C8N,EAA+BtS,UAAUmS,QAAU,SAAUpJ,EAAG/G,GAC5D,OAAO+G,IAAM/G,GAEjBsQ,EAA+BtS,UAAUoF,MAAQ,SAAU/D,GACvD,IAAImR,EACJ,IACI,IAAIJ,EAActS,KAAKsS,YACvBI,EAAMJ,EAAcA,EAAY/Q,GAASA,EAE7C,MAAOgE,GACH,OAAOvF,KAAKkF,YAAY3B,MAAMgC,GAElC,IAAI3D,GAAS,EACb,GAAI5B,KAAKyS,OACL,IAEI7Q,GAASyQ,EADKrS,KAAKqS,SACFrS,KAAK0S,IAAKA,GAE/B,MAAOnN,GACH,OAAOvF,KAAKkF,YAAY3B,MAAMgC,QAIlCvF,KAAKyS,QAAS,EAEb7Q,IACD5B,KAAK0S,IAAMA,EACX1S,KAAKkF,YAAYzD,KAAKF,KAGvBiR,EAzC0B,CA0CnC,M,6BCzDK,SAASpI,EAASnB,GACrB,OAAa,OAANA,GAA2B,iBAANA,EADhC,mC,6BCAA,6CAEI0J,EAAuB,SAAUjO,GAEjC,SAASiO,EAAoBnF,EAASnI,GAClC,IAAIR,EAAQH,EAAO9D,KAAKZ,OAASA,KAIjC,OAHA6E,EAAM2I,QAAUA,EAChB3I,EAAMQ,WAAaA,EACnBR,EAAMc,QAAS,EACRd,EAkBX,OAxBA,YAAU8N,EAAqBjO,GAQ/BiO,EAAoBzS,UAAUwF,YAAc,WACxC,IAAI1F,KAAK2F,OAAT,CAGA3F,KAAK2F,QAAS,EACd,IAAI6H,EAAUxN,KAAKwN,QACfF,EAAYE,EAAQF,UAExB,GADAtN,KAAKwN,QAAU,KACVF,GAAkC,IAArBA,EAAU3M,SAAgB6M,EAAQvI,YAAauI,EAAQ7H,OAAzE,CAGA,IAAIiN,EAAkBtF,EAAU9C,QAAQxK,KAAKqF,aACpB,IAArBuN,GACAtF,EAAU3C,OAAOiI,EAAiB,MAGnCD,EAzBe,CAF1B,KA4BE,I,6BC5BK,SAASE,EAAS5J,GACrB,OAAOA,EADX,mC,6BCAA,kCAAO,IAAI6J,EAAmB,SAAUC,GAAS,OAAO,SAAU1N,GAC9D,IAAK,IAAI7E,EAAI,EAAG0J,EAAM6I,EAAMpS,OAAQH,EAAI0J,IAAQ7E,EAAWM,OAAQnF,IAC/D6E,EAAW5D,KAAKsR,EAAMvS,IAE1B6E,EAAWT,c,6BCJf,kCAAO,IAAIqK,EAAc,SAAWhG,GAAK,OAAOA,GAAyB,iBAAbA,EAAEtI,QAAoC,mBAANsI,I,6BCArF,SAAS8F,EAAUxN,GACtB,QAASA,GAAoC,mBAApBA,EAAM8F,WAAkD,mBAAf9F,EAAMO,KAD5E,mC,6BCAA,8CAEWkR,EAAQ,IAFnB,MAEuB,GAAe,M,6BCFvB,SAASC,EAAUhK,GAChC,MAA6C,oBAAtCzJ,OAAOU,UAAUqJ,SAAS3I,KAAKqI,GADxC,mC,kICCO,SAASiK,EAAyBC,GACrC,OAAO,SAAU9N,IAIrB,SAAiB8N,EAAe9N,GAC5B,IAAI+N,EAAiBC,EACjBC,EAAKlM,EACT,OAAO,YAAUpH,UAAM,OAAQ,GAAQ,WACnC,IAAIuB,EAAOgS,EACX,OAAO,YAAYvT,MAAM,SAAU6M,GAC/B,OAAQA,EAAGxK,OACP,KAAK,EACDwK,EAAGtK,KAAKS,KAAK,CAAC,EAAG,EAAG,EAAG,KACvBoQ,EAAkB,YAAcD,GAChCtG,EAAGxK,MAAQ,EACf,KAAK,EAAG,MAAO,CAAC,EAAG+Q,EAAgB3R,QACnC,KAAK,EACD,IAAM4R,EAAoBxG,EAAGvK,QAA2BT,KAAO,MAAO,CAAC,EAAG,GAC1EN,EAAQ8R,EAAkB9R,MAC1B8D,EAAW5D,KAAKF,GAChBsL,EAAGxK,MAAQ,EACf,KAAK,EAAG,MAAO,CAAC,EAAG,GACnB,KAAK,EAAG,MAAO,CAAC,EAAG,IACnB,KAAK,EAGD,OAFAkR,EAAQ1G,EAAGvK,OACXgR,EAAM,CAAE/P,MAAOgQ,GACR,CAAC,EAAG,IACf,KAAK,EAED,OADA1G,EAAGtK,KAAKS,KAAK,CAAC,EAAG,CAAE,EAAG,KAChBqQ,IAAsBA,EAAkBxR,OAASuF,EAAKgM,EAAgBjE,QACrE,CAAC,EAAG/H,EAAGxG,KAAKwS,IAD0E,CAAC,EAAG,GAErG,KAAK,EACDvG,EAAGvK,OACHuK,EAAGxK,MAAQ,EACf,KAAK,EAAG,MAAO,CAAC,EAAG,IACnB,KAAK,EACD,GAAIiR,EAAK,MAAMA,EAAI/P,MACnB,MAAO,CAAC,GACZ,KAAK,GAAI,MAAO,CAAC,GACjB,KAAK,GAED,OADA8B,EAAWT,WACJ,CAAC,WAxCpB4O,CAAQL,EAAe9N,GAAYoO,OAAM,SAAUlO,GAAO,OAAOF,EAAW9B,MAAMgC,OCOnF,IAAIgK,EAAc,SAAU3N,GAC/B,GAAMA,GAA+C,mBAA9BA,EAAO,KAC1B,OCXqC8R,EDWR9R,ECXsB,SAAUyD,GACjE,IAAIsO,EAAMD,EAAI,OACd,GAA6B,mBAAlBC,EAAItM,UACX,MAAM,IAAIvE,UAAU,kEAGpB,OAAO6Q,EAAItM,UAAUhC,IDOpB,GAAI,OAAA4J,EAAA,GAAYrN,GACjB,OAAO,OAAAkR,EAAA,GAAiBlR,GAEvB,GAAI,OAAAmN,EAAA,GAAUnN,GACf,OEjBkCgF,EFiBRhF,EEjB0B,SAAUyD,GAQlE,OAPAuB,EAAQ9E,MAAK,SAAUP,GACd8D,EAAWM,SACZN,EAAW5D,KAAKF,GAChB8D,EAAWT,eAEhB,SAAUW,GAAO,OAAOF,EAAW9B,MAAMgC,MACvCzD,KAAK,KAAMkL,EAAA,GACT3H,GFWF,GAAMzD,GAA6C,mBAA5BA,EAAO,KAC/B,OGpBmCgS,EHoBRhS,EGpB2B,SAAUyD,GAEpE,IADA,IAAI1C,EAAWiR,EAAS,SACrB,CACC,IAAIC,EAAOlR,EAASlB,OACpB,GAAIoS,EAAKhS,KAAM,CACXwD,EAAWT,WACX,MAGJ,GADAS,EAAW5D,KAAKoS,EAAKtS,OACjB8D,EAAWM,OACX,MAUR,MAP+B,mBAApBhD,EAASwM,QAChB9J,EAAWF,KAAI,WACPxC,EAASwM,QACTxM,EAASwM,YAId9J,GHEF,GAAI3C,QAAUA,OAAOwB,eACpBtC,GAAkD,mBAAjCA,EAAOc,OAAOwB,eACjC,OAAOgP,EAAyBtR,GAGhC,IG3BmCgS,EDADhN,EDAG8M,ED2BjCnS,EAAQ,OAAA6I,EAAA,GAASxI,GAAU,oBAAsB,IAAMA,EAAS,IAGpE,MAAM,IAAIkB,UAFA,gBAAkBvB,EAAlB,+F,iHIblB,IAAIuS,EAAoB,WACpB,SAASA,EAAiBhJ,EAASiJ,QACZ,IAAfA,IAAyBA,EAAaC,OAAOC,mBACjDjU,KAAK8K,QAAUA,EACf9K,KAAK+T,WAAaA,EAKtB,OAHAD,EAAiB5T,UAAUU,KAAO,SAAUwH,EAAUtB,GAClD,OAAOA,EAAOO,UAAU,IAAI,EAAmBe,EAAUpI,KAAK8K,QAAS9K,KAAK+T,cAEzED,EATY,GAYnB,EAAsB,SAAUpP,GAEhC,SAASwP,EAAmBhP,EAAa4F,EAASiJ,QAC3B,IAAfA,IAAyBA,EAAaC,OAAOC,mBACjD,IAAIpP,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAO9C,OANA6E,EAAMiG,QAAUA,EAChBjG,EAAMkP,WAAaA,EACnBlP,EAAMsP,cAAe,EACrBtP,EAAMuP,OAAS,GACfvP,EAAMqL,OAAS,EACfrL,EAAMiF,MAAQ,EACPjF,EAqDX,OA/DA,YAAUqP,EAAoBxP,GAY9BwP,EAAmBhU,UAAUoF,MAAQ,SAAU/D,GACvCvB,KAAKkQ,OAASlQ,KAAK+T,WACnB/T,KAAKqU,SAAS9S,GAGdvB,KAAKoU,OAAOpR,KAAKzB,IAGzB2S,EAAmBhU,UAAUmU,SAAW,SAAU9S,GAC9C,IAAIK,EACAkI,EAAQ9J,KAAK8J,QACjB,IACIlI,EAAS5B,KAAK8K,QAAQvJ,EAAOuI,GAEjC,MAAOvE,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAG3BvF,KAAKkQ,SACLlQ,KAAKsO,UAAU1M,EAAQL,EAAOuI,IAElCoK,EAAmBhU,UAAUoO,UAAY,SAAUgG,EAAK/S,EAAOuI,GAC3D,IAAIwB,EAAkB,IAAIuC,EAAA,EAAgB7N,KAAMuB,EAAOuI,GACnD5E,EAAclF,KAAKkF,YACvBA,EAAYC,IAAImG,GAChB,IAAIiD,EAAoB,OAAArD,EAAA,GAAkBlL,KAAMsU,OAAKhN,OAAWA,EAAWgE,GACvEiD,IAAsBjD,GACtBpG,EAAYC,IAAIoJ,IAGxB2F,EAAmBhU,UAAUuF,UAAY,WACrCzF,KAAKmU,cAAe,EACA,IAAhBnU,KAAKkQ,QAAuC,IAAvBlQ,KAAKoU,OAAOzT,QACjCX,KAAKkF,YAAYN,WAErB5E,KAAK0F,eAETwO,EAAmBhU,UAAUsL,WAAa,SAAUJ,EAAYK,EAAYJ,EAAYK,EAAYC,GAChG3L,KAAKkF,YAAYzD,KAAKgK,IAE1ByI,EAAmBhU,UAAU2L,eAAiB,SAAUF,GACpD,IAAIyI,EAASpU,KAAKoU,OAClBpU,KAAK6J,OAAO8B,GACZ3L,KAAKkQ,SACDkE,EAAOzT,OAAS,EAChBX,KAAKsF,MAAM8O,EAAO7P,SAEG,IAAhBvE,KAAKkQ,QAAgBlQ,KAAKmU,cAC/BnU,KAAKkF,YAAYN,YAGlBsP,EAhEc,CAiEvB3I,EAAA,G,QC3FK,SAASgJ,EAASR,GAErB,YADmB,IAAfA,IAAyBA,EAAaC,OAAOC,mBDG9C,SAASO,EAAS1J,EAASoD,EAAgB6F,GAE9C,YADmB,IAAfA,IAAyBA,EAAaC,OAAOC,mBACnB,mBAAnB/F,EACA,SAAUpH,GAAU,OAAOA,EAAO+B,KAAK2L,GAAS,SAAU3Q,EAAGrD,GAAK,OAAO,OAAA8O,EAAA,GAAKxE,EAAQjH,EAAGrD,IAAIqI,KAAK,OAAAS,EAAA,IAAI,SAAU/J,EAAG4O,GAAM,OAAOD,EAAerK,EAAGtE,EAAGiB,EAAG2N,SAAa4F,MAE7I,iBAAnB7F,IACZ6F,EAAa7F,GAEV,SAAUpH,GAAU,OAAOA,EAAOa,KAAK,IAAImM,EAAiBhJ,EAASiJ,MCVrES,CAAS3B,EAAA,EAAUkB,K,6BCJ9B,8FAGO,SAASU,EAAU/F,EAAWkB,GAEjC,YADc,IAAVA,IAAoBA,EAAQ,GACzB,SAAmC9I,GACtC,OAAOA,EAAOa,KAAK,IAAI+M,EAAkBhG,EAAWkB,KAG5D,IAAI8E,EAAqB,WACrB,SAASA,EAAkBhG,EAAWkB,QACpB,IAAVA,IAAoBA,EAAQ,GAChC5P,KAAK0O,UAAYA,EACjB1O,KAAK4P,MAAQA,EAKjB,OAHA8E,EAAkBxU,UAAUU,KAAO,SAAUyE,EAAYyB,GACrD,OAAOA,EAAOO,UAAU,IAAIsN,EAAoBtP,EAAYrF,KAAK0O,UAAW1O,KAAK4P,SAE9E8E,EATa,GAYpBC,EAAuB,SAAUjQ,GAEjC,SAASiQ,EAAoBzP,EAAawJ,EAAWkB,QACnC,IAAVA,IAAoBA,EAAQ,GAChC,IAAI/K,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAG9C,OAFA6E,EAAM6J,UAAYA,EAClB7J,EAAM+K,MAAQA,EACP/K,EAsBX,OA5BA,YAAU8P,EAAqBjQ,GAQ/BiQ,EAAoBvD,SAAW,SAAUwD,GACrC,IAAIC,EAAeD,EAAIC,aAAc3P,EAAc0P,EAAI1P,YACvD2P,EAAarD,QAAQtM,GACrBlF,KAAK0F,eAETiP,EAAoBzU,UAAU4U,gBAAkB,SAAUD,GACpC7U,KAAKkF,YACXC,IAAInF,KAAK0O,UAAUvB,SAASwH,EAAoBvD,SAAUpR,KAAK4P,MAAO,IAAImF,EAAiBF,EAAc7U,KAAKkF,gBAE9HyP,EAAoBzU,UAAUoF,MAAQ,SAAU/D,GAC5CvB,KAAK8U,gBAAgB,IAAalD,WAAWrQ,KAEjDoT,EAAoBzU,UAAUsF,OAAS,SAAUD,GAC7CvF,KAAK8U,gBAAgB,IAAahD,YAAYvM,IAC9CvF,KAAK0F,eAETiP,EAAoBzU,UAAUuF,UAAY,WACtCzF,KAAK8U,gBAAgB,IAAa/C,kBAClC/R,KAAK0F,eAEFiP,EA7Be,CA8BxB,KAEEI,EACA,SAA0BF,EAAc3P,GACpClF,KAAK6U,aAAeA,EACpB7U,KAAKkF,YAAcA,I;;;;;;;AClD3B,IAAiD8P,IASxC,WACT,OAAgB,SAAUC,GAEhB,IAAIC,EAAmB,GAGvB,SAASC,EAAoBC,GAG5B,GAAGF,EAAiBE,GACnB,OAAOF,EAAiBE,GAAUC,QAGnC,IAAIC,EAASJ,EAAiBE,GAAY,CACzC5U,EAAG4U,EACHG,GAAG,EACHF,QAAS,IAUV,OANAJ,EAAQG,GAAUxU,KAAK0U,EAAOD,QAASC,EAAQA,EAAOD,QAASF,GAG/DG,EAAOC,GAAI,EAGJD,EAAOD,QA0Df,OArDAF,EAAoBhS,EAAI8R,EAGxBE,EAAoBK,EAAIN,EAGxBC,EAAoB7V,EAAI,SAAS+V,EAAS5L,EAAMgM,GAC3CN,EAAoBjS,EAAEmS,EAAS5L,IAClCjK,OAAOkW,eAAeL,EAAS5L,EAAM,CAAEkM,YAAY,EAAMC,IAAKH,KAKhEN,EAAoB9R,EAAI,SAASgS,GACX,oBAAX3S,QAA0BA,OAAOmT,aAC1CrW,OAAOkW,eAAeL,EAAS3S,OAAOmT,YAAa,CAAEtU,MAAO,WAE7D/B,OAAOkW,eAAeL,EAAS,aAAc,CAAE9T,OAAO,KAQvD4T,EAAoB7U,EAAI,SAASiB,EAAOuU,GAEvC,GADU,EAAPA,IAAUvU,EAAQ4T,EAAoB5T,IAC/B,EAAPuU,EAAU,OAAOvU,EACpB,GAAW,EAAPuU,GAA8B,iBAAVvU,GAAsBA,GAASA,EAAMwU,WAAY,OAAOxU,EAChF,IAAIyU,EAAKxW,OAAOW,OAAO,MAGvB,GAFAgV,EAAoB9R,EAAE2S,GACtBxW,OAAOkW,eAAeM,EAAI,UAAW,CAAEL,YAAY,EAAMpU,MAAOA,IACtD,EAAPuU,GAA4B,iBAATvU,EAAmB,IAAI,IAAImR,KAAOnR,EAAO4T,EAAoB7V,EAAE0W,EAAItD,EAAK,SAASA,GAAO,OAAOnR,EAAMmR,IAAQzM,KAAK,KAAMyM,IAC9I,OAAOsD,GAIRb,EAAoB1U,EAAI,SAAS6U,GAChC,IAAIG,EAASH,GAAUA,EAAOS,WAC7B,WAAwB,OAAOT,EAAgB,SAC/C,WAA8B,OAAOA,GAEtC,OADAH,EAAoB7V,EAAEmW,EAAQ,IAAKA,GAC5BA,GAIRN,EAAoBjS,EAAI,SAAS+S,EAAQC,GAAY,OAAO1W,OAAOU,UAAUL,eAAee,KAAKqV,EAAQC,IAGzGf,EAAoBvV,EAAI,GAIjBuV,EAAoBA,EAAoB5U,EAAI,GAnF7C,CAsFN,CAEJ,SAAU+U,EAAQD,GA4CxBC,EAAOD,QA1CP,SAAgBc,GACZ,IAAIC,EAEJ,GAAyB,WAArBD,EAAQE,SACRF,EAAQG,QAERF,EAAeD,EAAQ5U,WAEtB,GAAyB,UAArB4U,EAAQE,UAA6C,aAArBF,EAAQE,SAAyB,CACtE,IAAIE,EAAaJ,EAAQK,aAAa,YAEjCD,GACDJ,EAAQM,aAAa,WAAY,IAGrCN,EAAQO,SACRP,EAAQQ,kBAAkB,EAAGR,EAAQ5U,MAAMZ,QAEtC4V,GACDJ,EAAQS,gBAAgB,YAG5BR,EAAeD,EAAQ5U,UAEtB,CACG4U,EAAQK,aAAa,oBACrBL,EAAQG,QAGZ,IAAIO,EAAY3K,OAAO4K,eACnBC,EAAQC,SAASC,cAErBF,EAAMG,mBAAmBf,GACzBU,EAAUM,kBACVN,EAAUO,SAASL,GAEnBX,EAAeS,EAAUtN,WAG7B,OAAO6M,IAQL,SAAUd,EAAQD,GAExB,SAASgC,KAKTA,EAAEnX,UAAY,CACZoX,GAAI,SAAU7N,EAAM8N,EAAUC,GAC5B,IAAI9V,EAAI1B,KAAK0B,IAAM1B,KAAK0B,EAAI,IAO5B,OALCA,EAAE+H,KAAU/H,EAAE+H,GAAQ,KAAKzG,KAAK,CAC/BuD,GAAIgR,EACJC,IAAKA,IAGAxX,MAGTyX,KAAM,SAAUhO,EAAM8N,EAAUC,GAC9B,IAAIpL,EAAOpM,KACX,SAAS0X,IACPtL,EAAKuL,IAAIlO,EAAMiO,GACfH,EAAS1W,MAAM2W,EAAK9W,WAItB,OADAgX,EAAStV,EAAImV,EACNvX,KAAKsX,GAAG7N,EAAMiO,EAAUF,IAGjCI,KAAM,SAAUnO,GAMd,IALA,IAAIoO,EAAO,GAAGlK,MAAM/M,KAAKF,UAAW,GAChCoX,IAAW9X,KAAK0B,IAAM1B,KAAK0B,EAAI,KAAK+H,IAAS,IAAIkE,QACjDnN,EAAI,EACJ0J,EAAM4N,EAAOnX,OAETH,EAAI0J,EAAK1J,IACfsX,EAAOtX,GAAG+F,GAAG1F,MAAMiX,EAAOtX,GAAGgX,IAAKK,GAGpC,OAAO7X,MAGT2X,IAAK,SAAUlO,EAAM8N,GACnB,IAAI7V,EAAI1B,KAAK0B,IAAM1B,KAAK0B,EAAI,IACxBqW,EAAOrW,EAAE+H,GACTuO,EAAa,GAEjB,GAAID,GAAQR,EACV,IAAK,IAAI/W,EAAI,EAAG0J,EAAM6N,EAAKpX,OAAQH,EAAI0J,EAAK1J,IACtCuX,EAAKvX,GAAG+F,KAAOgR,GAAYQ,EAAKvX,GAAG+F,GAAGnE,IAAMmV,GAC9CS,EAAWhV,KAAK+U,EAAKvX,IAY3B,OAJCwX,EAAiB,OACdtW,EAAE+H,GAAQuO,SACHtW,EAAE+H,GAENzJ,OAIXsV,EAAOD,QAAUgC,EACjB/B,EAAOD,QAAQ4C,YAAcZ,GAKvB,SAAU/B,EAAQD,EAASF,GAEjC,IAAI+C,EAAK/C,EAAoB,GACzBnF,EAAWmF,EAAoB,GA6FnCG,EAAOD,QAlFP,SAAgB8C,EAAQC,EAAMb,GAC1B,IAAKY,IAAWC,IAASb,EACrB,MAAM,IAAI9Q,MAAM,8BAGpB,IAAKyR,EAAGG,OAAOD,GACX,MAAM,IAAItV,UAAU,oCAGxB,IAAKoV,EAAG3R,GAAGgR,GACP,MAAM,IAAIzU,UAAU,qCAGxB,GAAIoV,EAAGI,KAAKH,GACR,OAsBR,SAAoBG,EAAMF,EAAMb,GAG5B,OAFAe,EAAKC,iBAAiBH,EAAMb,GAErB,CACHiB,QAAS,WACLF,EAAKG,oBAAoBL,EAAMb,KA3B5BmB,CAAWP,EAAQC,EAAMb,GAE/B,GAAIW,EAAGS,SAASR,GACjB,OAsCR,SAAwBQ,EAAUP,EAAMb,GAKpC,OAJA5X,MAAMO,UAAUuI,QAAQ7H,KAAK+X,GAAU,SAASL,GAC5CA,EAAKC,iBAAiBH,EAAMb,MAGzB,CACHiB,QAAS,WACL7Y,MAAMO,UAAUuI,QAAQ7H,KAAK+X,GAAU,SAASL,GAC5CA,EAAKG,oBAAoBL,EAAMb,QA9ChCqB,CAAeT,EAAQC,EAAMb,GAEnC,GAAIW,EAAGG,OAAOF,GACf,OA0DR,SAAwBU,EAAUT,EAAMb,GACpC,OAAOvH,EAASgH,SAAShV,KAAM6W,EAAUT,EAAMb,GA3DpCuB,CAAeX,EAAQC,EAAMb,GAGpC,MAAM,IAAIzU,UAAU,+EAgEtB,SAAUwS,EAAQD,GAQxBA,EAAQiD,KAAO,SAAS/W,GACpB,YAAiB+F,IAAV/F,GACAA,aAAiBwX,aACE,IAAnBxX,EAAMyX,UASjB3D,EAAQsD,SAAW,SAASpX,GACxB,IAAI6W,EAAO5Y,OAAOU,UAAUqJ,SAAS3I,KAAKW,GAE1C,YAAiB+F,IAAV/F,IACU,sBAAT6W,GAAyC,4BAATA,IAChC,WAAY7W,IACK,IAAjBA,EAAMZ,QAAgB0U,EAAQiD,KAAK/W,EAAM,MASrD8T,EAAQgD,OAAS,SAAS9W,GACtB,MAAwB,iBAAVA,GACPA,aAAiB0X,QAS5B5D,EAAQ9O,GAAK,SAAShF,GAGlB,MAAgB,sBAFL/B,OAAOU,UAAUqJ,SAAS3I,KAAKW,KAQxC,SAAU+T,EAAQD,EAASF,GAEjC,IAAI+D,EAAU/D,EAAoB,GAYlC,SAASgE,EAAUhD,EAAS0C,EAAUT,EAAMb,EAAU6B,GAClD,IAAIC,EAAa3B,EAAS7W,MAAMb,KAAMU,WAItC,OAFAyV,EAAQoC,iBAAiBH,EAAMiB,EAAYD,GAEpC,CACHZ,QAAS,WACLrC,EAAQsC,oBAAoBL,EAAMiB,EAAYD,KAgD1D,SAAS1B,EAASvB,EAAS0C,EAAUT,EAAMb,GACvC,OAAO,SAAS7V,GACZA,EAAE4X,eAAiBJ,EAAQxX,EAAEyW,OAAQU,GAEjCnX,EAAE4X,gBACF/B,EAAS3W,KAAKuV,EAASzU,IAKnC4T,EAAOD,QA3CP,SAAkBkE,EAAUV,EAAUT,EAAMb,EAAU6B,GAElD,MAAyC,mBAA9BG,EAAShB,iBACTY,EAAUtY,MAAM,KAAMH,WAIb,mBAAT0X,EAGAe,EAAUlT,KAAK,KAAM+Q,UAAUnW,MAAM,KAAMH,YAI9B,iBAAb6Y,IACPA,EAAWvC,SAASwC,iBAAiBD,IAIlC5Z,MAAMO,UAAUoJ,IAAI1I,KAAK2Y,GAAU,SAAUpD,GAChD,OAAOgD,EAAUhD,EAAS0C,EAAUT,EAAMb,EAAU6B,SA4BtD,SAAU9D,EAAQD,GAOxB,GAAuB,oBAAZoE,UAA4BA,QAAQvZ,UAAUwZ,QAAS,CAC9D,IAAIC,EAAQF,QAAQvZ,UAEpByZ,EAAMD,QAAUC,EAAMC,iBACND,EAAME,oBACNF,EAAMG,mBACNH,EAAMI,kBACNJ,EAAMK,sBAoB1B1E,EAAOD,QAVP,SAAkBc,EAAS0C,GACvB,KAAO1C,GAvBc,IAuBHA,EAAQ6C,UAAiC,CACvD,GAA+B,mBAApB7C,EAAQuD,SACfvD,EAAQuD,QAAQb,GAClB,OAAO1C,EAETA,EAAUA,EAAQ8D,cASpB,SAAU3E,EAAQ4E,EAAqB/E,GAE7C,aACAA,EAAoB9R,EAAE6W,GAGtB,IAAIC,EAAahF,EAAoB,GACjCiF,EAA8BjF,EAAoB1U,EAAE0Z,GAGpDE,EAA4B,mBAAX3X,QAAoD,iBAApBA,OAAOC,SAAwB,SAAU+Q,GAAO,cAAcA,GAAS,SAAUA,GAAO,OAAOA,GAAyB,mBAAXhR,QAAyBgR,EAAIzT,cAAgByC,QAAUgR,IAAQhR,OAAOxC,UAAY,gBAAkBwT,GAElQ4G,EAAe,WAAc,SAASC,EAAiBpC,EAAQqC,GAAS,IAAK,IAAIha,EAAI,EAAGA,EAAIga,EAAM7Z,OAAQH,IAAK,CAAE,IAAIia,EAAaD,EAAMha,GAAIia,EAAW9E,WAAa8E,EAAW9E,aAAc,EAAO8E,EAAWC,cAAe,EAAU,UAAWD,IAAYA,EAAWE,UAAW,GAAMnb,OAAOkW,eAAeyC,EAAQsC,EAAW/H,IAAK+H,IAAiB,OAAO,SAAUG,EAAaC,EAAYC,GAAiJ,OAA9HD,GAAYN,EAAiBK,EAAY1a,UAAW2a,GAAiBC,GAAaP,EAAiBK,EAAaE,GAAqBF,GAA7gB,GA8PcG,EAnPM,WAInC,SAASC,EAAgBC,IAb7B,SAAyBC,EAAUN,GAAe,KAAMM,aAAoBN,GAAgB,MAAM,IAAI9X,UAAU,qCAcxGqY,CAAgBnb,KAAMgb,GAEtBhb,KAAKob,eAAeH,GACpBjb,KAAKqb,gBAwOT,OA/NAf,EAAaU,EAAiB,CAAC,CAC3BtI,IAAK,iBACLnR,MAAO,WACH,IAAI0Z,EAAUva,UAAUC,OAAS,QAAsB2G,IAAjB5G,UAAU,GAAmBA,UAAU,GAAK,GAElFV,KAAKoQ,OAAS6K,EAAQ7K,OACtBpQ,KAAKsb,UAAYL,EAAQK,UACzBtb,KAAKub,QAAUN,EAAQM,QACvBvb,KAAKmY,OAAS8C,EAAQ9C,OACtBnY,KAAKwb,KAAOP,EAAQO,KACpBxb,KAAKyb,QAAUR,EAAQQ,QAEvBzb,KAAKoW,aAAe,KAQzB,CACC1D,IAAK,gBACLnR,MAAO,WACCvB,KAAKwb,KACLxb,KAAK0b,aACE1b,KAAKmY,QACZnY,KAAK2b,iBASd,CACCjJ,IAAK,aACLnR,MAAO,WACH,IAAIsD,EAAQ7E,KAER4b,EAAwD,OAAhD5E,SAAS6E,gBAAgBC,aAAa,OAElD9b,KAAK+b,aAEL/b,KAAKgc,oBAAsB,WACvB,OAAOnX,EAAMkX,cAEjB/b,KAAKic,YAAcjc,KAAKsb,UAAU/C,iBAAiB,QAASvY,KAAKgc,uBAAwB,EAEzFhc,KAAKkc,SAAWlF,SAASmF,cAAc,YAEvCnc,KAAKkc,SAASE,MAAMC,SAAW,OAE/Brc,KAAKkc,SAASE,MAAME,OAAS,IAC7Btc,KAAKkc,SAASE,MAAMG,QAAU,IAC9Bvc,KAAKkc,SAASE,MAAMI,OAAS,IAE7Bxc,KAAKkc,SAASE,MAAMK,SAAW,WAC/Bzc,KAAKkc,SAASE,MAAMR,EAAQ,QAAU,QAAU,UAEhD,IAAIc,EAAYxQ,OAAOyQ,aAAe3F,SAAS6E,gBAAgBe,UAC/D5c,KAAKkc,SAASE,MAAMS,IAAMH,EAAY,KAEtC1c,KAAKkc,SAASzF,aAAa,WAAY,IACvCzW,KAAKkc,SAAS3a,MAAQvB,KAAKwb,KAE3Bxb,KAAKsb,UAAUwB,YAAY9c,KAAKkc,UAEhClc,KAAKoW,aAAegE,IAAiBpa,KAAKkc,UAC1Clc,KAAK+c,aAQV,CACCrK,IAAK,aACLnR,MAAO,WACCvB,KAAKic,cACLjc,KAAKsb,UAAU7C,oBAAoB,QAASzY,KAAKgc,qBACjDhc,KAAKic,YAAc,KACnBjc,KAAKgc,oBAAsB,MAG3Bhc,KAAKkc,WACLlc,KAAKsb,UAAU0B,YAAYhd,KAAKkc,UAChClc,KAAKkc,SAAW,QAQzB,CACCxJ,IAAK,eACLnR,MAAO,WACHvB,KAAKoW,aAAegE,IAAiBpa,KAAKmY,QAC1CnY,KAAK+c,aAOV,CACCrK,IAAK,WACLnR,MAAO,WACH,IAAI0b,OAAY,EAEhB,IACIA,EAAYjG,SAASkG,YAAYld,KAAKoQ,QACxC,MAAO7K,GACL0X,GAAY,EAGhBjd,KAAKmd,aAAaF,KAQvB,CACCvK,IAAK,eACLnR,MAAO,SAAsB0b,GACzBjd,KAAKub,QAAQ3D,KAAKqF,EAAY,UAAY,QAAS,CAC/C7M,OAAQpQ,KAAKoQ,OACboL,KAAMxb,KAAKoW,aACXqF,QAASzb,KAAKyb,QACd2B,eAAgBpd,KAAKod,eAAenX,KAAKjG,UAQlD,CACC0S,IAAK,iBACLnR,MAAO,WACCvB,KAAKyb,SACLzb,KAAKyb,QAAQnF,QAEjBU,SAASqG,cAAcC,OACvBpR,OAAO4K,eAAeK,oBAQ3B,CACCzE,IAAK,UAMLnR,MAAO,WACHvB,KAAK+b,eAEV,CACCrJ,IAAK,SACL6K,IAAK,WACD,IAAInN,EAAS1P,UAAUC,OAAS,QAAsB2G,IAAjB5G,UAAU,GAAmBA,UAAU,GAAK,OAIjF,GAFAV,KAAKwd,QAAUpN,EAEM,SAAjBpQ,KAAKwd,SAAuC,QAAjBxd,KAAKwd,QAChC,MAAM,IAAI/W,MAAM,uDASxBmP,IAAK,WACD,OAAO5V,KAAKwd,UASjB,CACC9K,IAAK,SACL6K,IAAK,SAAapF,GACd,QAAe7Q,IAAX6Q,EAAsB,CACtB,IAAIA,GAA8E,iBAAjD,IAAXA,EAAyB,YAAckC,EAAQlC,KAA6C,IAApBA,EAAOa,SAWjG,MAAM,IAAIvS,MAAM,+CAVhB,GAAoB,SAAhBzG,KAAKoQ,QAAqB+H,EAAO3B,aAAa,YAC9C,MAAM,IAAI/P,MAAM,qFAGpB,GAAoB,QAAhBzG,KAAKoQ,SAAqB+H,EAAO3B,aAAa,aAAe2B,EAAO3B,aAAa,aACjF,MAAM,IAAI/P,MAAM,0GAGpBzG,KAAKyd,QAAUtF,IAY3BvC,IAAK,WACD,OAAO5V,KAAKyd,YAIbzC,EAhP4B,GAqPnC0C,EAAevI,EAAoB,GACnCwI,EAAoCxI,EAAoB1U,EAAEid,GAG1DE,EAASzI,EAAoB,GAC7B0I,EAA8B1I,EAAoB1U,EAAEmd,GAGpDE,EAAqC,mBAAXpb,QAAoD,iBAApBA,OAAOC,SAAwB,SAAU+Q,GAAO,cAAcA,GAAS,SAAUA,GAAO,OAAOA,GAAyB,mBAAXhR,QAAyBgR,EAAIzT,cAAgByC,QAAUgR,IAAQhR,OAAOxC,UAAY,gBAAkBwT,GAE3QqK,EAAwB,WAAc,SAASxD,EAAiBpC,EAAQqC,GAAS,IAAK,IAAIha,EAAI,EAAGA,EAAIga,EAAM7Z,OAAQH,IAAK,CAAE,IAAIia,EAAaD,EAAMha,GAAIia,EAAW9E,WAAa8E,EAAW9E,aAAc,EAAO8E,EAAWC,cAAe,EAAU,UAAWD,IAAYA,EAAWE,UAAW,GAAMnb,OAAOkW,eAAeyC,EAAQsC,EAAW/H,IAAK+H,IAAiB,OAAO,SAAUG,EAAaC,EAAYC,GAAiJ,OAA9HD,GAAYN,EAAiBK,EAAY1a,UAAW2a,GAAiBC,GAAaP,EAAiBK,EAAaE,GAAqBF,GAA7gB,GAiBxBoD,EAAsB,SAAUC,GAOhC,SAASC,EAAUzC,EAASR,IAtBhC,SAAkCC,EAAUN,GAAe,KAAMM,aAAoBN,GAAgB,MAAM,IAAI9X,UAAU,qCAuBjHqb,CAAyBne,KAAMke,GAE/B,IAAIrZ,EAvBZ,SAAoCuH,EAAMxL,GAAQ,IAAKwL,EAAQ,MAAM,IAAIgS,eAAe,6DAAgE,OAAOxd,GAAyB,iBAATA,GAAqC,mBAATA,EAA8BwL,EAAPxL,EAuB9Myd,CAA2Bre,MAAOke,EAAUxe,WAAaF,OAAO8e,eAAeJ,IAAYtd,KAAKZ,OAI5G,OAFA6E,EAAMuW,eAAeH,GACrBpW,EAAM0Z,YAAY9C,GACX5W,EAsIX,OA/JJ,SAAmB2Z,EAAUC,GAAc,GAA0B,mBAAfA,GAA4C,OAAfA,EAAuB,MAAM,IAAI3b,UAAU,kEAAoE2b,GAAeD,EAASte,UAAYV,OAAOW,OAAOse,GAAcA,EAAWve,UAAW,CAAED,YAAa,CAAEsB,MAAOid,EAAU7I,YAAY,EAAOgF,UAAU,EAAMD,cAAc,KAAe+D,IAAYjf,OAAOC,eAAiBD,OAAOC,eAAe+e,EAAUC,GAAcD,EAAS9e,UAAY+e,GAY7dC,CAAUR,EAAWD,GAuBrBF,EAAsBG,EAAW,CAAC,CAC9BxL,IAAK,iBACLnR,MAAO,WACH,IAAI0Z,EAAUva,UAAUC,OAAS,QAAsB2G,IAAjB5G,UAAU,GAAmBA,UAAU,GAAK,GAElFV,KAAKoQ,OAAmC,mBAAnB6K,EAAQ7K,OAAwB6K,EAAQ7K,OAASpQ,KAAK2e,cAC3E3e,KAAKmY,OAAmC,mBAAnB8C,EAAQ9C,OAAwB8C,EAAQ9C,OAASnY,KAAK4e,cAC3E5e,KAAKwb,KAA+B,mBAAjBP,EAAQO,KAAsBP,EAAQO,KAAOxb,KAAK6e,YACrE7e,KAAKsb,UAAoD,WAAxCwC,EAAiB7C,EAAQK,WAA0BL,EAAQK,UAAYtE,SAAShV,OAQtG,CACC0Q,IAAK,cACLnR,MAAO,SAAqBka,GACxB,IAAIqD,EAAS9e,KAEbA,KAAK0X,SAAWmG,IAAiBpC,EAAS,SAAS,SAAU/Z,GACzD,OAAOod,EAAOC,QAAQrd,QAS/B,CACCgR,IAAK,UACLnR,MAAO,SAAiBG,GACpB,IAAI+Z,EAAU/Z,EAAE4X,gBAAkB5X,EAAEsd,cAEhChf,KAAKif,kBACLjf,KAAKif,gBAAkB,MAG3Bjf,KAAKif,gBAAkB,IAAIlE,EAAiB,CACxC3K,OAAQpQ,KAAKoQ,OAAOqL,GACpBtD,OAAQnY,KAAKmY,OAAOsD,GACpBD,KAAMxb,KAAKwb,KAAKC,GAChBH,UAAWtb,KAAKsb,UAChBG,QAASA,EACTF,QAASvb,SASlB,CACC0S,IAAK,gBACLnR,MAAO,SAAuBka,GAC1B,OAAOyD,EAAkB,SAAUzD,KAQxC,CACC/I,IAAK,gBACLnR,MAAO,SAAuBka,GAC1B,IAAI5C,EAAWqG,EAAkB,SAAUzD,GAE3C,GAAI5C,EACA,OAAO7B,SAASmI,cAActG,KAUvC,CACCnG,IAAK,cAOLnR,MAAO,SAAqBka,GACxB,OAAOyD,EAAkB,OAAQzD,KAOtC,CACC/I,IAAK,UACLnR,MAAO,WACHvB,KAAK0X,SAASc,UAEVxY,KAAKif,kBACLjf,KAAKif,gBAAgBzG,UACrBxY,KAAKif,gBAAkB,SAG/B,CAAC,CACDvM,IAAK,cACLnR,MAAO,WACH,IAAI6O,EAAS1P,UAAUC,OAAS,QAAsB2G,IAAjB5G,UAAU,GAAmBA,UAAU,GAAK,CAAC,OAAQ,OAEtFuP,EAA4B,iBAAXG,EAAsB,CAACA,GAAUA,EAClDgP,IAAYpI,SAASqI,sBAMzB,OAJApP,EAAQxH,SAAQ,SAAU2H,GACtBgP,EAAUA,KAAapI,SAASqI,sBAAsBjP,MAGnDgP,MAIRlB,EApJe,CAqJxBP,EAAqB9Z,GASvB,SAASqb,EAAkBI,EAAQnJ,GAC/B,IAAIoJ,EAAY,kBAAoBD,EAEpC,GAAKnJ,EAAQK,aAAa+I,GAI1B,OAAOpJ,EAAQ2F,aAAayD,GAGarF,EAA6B,QAAI,KAGzD,SAn8BnB5E,EAAOD,QAAUL,K,6BCRnB,qFAMIwK,EAAO,GACJ,SAASC,IAEZ,IADA,IAAIC,EAAc,GACT3W,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpC2W,EAAY3W,GAAMrI,UAAUqI,GAEhC,IAAImF,OAAiB5G,EACjBoH,OAAYpH,EAUhB,OATI,YAAYoY,EAAYA,EAAY/e,OAAS,MAC7C+N,EAAYgR,EAAY3c,OAEuB,mBAAxC2c,EAAYA,EAAY/e,OAAS,KACxCuN,EAAiBwR,EAAY3c,OAEN,IAAvB2c,EAAY/e,QAAgB,YAAQ+e,EAAY,MAChDA,EAAcA,EAAY,IAEvB,YAAUA,EAAahR,GAAW/G,KAAK,IAAIgY,EAAsBzR,IAE5E,IAAIyR,EAAyB,WACzB,SAASA,EAAsBzR,GAC3BlO,KAAKkO,eAAiBA,EAK1B,OAHAyR,EAAsBzf,UAAUU,KAAO,SAAUyE,EAAYyB,GACzD,OAAOA,EAAOO,UAAU,IAAIuY,EAAwBva,EAAYrF,KAAKkO,kBAElEyR,EAPiB,GAUxBC,EAA2B,SAAUlb,GAErC,SAASkb,EAAwB1a,EAAagJ,GAC1C,IAAIrJ,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAK9C,OAJA6E,EAAMqJ,eAAiBA,EACvBrJ,EAAMqL,OAAS,EACfrL,EAAMmC,OAAS,GACfnC,EAAM6a,YAAc,GACb7a,EAqDX,OA5DA,YAAU+a,EAAyBlb,GASnCkb,EAAwB1f,UAAUoF,MAAQ,SAAUuC,GAChD7H,KAAKgH,OAAOhE,KAAKwc,GACjBxf,KAAK0f,YAAY1c,KAAK6E,IAE1B+X,EAAwB1f,UAAUuF,UAAY,WAC1C,IAAIia,EAAc1f,KAAK0f,YACnBxV,EAAMwV,EAAY/e,OACtB,GAAY,IAARuJ,EACAlK,KAAKkF,YAAYN,eAEhB,CACD5E,KAAKkQ,OAAShG,EACdlK,KAAK6f,UAAY3V,EACjB,IAAK,IAAI1J,EAAI,EAAGA,EAAI0J,EAAK1J,IAAK,CAC1B,IAAIqH,EAAa6X,EAAYlf,GAC7BR,KAAKmF,IAAI,YAAkBnF,KAAM6H,EAAYA,EAAYrH,OAIrEof,EAAwB1f,UAAU2L,eAAiB,SAAUiU,GAC9B,IAAtB9f,KAAKkQ,QAAU,IAChBlQ,KAAKkF,YAAYN,YAGzBgb,EAAwB1f,UAAUsL,WAAa,SAAUJ,EAAYK,EAAYJ,EAAYK,EAAYC,GACrG,IAAI3E,EAAShH,KAAKgH,OACd+Y,EAAS/Y,EAAOqE,GAChBwU,EAAa7f,KAAK6f,UAEhBE,IAAWP,IAASxf,KAAK6f,UAAY7f,KAAK6f,UAD1C,EAEN7Y,EAAOqE,GAAcI,EACH,IAAdoU,IACI7f,KAAKkO,eACLlO,KAAKggB,mBAAmBhZ,GAGxBhH,KAAKkF,YAAYzD,KAAKuF,EAAO2G,WAIzCiS,EAAwB1f,UAAU8f,mBAAqB,SAAUhZ,GAC7D,IAAIpF,EACJ,IACIA,EAAS5B,KAAKkO,eAAerN,MAAMb,KAAMgH,GAE7C,MAAOzB,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAG3BvF,KAAKkF,YAAYzD,KAAKG,IAEnBge,EA7DmB,CA8D5B,M,cCjGF,IAAIzd,EAGJA,EAAI,WACH,OAAOnC,KADJ,GAIJ,IAECmC,EAAIA,GAAK,IAAI8d,SAAS,cAAb,GACR,MAAOve,GAEc,iBAAXwK,SAAqB/J,EAAI+J,QAOrCoJ,EAAOD,QAAUlT,G,2CCnBjB,YAOA,IAAI+d,EAAU,WACV,GAAmB,oBAARC,IACP,OAAOA,IASX,SAASC,EAASC,EAAK3N,GACnB,IAAI9Q,GAAU,EAQd,OAPAye,EAAIC,MAAK,SAAUC,EAAOzW,GACtB,OAAIyW,EAAM,KAAO7N,IACb9Q,EAASkI,GACF,MAIRlI,EAEX,OAAsB,WAClB,SAAS4e,IACLxgB,KAAKygB,YAAc,GAuEvB,OArEAjhB,OAAOkW,eAAe8K,EAAQtgB,UAAW,OAAQ,CAI7C0V,IAAK,WACD,OAAO5V,KAAKygB,YAAY9f,QAE5BgV,YAAY,EACZ+E,cAAc,IAMlB8F,EAAQtgB,UAAU0V,IAAM,SAAUlD,GAC9B,IAAI5I,EAAQsW,EAASpgB,KAAKygB,YAAa/N,GACnC6N,EAAQvgB,KAAKygB,YAAY3W,GAC7B,OAAOyW,GAASA,EAAM,IAO1BC,EAAQtgB,UAAUqd,IAAM,SAAU7K,EAAKnR,GACnC,IAAIuI,EAAQsW,EAASpgB,KAAKygB,YAAa/N,IAClC5I,EACD9J,KAAKygB,YAAY3W,GAAO,GAAKvI,EAG7BvB,KAAKygB,YAAYzd,KAAK,CAAC0P,EAAKnR,KAOpCif,EAAQtgB,UAAUwgB,OAAS,SAAUhO,GACjC,IAAIiO,EAAU3gB,KAAKygB,YACf3W,EAAQsW,EAASO,EAASjO,IACzB5I,GACD6W,EAAQhW,OAAOb,EAAO,IAO9B0W,EAAQtgB,UAAU0gB,IAAM,SAAUlO,GAC9B,SAAU0N,EAASpgB,KAAKygB,YAAa/N,IAKzC8N,EAAQtgB,UAAU2gB,MAAQ,WACtB7gB,KAAKygB,YAAY9V,OAAO,IAO5B6V,EAAQtgB,UAAUuI,QAAU,SAAU8O,EAAUC,QAChC,IAARA,IAAkBA,EAAM,MAC5B,IAAK,IAAIzO,EAAK,EAAG3B,EAAKpH,KAAKygB,YAAa1X,EAAK3B,EAAGzG,OAAQoI,IAAM,CAC1D,IAAIwX,EAAQnZ,EAAG2B,GACfwO,EAAS3W,KAAK4W,EAAK+I,EAAM,GAAIA,EAAM,MAGpCC,EAzEU,GAtBX,GAsGVM,EAA8B,oBAAX5U,QAA8C,oBAAb8K,UAA4B9K,OAAO8K,WAAaA,SAGpG+J,OACsB,IAAXxU,GAA0BA,EAAOwB,OAASA,KAC1CxB,EAES,oBAATH,MAAwBA,KAAK2B,OAASA,KACtC3B,KAEW,oBAAXF,QAA0BA,OAAO6B,OAASA,KAC1C7B,OAGJ+T,SAAS,cAATA,GASPe,EACqC,mBAA1BC,sBAIAA,sBAAsBhb,KAAK8a,GAE/B,SAAUxJ,GAAY,OAAOtK,YAAW,WAAc,OAAOsK,EAASzH,KAAKJ,SAAW,IAAO,KAqExG,IAGIwR,EAAiB,CAAC,MAAO,QAAS,SAAU,OAAQ,QAAS,SAAU,OAAQ,UAE/EC,EAAwD,oBAArBC,iBAInCC,EAA0C,WAM1C,SAASA,IAMLrhB,KAAKshB,YAAa,EAMlBthB,KAAKuhB,sBAAuB,EAM5BvhB,KAAKwhB,mBAAqB,KAM1BxhB,KAAKyhB,WAAa,GAClBzhB,KAAK0hB,iBAAmB1hB,KAAK0hB,iBAAiBzb,KAAKjG,MACnDA,KAAK2hB,QAjGb,SAAmBpK,EAAU3H,GACzB,IAAIgS,GAAc,EAAOC,GAAe,EAAOC,EAAe,EAO9D,SAASC,IACDH,IACAA,GAAc,EACdrK,KAEAsK,GACAG,IAUR,SAASC,IACLjB,EAAwBe,GAO5B,SAASC,IACL,IAAIE,EAAYpS,KAAKJ,MACrB,GAAIkS,EAAa,CAEb,GAAIM,EAAYJ,EA7CN,EA8CN,OAMJD,GAAe,OAGfD,GAAc,EACdC,GAAe,EACf5U,WAAWgV,EAAiBrS,GAEhCkS,EAAeI,EAEnB,OAAOF,EA6CYG,CAASniB,KAAK2hB,QAAQ1b,KAAKjG,MAzC9B,IAyMhB,OAxJAqhB,EAAyBnhB,UAAUkiB,YAAc,SAAUha,IACjDpI,KAAKyhB,WAAWjX,QAAQpC,IAC1BpI,KAAKyhB,WAAWze,KAAKoF,GAGpBpI,KAAKshB,YACNthB,KAAKqiB,YASbhB,EAAyBnhB,UAAUoiB,eAAiB,SAAUla,GAC1D,IAAIkF,EAAYtN,KAAKyhB,WACjB3X,EAAQwD,EAAU9C,QAAQpC,IAEzB0B,GACDwD,EAAU3C,OAAOb,EAAO,IAGvBwD,EAAU3M,QAAUX,KAAKshB,YAC1BthB,KAAKuiB,eASblB,EAAyBnhB,UAAUyhB,QAAU,WACnB3hB,KAAKwiB,oBAIvBxiB,KAAK2hB,WAWbN,EAAyBnhB,UAAUsiB,iBAAmB,WAElD,IAAIC,EAAkBziB,KAAKyhB,WAAWiB,QAAO,SAAUta,GACnD,OAAOA,EAASua,eAAgBva,EAASwa,eAQ7C,OADAH,EAAgBha,SAAQ,SAAUL,GAAY,OAAOA,EAASya,qBACvDJ,EAAgB9hB,OAAS,GAQpC0gB,EAAyBnhB,UAAUmiB,SAAW,WAGrCvB,IAAa9gB,KAAKshB,aAMvBtK,SAASuB,iBAAiB,gBAAiBvY,KAAK0hB,kBAChDxV,OAAOqM,iBAAiB,SAAUvY,KAAK2hB,SACnCR,GACAnhB,KAAKwhB,mBAAqB,IAAIJ,iBAAiBphB,KAAK2hB,SACpD3hB,KAAKwhB,mBAAmBhQ,QAAQwF,SAAU,CACtC8L,YAAY,EACZC,WAAW,EACXC,eAAe,EACfC,SAAS,MAIbjM,SAASuB,iBAAiB,qBAAsBvY,KAAK2hB,SACrD3hB,KAAKuhB,sBAAuB,GAEhCvhB,KAAKshB,YAAa,IAQtBD,EAAyBnhB,UAAUqiB,YAAc,WAGxCzB,GAAc9gB,KAAKshB,aAGxBtK,SAASyB,oBAAoB,gBAAiBzY,KAAK0hB,kBACnDxV,OAAOuM,oBAAoB,SAAUzY,KAAK2hB,SACtC3hB,KAAKwhB,oBACLxhB,KAAKwhB,mBAAmB0B,aAExBljB,KAAKuhB,sBACLvK,SAASyB,oBAAoB,qBAAsBzY,KAAK2hB,SAE5D3hB,KAAKwhB,mBAAqB,KAC1BxhB,KAAKuhB,sBAAuB,EAC5BvhB,KAAKshB,YAAa,IAStBD,EAAyBnhB,UAAUwhB,iBAAmB,SAAUta,GAC5D,IAAIyF,EAAKzF,EAAG+b,aAAcA,OAAsB,IAAPtW,EAAgB,GAAKA,EAEvCqU,EAAeZ,MAAK,SAAU5N,GACjD,SAAUyQ,EAAa3Y,QAAQkI,OAG/B1S,KAAK2hB,WAQbN,EAAyB+B,YAAc,WAInC,OAHKpjB,KAAKqjB,YACNrjB,KAAKqjB,UAAY,IAAIhC,GAElBrhB,KAAKqjB,WAOhBhC,EAAyBgC,UAAY,KAC9BhC,EAhMkC,GA0MzCiC,EAAqB,SAAWnL,EAAQqC,GACxC,IAAK,IAAIzR,EAAK,EAAG3B,EAAK5H,OAAO+jB,KAAK/I,GAAQzR,EAAK3B,EAAGzG,OAAQoI,IAAM,CAC5D,IAAI2J,EAAMtL,EAAG2B,GACbvJ,OAAOkW,eAAeyC,EAAQzF,EAAK,CAC/BnR,MAAOiZ,EAAM9H,GACbiD,YAAY,EACZgF,UAAU,EACVD,cAAc,IAGtB,OAAOvC,GASPqL,EAAc,SAAWrL,GAOzB,OAHkBA,GAAUA,EAAOsL,eAAiBtL,EAAOsL,cAAcC,aAGnD3C,GAItB4C,EAAYC,EAAe,EAAG,EAAG,EAAG,GAOxC,SAASC,EAAQtiB,GACb,OAAOuiB,WAAWviB,IAAU,EAShC,SAASwiB,EAAeC,GAEpB,IADA,IAAIC,EAAY,GACPlb,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpCkb,EAAUlb,EAAK,GAAKrI,UAAUqI,GAElC,OAAOkb,EAAUrZ,QAAO,SAAUsZ,EAAMzH,GAEpC,OAAOyH,EAAOL,EADFG,EAAO,UAAYvH,EAAW,aAE3C,GAmCP,SAAS0H,EAA0BhM,GAG/B,IAAIiM,EAAcjM,EAAOiM,YAAaC,EAAelM,EAAOkM,aAS5D,IAAKD,IAAgBC,EACjB,OAAOV,EAEX,IAAIK,EAASR,EAAYrL,GAAQmM,iBAAiBnM,GAC9CoM,EA3CR,SAAqBP,GAGjB,IAFA,IACIO,EAAW,GACNxb,EAAK,EAAGyb,EAFD,CAAC,MAAO,QAAS,SAAU,QAEDzb,EAAKyb,EAAY7jB,OAAQoI,IAAM,CACrE,IAAI0T,EAAW+H,EAAYzb,GACvBxH,EAAQyiB,EAAO,WAAavH,GAChC8H,EAAS9H,GAAYoH,EAAQtiB,GAEjC,OAAOgjB,EAmCQE,CAAYT,GACvBU,EAAWH,EAASI,KAAOJ,EAASK,MACpCC,EAAUN,EAAS1H,IAAM0H,EAASO,OAKlCC,EAAQlB,EAAQG,EAAOe,OAAQC,EAASnB,EAAQG,EAAOgB,QAqB3D,GAlByB,eAArBhB,EAAOiB,YAOHlX,KAAKmX,MAAMH,EAAQL,KAAcN,IACjCW,GAAShB,EAAeC,EAAQ,OAAQ,SAAWU,GAEnD3W,KAAKmX,MAAMF,EAASH,KAAaR,IACjCW,GAAUjB,EAAeC,EAAQ,MAAO,UAAYa,KAoDhE,SAA2B1M,GACvB,OAAOA,IAAWqL,EAAYrL,GAAQnB,SAAS6E,gBA9C1CsJ,CAAkBhN,GAAS,CAK5B,IAAIiN,EAAgBrX,KAAKmX,MAAMH,EAAQL,GAAYN,EAC/CiB,EAAiBtX,KAAKmX,MAAMF,EAASH,GAAWR,EAMpB,IAA5BtW,KAAKuX,IAAIF,KACTL,GAASK,GAEoB,IAA7BrX,KAAKuX,IAAID,KACTL,GAAUK,GAGlB,OAAOzB,EAAeW,EAASI,KAAMJ,EAAS1H,IAAKkI,EAAOC,GAQ9D,IAAIO,EAGkC,oBAAvBC,mBACA,SAAUrN,GAAU,OAAOA,aAAkBqL,EAAYrL,GAAQqN,oBAKrE,SAAUrN,GAAU,OAAQA,aAAkBqL,EAAYrL,GAAQsN,YAC3C,mBAAnBtN,EAAOuN,SAiBtB,SAASC,EAAexN,GACpB,OAAK2I,EAGDyE,EAAqBpN,GAhH7B,SAA2BA,GACvB,IAAIyN,EAAOzN,EAAOuN,UAClB,OAAO9B,EAAe,EAAG,EAAGgC,EAAKb,MAAOa,EAAKZ,QA+GlCa,CAAkB1N,GAEtBgM,EAA0BhM,GALtBwL,EAuCf,SAASC,EAAe3a,EAAG/G,EAAG6iB,EAAOC,GACjC,MAAO,CAAE/b,EAAGA,EAAG/G,EAAGA,EAAG6iB,MAAOA,EAAOC,OAAQA,GAO/C,IAAIc,EAAmC,WAMnC,SAASA,EAAkB3N,GAMvBnY,KAAK+lB,eAAiB,EAMtB/lB,KAAKgmB,gBAAkB,EAMvBhmB,KAAKimB,aAAerC,EAAe,EAAG,EAAG,EAAG,GAC5C5jB,KAAKmY,OAASA,EA0BlB,OAlBA2N,EAAkB5lB,UAAUgmB,SAAW,WACnC,IAAIC,EAAOR,EAAe3lB,KAAKmY,QAE/B,OADAnY,KAAKimB,aAAeE,EACZA,EAAKpB,QAAU/kB,KAAK+lB,gBACxBI,EAAKnB,SAAWhlB,KAAKgmB,iBAQ7BF,EAAkB5lB,UAAUkmB,cAAgB,WACxC,IAAID,EAAOnmB,KAAKimB,aAGhB,OAFAjmB,KAAK+lB,eAAiBI,EAAKpB,MAC3B/kB,KAAKgmB,gBAAkBG,EAAKnB,OACrBmB,GAEJL,EAnD2B,GAsDlCO,EAOA,SAA6BlO,EAAQmO,GACjC,IA/FoBlf,EACpB6B,EAAU/G,EAAU6iB,EAAkBC,EAEtCuB,EACAJ,EA2FIK,GA9FJvd,GADoB7B,EA+FiBkf,GA9F9Brd,EAAG/G,EAAIkF,EAAGlF,EAAG6iB,EAAQ3d,EAAG2d,MAAOC,EAAS5d,EAAG4d,OAElDuB,EAAoC,oBAApBE,gBAAkCA,gBAAkBjnB,OACpE2mB,EAAO3mB,OAAOW,OAAOomB,EAAOrmB,WAEhCojB,EAAmB6C,EAAM,CACrBld,EAAGA,EAAG/G,EAAGA,EAAG6iB,MAAOA,EAAOC,OAAQA,EAClCnI,IAAK3a,EACL0iB,MAAO3b,EAAI8b,EACXD,OAAQE,EAAS9iB,EACjByiB,KAAM1b,IAEHkd,GAyFH7C,EAAmBtjB,KAAM,CAAEmY,OAAQA,EAAQqO,YAAaA,KAK5DE,EAAmC,WAWnC,SAASA,EAAkBnP,EAAUoP,EAAYC,GAc7C,GAPA5mB,KAAK6mB,oBAAsB,GAM3B7mB,KAAK8mB,cAAgB,IAAI5G,EACD,mBAAb3I,EACP,MAAM,IAAIzU,UAAU,2DAExB9C,KAAK+mB,UAAYxP,EACjBvX,KAAKgnB,YAAcL,EACnB3mB,KAAKinB,aAAeL,EAoHxB,OA5GAF,EAAkBxmB,UAAUsR,QAAU,SAAU2G,GAC5C,IAAKzX,UAAUC,OACX,MAAM,IAAImC,UAAU,4CAGxB,GAAuB,oBAAZ2W,SAA6BA,mBAAmBja,OAA3D,CAGA,KAAM2Y,aAAkBqL,EAAYrL,GAAQsB,SACxC,MAAM,IAAI3W,UAAU,yCAExB,IAAIokB,EAAelnB,KAAK8mB,cAEpBI,EAAatG,IAAIzI,KAGrB+O,EAAa3J,IAAIpF,EAAQ,IAAI2N,EAAkB3N,IAC/CnY,KAAKgnB,YAAY5E,YAAYpiB,MAE7BA,KAAKgnB,YAAYrF,aAQrB+E,EAAkBxmB,UAAUinB,UAAY,SAAUhP,GAC9C,IAAKzX,UAAUC,OACX,MAAM,IAAImC,UAAU,4CAGxB,GAAuB,oBAAZ2W,SAA6BA,mBAAmBja,OAA3D,CAGA,KAAM2Y,aAAkBqL,EAAYrL,GAAQsB,SACxC,MAAM,IAAI3W,UAAU,yCAExB,IAAIokB,EAAelnB,KAAK8mB,cAEnBI,EAAatG,IAAIzI,KAGtB+O,EAAaxG,OAAOvI,GACf+O,EAAahD,MACdlkB,KAAKgnB,YAAY1E,eAAetiB,SAQxC0mB,EAAkBxmB,UAAUgjB,WAAa,WACrCljB,KAAKonB,cACLpnB,KAAK8mB,cAAcjG,QACnB7gB,KAAKgnB,YAAY1E,eAAetiB,OAQpC0mB,EAAkBxmB,UAAUyiB,aAAe,WACvC,IAAI9d,EAAQ7E,KACZA,KAAKonB,cACLpnB,KAAK8mB,cAAcre,SAAQ,SAAU4e,GAC7BA,EAAYnB,YACZrhB,EAAMgiB,oBAAoB7jB,KAAKqkB,OAU3CX,EAAkBxmB,UAAU2iB,gBAAkB,WAE1C,GAAK7iB,KAAK4iB,YAAV,CAGA,IAAIpL,EAAMxX,KAAKinB,aAEXtG,EAAU3gB,KAAK6mB,oBAAoBvd,KAAI,SAAU+d,GACjD,OAAO,IAAIhB,EAAoBgB,EAAYlP,OAAQkP,EAAYjB,oBAEnEpmB,KAAK+mB,UAAUnmB,KAAK4W,EAAKmJ,EAASnJ,GAClCxX,KAAKonB,gBAOTV,EAAkBxmB,UAAUknB,YAAc,WACtCpnB,KAAK6mB,oBAAoBlc,OAAO,IAOpC+b,EAAkBxmB,UAAU0iB,UAAY,WACpC,OAAO5iB,KAAK6mB,oBAAoBlmB,OAAS,GAEtC+lB,EAlJ2B,GAwJlCpZ,EAA+B,oBAAZga,QAA0B,IAAIA,QAAY,IAAIpH,EAKjEqH,EAOA,SAASA,EAAehQ,GACpB,KAAMvX,gBAAgBunB,GAClB,MAAM,IAAIzkB,UAAU,sCAExB,IAAKpC,UAAUC,OACX,MAAM,IAAImC,UAAU,4CAExB,IAAI6jB,EAAatF,EAAyB+B,cACtChb,EAAW,IAAIse,EAAkBnP,EAAUoP,EAAY3mB,MAC3DsN,EAAUiQ,IAAIvd,KAAMoI,IAK5B,CACI,UACA,YACA,cACFK,SAAQ,SAAU+e,GAChBD,EAAernB,UAAUsnB,GAAU,WAC/B,IAAIpgB,EACJ,OAAQA,EAAKkG,EAAUsI,IAAI5V,OAAOwnB,GAAQ3mB,MAAMuG,EAAI1G,eAI5D,IAAIoJ,OAEuC,IAA5BiX,EAASwG,eACTxG,EAASwG,eAEbA,EAGI,Q;;;;;;;GCh5Bf,IAAIE,EAAkB,UAOtBnS,EAAOD,QAUP,SAAoBgD,GAClB,IAOIqP,EAPAC,EAAM,GAAKtP,EACXuP,EAAQH,EAAgBI,KAAKF,GAEjC,IAAKC,EACH,OAAOD,EAIT,IAAIG,EAAO,GACPhe,EAAQ,EACRie,EAAY,EAEhB,IAAKje,EAAQ8d,EAAM9d,MAAOA,EAAQ6d,EAAIhnB,OAAQmJ,IAAS,CACrD,OAAQ6d,EAAIK,WAAWle,IACrB,KAAK,GACH4d,EAAS,SACT,MACF,KAAK,GACHA,EAAS,QACT,MACF,KAAK,GACHA,EAAS,QACT,MACF,KAAK,GACHA,EAAS,OACT,MACF,KAAK,GACHA,EAAS,OACT,MACF,QACE,SAGAK,IAAcje,IAChBge,GAAQH,EAAIM,UAAUF,EAAWje,IAGnCie,EAAYje,EAAQ,EACpBge,GAAQJ,EAGV,OAAOK,IAAcje,EACjBge,EAAOH,EAAIM,UAAUF,EAAWje,GAChCge,I,6BC5EN,6DAGO,SAASI,EAAMC,GAClB,OAAO,IAAI,KAAW,SAAU9iB,GAC5B,IAAIoJ,EACJ,IACIA,EAAQ0Z,IAEZ,MAAO5iB,GAEH,YADAF,EAAW9B,MAAMgC,GAIrB,OADakJ,EAAQ,YAAKA,GAAS,KACrBpH,UAAUhC,Q,kFCZ5B,EAAe,SAAUX,GAEzB,SAAS0jB,EAAY1Z,EAAWiB,GAC5B,IAAI9K,EAAQH,EAAO9D,KAAKZ,KAAM0O,EAAWiB,IAAS3P,KAGlD,OAFA6E,EAAM6J,UAAYA,EAClB7J,EAAM8K,KAAOA,EACN9K,EAwBX,OA7BA,YAAUujB,EAAa1jB,GAOvB0jB,EAAYloB,UAAUiN,SAAW,SAAU0C,EAAOD,GAE9C,YADc,IAAVA,IAAoBA,EAAQ,GAC5BA,EAAQ,EACDlL,EAAOxE,UAAUiN,SAASvM,KAAKZ,KAAM6P,EAAOD,IAEvD5P,KAAK4P,MAAQA,EACb5P,KAAK6P,MAAQA,EACb7P,KAAK0O,UAAUyB,MAAMnQ,MACdA,OAEXooB,EAAYloB,UAAUmQ,QAAU,SAAUR,EAAOD,GAC7C,OAAQA,EAAQ,GAAK5P,KAAK2F,OACtBjB,EAAOxE,UAAUmQ,QAAQzP,KAAKZ,KAAM6P,EAAOD,GAC3C5P,KAAK6Q,SAAShB,EAAOD,IAE7BwY,EAAYloB,UAAUwQ,eAAiB,SAAUhC,EAAW8B,EAAIZ,GAE5D,YADc,IAAVA,IAAoBA,EAAQ,GACjB,OAAVA,GAAkBA,EAAQ,GAAiB,OAAVA,GAAkB5P,KAAK4P,MAAQ,EAC1DlL,EAAOxE,UAAUwQ,eAAe9P,KAAKZ,KAAM0O,EAAW8B,EAAIZ,GAE9DlB,EAAUyB,MAAMnQ,OAEpBooB,EA9BO,C,MA+BhB,GC/BSC,EAAQ,ICAG,SAAU3jB,GAE5B,SAAS4jB,IACL,OAAkB,OAAX5jB,GAAmBA,EAAO7D,MAAMb,KAAMU,YAAcV,KAE/D,OAJA,YAAUsoB,EAAgB5jB,GAInB4jB,EALU,C,MAMnB,GDNiB,CAAmB,G,+BEKlC,EAAiB,SAAU5jB,GAE3B,SAAS6jB,EAAcC,EAAYC,EAAY/Z,QACxB,IAAf8Z,IAAyBA,EAAaxU,OAAOC,wBAC9B,IAAfwU,IAAyBA,EAAazU,OAAOC,mBACjD,IAAIpP,EAAQH,EAAO9D,KAAKZ,OAASA,KAajC,OAZA6E,EAAM6J,UAAYA,EAClB7J,EAAM6jB,QAAU,GAChB7jB,EAAM8jB,qBAAsB,EAC5B9jB,EAAM+jB,YAAcJ,EAAa,EAAI,EAAIA,EACzC3jB,EAAMgkB,YAAcJ,EAAa,EAAI,EAAIA,EACrCA,IAAezU,OAAOC,mBACtBpP,EAAM8jB,qBAAsB,EAC5B9jB,EAAMpD,KAAOoD,EAAMikB,wBAGnBjkB,EAAMpD,KAAOoD,EAAMkkB,eAEhBlkB,EA4EX,OA7FA,YAAU0jB,EAAe7jB,GAmBzB6jB,EAAcroB,UAAU4oB,uBAAyB,SAAUvnB,GACvD,IAAImnB,EAAU1oB,KAAK0oB,QACnBA,EAAQ1lB,KAAKzB,GACTmnB,EAAQ/nB,OAASX,KAAK4oB,aACtBF,EAAQnkB,QAEZG,EAAOxE,UAAUuB,KAAKb,KAAKZ,KAAMuB,IAErCgnB,EAAcroB,UAAU6oB,eAAiB,SAAUxnB,GAC/CvB,KAAK0oB,QAAQ1lB,KAAK,IAAIgmB,EAAYhpB,KAAKipB,UAAW1nB,IAClDvB,KAAKkpB,2BACLxkB,EAAOxE,UAAUuB,KAAKb,KAAKZ,KAAMuB,IAErCgnB,EAAcroB,UAAUwH,WAAa,SAAUrC,GAC3C,IAIIuD,EAJA+f,EAAsB3oB,KAAK2oB,oBAC3BD,EAAUC,EAAsB3oB,KAAK0oB,QAAU1oB,KAAKkpB,2BACpDxa,EAAY1O,KAAK0O,UACjBxE,EAAMwe,EAAQ/nB,OAElB,GAAIX,KAAK2F,OACL,MAAM,IAAImH,EAAA,EAYd,GAVS9M,KAAKiF,WAAajF,KAAKiH,SAC5B2B,EAAec,EAAA,EAAaY,OAG5BtK,KAAKsN,UAAUtK,KAAKqC,GACpBuD,EAAe,IAAI+J,EAAA,EAAoB3S,KAAMqF,IAE7CqJ,GACArJ,EAAWF,IAAIE,EAAa,IAAI,IAAoBA,EAAYqJ,IAEhEia,EACA,IAAK,IAAInoB,EAAI,EAAGA,EAAI0J,IAAQ7E,EAAWM,OAAQnF,IAC3C6E,EAAW5D,KAAKinB,EAAQloB,SAI5B,IAASA,EAAI,EAAGA,EAAI0J,IAAQ7E,EAAWM,OAAQnF,IAC3C6E,EAAW5D,KAAKinB,EAAQloB,GAAGe,OASnC,OANIvB,KAAKiH,SACL5B,EAAW9B,MAAMvD,KAAKuN,aAEjBvN,KAAKiF,WACVI,EAAWT,WAERgE,GAEX2f,EAAcroB,UAAU+oB,QAAU,WAC9B,OAAQjpB,KAAK0O,WAAa2Z,GAAO3Y,OAErC6Y,EAAcroB,UAAUgpB,yBAA2B,WAO/C,IANA,IAAIxZ,EAAM1P,KAAKipB,UACXL,EAAc5oB,KAAK4oB,YACnBC,EAAc7oB,KAAK6oB,YACnBH,EAAU1oB,KAAK0oB,QACfS,EAAcT,EAAQ/nB,OACtByoB,EAAc,EACXA,EAAcD,KACZzZ,EAAMgZ,EAAQU,GAAaC,KAAQR,IAGxCO,IAQJ,OANID,EAAcP,IACdQ,EAAcrb,KAAKub,IAAIF,EAAaD,EAAcP,IAElDQ,EAAc,GACdV,EAAQ/d,OAAO,EAAGye,GAEfV,GAEJH,EA9FS,CA+FlBlb,EAAA,GAEE2b,EACA,SAAqBK,EAAM9nB,GACvBvB,KAAKqpB,KAAOA,EACZrpB,KAAKuB,MAAQA,I,yCC3GN,SAASgoB,EAAKC,EAAM9V,GACjC,OAAOlU,OAAOU,UAAUL,eAAee,KAAK8S,EAAK8V,GCAnD,IAAI,EAAWhqB,OAAOU,UAAUqJ,SAYjB,EARf,WACE,MAAoC,uBAA7B,EAAS3I,KAAKF,WAAsC,SAAsBuI,GAC/E,MAA4B,uBAArB,EAASrI,KAAKqI,IACnB,SAAsBA,GACxB,OAAOsgB,EAAK,SAAUtgB,IAJ1B,GCDIwgB,GAEJ,CACElgB,SAAU,MACVmgB,qBAAqB,YACnBC,EAAqB,CAAC,cAAe,UAAW,gBAAiB,WAAY,uBAAwB,iBAAkB,kBAEvHC,EAEJ,WAGE,OAAOlpB,UAAUgpB,qBAAqB,UAHxC,GAMIG,EAAW,SAAkBC,EAAMjW,GAGrC,IAFA,IAAIkW,EAAM,EAEHA,EAAMD,EAAKnpB,QAAQ,CACxB,GAAImpB,EAAKC,KAASlW,EAChB,OAAO,EAGTkW,GAAO,EAGT,OAAO,GAsBL,EAA8B,mBAAhBvqB,OAAO+jB,MAAwBqG,EAMjD,OAAApd,EAAA,IAAQ,SAAckH,GACpB,GAAIlU,OAAOkU,KAASA,EAClB,MAAO,GAGT,IAAI8V,EAAMQ,EACNC,EAAK,GAELC,EAAkBN,GAAkB,EAAalW,GAErD,IAAK8V,KAAQ9V,GACP6V,EAAKC,EAAM9V,IAAUwW,GAA4B,WAATV,IAC1CS,EAAGA,EAAGtpB,QAAU6oB,GAIpB,GAAIC,EAGF,IAFAO,EAAOL,EAAmBhpB,OAAS,EAE5BqpB,GAAQ,GAGTT,EAFJC,EAAOG,EAAmBK,GAEXtW,KAASmW,EAASI,EAAIT,KACnCS,EAAGA,EAAGtpB,QAAU6oB,GAGlBQ,GAAQ,EAIZ,OAAOC,KAlCT,OAAAzd,EAAA,IAAQ,SAAckH,GACpB,OAAOlU,OAAOkU,KAASA,EAAM,GAAKlU,OAAO+jB,KAAK7P,MAmCjC,O,6BC1Ff,oEAIO,SAASyW,EAAIpiB,EAAgBxE,EAAOqB,GACvC,OAAO,SAA6BkC,GAChC,OAAOA,EAAOa,KAAK,IAAIyiB,EAAWriB,EAAgBxE,EAAOqB,KAGjE,IAAIwlB,EAAc,WACd,SAASA,EAAWriB,EAAgBxE,EAAOqB,GACvC5E,KAAK+H,eAAiBA,EACtB/H,KAAKuD,MAAQA,EACbvD,KAAK4E,SAAWA,EAKpB,OAHAwlB,EAAWlqB,UAAUU,KAAO,SAAUyE,EAAYyB,GAC9C,OAAOA,EAAOO,UAAU,IAAIgjB,EAAchlB,EAAYrF,KAAK+H,eAAgB/H,KAAKuD,MAAOvD,KAAK4E,YAEzFwlB,EATM,GAWbC,EAAiB,SAAU3lB,GAE3B,SAAS2lB,EAAcnlB,EAAaa,EAAgBxC,EAAOqB,GACvD,IAAIC,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAgB9C,OAfA6E,EAAMylB,SAAW,IACjBzlB,EAAM0lB,UAAY,IAClB1lB,EAAM2lB,aAAe,IACrB3lB,EAAM0lB,UAAYhnB,GAAS,IAC3BsB,EAAM2lB,aAAe5lB,GAAY,IAC7B,YAAWmB,IACXlB,EAAMqB,SAAWrB,EACjBA,EAAMylB,SAAWvkB,GAEZA,IACLlB,EAAMqB,SAAWH,EACjBlB,EAAMylB,SAAWvkB,EAAetE,MAAQ,IACxCoD,EAAM0lB,UAAYxkB,EAAexC,OAAS,IAC1CsB,EAAM2lB,aAAezkB,EAAenB,UAAY,KAE7CC,EAgCX,OAlDA,YAAUwlB,EAAe3lB,GAoBzB2lB,EAAcnqB,UAAUoF,MAAQ,SAAU/D,GACtC,IACIvB,KAAKsqB,SAAS1pB,KAAKZ,KAAKkG,SAAU3E,GAEtC,MAAOgE,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAG3BvF,KAAKkF,YAAYzD,KAAKF,IAE1B8oB,EAAcnqB,UAAUsF,OAAS,SAAUD,GACvC,IACIvF,KAAKuqB,UAAU3pB,KAAKZ,KAAKkG,SAAUX,GAEvC,MAAOA,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAG3BvF,KAAKkF,YAAY3B,MAAMgC,IAE3B8kB,EAAcnqB,UAAUuF,UAAY,WAChC,IACIzF,KAAKwqB,aAAa5pB,KAAKZ,KAAKkG,UAEhC,MAAOX,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAG3B,OAAOvF,KAAKkF,YAAYN,YAErBylB,EAnDS,CAoDlB,M,6BCxEF,oDAEO,SAASI,EAAKC,EAAaC,GAC9B,IAAIC,GAAU,EAId,OAHIlqB,UAAUC,QAAU,IACpBiqB,GAAU,GAEP,SAA8B9jB,GACjC,OAAOA,EAAOa,KAAK,IAAIkjB,EAAaH,EAAaC,EAAMC,KAG/D,IAAIC,EAAgB,WAChB,SAASA,EAAaH,EAAaC,EAAMC,QACrB,IAAZA,IAAsBA,GAAU,GACpC5qB,KAAK0qB,YAAcA,EACnB1qB,KAAK2qB,KAAOA,EACZ3qB,KAAK4qB,QAAUA,EAKnB,OAHAC,EAAa3qB,UAAUU,KAAO,SAAUyE,EAAYyB,GAChD,OAAOA,EAAOO,UAAU,IAAIyjB,EAAezlB,EAAYrF,KAAK0qB,YAAa1qB,KAAK2qB,KAAM3qB,KAAK4qB,WAEtFC,EAVQ,GAYfC,EAAkB,SAAUpmB,GAE5B,SAASomB,EAAe5lB,EAAawlB,EAAaK,EAAQC,GACtD,IAAInmB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAK9C,OAJA6E,EAAM6lB,YAAcA,EACpB7lB,EAAMkmB,OAASA,EACflmB,EAAMmmB,UAAYA,EAClBnmB,EAAMiF,MAAQ,EACPjF,EAuBX,OA9BA,YAAUimB,EAAgBpmB,GAS1BomB,EAAe5qB,UAAUoF,MAAQ,SAAU/D,GACvC,IAAI2D,EAAclF,KAAKkF,YACvB,GAAKlF,KAAKgrB,UAKL,CACD,IAAIlhB,EAAQ9J,KAAK8J,QACblI,OAAS,EACb,IACIA,EAAS5B,KAAK0qB,YAAY1qB,KAAK+qB,OAAQxpB,EAAOuI,GAElD,MAAOvE,GAEH,YADAL,EAAY3B,MAAMgC,GAGtBvF,KAAK+qB,OAASnpB,EACdsD,EAAYzD,KAAKG,QAfjB5B,KAAK+qB,OAASxpB,EACdvB,KAAKgrB,WAAY,EACjB9lB,EAAYzD,KAAKF,IAgBlBupB,EA/BU,CAgCnB,M,6BCvDF,2DAGO,SAASG,EAAS1T,GACrB,OAAO,SAAUzQ,GAAU,OAAOA,EAAOa,KAAK,IAAIujB,EAAgB3T,KAEtE,IAAI2T,EAAmB,WACnB,SAASA,EAAgB3T,GACrBvX,KAAKuX,SAAWA,EAKpB,OAHA2T,EAAgBhrB,UAAUU,KAAO,SAAUyE,EAAYyB,GACnD,OAAOA,EAAOO,UAAU,IAAI8jB,EAAkB9lB,EAAYrF,KAAKuX,YAE5D2T,EAPW,GASlBC,EAAqB,SAAUzmB,GAE/B,SAASymB,EAAkBjmB,EAAaqS,GACpC,IAAI1S,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAE9C,OADA6E,EAAMM,IAAI,IAAI,IAAaoS,IACpB1S,EAEX,OANA,YAAUsmB,EAAmBzmB,GAMtBymB,EAPa,CAQtB,M,0ECrBE,EAAwB,SAAUzmB,GAElC,SAAS0mB,EAAqB1c,EAAWiB,GACrC,IAAI9K,EAAQH,EAAO9D,KAAKZ,KAAM0O,EAAWiB,IAAS3P,KAGlD,OAFA6E,EAAM6J,UAAYA,EAClB7J,EAAM8K,KAAOA,EACN9K,EAqBX,OA1BA,YAAUumB,EAAsB1mB,GAOhC0mB,EAAqBlrB,UAAUwQ,eAAiB,SAAUhC,EAAW8B,EAAIZ,GAErE,YADc,IAAVA,IAAoBA,EAAQ,GAClB,OAAVA,GAAkBA,EAAQ,EACnBlL,EAAOxE,UAAUwQ,eAAe9P,KAAKZ,KAAM0O,EAAW8B,EAAIZ,IAErElB,EAAUuB,QAAQjN,KAAKhD,MAChB0O,EAAUE,YAAcF,EAAUE,UAAYqS,uBAAsB,WAAc,OAAOvS,EAAUyB,WAAM7I,SAEpH8jB,EAAqBlrB,UAAUuQ,eAAiB,SAAU/B,EAAW8B,EAAIZ,GAErE,QADc,IAAVA,IAAoBA,EAAQ,GACjB,OAAVA,GAAkBA,EAAQ,GAAiB,OAAVA,GAAkB5P,KAAK4P,MAAQ,EACjE,OAAOlL,EAAOxE,UAAUuQ,eAAe7P,KAAKZ,KAAM0O,EAAW8B,EAAIZ,GAEpC,IAA7BlB,EAAUuB,QAAQtP,SAClB0qB,qBAAqB7a,GACrB9B,EAAUE,eAAYtH,IAIvB8jB,EA3BgB,C,MA4BzB,GC5BSE,EAAiB,ICAG,SAAU5mB,GAErC,SAAS6mB,IACL,OAAkB,OAAX7mB,GAAmBA,EAAO7D,MAAMb,KAAMU,YAAcV,KAuB/D,OAzBA,YAAUurB,EAAyB7mB,GAInC6mB,EAAwBrrB,UAAUiQ,MAAQ,SAAUC,GAChDpQ,KAAKkQ,QAAS,EACdlQ,KAAK4O,eAAYtH,EACjB,IACI/D,EADA0M,EAAUjQ,KAAKiQ,QAEfnG,GAAS,EACTmB,EAAQgF,EAAQtP,OACpByP,EAASA,GAAUH,EAAQ1L,QAC3B,GACI,GAAIhB,EAAQ6M,EAAOC,QAAQD,EAAOP,MAAOO,EAAOR,OAC5C,cAEG9F,EAAQmB,IAAUmF,EAASH,EAAQ1L,UAE9C,GADAvE,KAAKkQ,QAAS,EACV3M,EAAO,CACP,OAASuG,EAAQmB,IAAUmF,EAASH,EAAQ1L,UACxC6L,EAAO1K,cAEX,MAAMnC,IAGPgoB,EA1BmB,C,MA2B5B,GD3B0B,CAA4B,I,gCEFxD,8CACO,SAASC,EAAYC,EAAoBhD,EAAY/Z,GACxD,IAAIxG,EAYJ,OAVIA,EADAujB,GAAoD,iBAAvBA,EACpBA,EAGA,CACLjD,WAAYiD,EACZhD,WAAYA,EACZiD,UAAU,EACVhd,UAAWA,GAGZ,SAAU5H,GAAU,OAAOA,EAAOa,KAE7C,SAA6BP,GACzB,IACIoG,EAEA5E,EAHAiE,EAAKzF,EAAGohB,WAAYA,OAAoB,IAAP3b,EAAgBmH,OAAOC,kBAAoBpH,EAAI8e,EAAKvkB,EAAGqhB,WAAYA,OAAoB,IAAPkD,EAAgB3X,OAAOC,kBAAoB0X,EAAIC,EAAcxkB,EAAGskB,SAAUhd,EAAYtH,EAAGsH,UAE1Mgd,EAAW,EAEXzkB,GAAW,EACX4kB,GAAa,EACjB,OAAO,SAA8B/kB,GACjC4kB,IACKle,IAAWvG,IACZA,GAAW,EACXuG,EAAU,IAAI,IAAcgb,EAAYC,EAAY/Z,GACpD9F,EAAe9B,EAAOO,UAAU,CAC5B5F,KAAM,SAAUF,GAASiM,EAAQ/L,KAAKF,IACtCgC,MAAO,SAAUgC,GACb0B,GAAW,EACXuG,EAAQjK,MAAMgC,IAElBX,SAAU,WACNinB,GAAa,EACbjjB,OAAetB,EACfkG,EAAQ5I,eAIpB,IAAI+G,EAAW6B,EAAQnG,UAAUrH,MACjCA,KAAKmF,KAAI,WACLumB,IACA/f,EAASjG,cACLkD,IAAiBijB,GAAcD,GAA4B,IAAbF,IAC9C9iB,EAAalD,cACbkD,OAAetB,EACfkG,OAAUlG,OAlCwBwkB,CAAoB5jB,O,6BCdtE,8CACO,SAAS6jB,EAAwBrZ,EAAKL,GACzC,OAAO,aAAqB,SAAUpJ,EAAG/G,GAAK,OAAOmQ,EAAUA,EAAQpJ,EAAEyJ,GAAMxQ,EAAEwQ,IAAQzJ,EAAEyJ,KAASxQ,EAAEwQ,Q,6BCF1G,6DAGO,SAASsZ,IAEZ,IADA,IAAI9a,EAAO,GACFnI,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpCmI,EAAKnI,GAAMrI,UAAUqI,GAEzB,OAAO,SAAUjC,GACb,IAAIgE,EACiC,mBAA1BoG,EAAKA,EAAKvQ,OAAS,KAC1BmK,EAAUoG,EAAKnO,OAEnB,IAAI2c,EAAcxO,EAClB,OAAOpK,EAAOa,KAAK,IAAIskB,EAAuBvM,EAAa5U,KAGnE,IAAImhB,EAA0B,WAC1B,SAASA,EAAuBvM,EAAa5U,GACzC9K,KAAK0f,YAAcA,EACnB1f,KAAK8K,QAAUA,EAKnB,OAHAmhB,EAAuB/rB,UAAUU,KAAO,SAAUyE,EAAYyB,GAC1D,OAAOA,EAAOO,UAAU,IAAI6kB,EAAyB7mB,EAAYrF,KAAK0f,YAAa1f,KAAK8K,WAErFmhB,EARkB,GAUzBC,EAA4B,SAAUxnB,GAEtC,SAASwnB,EAAyBhnB,EAAawa,EAAa5U,GACxD,IAAIjG,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAC9C6E,EAAM6a,YAAcA,EACpB7a,EAAMiG,QAAUA,EAChBjG,EAAMgb,UAAY,GAClB,IAAI3V,EAAMwV,EAAY/e,OACtBkE,EAAMmC,OAAS,IAAIrH,MAAMuK,GACzB,IAAK,IAAI1J,EAAI,EAAGA,EAAI0J,EAAK1J,IACrBqE,EAAMgb,UAAU7c,KAAKxC,GAEzB,IAASA,EAAI,EAAGA,EAAI0J,EAAK1J,IAAK,CAC1B,IAAIqH,EAAa6X,EAAYlf,GAC7BqE,EAAMM,IAAI,YAAkBN,EAAOgD,EAAYA,EAAYrH,IAE/D,OAAOqE,EAoCX,OAnDA,YAAUqnB,EAA0BxnB,GAiBpCwnB,EAAyBhsB,UAAUsL,WAAa,SAAUJ,EAAYK,EAAYJ,EAAYK,EAAYC,GACtG3L,KAAKgH,OAAOqE,GAAcI,EAC1B,IAAIoU,EAAY7f,KAAK6f,UACrB,GAAIA,EAAUlf,OAAS,EAAG,CACtB,IAAIwrB,EAAQtM,EAAUrV,QAAQa,IACf,IAAX8gB,GACAtM,EAAUlV,OAAOwhB,EAAO,KAIpCD,EAAyBhsB,UAAU2L,eAAiB,aAEpDqgB,EAAyBhsB,UAAUoF,MAAQ,SAAU/D,GACjD,GAA8B,IAA1BvB,KAAK6f,UAAUlf,OAAc,CAC7B,IAAIuQ,EAAO,YAAe,CAAC3P,GAAQvB,KAAKgH,QACpChH,KAAK8K,QACL9K,KAAKosB,YAAYlb,GAGjBlR,KAAKkF,YAAYzD,KAAKyP,KAIlCgb,EAAyBhsB,UAAUksB,YAAc,SAAUlb,GACvD,IAAItP,EACJ,IACIA,EAAS5B,KAAK8K,QAAQjK,MAAMb,KAAMkR,GAEtC,MAAO3L,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAG3BvF,KAAKkF,YAAYzD,KAAKG,IAEnBsqB,EApDoB,CAqD7B,M,6BChFF,oDAEO,SAASG,EAAY7D,EAAY8D,GAEpC,YADyB,IAArBA,IAA+BA,EAAmB,MAC/C,SAAqCxlB,GACxC,OAAOA,EAAOa,KAAK,IAAI4kB,EAAoB/D,EAAY8D,KAG/D,IAAIC,EAAuB,WACvB,SAASA,EAAoB/D,EAAY8D,GACrCtsB,KAAKwoB,WAAaA,EAClBxoB,KAAKssB,iBAAmBA,EAKpBtsB,KAAKwsB,gBAJJF,GAAoB9D,IAAe8D,EAIbG,EAHAC,EAS/B,OAHAH,EAAoBrsB,UAAUU,KAAO,SAAUyE,EAAYyB,GACvD,OAAOA,EAAOO,UAAU,IAAIrH,KAAKwsB,gBAAgBnnB,EAAYrF,KAAKwoB,WAAYxoB,KAAKssB,oBAEhFC,EAde,GAgBtBG,EAAyB,SAAUhoB,GAEnC,SAASgoB,EAAsBxnB,EAAasjB,GACxC,IAAI3jB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAG9C,OAFA6E,EAAM2jB,WAAaA,EACnB3jB,EAAMuP,OAAS,GACRvP,EAiBX,OAtBA,YAAU6nB,EAAuBhoB,GAOjCgoB,EAAsBxsB,UAAUoF,MAAQ,SAAU/D,GAC9C,IAAI6S,EAASpU,KAAKoU,OAClBA,EAAOpR,KAAKzB,GACR6S,EAAOzT,QAAUX,KAAKwoB,aACtBxoB,KAAKkF,YAAYzD,KAAK2S,GACtBpU,KAAKoU,OAAS,KAGtBsY,EAAsBxsB,UAAUuF,UAAY,WACxC,IAAI2O,EAASpU,KAAKoU,OACdA,EAAOzT,OAAS,GAChBX,KAAKkF,YAAYzD,KAAK2S,GAE1B1P,EAAOxE,UAAUuF,UAAU7E,KAAKZ,OAE7B0sB,EAvBiB,CAwB1B,KACED,EAA6B,SAAU/nB,GAEvC,SAAS+nB,EAA0BvnB,EAAasjB,EAAY8D,GACxD,IAAIznB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAK9C,OAJA6E,EAAM2jB,WAAaA,EACnB3jB,EAAMynB,iBAAmBA,EACzBznB,EAAM8nB,QAAU,GAChB9nB,EAAMoG,MAAQ,EACPpG,EA2BX,OAlCA,YAAU4nB,EAA2B/nB,GASrC+nB,EAA0BvsB,UAAUoF,MAAQ,SAAU/D,GAClD,IAAeinB,EAANxoB,KAAsBwoB,WAAY8D,EAAlCtsB,KAAwDssB,iBAAkBK,EAA1E3sB,KAAuF2sB,QAAS1hB,EAAhGjL,KAA2GiL,MACpHjL,KAAKiL,QACDA,EAAQqhB,GAAqB,GAC7BK,EAAQ3pB,KAAK,IAEjB,IAAK,IAAIxC,EAAImsB,EAAQhsB,OAAQH,KAAM,CAC/B,IAAI4T,EAASuY,EAAQnsB,GACrB4T,EAAOpR,KAAKzB,GACR6S,EAAOzT,SAAW6nB,IAClBmE,EAAQhiB,OAAOnK,EAAG,GAClBR,KAAKkF,YAAYzD,KAAK2S,MAIlCqY,EAA0BvsB,UAAUuF,UAAY,WAE5C,IADA,IAAeknB,EAAN3sB,KAAmB2sB,QAASznB,EAA5BlF,KAA6CkF,YAC/CynB,EAAQhsB,OAAS,GAAG,CACvB,IAAIyT,EAASuY,EAAQpoB,QACjB6P,EAAOzT,OAAS,GAChBuE,EAAYzD,KAAK2S,GAGzB1P,EAAOxE,UAAUuF,UAAU7E,KAAKZ,OAE7BysB,EAnCqB,CAoC9B,M,6BCrFF,oBA2BIG,EAEJ,aAAQ,SAAiB9C,GACvB,OAAO,YAAUA,GAAQA,EAAK+C,MAAM,IAAID,UAAUpjB,KAAK,IAAM7J,MAAMO,UAAUyN,MAAM/M,KAAKkpB,EAAM,GAAG8C,aAGpF,O,mFChCR,SAASE,IACZ,OAAO,OAAAvY,EAAA,GAAS,GCAb,SAAS9Q,IAEZ,IADA,IAAIic,EAAc,GACT3W,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpC2W,EAAY3W,GAAMrI,UAAUqI,GAEhC,OAAO+jB,IAAY7b,EAAA,EAAGpQ,WAAM,EAAQ6e,I,YCLjC,SAASqN,IAEZ,IADA,IAAI/lB,EAAS,GACJ+B,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpC/B,EAAO+B,GAAMrI,UAAUqI,GAE3B,IAAI2F,EAAY1H,EAAOA,EAAOrG,OAAS,GACvC,OAAI,OAAAuM,EAAA,GAAYwB,IACZ1H,EAAOjE,MACA,SAAU+D,GAAU,OAAOrD,EAAOuD,EAAQF,EAAQ4H,KAGlD,SAAU5H,GAAU,OAAOrD,EAAOuD,EAAQF,M,6BCbzD,oEAIO,SAASkmB,EAAU7U,EAAQ8U,EAAWhS,EAAS/M,GAKlD,OAJI,YAAW+M,KACX/M,EAAiB+M,EACjBA,OAAU3T,GAEV4G,EACO8e,EAAU7U,EAAQ8U,EAAWhS,GAASpS,KAAK,aAAI,SAAUqI,GAAQ,OAAO,YAAQA,GAAQhD,EAAerN,WAAM,EAAQqQ,GAAQhD,EAAegD,OAEhJ,IAAI,KAAW,SAAU7L,IAYpC,SAAS6nB,EAAkBC,EAAWF,EAAWG,EAAS/nB,EAAY4V,GAClE,IAAIvV,EACJ,GA+BJ,SAAuBynB,GACnB,OAAOA,GAAmD,mBAA/BA,EAAU5U,kBAA4E,mBAAlC4U,EAAU1U,oBAhCrF4U,CAAcF,GAAY,CAC1B,IAAIG,EAAWH,EACfA,EAAU5U,iBAAiB0U,EAAWG,EAASnS,GAC/CvV,EAAc,WAAc,OAAO4nB,EAAS7U,oBAAoBwU,EAAWG,EAASnS,SAEnF,GAuBT,SAAmCkS,GAC/B,OAAOA,GAAqC,mBAAjBA,EAAU7V,IAA8C,mBAAlB6V,EAAUxV,IAxBlE4V,CAA0BJ,GAAY,CAC3C,IAAIK,EAAWL,EACfA,EAAU7V,GAAG2V,EAAWG,GACxB1nB,EAAc,WAAc,OAAO8nB,EAAS7V,IAAIsV,EAAWG,SAE1D,GAeT,SAAiCD,GAC7B,OAAOA,GAA8C,mBAA1BA,EAAUM,aAAkE,mBAA7BN,EAAUO,eAhB3EC,CAAwBR,GAAY,CACzC,IAAIS,EAAWT,EACfA,EAAUM,YAAYR,EAAWG,GACjC1nB,EAAc,WAAc,OAAOkoB,EAASF,eAAeT,EAAWG,QAErE,KAAID,IAAaA,EAAUxsB,OAM5B,MAAM,IAAImC,UAAU,wBALpB,IAAK,IAAItC,EAAI,EAAG0J,EAAMijB,EAAUxsB,OAAQH,EAAI0J,EAAK1J,IAC7C0sB,EAAkBC,EAAU3sB,GAAIysB,EAAWG,EAAS/nB,EAAY4V,GAMxE5V,EAAWF,IAAIO,GA5BXwnB,CAAkB/U,EAAQ8U,GAR1B,SAAiBvrB,GACThB,UAAUC,OAAS,EACnB0E,EAAW5D,KAAK9B,MAAMO,UAAUyN,MAAM/M,KAAKF,YAG3C2E,EAAW5D,KAAKC,KAGsB2D,EAAY4V,Q,6BCrBlE,oDAEO,SAAS4S,EAAMtsB,GAClB,OAAO,SAAUuF,GAAU,OAAOA,EAAOa,KAAK,IAAImmB,EAAcvsB,KAEpE,IAAIusB,EAAiB,WACjB,SAASA,EAAcvsB,GACnBvB,KAAKuB,MAAQA,EAKjB,OAHAusB,EAAc5tB,UAAUU,KAAO,SAAUyE,EAAYyB,GACjD,OAAOA,EAAOO,UAAU,IAAI0mB,EAAgB1oB,EAAYrF,KAAKuB,SAE1DusB,EAPS,GAShBC,EAAmB,SAAUrpB,GAE7B,SAASqpB,EAAgB7oB,EAAa3D,GAClC,IAAIsD,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAE9C,OADA6E,EAAMtD,MAAQA,EACPsD,EAKX,OATA,YAAUkpB,EAAiBrpB,GAM3BqpB,EAAgB7tB,UAAUoF,MAAQ,SAAU2D,GACxCjJ,KAAKkF,YAAYzD,KAAKzB,KAAKuB,QAExBwsB,EAVW,CAWpB,M,6BCzBF,qEAIO,SAASC,IAEZ,IADA,IAAItO,EAAc,GACT3W,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpC2W,EAAY3W,GAAMrI,UAAUqI,GAEhC,IAAIgL,EAAaC,OAAOC,kBACpBvF,OAAYpH,EACZ2mB,EAAOvO,EAAYA,EAAY/e,OAAS,GAU5C,OATI,YAAYstB,IACZvf,EAAYgR,EAAY3c,MACpB2c,EAAY/e,OAAS,GAAoD,iBAAxC+e,EAAYA,EAAY/e,OAAS,KAClEoT,EAAa2L,EAAY3c,QAGR,iBAATkrB,IACZla,EAAa2L,EAAY3c,QAExB2L,GAAoC,IAAvBgR,EAAY/e,QAAgB+e,EAAY,aAAc,IAC7DA,EAAY,GAEhB,YAAS3L,EAAT,CAAqB,YAAU2L,EAAahR,M,6BCxBvD,oEAIO,SAASwf,EAAiBC,EAAYC,EAAelgB,GACxD,OAAIA,EACOggB,EAAiBC,EAAYC,GAAevlB,KAAK,aAAI,SAAUqI,GAAQ,OAAO,YAAQA,GAAQhD,EAAerN,WAAM,EAAQqQ,GAAQhD,EAAegD,OAEtJ,IAAI,KAAW,SAAU7L,GAC5B,IAOIgpB,EAPAjB,EAAU,WAEV,IADA,IAAI1rB,EAAI,GACCqH,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpCrH,EAAEqH,GAAMrI,UAAUqI,GAEtB,OAAO1D,EAAW5D,KAAkB,IAAbC,EAAEf,OAAee,EAAE,GAAKA,IAGnD,IACI2sB,EAAWF,EAAWf,GAE1B,MAAO7nB,GAEH,YADAF,EAAW9B,MAAMgC,GAGrB,GAAK,YAAW6oB,GAGhB,OAAO,WAAc,OAAOA,EAAchB,EAASiB,S,6BC3B3D,oDAEO,SAAS3L,EAAO4L,EAAWvtB,GAC9B,OAAO,SAAgC+F,GACnC,OAAOA,EAAOa,KAAK,IAAI4mB,EAAeD,EAAWvtB,KAGzD,IAAIwtB,EAAkB,WAClB,SAASA,EAAeD,EAAWvtB,GAC/Bf,KAAKsuB,UAAYA,EACjBtuB,KAAKe,QAAUA,EAKnB,OAHAwtB,EAAeruB,UAAUU,KAAO,SAAUyE,EAAYyB,GAClD,OAAOA,EAAOO,UAAU,IAAImnB,EAAiBnpB,EAAYrF,KAAKsuB,UAAWtuB,KAAKe,WAE3EwtB,EARU,GAUjBC,EAAoB,SAAU9pB,GAE9B,SAAS8pB,EAAiBtpB,EAAaopB,EAAWvtB,GAC9C,IAAI8D,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAI9C,OAHA6E,EAAMypB,UAAYA,EAClBzpB,EAAM9D,QAAUA,EAChB8D,EAAMoG,MAAQ,EACPpG,EAeX,OArBA,YAAU2pB,EAAkB9pB,GAQ5B8pB,EAAiBtuB,UAAUoF,MAAQ,SAAU/D,GACzC,IAAIK,EACJ,IACIA,EAAS5B,KAAKsuB,UAAU1tB,KAAKZ,KAAKe,QAASQ,EAAOvB,KAAKiL,SAE3D,MAAO1F,GAEH,YADAvF,KAAKkF,YAAY3B,MAAMgC,GAGvB3D,GACA5B,KAAKkF,YAAYzD,KAAKF,IAGvBitB,EAtBY,CAuBrB,M,6BCxCF,6DAGIC,EAAmB,SAAU/pB,GAE7B,SAAS+pB,EAAgBC,GACrB,IAAI7pB,EAAQH,EAAO9D,KAAKZ,OAASA,KAEjC,OADA6E,EAAM6pB,OAASA,EACR7pB,EA8BX,OAlCA,YAAU4pB,EAAiB/pB,GAM3BlF,OAAOkW,eAAe+Y,EAAgBvuB,UAAW,QAAS,CACtD0V,IAAK,WACD,OAAO5V,KAAK2uB,YAEhBhZ,YAAY,EACZ+E,cAAc,IAElB+T,EAAgBvuB,UAAUwH,WAAa,SAAUrC,GAC7C,IAAIuD,EAAelE,EAAOxE,UAAUwH,WAAW9G,KAAKZ,KAAMqF,GAI1D,OAHIuD,IAAiBA,EAAajD,QAC9BN,EAAW5D,KAAKzB,KAAK0uB,QAElB9lB,GAEX6lB,EAAgBvuB,UAAUyuB,SAAW,WACjC,GAAI3uB,KAAKiH,SACL,MAAMjH,KAAKuN,YAEV,GAAIvN,KAAK2F,OACV,MAAM,IAAI,IAGV,OAAO3F,KAAK0uB,QAGpBD,EAAgBvuB,UAAUuB,KAAO,SAAUF,GACvCmD,EAAOxE,UAAUuB,KAAKb,KAAKZ,KAAMA,KAAK0uB,OAASntB,IAE5CktB,EAnCW,CAoCpB,M,6BCvCF,6CACO,SAASG,IAEZ,IADA,IAAIC,EAAa,GACR9lB,EAAK,EAAGA,EAAKrI,UAAUC,OAAQoI,IACpC8lB,EAAW9lB,GAAMrI,UAAUqI,GAE/B,IAAIpI,EAASkuB,EAAWluB,OACxB,GAAe,IAAXA,EACA,MAAM,IAAI8F,MAAM,uCAEpB,OAAO,aAAI,SAAUwC,GAEjB,IADA,IAAI6lB,EAAc7lB,EACTzI,EAAI,EAAGA,EAAIG,EAAQH,IAAK,CAC7B,IAAIZ,EAAIkvB,EAAYD,EAAWruB,IAC/B,QAAiB,IAANZ,EAIP,OAHAkvB,EAAclvB,EAMtB,OAAOkvB,O,6BCrBf,6DAGWC,EAAwB,CAC/BC,SAAS,EACTC,UAAU,GAEP,SAAS9M,EAAS+M,EAAkBhnB,GAEvC,YADe,IAAXA,IAAqBA,EAAS6mB,GAC3B,SAAUjoB,GAAU,OAAOA,EAAOa,KAAK,IAAIwnB,EAAiBD,IAAoBhnB,EAAO8mB,UAAW9mB,EAAO+mB,YAEpH,IAAIE,EAAoB,WACpB,SAASA,EAAiBD,EAAkBF,EAASC,GACjDjvB,KAAKkvB,iBAAmBA,EACxBlvB,KAAKgvB,QAAUA,EACfhvB,KAAKivB,SAAWA,EAKpB,OAHAE,EAAiBjvB,UAAUU,KAAO,SAAUyE,EAAYyB,GACpD,OAAOA,EAAOO,UAAU,IAAI+nB,EAAmB/pB,EAAYrF,KAAKkvB,iBAAkBlvB,KAAKgvB,QAAShvB,KAAKivB,YAElGE,EATY,GAWnBC,EAAsB,SAAU1qB,GAEhC,SAAS0qB,EAAmBlqB,EAAagqB,EAAkBG,EAAUC,GACjE,IAAIzqB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAO9C,OANA6E,EAAMK,YAAcA,EACpBL,EAAMqqB,iBAAmBA,EACzBrqB,EAAMwqB,SAAWA,EACjBxqB,EAAMyqB,UAAYA,EAClBzqB,EAAM0qB,WAAa,KACnB1qB,EAAM2qB,WAAY,EACX3qB,EAsDX,OA/DA,YAAUuqB,EAAoB1qB,GAW9B0qB,EAAmBlvB,UAAUoF,MAAQ,SAAU/D,GAC3CvB,KAAKwvB,WAAY,EACjBxvB,KAAKuvB,WAAahuB,EACbvB,KAAKyvB,aACFzvB,KAAKqvB,SACLrvB,KAAK0vB,OAGL1vB,KAAKmiB,SAAS5gB,KAI1B6tB,EAAmBlvB,UAAUwvB,KAAO,WAChC,IAAeF,EAANxvB,KAAqBwvB,UAAWD,EAAhCvvB,KAAgDuvB,WACrDC,IACAxvB,KAAKkF,YAAYzD,KAAK8tB,GACtBvvB,KAAKmiB,SAASoN,IAElBvvB,KAAKwvB,WAAY,EACjBxvB,KAAKuvB,WAAa,MAEtBH,EAAmBlvB,UAAUiiB,SAAW,SAAU5gB,GAC9C,IAAIouB,EAAW3vB,KAAK4vB,oBAAoBruB,GAClCouB,GACF3vB,KAAKmF,IAAInF,KAAKyvB,WAAa,YAAkBzvB,KAAM2vB,KAG3DP,EAAmBlvB,UAAU0vB,oBAAsB,SAAUruB,GACzD,IACI,OAAOvB,KAAKkvB,iBAAiB3tB,GAEjC,MAAOgE,GAEH,OADAvF,KAAKkF,YAAY3B,MAAMgC,GAChB,OAGf6pB,EAAmBlvB,UAAU2vB,eAAiB,WAC1C,IAAeJ,EAANzvB,KAAsByvB,WAAYH,EAAlCtvB,KAAiDsvB,UACtDG,GACAA,EAAW/pB,cAEf1F,KAAKyvB,WAAa,KACdH,GACAtvB,KAAK0vB,QAGbN,EAAmBlvB,UAAUsL,WAAa,SAAUJ,EAAYK,EAAYJ,EAAYK,EAAYC,GAChG3L,KAAK6vB,kBAETT,EAAmBlvB,UAAU2L,eAAiB,WAC1C7L,KAAK6vB,kBAEFT,EAhEc,CAiEvB,M,6BCvFF,8CACO,SAASU,EAAYC,EAAiB7hB,GACzC,OAAOA,EAAiB,aAAU,WAAc,OAAO6hB,IAAoB7hB,GAAkB,aAAU,WAAc,OAAO6hB,O,6BCFhI,6DAGO,SAASC,EAAOC,GACnB,OAAO,SAAUnpB,GAAU,OAAOA,EAAOa,KAAK,IAAIuoB,EAAeD,KAErE,IAAIC,EAAkB,WAClB,SAASA,EAAeD,GACpBjwB,KAAKiwB,SAAWA,EAQpB,OANAC,EAAehwB,UAAUU,KAAO,SAAUyE,EAAYyB,GAClD,IAAIqpB,EAAmB,IAAIC,EAAiB/qB,GACxCuD,EAAe9B,EAAOO,UAAU8oB,GAEpC,OADAvnB,EAAazD,IAAI,YAAkBgrB,EAAkBnwB,KAAKiwB,WACnDrnB,GAEJsnB,EAVU,GAYjBE,EAAoB,SAAU1rB,GAE9B,SAAS0rB,IACL,IAAIvrB,EAAmB,OAAXH,GAAmBA,EAAO7D,MAAMb,KAAMU,YAAcV,KAEhE,OADA6E,EAAM0M,UAAW,EACV1M,EAkBX,OAtBA,YAAUurB,EAAkB1rB,GAM5B0rB,EAAiBlwB,UAAUoF,MAAQ,SAAU/D,GACzCvB,KAAKuB,MAAQA,EACbvB,KAAKuR,UAAW,GAEpB6e,EAAiBlwB,UAAUsL,WAAa,SAAUJ,EAAYK,EAAYJ,EAAYK,EAAYC,GAC9F3L,KAAKqwB,aAETD,EAAiBlwB,UAAU2L,eAAiB,WACxC7L,KAAKqwB,aAETD,EAAiBlwB,UAAUmwB,UAAY,WAC/BrwB,KAAKuR,WACLvR,KAAKuR,UAAW,EAChBvR,KAAKkF,YAAYzD,KAAKzB,KAAKuB,SAG5B6uB,EAvBY,CAwBrB,M,6BC1CF,qDAEWE,EAAQ,IAAI,IAAW,M,6BCFlC,oDAEO,SAASC,EAAKtlB,GACjB,OAAO,SAAUnE,GAAU,OAAOA,EAAOa,KAAK,IAAI6oB,EAAavlB,KAEnE,IAAIulB,EAAgB,WAChB,SAASA,EAAaC,GAClBzwB,KAAKywB,MAAQA,EAKjB,OAHAD,EAAatwB,UAAUU,KAAO,SAAUyE,EAAYyB,GAChD,OAAOA,EAAOO,UAAU,IAAIqpB,EAAerrB,EAAYrF,KAAKywB,SAEzDD,EAPQ,GASfE,EAAkB,SAAUhsB,GAE5B,SAASgsB,EAAexrB,EAAaurB,GACjC,IAAI5rB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAG9C,OAFA6E,EAAM4rB,MAAQA,EACd5rB,EAAMoG,MAAQ,EACPpG,EAOX,OAZA,YAAU6rB,EAAgBhsB,GAO1BgsB,EAAexwB,UAAUoF,MAAQ,SAAU2D,KACjCjJ,KAAKiL,MAAQjL,KAAKywB,OACpBzwB,KAAKkF,YAAYzD,KAAKwH,IAGvBynB,EAbU,CAcnB,M,6BC5BF,qEAIO,SAASC,EAAW9X,GACvB,OAAO,SAAoC/R,GACvC,IAAIc,EAAW,IAAIgpB,EAAc/X,GAC7BgY,EAAS/pB,EAAOa,KAAKC,GACzB,OAAQA,EAASipB,OAASA,GAGlC,IAAID,EAAiB,WACjB,SAASA,EAAc/X,GACnB7Y,KAAK6Y,SAAWA,EAKpB,OAHA+X,EAAc1wB,UAAUU,KAAO,SAAUyE,EAAYyB,GACjD,OAAOA,EAAOO,UAAU,IAAIypB,EAAgBzrB,EAAYrF,KAAK6Y,SAAU7Y,KAAK6wB,UAEzED,EAPS,GAShBE,EAAmB,SAAUpsB,GAE7B,SAASosB,EAAgB5rB,EAAa2T,EAAUgY,GAC5C,IAAIhsB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAG9C,OAFA6E,EAAMgU,SAAWA,EACjBhU,EAAMgsB,OAASA,EACRhsB,EAqBX,OA1BA,YAAUisB,EAAiBpsB,GAO3BosB,EAAgB5wB,UAAUqD,MAAQ,SAAUgC,GACxC,IAAKvF,KAAKiF,UAAW,CACjB,IAAIrD,OAAS,EACb,IACIA,EAAS5B,KAAK6Y,SAAStT,EAAKvF,KAAK6wB,QAErC,MAAOE,GAEH,YADArsB,EAAOxE,UAAUqD,MAAM3C,KAAKZ,KAAM+wB,GAGtC/wB,KAAK4F,yBACL,IAAI0F,EAAkB,IAAI,IAAgBtL,UAAMsH,OAAWA,GAC3DtH,KAAKmF,IAAImG,GACT,IAAIiD,EAAoB,YAAkBvO,KAAM4B,OAAQ0F,OAAWA,EAAWgE,GAC1EiD,IAAsBjD,GACtBtL,KAAKmF,IAAIoJ,KAIduiB,EA3BW,CA4BpB,M,6BChDF,4DAGO,SAASE,EAAaC,EAASviB,GAElC,YADkB,IAAdA,IAAwBA,EAAY,KACjC,SAAU5H,GAAU,OAAOA,EAAOa,KAAK,IAAIupB,EAAqBD,EAASviB,KAEpF,IAAIwiB,EAAwB,WACxB,SAASA,EAAqBD,EAASviB,GACnC1O,KAAKixB,QAAUA,EACfjxB,KAAK0O,UAAYA,EAKrB,OAHAwiB,EAAqBhxB,UAAUU,KAAO,SAAUyE,EAAYyB,GACxD,OAAOA,EAAOO,UAAU,IAAI8pB,EAAuB9rB,EAAYrF,KAAKixB,QAASjxB,KAAK0O,aAE/EwiB,EARgB,GAUvBC,EAA0B,SAAUzsB,GAEpC,SAASysB,EAAuBjsB,EAAa+rB,EAASviB,GAClD,IAAI7J,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAM9C,OALA6E,EAAMosB,QAAUA,EAChBpsB,EAAM6J,UAAYA,EAClB7J,EAAMusB,sBAAwB,KAC9BvsB,EAAMwsB,UAAY,KAClBxsB,EAAM0M,UAAW,EACV1M,EA6BX,OArCA,YAAUssB,EAAwBzsB,GAUlCysB,EAAuBjxB,UAAUoF,MAAQ,SAAU/D,GAC/CvB,KAAKsxB,gBACLtxB,KAAKqxB,UAAY9vB,EACjBvB,KAAKuR,UAAW,EAChBvR,KAAKmF,IAAInF,KAAKoxB,sBAAwBpxB,KAAK0O,UAAUvB,SAASokB,EAAcvxB,KAAKixB,QAASjxB,QAE9FmxB,EAAuBjxB,UAAUuF,UAAY,WACzCzF,KAAKwxB,gBACLxxB,KAAKkF,YAAYN,YAErBusB,EAAuBjxB,UAAUsxB,cAAgB,WAE7C,GADAxxB,KAAKsxB,gBACDtxB,KAAKuR,SAAU,CACf,IAAI8f,EAAYrxB,KAAKqxB,UACrBrxB,KAAKqxB,UAAY,KACjBrxB,KAAKuR,UAAW,EAChBvR,KAAKkF,YAAYzD,KAAK4vB,KAG9BF,EAAuBjxB,UAAUoxB,cAAgB,WAC7C,IAAIF,EAAwBpxB,KAAKoxB,sBACH,OAA1BA,IACApxB,KAAK6J,OAAOunB,GACZA,EAAsB1rB,cACtB1F,KAAKoxB,sBAAwB,OAG9BD,EAtCkB,CAuC3B,KACF,SAASI,EAAalsB,GAClBA,EAAWmsB,kB,6BC1Df,sDAEO,SAASC,EAAIC,EAAWC,EAAYC,GAGvC,YAFmB,IAAfD,IAAyBA,EAAa,UACtB,IAAhBC,IAA0BA,EAAc,KACrC,aAAM,WAAc,OAAOF,IAAcC,EAAaC,O,6BCLjE,YAmCIC,EAEJ,aAAQ,SAAgBtrB,EAAIujB,GAC1B,OAAOnqB,MAAMO,UAAUyN,MAAM/M,KAAKkpB,EAAM,GAAGgI,MAAK,SAAUjuB,EAAGtE,GAC3D,IAAIwyB,EAAKxrB,EAAG1C,GACRmuB,EAAKzrB,EAAGhH,GACZ,OAAOwyB,EAAKC,GAAM,EAAID,EAAKC,EAAK,EAAI,QAIzB,O,6BC7Cf,oBAoBIhrB,EAEJ,aAAQ,SAAgB0M,GAMtB,IALA,IAAI8G,EAAQ,YAAK9G,GACbxJ,EAAMsQ,EAAM7Z,OACZsxB,EAAO,GACPlI,EAAM,EAEHA,EAAM7f,GACX+nB,EAAKlI,GAAOrW,EAAI8G,EAAMuP,IACtBA,GAAO,EAGT,OAAOkI,KAGM,O,yCC5BA,EAAAje,OAAA,uBACb,OAAOvT,GAAK,IAAMA,G,QC2BL,EALf,OAAAkM,EAAA,IAAQ,SAAaulB,EAAQpI,GAC3B,IAAIC,EAAMmI,EAAS,EAAIpI,EAAKnpB,OAASuxB,EAASA,EAC9C,OAAO,OAAAjf,EAAA,GAAU6W,GAAQA,EAAKqI,OAAOpI,GAAOD,EAAKC,MCWpC,EApBf,OAAApd,EAAA,IAAQ,SAAeylB,EAAY1e,GACjC,OAAO0e,EAAW9oB,KAAI,SAAU+oB,GAK9B,IAJA,IAEIzyB,EAFA0yB,EAAM5e,EACNqW,EAAM,EAGHA,EAAMsI,EAAM1xB,QAAQ,CACzB,GAAW,MAAP2xB,EACF,OAGF1yB,EAAIyyB,EAAMtI,GACVuI,EAAMC,EAAW3yB,GAAK,EAAIA,EAAG0yB,GAAOA,EAAI1yB,GACxCmqB,GAAO,EAGT,OAAOuI,QCXI,EAJf,OAAA3lB,EAAA,IAAQ,SAAc6lB,EAAQ9e,GAC5B,OAAO,EAAM,CAAC8e,GAAS9e,GAAK,MCF1B,EAEJ,OAAA/G,EAAA,IAAQ,SAAc/M,EAAG8T,GACvB,OAAO,EAAK,CAAC9T,GAAI8T,MAGJ,O,uGC5BR,SAASgY,IACZ,OAAO,SAAkC5kB,GACrC,OAAOA,EAAOa,KAAK,IAAI8qB,EAAiB3rB,KAGhD,ICwCQ4rB,EDxCJD,EAAoB,WACpB,SAASA,EAAiBE,GACtB3yB,KAAK2yB,YAAcA,EAYvB,OAVAF,EAAiBvyB,UAAUU,KAAO,SAAUyE,EAAYyB,GACpD,IAAI6rB,EAAc3yB,KAAK2yB,YACvBA,EAAYC,YACZ,IAAIC,EAAa,IAAI,EAAmBxtB,EAAYstB,GAChD/pB,EAAe9B,EAAOO,UAAUwrB,GAIpC,OAHKA,EAAWltB,SACZktB,EAAWC,WAAaH,EAAYI,WAEjCnqB,GAEJ6pB,EAdY,GAgBnB,EAAsB,SAAU/tB,GAEhC,SAASsuB,EAAmB9tB,EAAaytB,GACrC,IAAI9tB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAG9C,OAFA6E,EAAM8tB,YAAcA,EACpB9tB,EAAMiuB,WAAa,KACZjuB,EA0BX,OA/BA,YAAUmuB,EAAoBtuB,GAO9BsuB,EAAmB9yB,UAAUwG,aAAe,WACxC,IAAIisB,EAAc3yB,KAAK2yB,YACvB,GAAKA,EAAL,CAIA3yB,KAAK2yB,YAAc,KACnB,IAAIjH,EAAWiH,EAAYC,UAC3B,GAAIlH,GAAY,EACZ1rB,KAAK8yB,WAAa,UAItB,GADAH,EAAYC,UAAYlH,EAAW,EAC/BA,EAAW,EACX1rB,KAAK8yB,WAAa,SADtB,CAIA,IAAIA,EAAa9yB,KAAK8yB,WAClBG,EAAmBN,EAAYO,YACnClzB,KAAK8yB,WAAa,MACdG,GAAsBH,GAAcG,IAAqBH,GACzDG,EAAiBvtB,oBAlBjB1F,KAAK8yB,WAAa,MAqBnBE,EAhCc,CAiCvBvuB,EAAA,GClDE,EAAyB,SAAUC,GAEnC,SAASyuB,EAAsBrsB,EAAQssB,GACnC,IAAIvuB,EAAQH,EAAO9D,KAAKZ,OAASA,KAKjC,OAJA6E,EAAMiC,OAASA,EACfjC,EAAMuuB,eAAiBA,EACvBvuB,EAAM+tB,UAAY,EAClB/tB,EAAMwuB,aAAc,EACbxuB,EA6BX,OApCA,YAAUsuB,EAAuBzuB,GASjCyuB,EAAsBjzB,UAAUwH,WAAa,SAAUrC,GACnD,OAAOrF,KAAKszB,aAAajsB,UAAUhC,IAEvC8tB,EAAsBjzB,UAAUozB,WAAa,WACzC,IAAI9lB,EAAUxN,KAAKuzB,SAInB,OAHK/lB,IAAWA,EAAQvI,YACpBjF,KAAKuzB,SAAWvzB,KAAKozB,kBAElBpzB,KAAKuzB,UAEhBJ,EAAsBjzB,UAAU6yB,QAAU,WACtC,IAAID,EAAa9yB,KAAKkzB,YAWtB,OAVKJ,IACD9yB,KAAKqzB,aAAc,GACnBP,EAAa9yB,KAAKkzB,YAAc,IAAIxpB,EAAA,GACzBvE,IAAInF,KAAK8G,OACfO,UAAU,IAAI,EAAsBrH,KAAKszB,aAActzB,QACxD8yB,EAAWntB,SACX3F,KAAKkzB,YAAc,KACnBJ,EAAappB,EAAA,EAAaY,QAG3BwoB,GAEXK,EAAsBjzB,UAAUwrB,SAAW,WACvC,OAAO,IAAsB1rB,OAE1BmzB,EArCiB,CAsC1B3rB,EAAA,GAESgsB,EAEA,CACH5rB,SAAU,CAAErG,MAAO,MACnBqxB,UAAW,CAAErxB,MAAO,EAAGoZ,UAAU,GACjC4Y,SAAU,CAAEhyB,MAAO,KAAMoZ,UAAU,GACnCuY,YAAa,CAAE3xB,MAAO,KAAMoZ,UAAU,GACtCjT,WAAY,CAAEnG,OANdmxB,EAAmB,EAAsBxyB,WAMHwH,YACtC2rB,YAAa,CAAE9xB,MAAOmxB,EAAiBW,YAAa1Y,UAAU,GAC9D2Y,WAAY,CAAE/xB,MAAOmxB,EAAiBY,YACtCP,QAAS,CAAExxB,MAAOmxB,EAAiBK,SACnCrH,SAAU,CAAEnqB,MAAOmxB,EAAiBhH,WAGxC,EAAyB,SAAUhnB,GAEnC,SAAS+uB,EAAsBvuB,EAAaytB,GACxC,IAAI9tB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAE9C,OADA6E,EAAM8tB,YAAcA,EACb9tB,EAwBX,OA5BA,YAAU4uB,EAAuB/uB,GAMjC+uB,EAAsBvzB,UAAUsF,OAAS,SAAUD,GAC/CvF,KAAK0G,eACLhC,EAAOxE,UAAUsF,OAAO5E,KAAKZ,KAAMuF,IAEvCkuB,EAAsBvzB,UAAUuF,UAAY,WACxCzF,KAAK2yB,YAAYU,aAAc,EAC/BrzB,KAAK0G,eACLhC,EAAOxE,UAAUuF,UAAU7E,KAAKZ,OAEpCyzB,EAAsBvzB,UAAUwG,aAAe,WAC3C,IAAIisB,EAAc3yB,KAAK2yB,YACvB,GAAIA,EAAa,CACb3yB,KAAK2yB,YAAc,KACnB,IAAIG,EAAaH,EAAYO,YAC7BP,EAAYC,UAAY,EACxBD,EAAYY,SAAW,KACvBZ,EAAYO,YAAc,KACtBJ,GACAA,EAAWptB,gBAIhB+tB,EA7BiB,CA8B1BpmB,EAAA,GAiBE,GAhBoB,WACpB,SAASolB,EAAiBE,GACtB3yB,KAAK2yB,YAAcA,EAEvBF,EAAiBvyB,UAAUU,KAAO,SAAUyE,EAAYyB,GACpD,IAAI6rB,EAAc3yB,KAAK2yB,YACvBA,EAAYC,YACZ,IAAIC,EAAa,IAAI,EAAmBxtB,EAAYstB,GAChD/pB,EAAe9B,EAAOO,UAAUwrB,GAIpC,OAHKA,EAAWltB,SACZktB,EAAWC,WAAaH,EAAYI,WAEjCnqB,GAZQ,GAgBG,SAAUlE,GAEhC,SAASsuB,EAAmB9tB,EAAaytB,GACrC,IAAI9tB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAE9C,OADA6E,EAAM8tB,YAAcA,EACb9tB,EA0BX,OA9BA,YAAUmuB,EAAoBtuB,GAM9BsuB,EAAmB9yB,UAAUwG,aAAe,WACxC,IAAIisB,EAAc3yB,KAAK2yB,YACvB,GAAKA,EAAL,CAIA3yB,KAAK2yB,YAAc,KACnB,IAAIjH,EAAWiH,EAAYC,UAC3B,GAAIlH,GAAY,EACZ1rB,KAAK8yB,WAAa,UAItB,GADAH,EAAYC,UAAYlH,EAAW,EAC/BA,EAAW,EACX1rB,KAAK8yB,WAAa,SADtB,CAIA,IAAIA,EAAa9yB,KAAK8yB,WAClBG,EAAmBN,EAAYO,YACnClzB,KAAK8yB,WAAa,MACdG,GAAsBH,GAAcG,IAAqBH,GACzDG,EAAiBvtB,oBAlBjB1F,KAAK8yB,WAAa,MAqBnBE,EA/Bc,CAgCvBvuB,EAAA,ICtHF,IAAIivB,EAAqB,WACrB,SAASA,EAAkBN,EAAgBva,GACvC7Y,KAAKozB,eAAiBA,EACtBpzB,KAAK6Y,SAAWA,EASpB,OAPA6a,EAAkBxzB,UAAUU,KAAO,SAAUyE,EAAYyB,GACrD,IAAI+R,EAAW7Y,KAAK6Y,SAChBrL,EAAUxN,KAAKozB,iBACfxqB,EAAeiQ,EAASrL,GAASnG,UAAUhC,GAE/C,OADAuD,EAAazD,IAAI2B,EAAOO,UAAUmG,IAC3B5E,GAEJ8qB,EAZa,GClBxB,SAASC,IACL,OAAO,IAAItmB,EAAA,EAER,SAASumB,IACZ,OAAO,SAAU9sB,GAAU,OAAO4kB,KDNZmI,ECMiCF,EDLhD,SAAmC7sB,GACtC,IAAIssB,EASJ,GAPIA,EADmC,mBAA5BS,EACUA,EAGA,WACb,OAAOA,GAGS,mBAAbhb,EACP,OAAO/R,EAAOa,KAAK,IAAI+rB,EAAkBN,EAAgBva,IAE7D,IAAI8Z,EAAcnzB,OAAOW,OAAO2G,EAAQ0sB,GAGxC,OAFAb,EAAY7rB,OAASA,EACrB6rB,EAAYS,eAAiBA,EACtBT,ICXiE7rB,IDNzE,IAAmB+sB,EAAyBhb,K,iFESxCib,EAVuB,WAC9B,SAASC,IAIL,OAHAttB,MAAM7F,KAAKZ,MACXA,KAAKqJ,QAAU,wBACfrJ,KAAKyJ,KAAO,0BACLzJ,KAGX,OADA+zB,EAA4B7zB,UAAYV,OAAOW,OAAOsG,MAAMvG,WACrD6zB,EARuB,G,QCI3B,SAASC,EAAK/oB,GACjB,OAAO,SAAUnE,GACb,OAAc,IAAVmE,EACO,IAGAnE,EAAOa,KAAK,IAAI,EAAasD,KAIhD,IAAI,EAAgB,WAChB,SAASgpB,EAAaxD,GAElB,GADAzwB,KAAKywB,MAAQA,EACTzwB,KAAKywB,MAAQ,EACb,MAAM,IAAIqD,EAMlB,OAHAG,EAAa/zB,UAAUU,KAAO,SAAUyE,EAAYyB,GAChD,OAAOA,EAAOO,UAAU,IAAI,EAAehC,EAAYrF,KAAKywB,SAEzDwD,EAVQ,GAYf,EAAkB,SAAUvvB,GAE5B,SAASwvB,EAAehvB,EAAaurB,GACjC,IAAI5rB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAG9C,OAFA6E,EAAM4rB,MAAQA,EACd5rB,EAAMoG,MAAQ,EACPpG,EAaX,OAlBA,YAAUqvB,EAAgBxvB,GAO1BwvB,EAAeh0B,UAAUoF,MAAQ,SAAU/D,GACvC,IAAIkvB,EAAQzwB,KAAKywB,MACbxlB,IAAUjL,KAAKiL,MACfA,GAASwlB,IACTzwB,KAAKkF,YAAYzD,KAAKF,GAClB0J,IAAUwlB,IACVzwB,KAAKkF,YAAYN,WACjB5E,KAAK0F,iBAIVwuB,EAnBU,CAoBnBzvB,EAAA,I,yCC9Ca,SAAS0vB,EAAUlrB,GAChC,OAAOA,ECqBT,IAAI4J,EAEJ,OAAArG,EAAA,GAAQ2nB,GAEO,O,qGCrBR,SAAS,EAAMvkB,EAAOlB,QACP,IAAdA,IAAwBA,EAAY,KACxC,ICPmBnN,EDQf6yB,GCRe7yB,EDOQqO,aCNHE,OAASukB,OAAO9yB,IDOPqO,EAAQlB,EAAUgB,MAAS3B,KAAKuX,IAAI1V,GACrE,OAAO,SAAU9I,GAAU,OAAOA,EAAOa,KAAK,IAAI2sB,EAAcF,EAAU1lB,KAE9E,IAAI4lB,EAAiB,WACjB,SAASA,EAAc1kB,EAAOlB,GAC1B1O,KAAK4P,MAAQA,EACb5P,KAAK0O,UAAYA,EAKrB,OAHA4lB,EAAcp0B,UAAUU,KAAO,SAAUyE,EAAYyB,GACjD,OAAOA,EAAOO,UAAU,IAAI,EAAgBhC,EAAYrF,KAAK4P,MAAO5P,KAAK0O,aAEtE4lB,EARS,GAUhB,EAAmB,SAAU5vB,GAE7B,SAAS6vB,EAAgBrvB,EAAa0K,EAAOlB,GACzC,IAAI7J,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAM9C,OALA6E,EAAM+K,MAAQA,EACd/K,EAAM6J,UAAYA,EAClB7J,EAAMwjB,MAAQ,GACdxjB,EAAMqL,QAAS,EACfrL,EAAMiM,SAAU,EACTjM,EAwDX,OAhEA,YAAU0vB,EAAiB7vB,GAU3B6vB,EAAgBnjB,SAAW,SAAUvB,GAKjC,IAJA,IAAI/I,EAAS+I,EAAM/I,OACfuhB,EAAQvhB,EAAOuhB,MACf3Z,EAAYmB,EAAMnB,UAClBxJ,EAAc2K,EAAM3K,YACjBmjB,EAAM1nB,OAAS,GAAM0nB,EAAM,GAAGgB,KAAO3a,EAAUgB,OAAU,GAC5D2Y,EAAM9jB,QAAQsQ,aAAarD,QAAQtM,GAEvC,GAAImjB,EAAM1nB,OAAS,EAAG,CAClB,IAAI6zB,EAAUzmB,KAAKub,IAAI,EAAGjB,EAAM,GAAGgB,KAAO3a,EAAUgB,OACpD1P,KAAKmN,SAAS0C,EAAO2kB,QAEhB1tB,EAAO7B,WACZ6B,EAAO5B,YAAYN,WACnBkC,EAAOoJ,QAAS,IAGhBlQ,KAAK0F,cACLoB,EAAOoJ,QAAS,IAGxBqkB,EAAgBr0B,UAAUu0B,UAAY,SAAU/lB,GAC5C1O,KAAKkQ,QAAS,EACIlQ,KAAKkF,YACXC,IAAIuJ,EAAUvB,SAASonB,EAAgBnjB,SAAUpR,KAAK4P,MAAO,CACrE9I,OAAQ9G,KAAMkF,YAAalF,KAAKkF,YAAawJ,UAAWA,MAGhE6lB,EAAgBr0B,UAAUw0B,qBAAuB,SAAU7f,GACvD,IAAqB,IAAjB7U,KAAK8Q,QAAT,CAGA,IAAIpC,EAAY1O,KAAK0O,UACjBrF,EAAU,IAAIsrB,EAAajmB,EAAUgB,MAAQ1P,KAAK4P,MAAOiF,GAC7D7U,KAAKqoB,MAAMrlB,KAAKqG,IACI,IAAhBrJ,KAAKkQ,QACLlQ,KAAKy0B,UAAU/lB,KAGvB6lB,EAAgBr0B,UAAUoF,MAAQ,SAAU/D,GACxCvB,KAAK00B,qBAAqBrjB,EAAA,EAAaO,WAAWrQ,KAEtDgzB,EAAgBr0B,UAAUsF,OAAS,SAAUD,GACzCvF,KAAK8Q,SAAU,EACf9Q,KAAKqoB,MAAQ,GACbroB,KAAKkF,YAAY3B,MAAMgC,GACvBvF,KAAK0F,eAET6uB,EAAgBr0B,UAAUuF,UAAY,WACR,IAAtBzF,KAAKqoB,MAAM1nB,QACXX,KAAKkF,YAAYN,WAErB5E,KAAK0F,eAEF6uB,EAjEW,CAkEpB9vB,EAAA,GACEkwB,EACA,SAAsBtL,EAAMxU,GACxB7U,KAAKqpB,KAAOA,EACZrpB,KAAK6U,aAAeA,I,uGElDrB,SAAS+f,EAAQC,EAAKC,GACzB,OAAO,IAAI,EAAe,CAAEtN,OAAQ,MAAOqN,IAAKA,EAAKC,QAASA,IAE3D,SAASC,EAASF,EAAK7yB,EAAM8yB,GAChC,OAAO,IAAI,EAAe,CAAEtN,OAAQ,OAAQqN,IAAKA,EAAK7yB,KAAMA,EAAM8yB,QAASA,IAExE,SAASE,EAAWH,EAAKC,GAC5B,OAAO,IAAI,EAAe,CAAEtN,OAAQ,SAAUqN,IAAKA,EAAKC,QAASA,IAE9D,SAASG,EAAQJ,EAAK7yB,EAAM8yB,GAC/B,OAAO,IAAI,EAAe,CAAEtN,OAAQ,MAAOqN,IAAKA,EAAK7yB,KAAMA,EAAM8yB,QAASA,IAEvE,SAASI,EAAUL,EAAK7yB,EAAM8yB,GACjC,OAAO,IAAI,EAAe,CAAEtN,OAAQ,QAASqN,IAAKA,EAAK7yB,KAAMA,EAAM8yB,QAASA,IAEhF,IAAIK,EAAc,OAAA7rB,EAAA,IAAI,SAAUL,EAAGa,GAAS,OAAOb,EAAEmsB,YAC9C,SAASC,EAAYR,EAAKC,GAC7B,OAAOK,EAAY,IAAI,EAAe,CAClC3N,OAAQ,MACRqN,IAAKA,EACLS,aAAc,OACdR,QAASA,KAGjB,IAAI,EAAkB,SAAUpwB,GAE5B,SAAS6wB,EAAeC,GACpB,IAAI3wB,EAAQH,EAAO9D,KAAKZ,OAASA,KAC7By1B,EAAU,CACVziB,OAAO,EACP0iB,UAAW,WACP,OAAO11B,KAAK21B,YAnE5B,WACI,GAAIC,EAAA,EAAKC,eACL,OAAO,IAAID,EAAA,EAAKC,eAEf,GAAMD,EAAA,EAAKE,eACZ,OAAO,IAAIF,EAAA,EAAKE,eAGhB,MAAM,IAAIrvB,MAAM,yCA2DkBsvB,GAxD1C,WACI,GAAIH,EAAA,EAAKC,eACL,OAAO,IAAID,EAAA,EAAKC,eAGhB,IAAIG,OAAS,EACb,IAEI,IADA,IAAIC,EAAU,CAAC,iBAAkB,oBAAqB,sBAC7Cz1B,EAAI,EAAGA,EAAI,EAAGA,IACnB,IAEI,GADAw1B,EAASC,EAAQz1B,GACb,IAAIo1B,EAAA,EAAKM,cAAcF,GACvB,MAGR,MAAOt0B,IAGX,OAAO,IAAIk0B,EAAA,EAAKM,cAAcF,GAElC,MAAOt0B,GACH,MAAM,IAAI+E,MAAM,oDAmCiC0vB,IAEjDR,aAAa,EACbS,iBAAiB,EACjBtB,QAAS,GACTtN,OAAQ,MACR8N,aAAc,OACde,QAAS,GAEb,GAA4B,iBAAjBb,EACPC,EAAQZ,IAAMW,OAGd,IAAK,IAAIhM,KAAQgM,EACTA,EAAa31B,eAAe2pB,KAC5BiM,EAAQjM,GAAQgM,EAAahM,IAKzC,OADA3kB,EAAM4wB,QAAUA,EACT5wB,EAKa,IAChB1E,EAWR,OA3CA,YAAUo1B,EAAgB7wB,GA4B1B6wB,EAAer1B,UAAUwH,WAAa,SAAUrC,GAC5C,OAAO,IAAI,EAAeA,EAAYrF,KAAKy1B,UAE/CF,EAAep1B,SACPA,EAAS,SAAUq1B,GACnB,OAAO,IAAID,EAAeC,KAEvB5f,IAAMgf,EACbz0B,EAAOm2B,KAAOvB,EACd50B,EAAOugB,OAASsU,EAChB70B,EAAOo2B,IAAMtB,EACb90B,EAAOq2B,MAAQtB,EACf/0B,EAAOs2B,QAAUpB,EACVl1B,GAEJo1B,EA5CU,CA6CnB/tB,EAAA,GAEE,EAAkB,SAAU9C,GAE5B,SAASgyB,EAAexxB,EAAauwB,GACjC,IAAI5wB,EAAQH,EAAO9D,KAAKZ,KAAMkF,IAAgBlF,KAC9C6E,EAAM4wB,QAAUA,EAChB5wB,EAAMhD,MAAO,EACb,IAAIizB,EAAUW,EAAQX,QAAUW,EAAQX,SAAW,GAUnD,OATKW,EAAQE,aAAgB9wB,EAAM8xB,UAAU7B,EAAS,sBAClDA,EAAQ,oBAAsB,kBAEVjwB,EAAM8xB,UAAU7B,EAAS,iBACrBc,EAAA,EAAKgB,UAAYnB,EAAQzzB,gBAAgB4zB,EAAA,EAAKgB,eAAqC,IAAjBnB,EAAQzzB,OAClG8yB,EAAQ,gBAAkB,oDAE9BW,EAAQzzB,KAAO6C,EAAMgyB,cAAcpB,EAAQzzB,KAAM6C,EAAM8xB,UAAUlB,EAAQX,QAAS,iBAClFjwB,EAAM6qB,OACC7qB,EAyLX,OAxMA,YAAU6xB,EAAgBhyB,GAiB1BgyB,EAAex2B,UAAUuB,KAAO,SAAUC,GACtC1B,KAAK6B,MAAO,EACZ,IACID,EADWk1B,EAAN92B,KAAe82B,IAAKrB,EAApBz1B,KAAiCy1B,QAASvwB,EAA1ClF,KAA2DkF,YAEpE,IACItD,EAAS,IAAIm1B,EAAar1B,EAAGo1B,EAAKrB,GAEtC,MAAOlwB,GACH,OAAOL,EAAY3B,MAAMgC,GAE7BL,EAAYzD,KAAKG,IAErB80B,EAAex2B,UAAUwvB,KAAO,WAC5B,IAAe+F,EAANz1B,KAAmBy1B,QAAS5oB,EAA5B7M,KAAoCy1B,QAASuB,EAAOnqB,EAAGmqB,KAAMxP,EAAS3a,EAAG2a,OAAQqN,EAAMhoB,EAAGgoB,IAAK7hB,EAAQnG,EAAGmG,MAAOikB,EAAWpqB,EAAGoqB,SAAUnC,EAAUjoB,EAAGioB,QAAS9yB,EAAO6K,EAAG7K,KAClL,IACI,IAAI80B,EAAM92B,KAAK82B,IAAMrB,EAAQC,YAC7B11B,KAAKk3B,YAAYJ,EAAKrB,GAClBuB,EACAF,EAAIK,KAAK3P,EAAQqN,EAAK7hB,EAAOgkB,EAAMC,GAGnCH,EAAIK,KAAK3P,EAAQqN,EAAK7hB,GAEtBA,IACA8jB,EAAIT,QAAUZ,EAAQY,QACtBS,EAAIxB,aAAeG,EAAQH,cAE3B,oBAAqBwB,IACrBA,EAAIV,kBAAoBX,EAAQW,iBAEpCp2B,KAAKo3B,WAAWN,EAAKhC,GACjB9yB,EACA80B,EAAIpH,KAAK1tB,GAGT80B,EAAIpH,OAGZ,MAAOnqB,GACHvF,KAAKuD,MAAMgC,KAGnBmxB,EAAex2B,UAAU22B,cAAgB,SAAU70B,EAAMq1B,GACrD,IAAKr1B,GAAwB,iBAATA,EAChB,OAAOA,EAEN,GAAI4zB,EAAA,EAAKgB,UAAY50B,aAAgB4zB,EAAA,EAAKgB,SAC3C,OAAO50B,EAEX,GAAIq1B,EAAa,CACb,IAAIC,EAAaD,EAAY7sB,QAAQ,MACjB,IAAhB8sB,IACAD,EAAcA,EAAYpP,UAAU,EAAGqP,IAG/C,OAAQD,GACJ,IAAK,oCACD,OAAO73B,OAAO+jB,KAAKvhB,GAAMsH,KAAI,SAAUoJ,GAAO,OAAO6kB,mBAAmB7kB,GAAO,IAAM6kB,mBAAmBv1B,EAAK0Q,OAAUlJ,KAAK,KAChI,IAAK,mBACD,OAAOguB,KAAKC,UAAUz1B,GAC1B,QACI,OAAOA,IAGnB00B,EAAex2B,UAAUk3B,WAAa,SAAUN,EAAKhC,GACjD,IAAK,IAAIpiB,KAAOoiB,EACRA,EAAQj1B,eAAe6S,IACvBokB,EAAIY,iBAAiBhlB,EAAKoiB,EAAQpiB,KAI9CgkB,EAAex2B,UAAUy2B,UAAY,SAAU7B,EAAS6C,GACpD,IAAK,IAAIjlB,KAAOoiB,EACZ,GAAIpiB,EAAIklB,gBAAkBD,EAAWC,cACjC,OAAO9C,EAAQpiB,IAK3BgkB,EAAex2B,UAAUg3B,YAAc,SAAUJ,EAAKrB,GAClD,IAAIoC,EAAqBpC,EAAQoC,mBACjC,SAASC,EAAWp2B,GAChB,IAII6B,EAJA6D,EAAK0wB,EAAYzyB,EAAa+B,EAAG/B,WAAYwyB,EAAqBzwB,EAAGywB,mBAAoBpC,EAAUruB,EAAGquB,QACtGoC,GACAA,EAAmBt0B,MAAM7B,GAG7B,IACI6B,EAAQ,IAAIw0B,EAAiB/3B,KAAMy1B,GAEvC,MAAOlwB,GACHhC,EAAQgC,EAEZF,EAAW9B,MAAMA,GAMrB,GAJAuzB,EAAIkB,UAAYF,EAChBA,EAAWrC,QAAUA,EACrBqC,EAAWzyB,WAAarF,KACxB83B,EAAWD,mBAAqBA,EAC5Bf,EAAImB,QAAU,oBAAqBnB,EAAK,CAEpC,IAAIoB,EAaJC,EAdJ,GAAIN,EAEAK,EAAgB,SAAUx2B,GACGw2B,EAAcL,mBACpBp2B,KAAKC,IAExBk0B,EAAA,EAAKE,eACLgB,EAAIsB,WAAaF,EAGjBpB,EAAImB,OAAOG,WAAaF,EAE5BA,EAAcL,mBAAqBA,EAGvCM,EAAa,SAAUz2B,GACnB,IAII6B,EAJA6D,EAAK+wB,EAAYN,EAAqBzwB,EAAGywB,mBAAoBxyB,EAAa+B,EAAG/B,WAAYowB,EAAUruB,EAAGquB,QACtGoC,GACAA,EAAmBt0B,MAAM7B,GAG7B,IACI6B,EAAQ,IAAI80B,EAAU,aAAcr4B,KAAMy1B,GAE9C,MAAOlwB,GACHhC,EAAQgC,EAEZF,EAAW9B,MAAMA,IAErBuzB,EAAIwB,QAAUH,EACdA,EAAW1C,QAAUA,EACrB0C,EAAW9yB,WAAarF,KACxBm4B,EAAWN,mBAAqBA,EAEpC,SAASU,EAAoB72B,IAO7B,SAAS82B,EAAQ92B,GACb,IAAI0F,EAAKoxB,EAASnzB,EAAa+B,EAAG/B,WAAYwyB,EAAqBzwB,EAAGywB,mBAAoBpC,EAAUruB,EAAGquB,QACvG,GAAwB,IAApBz1B,KAAKy4B,WAAkB,CACvB,IAAIC,EAA2B,OAAhB14B,KAAK24B,OAAkB,IAAM34B,KAAK24B,OAC7CvD,EAAkC,SAAtBp1B,KAAKs1B,aAA2Bt1B,KAAKo1B,UAAYp1B,KAAK44B,aAAgB54B,KAAKo1B,SAI3F,GAHiB,IAAbsD,IACAA,EAAWtD,EAAW,IAAM,GAE5BsD,EAAW,IACPb,GACAA,EAAmBjzB,WAEvBS,EAAW5D,KAAKC,GAChB2D,EAAWT,eAEV,CACGizB,GACAA,EAAmBt0B,MAAM7B,GAE7B,IAAI6B,OAAQ,EACZ,IACIA,EAAQ,IAAI80B,EAAU,cAAgBK,EAAU14B,KAAMy1B,GAE1D,MAAOlwB,GACHhC,EAAQgC,EAEZF,EAAW9B,MAAMA,KA9B7BuzB,EAAI+B,mBAAqBN,EACzBA,EAAoBlzB,WAAarF,KACjCu4B,EAAoBV,mBAAqBA,EACzCU,EAAoB9C,QAAUA,EA+B9BqB,EAAIgC,OAASN,EACbA,EAAQnzB,WAAarF,KACrBw4B,EAAQX,mBAAqBA,EAC7BW,EAAQ/C,QAAUA,GAEtBiB,EAAex2B,UAAUwF,YAAc,WACnC,IAAe7D,EAAN7B,KAAgB6B,KAAMi1B,EAAtB92B,KAA+B82B,KACnCj1B,GAAQi1B,GAA0B,IAAnBA,EAAI2B,YAAyC,mBAAd3B,EAAIiC,OACnDjC,EAAIiC,QAERr0B,EAAOxE,UAAUwF,YAAY9E,KAAKZ,OAE/B02B,EAzMU,CA0MnBjyB,EAAA,GAEEsyB,EACA,SAAsBiC,EAAelC,EAAKrB,GACtCz1B,KAAKg5B,cAAgBA,EACrBh5B,KAAK82B,IAAMA,EACX92B,KAAKy1B,QAAUA,EACfz1B,KAAK24B,OAAS7B,EAAI6B,OAClB34B,KAAKs1B,aAAewB,EAAIxB,cAAgBG,EAAQH,aAChDt1B,KAAKo1B,SAAW6D,EAAiBj5B,KAAKs1B,aAAcwB,IAoBjDuB,EAfS,WAChB,SAASa,EAAc7vB,EAASytB,EAAKrB,GASjC,OARAhvB,MAAM7F,KAAKZ,MACXA,KAAKqJ,QAAUA,EACfrJ,KAAKyJ,KAAO,YACZzJ,KAAK82B,IAAMA,EACX92B,KAAKy1B,QAAUA,EACfz1B,KAAK24B,OAAS7B,EAAI6B,OAClB34B,KAAKs1B,aAAewB,EAAIxB,cAAgBG,EAAQH,aAChDt1B,KAAKo1B,SAAW6D,EAAiBj5B,KAAKs1B,aAAcwB,GAC7C92B,KAGX,OADAk5B,EAAch5B,UAAYV,OAAOW,OAAOsG,MAAMvG,WACvCg5B,EAbS,GAwBpB,SAASD,EAAiB3D,EAAcwB,GACpC,OAAQxB,GACJ,IAAK,OACD,OAXZ,SAAmBwB,GACf,MAAI,aAAcA,EACPA,EAAIxB,aAAewB,EAAI1B,SAAWoC,KAAK2B,MAAMrC,EAAI1B,UAAY0B,EAAI8B,cAAgB,QAGjFpB,KAAK2B,MAAMrC,EAAI8B,cAAgB,QAM3BQ,CAAUtC,GACrB,IAAK,MACD,OAAOA,EAAIuC,YACf,IAAK,OACL,QACI,MAAQ,aAAcvC,EAAOA,EAAI1B,SAAW0B,EAAI8B,cAG5D,IASWb,EATgB,WACvB,SAASuB,EAAqBxC,EAAKrB,GAG/B,OAFA4C,EAAUz3B,KAAKZ,KAAM,eAAgB82B,EAAKrB,GAC1Cz1B,KAAKyJ,KAAO,mBACLzJ,KAGX,OADAs5B,EAAqBp5B,UAAYV,OAAOW,OAAOk4B,EAAUn4B,WAClDo5B,EAPgB,GC1WhBC,EAA6B,EAAep5B","file":"assets/javascripts/vendor.809e24aa.min.js","sourcesContent":["/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { __extends } from \"tslib\";\nimport { isFunction } from './util/isFunction';\nimport { empty as emptyObserver } from './Observer';\nimport { Subscription } from './Subscription';\nimport { rxSubscriber as rxSubscriberSymbol } from '../internal/symbol/rxSubscriber';\nimport { config } from './config';\nimport { hostReportError } from './util/hostReportError';\nvar Subscriber = (function (_super) {\n __extends(Subscriber, _super);\n function Subscriber(destinationOrNext, error, complete) {\n var _this = _super.call(this) || this;\n _this.syncErrorValue = null;\n _this.syncErrorThrown = false;\n _this.syncErrorThrowable = false;\n _this.isStopped = false;\n switch (arguments.length) {\n case 0:\n _this.destination = emptyObserver;\n break;\n case 1:\n if (!destinationOrNext) {\n _this.destination = emptyObserver;\n break;\n }\n if (typeof destinationOrNext === 'object') {\n if (destinationOrNext instanceof Subscriber) {\n _this.syncErrorThrowable = destinationOrNext.syncErrorThrowable;\n _this.destination = destinationOrNext;\n destinationOrNext.add(_this);\n }\n else {\n _this.syncErrorThrowable = true;\n _this.destination = new SafeSubscriber(_this, destinationOrNext);\n }\n break;\n }\n default:\n _this.syncErrorThrowable = true;\n _this.destination = new SafeSubscriber(_this, destinationOrNext, error, complete);\n break;\n }\n return _this;\n }\n Subscriber.prototype[rxSubscriberSymbol] = function () { return this; };\n Subscriber.create = function (next, error, complete) {\n var subscriber = new Subscriber(next, error, complete);\n subscriber.syncErrorThrowable = false;\n return subscriber;\n };\n Subscriber.prototype.next = function (value) {\n if (!this.isStopped) {\n this._next(value);\n }\n };\n Subscriber.prototype.error = function (err) {\n if (!this.isStopped) {\n this.isStopped = true;\n this._error(err);\n }\n };\n Subscriber.prototype.complete = function () {\n if (!this.isStopped) {\n this.isStopped = true;\n this._complete();\n }\n };\n Subscriber.prototype.unsubscribe = function () {\n if (this.closed) {\n return;\n }\n this.isStopped = true;\n _super.prototype.unsubscribe.call(this);\n };\n Subscriber.prototype._next = function (value) {\n this.destination.next(value);\n };\n Subscriber.prototype._error = function (err) {\n this.destination.error(err);\n this.unsubscribe();\n };\n Subscriber.prototype._complete = function () {\n this.destination.complete();\n this.unsubscribe();\n };\n Subscriber.prototype._unsubscribeAndRecycle = function () {\n var _parentOrParents = this._parentOrParents;\n this._parentOrParents = null;\n this.unsubscribe();\n this.closed = false;\n this.isStopped = false;\n this._parentOrParents = _parentOrParents;\n return this;\n };\n return Subscriber;\n}(Subscription));\nexport { Subscriber };\nvar SafeSubscriber = (function (_super) {\n __extends(SafeSubscriber, _super);\n function SafeSubscriber(_parentSubscriber, observerOrNext, error, complete) {\n var _this = _super.call(this) || this;\n _this._parentSubscriber = _parentSubscriber;\n var next;\n var context = _this;\n if (isFunction(observerOrNext)) {\n next = observerOrNext;\n }\n else if (observerOrNext) {\n next = observerOrNext.next;\n error = observerOrNext.error;\n complete = observerOrNext.complete;\n if (observerOrNext !== emptyObserver) {\n context = Object.create(observerOrNext);\n if (isFunction(context.unsubscribe)) {\n _this.add(context.unsubscribe.bind(context));\n }\n context.unsubscribe = _this.unsubscribe.bind(_this);\n }\n }\n _this._context = context;\n _this._next = next;\n _this._error = error;\n _this._complete = complete;\n return _this;\n }\n SafeSubscriber.prototype.next = function (value) {\n if (!this.isStopped && this._next) {\n var _parentSubscriber = this._parentSubscriber;\n if (!config.useDeprecatedSynchronousErrorHandling || !_parentSubscriber.syncErrorThrowable) {\n this.__tryOrUnsub(this._next, value);\n }\n else if (this.__tryOrSetError(_parentSubscriber, this._next, value)) {\n this.unsubscribe();\n }\n }\n };\n SafeSubscriber.prototype.error = function (err) {\n if (!this.isStopped) {\n var _parentSubscriber = this._parentSubscriber;\n var useDeprecatedSynchronousErrorHandling = config.useDeprecatedSynchronousErrorHandling;\n if (this._error) {\n if (!useDeprecatedSynchronousErrorHandling || !_parentSubscriber.syncErrorThrowable) {\n this.__tryOrUnsub(this._error, err);\n this.unsubscribe();\n }\n else {\n this.__tryOrSetError(_parentSubscriber, this._error, err);\n this.unsubscribe();\n }\n }\n else if (!_parentSubscriber.syncErrorThrowable) {\n this.unsubscribe();\n if (useDeprecatedSynchronousErrorHandling) {\n throw err;\n }\n hostReportError(err);\n }\n else {\n if (useDeprecatedSynchronousErrorHandling) {\n _parentSubscriber.syncErrorValue = err;\n _parentSubscriber.syncErrorThrown = true;\n }\n else {\n hostReportError(err);\n }\n this.unsubscribe();\n }\n }\n };\n SafeSubscriber.prototype.complete = function () {\n var _this = this;\n if (!this.isStopped) {\n var _parentSubscriber = this._parentSubscriber;\n if (this._complete) {\n var wrappedComplete = function () { return _this._complete.call(_this._context); };\n if (!config.useDeprecatedSynchronousErrorHandling || !_parentSubscriber.syncErrorThrowable) {\n this.__tryOrUnsub(wrappedComplete);\n this.unsubscribe();\n }\n else {\n this.__tryOrSetError(_parentSubscriber, wrappedComplete);\n this.unsubscribe();\n }\n }\n else {\n this.unsubscribe();\n }\n }\n };\n SafeSubscriber.prototype.__tryOrUnsub = function (fn, value) {\n try {\n fn.call(this._context, value);\n }\n catch (err) {\n this.unsubscribe();\n if (config.useDeprecatedSynchronousErrorHandling) {\n throw err;\n }\n else {\n hostReportError(err);\n }\n }\n };\n SafeSubscriber.prototype.__tryOrSetError = function (parent, fn, value) {\n if (!config.useDeprecatedSynchronousErrorHandling) {\n throw new Error('bad call');\n }\n try {\n fn.call(this._context, value);\n }\n catch (err) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n parent.syncErrorValue = err;\n parent.syncErrorThrown = true;\n return true;\n }\n else {\n hostReportError(err);\n return true;\n }\n }\n return false;\n };\n SafeSubscriber.prototype._unsubscribe = function () {\n var _parentSubscriber = this._parentSubscriber;\n this._context = null;\n this._parentSubscriber = null;\n _parentSubscriber.unsubscribe();\n };\n return SafeSubscriber;\n}(Subscriber));\nexport { SafeSubscriber };\n//# sourceMappingURL=Subscriber.js.map","var Deferred = (function () {\n function Deferred() {\n var _this = this;\n this.resolve = null;\n this.reject = null;\n this.promise = new Promise(function (a, b) {\n _this.resolve = a;\n _this.reject = b;\n });\n }\n return Deferred;\n}());\nexport { Deferred };\n//# sourceMappingURL=deferred.js.map","import { __asyncGenerator, __await, __generator } from \"tslib\";\nimport { Deferred } from './util/deferred';\nexport function asyncIteratorFrom(source) {\n return coroutine(source);\n}\nfunction coroutine(source) {\n return __asyncGenerator(this, arguments, function coroutine_1() {\n var deferreds, values, hasError, error, completed, subs, d, result, err_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n deferreds = [];\n values = [];\n hasError = false;\n error = null;\n completed = false;\n subs = source.subscribe({\n next: function (value) {\n if (deferreds.length > 0) {\n deferreds.shift().resolve({ value: value, done: false });\n }\n else {\n values.push(value);\n }\n },\n error: function (err) {\n hasError = true;\n error = err;\n while (deferreds.length > 0) {\n deferreds.shift().reject(err);\n }\n },\n complete: function () {\n completed = true;\n while (deferreds.length > 0) {\n deferreds.shift().resolve({ value: undefined, done: true });\n }\n },\n });\n _a.label = 1;\n case 1:\n _a.trys.push([1, 16, 17, 18]);\n _a.label = 2;\n case 2:\n if (!true) return [3, 15];\n if (!(values.length > 0)) return [3, 5];\n return [4, __await(values.shift())];\n case 3: return [4, _a.sent()];\n case 4:\n _a.sent();\n return [3, 14];\n case 5:\n if (!completed) return [3, 7];\n return [4, __await(void 0)];\n case 6: return [2, _a.sent()];\n case 7:\n if (!hasError) return [3, 8];\n throw error;\n case 8:\n d = new Deferred();\n deferreds.push(d);\n return [4, __await(d.promise)];\n case 9:\n result = _a.sent();\n if (!result.done) return [3, 11];\n return [4, __await(void 0)];\n case 10: return [2, _a.sent()];\n case 11: return [4, __await(result.value)];\n case 12: return [4, _a.sent()];\n case 13:\n _a.sent();\n _a.label = 14;\n case 14: return [3, 2];\n case 15: return [3, 18];\n case 16:\n err_1 = _a.sent();\n throw err_1;\n case 17:\n subs.unsubscribe();\n return [7];\n case 18: return [2];\n }\n });\n });\n}\n//# sourceMappingURL=asyncIteratorFrom.js.map","import { canReportError } from './util/canReportError';\nimport { toSubscriber } from './util/toSubscriber';\nimport { observable as Symbol_observable } from './symbol/observable';\nimport { pipeFromArray } from './util/pipe';\nimport { config } from './config';\nimport { asyncIteratorFrom } from './asyncIteratorFrom';\nvar Observable = (function () {\n function Observable(subscribe) {\n this._isScalar = false;\n if (subscribe) {\n this._subscribe = subscribe;\n }\n }\n Observable.prototype.lift = function (operator) {\n var observable = new Observable();\n observable.source = this;\n observable.operator = operator;\n return observable;\n };\n Observable.prototype.subscribe = function (observerOrNext, error, complete) {\n var operator = this.operator;\n var sink = toSubscriber(observerOrNext, error, complete);\n if (operator) {\n sink.add(operator.call(sink, this.source));\n }\n else {\n sink.add(this.source || (config.useDeprecatedSynchronousErrorHandling && !sink.syncErrorThrowable) ?\n this._subscribe(sink) :\n this._trySubscribe(sink));\n }\n if (config.useDeprecatedSynchronousErrorHandling) {\n if (sink.syncErrorThrowable) {\n sink.syncErrorThrowable = false;\n if (sink.syncErrorThrown) {\n throw sink.syncErrorValue;\n }\n }\n }\n return sink;\n };\n Observable.prototype._trySubscribe = function (sink) {\n try {\n return this._subscribe(sink);\n }\n catch (err) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n sink.syncErrorThrown = true;\n sink.syncErrorValue = err;\n }\n if (canReportError(sink)) {\n sink.error(err);\n }\n else {\n console.warn(err);\n }\n }\n };\n Observable.prototype.forEach = function (next, promiseCtor) {\n var _this = this;\n promiseCtor = getPromiseCtor(promiseCtor);\n return new promiseCtor(function (resolve, reject) {\n var subscription;\n subscription = _this.subscribe(function (value) {\n try {\n next(value);\n }\n catch (err) {\n reject(err);\n if (subscription) {\n subscription.unsubscribe();\n }\n }\n }, reject, resolve);\n });\n };\n Observable.prototype._subscribe = function (subscriber) {\n var source = this.source;\n return source && source.subscribe(subscriber);\n };\n Observable.prototype[Symbol_observable] = function () {\n return this;\n };\n Observable.prototype.pipe = function () {\n var operations = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n operations[_i] = arguments[_i];\n }\n if (operations.length === 0) {\n return this;\n }\n return pipeFromArray(operations)(this);\n };\n Observable.prototype.toPromise = function (promiseCtor) {\n var _this = this;\n promiseCtor = getPromiseCtor(promiseCtor);\n return new promiseCtor(function (resolve, reject) {\n var value;\n _this.subscribe(function (x) { return value = x; }, function (err) { return reject(err); }, function () { return resolve(value); });\n });\n };\n Observable.create = function (subscribe) {\n return new Observable(subscribe);\n };\n return Observable;\n}());\nexport { Observable };\nfunction getPromiseCtor(promiseCtor) {\n if (!promiseCtor) {\n promiseCtor = config.Promise || Promise;\n }\n if (!promiseCtor) {\n throw new Error('no Promise impl found');\n }\n return promiseCtor;\n}\n(function () {\n if (Symbol && Symbol.asyncIterator) {\n Observable.prototype[Symbol.asyncIterator] = function () {\n return asyncIteratorFrom(this);\n };\n }\n})();\n//# sourceMappingURL=Observable.js.map","import { Subscriber } from '../Subscriber';\nimport { rxSubscriber as rxSubscriberSymbol } from '../symbol/rxSubscriber';\nimport { empty as emptyObserver } from '../Observer';\nexport function toSubscriber(nextOrObserver, error, complete) {\n if (nextOrObserver) {\n if (nextOrObserver instanceof Subscriber) {\n return nextOrObserver;\n }\n if (nextOrObserver[rxSubscriberSymbol]) {\n return nextOrObserver[rxSubscriberSymbol]();\n }\n }\n if (!nextOrObserver && !error && !complete) {\n return new Subscriber(emptyObserver);\n }\n return new Subscriber(nextOrObserver, error, complete);\n}\n//# sourceMappingURL=toSubscriber.js.map","import { Subscriber } from '../Subscriber';\nexport function canReportError(observer) {\n while (observer) {\n var _a = observer, closed_1 = _a.closed, destination = _a.destination, isStopped = _a.isStopped;\n if (closed_1 || isStopped) {\n return false;\n }\n else if (destination && destination instanceof Subscriber) {\n observer = destination;\n }\n else {\n observer = null;\n }\n }\n return true;\n}\n//# sourceMappingURL=canReportError.js.map","var UnsubscriptionErrorImpl = (function () {\n function UnsubscriptionErrorImpl(errors) {\n Error.call(this);\n this.message = errors ?\n errors.length + \" errors occurred during unsubscription:\\n\" + errors.map(function (err, i) { return i + 1 + \") \" + err.toString(); }).join('\\n ') : '';\n this.name = 'UnsubscriptionError';\n this.errors = errors;\n return this;\n }\n UnsubscriptionErrorImpl.prototype = Object.create(Error.prototype);\n return UnsubscriptionErrorImpl;\n})();\nexport var UnsubscriptionError = UnsubscriptionErrorImpl;\n//# sourceMappingURL=UnsubscriptionError.js.map","import { isArray } from './util/isArray';\nimport { isObject } from './util/isObject';\nimport { isFunction } from './util/isFunction';\nimport { UnsubscriptionError } from './util/UnsubscriptionError';\nvar Subscription = (function () {\n function Subscription(unsubscribe) {\n this.closed = false;\n this._parentOrParents = null;\n this._subscriptions = null;\n if (unsubscribe) {\n this._unsubscribe = unsubscribe;\n }\n }\n Subscription.prototype.unsubscribe = function () {\n var errors;\n if (this.closed) {\n return;\n }\n var _a = this, _parentOrParents = _a._parentOrParents, _unsubscribe = _a._unsubscribe, _subscriptions = _a._subscriptions;\n this.closed = true;\n this._parentOrParents = null;\n this._subscriptions = null;\n if (_parentOrParents instanceof Subscription) {\n _parentOrParents.remove(this);\n }\n else if (_parentOrParents !== null) {\n for (var index = 0; index < _parentOrParents.length; ++index) {\n var parent_1 = _parentOrParents[index];\n parent_1.remove(this);\n }\n }\n if (isFunction(_unsubscribe)) {\n try {\n _unsubscribe.call(this);\n }\n catch (e) {\n errors = e instanceof UnsubscriptionError ? flattenUnsubscriptionErrors(e.errors) : [e];\n }\n }\n if (isArray(_subscriptions)) {\n var index = -1;\n var len = _subscriptions.length;\n while (++index < len) {\n var sub = _subscriptions[index];\n if (isObject(sub)) {\n try {\n sub.unsubscribe();\n }\n catch (e) {\n errors = errors || [];\n if (e instanceof UnsubscriptionError) {\n errors = errors.concat(flattenUnsubscriptionErrors(e.errors));\n }\n else {\n errors.push(e);\n }\n }\n }\n }\n }\n if (errors) {\n throw new UnsubscriptionError(errors);\n }\n };\n Subscription.prototype.add = function (teardown) {\n var subscription = teardown;\n if (!teardown) {\n return Subscription.EMPTY;\n }\n switch (typeof teardown) {\n case 'function':\n subscription = new Subscription(teardown);\n case 'object':\n if (subscription === this || subscription.closed || typeof subscription.unsubscribe !== 'function') {\n return subscription;\n }\n else if (this.closed) {\n subscription.unsubscribe();\n return subscription;\n }\n else if (!(subscription instanceof Subscription)) {\n var tmp = subscription;\n subscription = new Subscription();\n subscription._subscriptions = [tmp];\n }\n break;\n default: {\n throw new Error('unrecognized teardown ' + teardown + ' added to Subscription.');\n }\n }\n var _parentOrParents = subscription._parentOrParents;\n if (_parentOrParents === null) {\n subscription._parentOrParents = this;\n }\n else if (_parentOrParents instanceof Subscription) {\n if (_parentOrParents === this) {\n return subscription;\n }\n subscription._parentOrParents = [_parentOrParents, this];\n }\n else if (_parentOrParents.indexOf(this) === -1) {\n _parentOrParents.push(this);\n }\n else {\n return subscription;\n }\n var subscriptions = this._subscriptions;\n if (subscriptions === null) {\n this._subscriptions = [subscription];\n }\n else {\n subscriptions.push(subscription);\n }\n return subscription;\n };\n Subscription.prototype.remove = function (subscription) {\n var subscriptions = this._subscriptions;\n if (subscriptions) {\n var subscriptionIndex = subscriptions.indexOf(subscription);\n if (subscriptionIndex !== -1) {\n subscriptions.splice(subscriptionIndex, 1);\n }\n }\n };\n Subscription.EMPTY = (function (empty) {\n empty.closed = true;\n return empty;\n }(new Subscription()));\n return Subscription;\n}());\nexport { Subscription };\nfunction flattenUnsubscriptionErrors(errors) {\n return errors.reduce(function (errs, err) { return errs.concat((err instanceof UnsubscriptionError) ? err.errors : err); }, []);\n}\n//# sourceMappingURL=Subscription.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function map(project, thisArg) {\n return function mapOperation(source) {\n if (typeof project !== 'function') {\n throw new TypeError('argument is not a function. Are you looking for `mapTo()`?');\n }\n return source.lift(new MapOperator(project, thisArg));\n };\n}\nvar MapOperator = (function () {\n function MapOperator(project, thisArg) {\n this.project = project;\n this.thisArg = thisArg;\n }\n MapOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new MapSubscriber(subscriber, this.project, this.thisArg));\n };\n return MapOperator;\n}());\nexport { MapOperator };\nvar MapSubscriber = (function (_super) {\n __extends(MapSubscriber, _super);\n function MapSubscriber(destination, project, thisArg) {\n var _this = _super.call(this, destination) || this;\n _this.project = project;\n _this.count = 0;\n _this.thisArg = thisArg || _this;\n return _this;\n }\n MapSubscriber.prototype._next = function (value) {\n var result;\n try {\n result = this.project.call(this.thisArg, value, this.count++);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n this.destination.next(result);\n };\n return MapSubscriber;\n}(Subscriber));\n//# sourceMappingURL=map.js.map","import { InnerSubscriber } from '../InnerSubscriber';\nimport { subscribeTo } from './subscribeTo';\nimport { Observable } from '../Observable';\nexport function subscribeToResult(outerSubscriber, result, outerValue, outerIndex, innerSubscriber) {\n if (innerSubscriber === void 0) { innerSubscriber = new InnerSubscriber(outerSubscriber, outerValue, outerIndex); }\n if (innerSubscriber.closed) {\n return undefined;\n }\n if (result instanceof Observable) {\n return result.subscribe(innerSubscriber);\n }\n return subscribeTo(result)(innerSubscriber);\n}\n//# sourceMappingURL=subscribeToResult.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from './Subscriber';\nvar OuterSubscriber = (function (_super) {\n __extends(OuterSubscriber, _super);\n function OuterSubscriber() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n OuterSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {\n this.destination.next(innerValue);\n };\n OuterSubscriber.prototype.notifyError = function (error, innerSub) {\n this.destination.error(error);\n };\n OuterSubscriber.prototype.notifyComplete = function (innerSub) {\n this.destination.complete();\n };\n return OuterSubscriber;\n}(Subscriber));\nexport { OuterSubscriber };\n//# sourceMappingURL=OuterSubscriber.js.map","var _enable_super_gross_mode_that_will_cause_bad_things = false;\nexport var config = {\n Promise: undefined,\n set useDeprecatedSynchronousErrorHandling(value) {\n if (value) {\n var error = new Error();\n console.warn('DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n' + error.stack);\n }\n else if (_enable_super_gross_mode_that_will_cause_bad_things) {\n console.log('RxJS: Back to a better error behavior. Thank you. <3');\n }\n _enable_super_gross_mode_that_will_cause_bad_things = value;\n },\n get useDeprecatedSynchronousErrorHandling() {\n return _enable_super_gross_mode_that_will_cause_bad_things;\n },\n};\n//# sourceMappingURL=config.js.map","var __window = typeof window !== 'undefined' && window;\nvar __self = typeof self !== 'undefined' && typeof WorkerGlobalScope !== 'undefined' &&\n self instanceof WorkerGlobalScope && self;\nvar __global = typeof global !== 'undefined' && global;\nvar _root = __window || __global || __self;\n(function () {\n if (!_root) {\n throw new Error('RxJS could not find any global context (window, self, global)');\n }\n})();\nexport { _root as root };\n//# sourceMappingURL=root.js.map","import _isPlaceholder from \"./_isPlaceholder.js\";\n/**\n * Optimized internal one-arity curry function.\n *\n * @private\n * @category Function\n * @param {Function} fn The function to curry.\n * @return {Function} The curried function.\n */\n\nexport default function _curry1(fn) {\n return function f1(a) {\n if (arguments.length === 0 || _isPlaceholder(a)) {\n return f1;\n } else {\n return fn.apply(this, arguments);\n }\n };\n}","export function isFunction(x) {\n return typeof x === 'function';\n}\n//# sourceMappingURL=isFunction.js.map","export function noop() { }\n//# sourceMappingURL=noop.js.map","export var observable = (function () { return typeof Symbol === 'function' && Symbol.observable || '@@observable'; })();\n//# sourceMappingURL=observable.js.map","import _curry1 from \"./_curry1.js\";\nimport _isPlaceholder from \"./_isPlaceholder.js\";\n/**\n * Optimized internal two-arity curry function.\n *\n * @private\n * @category Function\n * @param {Function} fn The function to curry.\n * @return {Function} The curried function.\n */\n\nexport default function _curry2(fn) {\n return function f2(a, b) {\n switch (arguments.length) {\n case 0:\n return f2;\n\n case 1:\n return _isPlaceholder(a) ? f2 : _curry1(function (_b) {\n return fn(a, _b);\n });\n\n default:\n return _isPlaceholder(a) && _isPlaceholder(b) ? f2 : _isPlaceholder(a) ? _curry1(function (_a) {\n return fn(_a, b);\n }) : _isPlaceholder(b) ? _curry1(function (_b) {\n return fn(a, _b);\n }) : fn(a, b);\n }\n };\n}","import { Observable } from '../Observable';\nexport var EMPTY = new Observable(function (subscriber) { return subscriber.complete(); });\nexport function empty(scheduler) {\n return scheduler ? emptyScheduled(scheduler) : EMPTY;\n}\nfunction emptyScheduled(scheduler) {\n return new Observable(function (subscriber) { return scheduler.schedule(function () { return subscriber.complete(); }); });\n}\n//# sourceMappingURL=empty.js.map","var ObjectUnsubscribedErrorImpl = (function () {\n function ObjectUnsubscribedErrorImpl() {\n Error.call(this);\n this.message = 'object unsubscribed';\n this.name = 'ObjectUnsubscribedError';\n return this;\n }\n ObjectUnsubscribedErrorImpl.prototype = Object.create(Error.prototype);\n return ObjectUnsubscribedErrorImpl;\n})();\nexport var ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;\n//# sourceMappingURL=ObjectUnsubscribedError.js.map","export function hostReportError(err) {\n setTimeout(function () { throw err; }, 0);\n}\n//# sourceMappingURL=hostReportError.js.map","export var isArray = (function () { return Array.isArray || (function (x) { return x && typeof x.length === 'number'; }); })();\n//# sourceMappingURL=isArray.js.map","export function isScheduler(value) {\n return value && typeof value.schedule === 'function';\n}\n//# sourceMappingURL=isScheduler.js.map","import { __extends } from \"tslib\";\nimport { Observable } from './Observable';\nimport { Subscriber } from './Subscriber';\nimport { Subscription } from './Subscription';\nimport { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';\nimport { SubjectSubscription } from './SubjectSubscription';\nimport { rxSubscriber as rxSubscriberSymbol } from '../internal/symbol/rxSubscriber';\nvar SubjectSubscriber = (function (_super) {\n __extends(SubjectSubscriber, _super);\n function SubjectSubscriber(destination) {\n var _this = _super.call(this, destination) || this;\n _this.destination = destination;\n return _this;\n }\n return SubjectSubscriber;\n}(Subscriber));\nexport { SubjectSubscriber };\nvar Subject = (function (_super) {\n __extends(Subject, _super);\n function Subject() {\n var _this = _super.call(this) || this;\n _this.observers = [];\n _this.closed = false;\n _this.isStopped = false;\n _this.hasError = false;\n _this.thrownError = null;\n return _this;\n }\n Subject.prototype[rxSubscriberSymbol] = function () {\n return new SubjectSubscriber(this);\n };\n Subject.prototype.lift = function (operator) {\n var subject = new AnonymousSubject(this, this);\n subject.operator = operator;\n return subject;\n };\n Subject.prototype.next = function (value) {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n if (!this.isStopped) {\n var observers = this.observers;\n var len = observers.length;\n var copy = observers.slice();\n for (var i = 0; i < len; i++) {\n copy[i].next(value);\n }\n }\n };\n Subject.prototype.error = function (err) {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n this.hasError = true;\n this.thrownError = err;\n this.isStopped = true;\n var observers = this.observers;\n var len = observers.length;\n var copy = observers.slice();\n for (var i = 0; i < len; i++) {\n copy[i].error(err);\n }\n this.observers.length = 0;\n };\n Subject.prototype.complete = function () {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n this.isStopped = true;\n var observers = this.observers;\n var len = observers.length;\n var copy = observers.slice();\n for (var i = 0; i < len; i++) {\n copy[i].complete();\n }\n this.observers.length = 0;\n };\n Subject.prototype.unsubscribe = function () {\n this.isStopped = true;\n this.closed = true;\n this.observers = null;\n };\n Subject.prototype._trySubscribe = function (subscriber) {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n else {\n return _super.prototype._trySubscribe.call(this, subscriber);\n }\n };\n Subject.prototype._subscribe = function (subscriber) {\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n else if (this.hasError) {\n subscriber.error(this.thrownError);\n return Subscription.EMPTY;\n }\n else if (this.isStopped) {\n subscriber.complete();\n return Subscription.EMPTY;\n }\n else {\n this.observers.push(subscriber);\n return new SubjectSubscription(this, subscriber);\n }\n };\n Subject.prototype.asObservable = function () {\n var observable = new Observable();\n observable.source = this;\n return observable;\n };\n Subject.create = function (destination, source) {\n return new AnonymousSubject(destination, source);\n };\n return Subject;\n}(Observable));\nexport { Subject };\nvar AnonymousSubject = (function (_super) {\n __extends(AnonymousSubject, _super);\n function AnonymousSubject(destination, source) {\n var _this = _super.call(this) || this;\n _this.destination = destination;\n _this.source = source;\n return _this;\n }\n AnonymousSubject.prototype.next = function (value) {\n var destination = this.destination;\n if (destination && destination.next) {\n destination.next(value);\n }\n };\n AnonymousSubject.prototype.error = function (err) {\n var destination = this.destination;\n if (destination && destination.error) {\n this.destination.error(err);\n }\n };\n AnonymousSubject.prototype.complete = function () {\n var destination = this.destination;\n if (destination && destination.complete) {\n this.destination.complete();\n }\n };\n AnonymousSubject.prototype._subscribe = function (subscriber) {\n var source = this.source;\n if (source) {\n return this.source.subscribe(subscriber);\n }\n else {\n return Subscription.EMPTY;\n }\n };\n return AnonymousSubject;\n}(Subject));\nexport { AnonymousSubject };\n//# sourceMappingURL=Subject.js.map","export function getSymbolIterator() {\n if (typeof Symbol !== 'function' || !Symbol.iterator) {\n return '@@iterator';\n }\n return Symbol.iterator;\n}\nexport var iterator = getSymbolIterator();\nexport var $$iterator = iterator;\n//# sourceMappingURL=iterator.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from './Subscriber';\nvar InnerSubscriber = (function (_super) {\n __extends(InnerSubscriber, _super);\n function InnerSubscriber(parent, outerValue, outerIndex) {\n var _this = _super.call(this) || this;\n _this.parent = parent;\n _this.outerValue = outerValue;\n _this.outerIndex = outerIndex;\n _this.index = 0;\n return _this;\n }\n InnerSubscriber.prototype._next = function (value) {\n this.parent.notifyNext(this.outerValue, value, this.outerIndex, this.index++, this);\n };\n InnerSubscriber.prototype._error = function (error) {\n this.parent.notifyError(error, this);\n this.unsubscribe();\n };\n InnerSubscriber.prototype._complete = function () {\n this.parent.notifyComplete(this);\n this.unsubscribe();\n };\n return InnerSubscriber;\n}(Subscriber));\nexport { InnerSubscriber };\n//# sourceMappingURL=InnerSubscriber.js.map","export default function _isPlaceholder(a) {\n return a != null && typeof a === 'object' && a['@@functional/placeholder'] === true;\n}","export var rxSubscriber = (function () {\n return typeof Symbol === 'function'\n ? Symbol('rxSubscriber')\n : '@@rxSubscriber_' + Math.random();\n})();\nexport var $$rxSubscriber = rxSubscriber;\n//# sourceMappingURL=rxSubscriber.js.map","import { __extends } from \"tslib\";\nimport { OuterSubscriber } from '../OuterSubscriber';\nimport { InnerSubscriber } from '../InnerSubscriber';\nimport { subscribeToResult } from '../util/subscribeToResult';\nimport { map } from './map';\nimport { from } from '../observable/from';\nexport function switchMap(project, resultSelector) {\n if (typeof resultSelector === 'function') {\n return function (source) { return source.pipe(switchMap(function (a, i) { return from(project(a, i)).pipe(map(function (b, ii) { return resultSelector(a, b, i, ii); })); })); };\n }\n return function (source) { return source.lift(new SwitchMapOperator(project)); };\n}\nvar SwitchMapOperator = (function () {\n function SwitchMapOperator(project) {\n this.project = project;\n }\n SwitchMapOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new SwitchMapSubscriber(subscriber, this.project));\n };\n return SwitchMapOperator;\n}());\nvar SwitchMapSubscriber = (function (_super) {\n __extends(SwitchMapSubscriber, _super);\n function SwitchMapSubscriber(destination, project) {\n var _this = _super.call(this, destination) || this;\n _this.project = project;\n _this.index = 0;\n return _this;\n }\n SwitchMapSubscriber.prototype._next = function (value) {\n var result;\n var index = this.index++;\n try {\n result = this.project(value, index);\n }\n catch (error) {\n this.destination.error(error);\n return;\n }\n this._innerSub(result, value, index);\n };\n SwitchMapSubscriber.prototype._innerSub = function (result, value, index) {\n var innerSubscription = this.innerSubscription;\n if (innerSubscription) {\n innerSubscription.unsubscribe();\n }\n var innerSubscriber = new InnerSubscriber(this, value, index);\n var destination = this.destination;\n destination.add(innerSubscriber);\n this.innerSubscription = subscribeToResult(this, result, undefined, undefined, innerSubscriber);\n if (this.innerSubscription !== innerSubscriber) {\n destination.add(this.innerSubscription);\n }\n };\n SwitchMapSubscriber.prototype._complete = function () {\n var innerSubscription = this.innerSubscription;\n if (!innerSubscription || innerSubscription.closed) {\n _super.prototype._complete.call(this);\n }\n this.unsubscribe();\n };\n SwitchMapSubscriber.prototype._unsubscribe = function () {\n this.innerSubscription = null;\n };\n SwitchMapSubscriber.prototype.notifyComplete = function (innerSub) {\n var destination = this.destination;\n destination.remove(innerSub);\n this.innerSubscription = null;\n if (this.isStopped) {\n _super.prototype._complete.call(this);\n }\n };\n SwitchMapSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {\n this.destination.next(innerValue);\n };\n return SwitchMapSubscriber;\n}(OuterSubscriber));\n//# sourceMappingURL=switchMap.js.map","import { Observable } from '../Observable';\nimport { Subscription } from '../Subscription';\nexport function scheduleArray(input, scheduler) {\n return new Observable(function (subscriber) {\n var sub = new Subscription();\n var i = 0;\n sub.add(scheduler.schedule(function () {\n if (i === input.length) {\n subscriber.complete();\n return;\n }\n subscriber.next(input[i++]);\n if (!subscriber.closed) {\n sub.add(this.schedule());\n }\n }));\n return sub;\n });\n}\n//# sourceMappingURL=scheduleArray.js.map","import { Observable } from '../Observable';\nimport { subscribeToArray } from '../util/subscribeToArray';\nimport { scheduleArray } from '../scheduled/scheduleArray';\nexport function fromArray(input, scheduler) {\n if (!scheduler) {\n return new Observable(subscribeToArray(input));\n }\n else {\n return scheduleArray(input, scheduler);\n }\n}\n//# sourceMappingURL=fromArray.js.map","import { scheduleObservable } from './scheduleObservable';\nimport { schedulePromise } from './schedulePromise';\nimport { scheduleArray } from './scheduleArray';\nimport { scheduleIterable } from './scheduleIterable';\nimport { isInteropObservable } from '../util/isInteropObservable';\nimport { isPromise } from '../util/isPromise';\nimport { isArrayLike } from '../util/isArrayLike';\nimport { isIterable } from '../util/isIterable';\nimport { scheduleAsyncIterable } from './scheduleAsyncIterable';\nexport function scheduled(input, scheduler) {\n if (input != null) {\n if (isInteropObservable(input)) {\n return scheduleObservable(input, scheduler);\n }\n else if (isPromise(input)) {\n return schedulePromise(input, scheduler);\n }\n else if (isArrayLike(input)) {\n return scheduleArray(input, scheduler);\n }\n else if (isIterable(input) || typeof input === 'string') {\n return scheduleIterable(input, scheduler);\n }\n else if (Symbol && Symbol.asyncIterator && typeof input[Symbol.asyncIterator] === 'function') {\n return scheduleAsyncIterable(input, scheduler);\n }\n }\n throw new TypeError((input !== null && typeof input || input) + ' is not observable');\n}\n//# sourceMappingURL=scheduled.js.map","import { observable as Symbol_observable } from '../symbol/observable';\nexport function isInteropObservable(input) {\n return input && typeof input[Symbol_observable] === 'function';\n}\n//# sourceMappingURL=isInteropObservable.js.map","import { Observable } from '../Observable';\nimport { Subscription } from '../Subscription';\nimport { observable as Symbol_observable } from '../symbol/observable';\nexport function scheduleObservable(input, scheduler) {\n return new Observable(function (subscriber) {\n var sub = new Subscription();\n sub.add(scheduler.schedule(function () {\n var observable = input[Symbol_observable]();\n sub.add(observable.subscribe({\n next: function (value) { sub.add(scheduler.schedule(function () { return subscriber.next(value); })); },\n error: function (err) { sub.add(scheduler.schedule(function () { return subscriber.error(err); })); },\n complete: function () { sub.add(scheduler.schedule(function () { return subscriber.complete(); })); },\n }));\n }));\n return sub;\n });\n}\n//# sourceMappingURL=scheduleObservable.js.map","import { Observable } from '../Observable';\nimport { Subscription } from '../Subscription';\nexport function schedulePromise(input, scheduler) {\n return new Observable(function (subscriber) {\n var sub = new Subscription();\n sub.add(scheduler.schedule(function () { return input.then(function (value) {\n sub.add(scheduler.schedule(function () {\n subscriber.next(value);\n sub.add(scheduler.schedule(function () { return subscriber.complete(); }));\n }));\n }, function (err) {\n sub.add(scheduler.schedule(function () { return subscriber.error(err); }));\n }); }));\n return sub;\n });\n}\n//# sourceMappingURL=schedulePromise.js.map","import { iterator as Symbol_iterator } from '../symbol/iterator';\nexport function isIterable(input) {\n return input && typeof input[Symbol_iterator] === 'function';\n}\n//# sourceMappingURL=isIterable.js.map","import { Observable } from '../Observable';\nimport { Subscription } from '../Subscription';\nimport { iterator as Symbol_iterator } from '../symbol/iterator';\nexport function scheduleIterable(input, scheduler) {\n if (!input) {\n throw new Error('Iterable cannot be null');\n }\n return new Observable(function (subscriber) {\n var sub = new Subscription();\n var iterator;\n sub.add(function () {\n if (iterator && typeof iterator.return === 'function') {\n iterator.return();\n }\n });\n sub.add(scheduler.schedule(function () {\n iterator = input[Symbol_iterator]();\n sub.add(scheduler.schedule(function () {\n if (subscriber.closed) {\n return;\n }\n var value;\n var done;\n try {\n var result = iterator.next();\n value = result.value;\n done = result.done;\n }\n catch (err) {\n subscriber.error(err);\n return;\n }\n if (done) {\n subscriber.complete();\n }\n else {\n subscriber.next(value);\n this.schedule();\n }\n }));\n }));\n return sub;\n });\n}\n//# sourceMappingURL=scheduleIterable.js.map","import { Observable } from '../Observable';\nimport { Subscription } from '../Subscription';\nexport function scheduleAsyncIterable(input, scheduler) {\n if (!input) {\n throw new Error('Iterable cannot be null');\n }\n return new Observable(function (subscriber) {\n var sub = new Subscription();\n sub.add(scheduler.schedule(function () {\n var iterator = input[Symbol.asyncIterator]();\n sub.add(scheduler.schedule(function () {\n var _this = this;\n iterator.next().then(function (result) {\n if (result.done) {\n subscriber.complete();\n }\n else {\n subscriber.next(result.value);\n _this.schedule();\n }\n });\n }));\n }));\n return sub;\n });\n}\n//# sourceMappingURL=scheduleAsyncIterable.js.map","import { Observable } from '../Observable';\nimport { subscribeTo } from '../util/subscribeTo';\nimport { scheduled } from '../scheduled/scheduled';\nexport function from(input, scheduler) {\n if (!scheduler) {\n if (input instanceof Observable) {\n return input;\n }\n return new Observable(subscribeTo(input));\n }\n else {\n return scheduled(input, scheduler);\n }\n}\n//# sourceMappingURL=from.js.map","var Scheduler = (function () {\n function Scheduler(SchedulerAction, now) {\n if (now === void 0) { now = Scheduler.now; }\n this.SchedulerAction = SchedulerAction;\n this.now = now;\n }\n Scheduler.prototype.schedule = function (work, delay, state) {\n if (delay === void 0) { delay = 0; }\n return new this.SchedulerAction(this, work).schedule(state, delay);\n };\n Scheduler.now = function () { return Date.now(); };\n return Scheduler;\n}());\nexport { Scheduler };\n//# sourceMappingURL=Scheduler.js.map","import { __extends } from \"tslib\";\nimport { Scheduler } from '../Scheduler';\nvar AsyncScheduler = (function (_super) {\n __extends(AsyncScheduler, _super);\n function AsyncScheduler(SchedulerAction, now) {\n if (now === void 0) { now = Scheduler.now; }\n var _this = _super.call(this, SchedulerAction, function () {\n if (AsyncScheduler.delegate && AsyncScheduler.delegate !== _this) {\n return AsyncScheduler.delegate.now();\n }\n else {\n return now();\n }\n }) || this;\n _this.actions = [];\n _this.active = false;\n _this.scheduled = undefined;\n return _this;\n }\n AsyncScheduler.prototype.schedule = function (work, delay, state) {\n if (delay === void 0) { delay = 0; }\n if (AsyncScheduler.delegate && AsyncScheduler.delegate !== this) {\n return AsyncScheduler.delegate.schedule(work, delay, state);\n }\n else {\n return _super.prototype.schedule.call(this, work, delay, state);\n }\n };\n AsyncScheduler.prototype.flush = function (action) {\n var actions = this.actions;\n if (this.active) {\n actions.push(action);\n return;\n }\n var error;\n this.active = true;\n do {\n if (error = action.execute(action.state, action.delay)) {\n break;\n }\n } while (action = actions.shift());\n this.active = false;\n if (error) {\n while (action = actions.shift()) {\n action.unsubscribe();\n }\n throw error;\n }\n };\n return AsyncScheduler;\n}(Scheduler));\nexport { AsyncScheduler };\n//# sourceMappingURL=AsyncScheduler.js.map","import { __extends } from \"tslib\";\nimport { Action } from './Action';\nvar AsyncAction = (function (_super) {\n __extends(AsyncAction, _super);\n function AsyncAction(scheduler, work) {\n var _this = _super.call(this, scheduler, work) || this;\n _this.scheduler = scheduler;\n _this.work = work;\n _this.pending = false;\n return _this;\n }\n AsyncAction.prototype.schedule = function (state, delay) {\n if (delay === void 0) { delay = 0; }\n if (this.closed) {\n return this;\n }\n this.state = state;\n var id = this.id;\n var scheduler = this.scheduler;\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, delay);\n }\n this.pending = true;\n this.delay = delay;\n this.id = this.id || this.requestAsyncId(scheduler, this.id, delay);\n return this;\n };\n AsyncAction.prototype.requestAsyncId = function (scheduler, id, delay) {\n if (delay === void 0) { delay = 0; }\n return setInterval(scheduler.flush.bind(scheduler, this), delay);\n };\n AsyncAction.prototype.recycleAsyncId = function (scheduler, id, delay) {\n if (delay === void 0) { delay = 0; }\n if (delay !== null && this.delay === delay && this.pending === false) {\n return id;\n }\n clearInterval(id);\n return undefined;\n };\n AsyncAction.prototype.execute = function (state, delay) {\n if (this.closed) {\n return new Error('executing a cancelled action');\n }\n this.pending = false;\n var error = this._execute(state, delay);\n if (error) {\n return error;\n }\n else if (this.pending === false && this.id != null) {\n this.id = this.recycleAsyncId(this.scheduler, this.id, null);\n }\n };\n AsyncAction.prototype._execute = function (state, delay) {\n var errored = false;\n var errorValue = undefined;\n try {\n this.work(state);\n }\n catch (e) {\n errored = true;\n errorValue = !!e && e || new Error(e);\n }\n if (errored) {\n this.unsubscribe();\n return errorValue;\n }\n };\n AsyncAction.prototype._unsubscribe = function () {\n var id = this.id;\n var scheduler = this.scheduler;\n var actions = scheduler.actions;\n var index = actions.indexOf(this);\n this.work = null;\n this.state = null;\n this.pending = false;\n this.scheduler = null;\n if (index !== -1) {\n actions.splice(index, 1);\n }\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, null);\n }\n this.delay = null;\n };\n return AsyncAction;\n}(Action));\nexport { AsyncAction };\n//# sourceMappingURL=AsyncAction.js.map","import { __extends } from \"tslib\";\nimport { Subscription } from '../Subscription';\nvar Action = (function (_super) {\n __extends(Action, _super);\n function Action(scheduler, work) {\n return _super.call(this) || this;\n }\n Action.prototype.schedule = function (state, delay) {\n if (delay === void 0) { delay = 0; }\n return this;\n };\n return Action;\n}(Subscription));\nexport { Action };\n//# sourceMappingURL=Action.js.map","import { isScheduler } from '../util/isScheduler';\nimport { fromArray } from './fromArray';\nimport { scheduleArray } from '../scheduled/scheduleArray';\nexport function of() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var scheduler = args[args.length - 1];\n if (isScheduler(scheduler)) {\n args.pop();\n return scheduleArray(args, scheduler);\n }\n else {\n return fromArray(args);\n }\n}\n//# sourceMappingURL=of.js.map","import { config } from './config';\nimport { hostReportError } from './util/hostReportError';\nexport var empty = {\n closed: true,\n next: function (value) { },\n error: function (err) {\n if (config.useDeprecatedSynchronousErrorHandling) {\n throw err;\n }\n else {\n hostReportError(err);\n }\n },\n complete: function () { }\n};\n//# sourceMappingURL=Observer.js.map","import { EMPTY } from './observable/empty';\nimport { of } from './observable/of';\nimport { throwError } from './observable/throwError';\nexport var NotificationKind;\n(function (NotificationKind) {\n NotificationKind[\"NEXT\"] = \"N\";\n NotificationKind[\"ERROR\"] = \"E\";\n NotificationKind[\"COMPLETE\"] = \"C\";\n})(NotificationKind || (NotificationKind = {}));\nvar Notification = (function () {\n function Notification(kind, value, error) {\n this.kind = kind;\n this.value = value;\n this.error = error;\n this.hasValue = kind === 'N';\n }\n Notification.prototype.observe = function (observer) {\n switch (this.kind) {\n case 'N':\n return observer.next && observer.next(this.value);\n case 'E':\n return observer.error && observer.error(this.error);\n case 'C':\n return observer.complete && observer.complete();\n }\n };\n Notification.prototype.do = function (next, error, complete) {\n var kind = this.kind;\n switch (kind) {\n case 'N':\n return next && next(this.value);\n case 'E':\n return error && error(this.error);\n case 'C':\n return complete && complete();\n }\n };\n Notification.prototype.accept = function (nextOrObserver, error, complete) {\n if (nextOrObserver && typeof nextOrObserver.next === 'function') {\n return this.observe(nextOrObserver);\n }\n else {\n return this.do(nextOrObserver, error, complete);\n }\n };\n Notification.prototype.toObservable = function () {\n var kind = this.kind;\n switch (kind) {\n case 'N':\n return of(this.value);\n case 'E':\n return throwError(this.error);\n case 'C':\n return EMPTY;\n }\n throw new Error('unexpected notification kind value');\n };\n Notification.createNext = function (value) {\n if (typeof value !== 'undefined') {\n return new Notification('N', value);\n }\n return Notification.undefinedValueNotification;\n };\n Notification.createError = function (err) {\n return new Notification('E', undefined, err);\n };\n Notification.createComplete = function () {\n return Notification.completeNotification;\n };\n Notification.completeNotification = new Notification('C');\n Notification.undefinedValueNotification = new Notification('N', undefined);\n return Notification;\n}());\nexport { Notification };\n//# sourceMappingURL=Notification.js.map","import { Observable } from '../Observable';\nexport function throwError(error, scheduler) {\n if (!scheduler) {\n return new Observable(function (subscriber) { return subscriber.error(error); });\n }\n else {\n return new Observable(function (subscriber) { return scheduler.schedule(dispatch, 0, { error: error, subscriber: subscriber }); });\n }\n}\nfunction dispatch(_a) {\n var error = _a.error, subscriber = _a.subscriber;\n subscriber.error(error);\n}\n//# sourceMappingURL=throwError.js.map","import { identity } from './identity';\nexport function pipe() {\n var fns = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n fns[_i] = arguments[_i];\n }\n return pipeFromArray(fns);\n}\nexport function pipeFromArray(fns) {\n if (fns.length === 0) {\n return identity;\n }\n if (fns.length === 1) {\n return fns[0];\n }\n return function piped(input) {\n return fns.reduce(function (prev, fn) { return fn(prev); }, input);\n };\n}\n//# sourceMappingURL=pipe.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function distinctUntilChanged(compare, keySelector) {\n return function (source) { return source.lift(new DistinctUntilChangedOperator(compare, keySelector)); };\n}\nvar DistinctUntilChangedOperator = (function () {\n function DistinctUntilChangedOperator(compare, keySelector) {\n this.compare = compare;\n this.keySelector = keySelector;\n }\n DistinctUntilChangedOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new DistinctUntilChangedSubscriber(subscriber, this.compare, this.keySelector));\n };\n return DistinctUntilChangedOperator;\n}());\nvar DistinctUntilChangedSubscriber = (function (_super) {\n __extends(DistinctUntilChangedSubscriber, _super);\n function DistinctUntilChangedSubscriber(destination, compare, keySelector) {\n var _this = _super.call(this, destination) || this;\n _this.keySelector = keySelector;\n _this.hasKey = false;\n if (typeof compare === 'function') {\n _this.compare = compare;\n }\n return _this;\n }\n DistinctUntilChangedSubscriber.prototype.compare = function (x, y) {\n return x === y;\n };\n DistinctUntilChangedSubscriber.prototype._next = function (value) {\n var key;\n try {\n var keySelector = this.keySelector;\n key = keySelector ? keySelector(value) : value;\n }\n catch (err) {\n return this.destination.error(err);\n }\n var result = false;\n if (this.hasKey) {\n try {\n var compare = this.compare;\n result = compare(this.key, key);\n }\n catch (err) {\n return this.destination.error(err);\n }\n }\n else {\n this.hasKey = true;\n }\n if (!result) {\n this.key = key;\n this.destination.next(value);\n }\n };\n return DistinctUntilChangedSubscriber;\n}(Subscriber));\n//# sourceMappingURL=distinctUntilChanged.js.map","export function isObject(x) {\n return x !== null && typeof x === 'object';\n}\n//# sourceMappingURL=isObject.js.map","import { __extends } from \"tslib\";\nimport { Subscription } from './Subscription';\nvar SubjectSubscription = (function (_super) {\n __extends(SubjectSubscription, _super);\n function SubjectSubscription(subject, subscriber) {\n var _this = _super.call(this) || this;\n _this.subject = subject;\n _this.subscriber = subscriber;\n _this.closed = false;\n return _this;\n }\n SubjectSubscription.prototype.unsubscribe = function () {\n if (this.closed) {\n return;\n }\n this.closed = true;\n var subject = this.subject;\n var observers = subject.observers;\n this.subject = null;\n if (!observers || observers.length === 0 || subject.isStopped || subject.closed) {\n return;\n }\n var subscriberIndex = observers.indexOf(this.subscriber);\n if (subscriberIndex !== -1) {\n observers.splice(subscriberIndex, 1);\n }\n };\n return SubjectSubscription;\n}(Subscription));\nexport { SubjectSubscription };\n//# sourceMappingURL=SubjectSubscription.js.map","export function identity(x) {\n return x;\n}\n//# sourceMappingURL=identity.js.map","export var subscribeToArray = function (array) { return function (subscriber) {\n for (var i = 0, len = array.length; i < len && !subscriber.closed; i++) {\n subscriber.next(array[i]);\n }\n subscriber.complete();\n}; };\n//# sourceMappingURL=subscribeToArray.js.map","export var isArrayLike = (function (x) { return x && typeof x.length === 'number' && typeof x !== 'function'; });\n//# sourceMappingURL=isArrayLike.js.map","export function isPromise(value) {\n return !!value && typeof value.subscribe !== 'function' && typeof value.then === 'function';\n}\n//# sourceMappingURL=isPromise.js.map","import { AsyncAction } from './AsyncAction';\nimport { AsyncScheduler } from './AsyncScheduler';\nexport var async = new AsyncScheduler(AsyncAction);\n//# sourceMappingURL=async.js.map","export default function _isString(x) {\n return Object.prototype.toString.call(x) === '[object String]';\n}","import { __asyncValues, __awaiter, __generator } from \"tslib\";\nexport function subscribeToAsyncIterable(asyncIterable) {\n return function (subscriber) {\n process(asyncIterable, subscriber).catch(function (err) { return subscriber.error(err); });\n };\n}\nfunction process(asyncIterable, subscriber) {\n var asyncIterable_1, asyncIterable_1_1;\n var e_1, _a;\n return __awaiter(this, void 0, void 0, function () {\n var value, e_1_1;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n _b.trys.push([0, 5, 6, 11]);\n asyncIterable_1 = __asyncValues(asyncIterable);\n _b.label = 1;\n case 1: return [4, asyncIterable_1.next()];\n case 2:\n if (!(asyncIterable_1_1 = _b.sent(), !asyncIterable_1_1.done)) return [3, 4];\n value = asyncIterable_1_1.value;\n subscriber.next(value);\n _b.label = 3;\n case 3: return [3, 1];\n case 4: return [3, 11];\n case 5:\n e_1_1 = _b.sent();\n e_1 = { error: e_1_1 };\n return [3, 11];\n case 6:\n _b.trys.push([6, , 9, 10]);\n if (!(asyncIterable_1_1 && !asyncIterable_1_1.done && (_a = asyncIterable_1.return))) return [3, 8];\n return [4, _a.call(asyncIterable_1)];\n case 7:\n _b.sent();\n _b.label = 8;\n case 8: return [3, 10];\n case 9:\n if (e_1) throw e_1.error;\n return [7];\n case 10: return [7];\n case 11:\n subscriber.complete();\n return [2];\n }\n });\n });\n}\n//# sourceMappingURL=subscribeToAsyncIterable.js.map","import { subscribeToArray } from './subscribeToArray';\nimport { subscribeToPromise } from './subscribeToPromise';\nimport { subscribeToIterable } from './subscribeToIterable';\nimport { subscribeToObservable } from './subscribeToObservable';\nimport { isArrayLike } from './isArrayLike';\nimport { isPromise } from './isPromise';\nimport { isObject } from './isObject';\nimport { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { observable as Symbol_observable } from '../symbol/observable';\nimport { subscribeToAsyncIterable } from './subscribeToAsyncIterable';\nexport var subscribeTo = function (result) {\n if (!!result && typeof result[Symbol_observable] === 'function') {\n return subscribeToObservable(result);\n }\n else if (isArrayLike(result)) {\n return subscribeToArray(result);\n }\n else if (isPromise(result)) {\n return subscribeToPromise(result);\n }\n else if (!!result && typeof result[Symbol_iterator] === 'function') {\n return subscribeToIterable(result);\n }\n else if (Symbol && Symbol.asyncIterator &&\n !!result && typeof result[Symbol.asyncIterator] === 'function') {\n return subscribeToAsyncIterable(result);\n }\n else {\n var value = isObject(result) ? 'an invalid object' : \"'\" + result + \"'\";\n var msg = \"You provided \" + value + \" where a stream was expected.\"\n + ' You can provide an Observable, Promise, Array, or Iterable.';\n throw new TypeError(msg);\n }\n};\n//# sourceMappingURL=subscribeTo.js.map","import { observable as Symbol_observable } from '../symbol/observable';\nexport var subscribeToObservable = function (obj) { return function (subscriber) {\n var obs = obj[Symbol_observable]();\n if (typeof obs.subscribe !== 'function') {\n throw new TypeError('Provided object does not correctly implement Symbol.observable');\n }\n else {\n return obs.subscribe(subscriber);\n }\n}; };\n//# sourceMappingURL=subscribeToObservable.js.map","import { hostReportError } from './hostReportError';\nexport var subscribeToPromise = function (promise) { return function (subscriber) {\n promise.then(function (value) {\n if (!subscriber.closed) {\n subscriber.next(value);\n subscriber.complete();\n }\n }, function (err) { return subscriber.error(err); })\n .then(null, hostReportError);\n return subscriber;\n}; };\n//# sourceMappingURL=subscribeToPromise.js.map","import { iterator as Symbol_iterator } from '../symbol/iterator';\nexport var subscribeToIterable = function (iterable) { return function (subscriber) {\n var iterator = iterable[Symbol_iterator]();\n do {\n var item = iterator.next();\n if (item.done) {\n subscriber.complete();\n break;\n }\n subscriber.next(item.value);\n if (subscriber.closed) {\n break;\n }\n } while (true);\n if (typeof iterator.return === 'function') {\n subscriber.add(function () {\n if (iterator.return) {\n iterator.return();\n }\n });\n }\n return subscriber;\n}; };\n//# sourceMappingURL=subscribeToIterable.js.map","import { __extends } from \"tslib\";\nimport { subscribeToResult } from '../util/subscribeToResult';\nimport { OuterSubscriber } from '../OuterSubscriber';\nimport { InnerSubscriber } from '../InnerSubscriber';\nimport { map } from './map';\nimport { from } from '../observable/from';\nexport function mergeMap(project, resultSelector, concurrent) {\n if (concurrent === void 0) { concurrent = Number.POSITIVE_INFINITY; }\n if (typeof resultSelector === 'function') {\n return function (source) { return source.pipe(mergeMap(function (a, i) { return from(project(a, i)).pipe(map(function (b, ii) { return resultSelector(a, b, i, ii); })); }, concurrent)); };\n }\n else if (typeof resultSelector === 'number') {\n concurrent = resultSelector;\n }\n return function (source) { return source.lift(new MergeMapOperator(project, concurrent)); };\n}\nvar MergeMapOperator = (function () {\n function MergeMapOperator(project, concurrent) {\n if (concurrent === void 0) { concurrent = Number.POSITIVE_INFINITY; }\n this.project = project;\n this.concurrent = concurrent;\n }\n MergeMapOperator.prototype.call = function (observer, source) {\n return source.subscribe(new MergeMapSubscriber(observer, this.project, this.concurrent));\n };\n return MergeMapOperator;\n}());\nexport { MergeMapOperator };\nvar MergeMapSubscriber = (function (_super) {\n __extends(MergeMapSubscriber, _super);\n function MergeMapSubscriber(destination, project, concurrent) {\n if (concurrent === void 0) { concurrent = Number.POSITIVE_INFINITY; }\n var _this = _super.call(this, destination) || this;\n _this.project = project;\n _this.concurrent = concurrent;\n _this.hasCompleted = false;\n _this.buffer = [];\n _this.active = 0;\n _this.index = 0;\n return _this;\n }\n MergeMapSubscriber.prototype._next = function (value) {\n if (this.active < this.concurrent) {\n this._tryNext(value);\n }\n else {\n this.buffer.push(value);\n }\n };\n MergeMapSubscriber.prototype._tryNext = function (value) {\n var result;\n var index = this.index++;\n try {\n result = this.project(value, index);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n this.active++;\n this._innerSub(result, value, index);\n };\n MergeMapSubscriber.prototype._innerSub = function (ish, value, index) {\n var innerSubscriber = new InnerSubscriber(this, value, index);\n var destination = this.destination;\n destination.add(innerSubscriber);\n var innerSubscription = subscribeToResult(this, ish, undefined, undefined, innerSubscriber);\n if (innerSubscription !== innerSubscriber) {\n destination.add(innerSubscription);\n }\n };\n MergeMapSubscriber.prototype._complete = function () {\n this.hasCompleted = true;\n if (this.active === 0 && this.buffer.length === 0) {\n this.destination.complete();\n }\n this.unsubscribe();\n };\n MergeMapSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {\n this.destination.next(innerValue);\n };\n MergeMapSubscriber.prototype.notifyComplete = function (innerSub) {\n var buffer = this.buffer;\n this.remove(innerSub);\n this.active--;\n if (buffer.length > 0) {\n this._next(buffer.shift());\n }\n else if (this.active === 0 && this.hasCompleted) {\n this.destination.complete();\n }\n };\n return MergeMapSubscriber;\n}(OuterSubscriber));\nexport { MergeMapSubscriber };\n//# sourceMappingURL=mergeMap.js.map","import { mergeMap } from './mergeMap';\nimport { identity } from '../util/identity';\nexport function mergeAll(concurrent) {\n if (concurrent === void 0) { concurrent = Number.POSITIVE_INFINITY; }\n return mergeMap(identity, concurrent);\n}\n//# sourceMappingURL=mergeAll.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nimport { Notification } from '../Notification';\nexport function observeOn(scheduler, delay) {\n if (delay === void 0) { delay = 0; }\n return function observeOnOperatorFunction(source) {\n return source.lift(new ObserveOnOperator(scheduler, delay));\n };\n}\nvar ObserveOnOperator = (function () {\n function ObserveOnOperator(scheduler, delay) {\n if (delay === void 0) { delay = 0; }\n this.scheduler = scheduler;\n this.delay = delay;\n }\n ObserveOnOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new ObserveOnSubscriber(subscriber, this.scheduler, this.delay));\n };\n return ObserveOnOperator;\n}());\nexport { ObserveOnOperator };\nvar ObserveOnSubscriber = (function (_super) {\n __extends(ObserveOnSubscriber, _super);\n function ObserveOnSubscriber(destination, scheduler, delay) {\n if (delay === void 0) { delay = 0; }\n var _this = _super.call(this, destination) || this;\n _this.scheduler = scheduler;\n _this.delay = delay;\n return _this;\n }\n ObserveOnSubscriber.dispatch = function (arg) {\n var notification = arg.notification, destination = arg.destination;\n notification.observe(destination);\n this.unsubscribe();\n };\n ObserveOnSubscriber.prototype.scheduleMessage = function (notification) {\n var destination = this.destination;\n destination.add(this.scheduler.schedule(ObserveOnSubscriber.dispatch, this.delay, new ObserveOnMessage(notification, this.destination)));\n };\n ObserveOnSubscriber.prototype._next = function (value) {\n this.scheduleMessage(Notification.createNext(value));\n };\n ObserveOnSubscriber.prototype._error = function (err) {\n this.scheduleMessage(Notification.createError(err));\n this.unsubscribe();\n };\n ObserveOnSubscriber.prototype._complete = function () {\n this.scheduleMessage(Notification.createComplete());\n this.unsubscribe();\n };\n return ObserveOnSubscriber;\n}(Subscriber));\nexport { ObserveOnSubscriber };\nvar ObserveOnMessage = (function () {\n function ObserveOnMessage(notification, destination) {\n this.notification = notification;\n this.destination = destination;\n }\n return ObserveOnMessage;\n}());\nexport { ObserveOnMessage };\n//# sourceMappingURL=observeOn.js.map","/*!\n * clipboard.js v2.0.6\n * https://clipboardjs.com/\n * \n * Licensed MIT © Zeno Rocha\n */\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ClipboardJS\"] = factory();\n\telse\n\t\troot[\"ClipboardJS\"] = factory();\n})(this, function() {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId]) {\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\ti: moduleId,\n/******/ \t\t\tl: false,\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.l = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// define getter function for harmony exports\n/******/ \t__webpack_require__.d = function(exports, name, getter) {\n/******/ \t\tif(!__webpack_require__.o(exports, name)) {\n/******/ \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n/******/ \t\t}\n/******/ \t};\n/******/\n/******/ \t// define __esModule on exports\n/******/ \t__webpack_require__.r = function(exports) {\n/******/ \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n/******/ \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n/******/ \t\t}\n/******/ \t\tObject.defineProperty(exports, '__esModule', { value: true });\n/******/ \t};\n/******/\n/******/ \t// create a fake namespace object\n/******/ \t// mode & 1: value is a module id, require it\n/******/ \t// mode & 2: merge all properties of value into the ns\n/******/ \t// mode & 4: return value when already ns object\n/******/ \t// mode & 8|1: behave like require\n/******/ \t__webpack_require__.t = function(value, mode) {\n/******/ \t\tif(mode & 1) value = __webpack_require__(value);\n/******/ \t\tif(mode & 8) return value;\n/******/ \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n/******/ \t\tvar ns = Object.create(null);\n/******/ \t\t__webpack_require__.r(ns);\n/******/ \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n/******/ \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n/******/ \t\treturn ns;\n/******/ \t};\n/******/\n/******/ \t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t__webpack_require__.n = function(module) {\n/******/ \t\tvar getter = module && module.__esModule ?\n/******/ \t\t\tfunction getDefault() { return module['default']; } :\n/******/ \t\t\tfunction getModuleExports() { return module; };\n/******/ \t\t__webpack_require__.d(getter, 'a', getter);\n/******/ \t\treturn getter;\n/******/ \t};\n/******/\n/******/ \t// Object.prototype.hasOwnProperty.call\n/******/ \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n/******/\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(__webpack_require__.s = 6);\n/******/ })\n/************************************************************************/\n/******/ ([\n/* 0 */\n/***/ (function(module, exports) {\n\nfunction select(element) {\n var selectedText;\n\n if (element.nodeName === 'SELECT') {\n element.focus();\n\n selectedText = element.value;\n }\n else if (element.nodeName === 'INPUT' || element.nodeName === 'TEXTAREA') {\n var isReadOnly = element.hasAttribute('readonly');\n\n if (!isReadOnly) {\n element.setAttribute('readonly', '');\n }\n\n element.select();\n element.setSelectionRange(0, element.value.length);\n\n if (!isReadOnly) {\n element.removeAttribute('readonly');\n }\n\n selectedText = element.value;\n }\n else {\n if (element.hasAttribute('contenteditable')) {\n element.focus();\n }\n\n var selection = window.getSelection();\n var range = document.createRange();\n\n range.selectNodeContents(element);\n selection.removeAllRanges();\n selection.addRange(range);\n\n selectedText = selection.toString();\n }\n\n return selectedText;\n}\n\nmodule.exports = select;\n\n\n/***/ }),\n/* 1 */\n/***/ (function(module, exports) {\n\nfunction E () {\n // Keep this empty so it's easier to inherit from\n // (via https://github.com/lipsmack from https://github.com/scottcorgan/tiny-emitter/issues/3)\n}\n\nE.prototype = {\n on: function (name, callback, ctx) {\n var e = this.e || (this.e = {});\n\n (e[name] || (e[name] = [])).push({\n fn: callback,\n ctx: ctx\n });\n\n return this;\n },\n\n once: function (name, callback, ctx) {\n var self = this;\n function listener () {\n self.off(name, listener);\n callback.apply(ctx, arguments);\n };\n\n listener._ = callback\n return this.on(name, listener, ctx);\n },\n\n emit: function (name) {\n var data = [].slice.call(arguments, 1);\n var evtArr = ((this.e || (this.e = {}))[name] || []).slice();\n var i = 0;\n var len = evtArr.length;\n\n for (i; i < len; i++) {\n evtArr[i].fn.apply(evtArr[i].ctx, data);\n }\n\n return this;\n },\n\n off: function (name, callback) {\n var e = this.e || (this.e = {});\n var evts = e[name];\n var liveEvents = [];\n\n if (evts && callback) {\n for (var i = 0, len = evts.length; i < len; i++) {\n if (evts[i].fn !== callback && evts[i].fn._ !== callback)\n liveEvents.push(evts[i]);\n }\n }\n\n // Remove event from queue to prevent memory leak\n // Suggested by https://github.com/lazd\n // Ref: https://github.com/scottcorgan/tiny-emitter/commit/c6ebfaa9bc973b33d110a84a307742b7cf94c953#commitcomment-5024910\n\n (liveEvents.length)\n ? e[name] = liveEvents\n : delete e[name];\n\n return this;\n }\n};\n\nmodule.exports = E;\nmodule.exports.TinyEmitter = E;\n\n\n/***/ }),\n/* 2 */\n/***/ (function(module, exports, __webpack_require__) {\n\nvar is = __webpack_require__(3);\nvar delegate = __webpack_require__(4);\n\n/**\n * Validates all params and calls the right\n * listener function based on its target type.\n *\n * @param {String|HTMLElement|HTMLCollection|NodeList} target\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listen(target, type, callback) {\n if (!target && !type && !callback) {\n throw new Error('Missing required arguments');\n }\n\n if (!is.string(type)) {\n throw new TypeError('Second argument must be a String');\n }\n\n if (!is.fn(callback)) {\n throw new TypeError('Third argument must be a Function');\n }\n\n if (is.node(target)) {\n return listenNode(target, type, callback);\n }\n else if (is.nodeList(target)) {\n return listenNodeList(target, type, callback);\n }\n else if (is.string(target)) {\n return listenSelector(target, type, callback);\n }\n else {\n throw new TypeError('First argument must be a String, HTMLElement, HTMLCollection, or NodeList');\n }\n}\n\n/**\n * Adds an event listener to a HTML element\n * and returns a remove listener function.\n *\n * @param {HTMLElement} node\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNode(node, type, callback) {\n node.addEventListener(type, callback);\n\n return {\n destroy: function() {\n node.removeEventListener(type, callback);\n }\n }\n}\n\n/**\n * Add an event listener to a list of HTML elements\n * and returns a remove listener function.\n *\n * @param {NodeList|HTMLCollection} nodeList\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNodeList(nodeList, type, callback) {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.addEventListener(type, callback);\n });\n\n return {\n destroy: function() {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.removeEventListener(type, callback);\n });\n }\n }\n}\n\n/**\n * Add an event listener to a selector\n * and returns a remove listener function.\n *\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenSelector(selector, type, callback) {\n return delegate(document.body, selector, type, callback);\n}\n\nmodule.exports = listen;\n\n\n/***/ }),\n/* 3 */\n/***/ (function(module, exports) {\n\n/**\n * Check if argument is a HTML element.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.node = function(value) {\n return value !== undefined\n && value instanceof HTMLElement\n && value.nodeType === 1;\n};\n\n/**\n * Check if argument is a list of HTML elements.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.nodeList = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return value !== undefined\n && (type === '[object NodeList]' || type === '[object HTMLCollection]')\n && ('length' in value)\n && (value.length === 0 || exports.node(value[0]));\n};\n\n/**\n * Check if argument is a string.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.string = function(value) {\n return typeof value === 'string'\n || value instanceof String;\n};\n\n/**\n * Check if argument is a function.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.fn = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return type === '[object Function]';\n};\n\n\n/***/ }),\n/* 4 */\n/***/ (function(module, exports, __webpack_require__) {\n\nvar closest = __webpack_require__(5);\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction _delegate(element, selector, type, callback, useCapture) {\n var listenerFn = listener.apply(this, arguments);\n\n element.addEventListener(type, listenerFn, useCapture);\n\n return {\n destroy: function() {\n element.removeEventListener(type, listenerFn, useCapture);\n }\n }\n}\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element|String|Array} [elements]\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction delegate(elements, selector, type, callback, useCapture) {\n // Handle the regular Element usage\n if (typeof elements.addEventListener === 'function') {\n return _delegate.apply(null, arguments);\n }\n\n // Handle Element-less usage, it defaults to global delegation\n if (typeof type === 'function') {\n // Use `document` as the first parameter, then apply arguments\n // This is a short way to .unshift `arguments` without running into deoptimizations\n return _delegate.bind(null, document).apply(null, arguments);\n }\n\n // Handle Selector-based usage\n if (typeof elements === 'string') {\n elements = document.querySelectorAll(elements);\n }\n\n // Handle Array-like based usage\n return Array.prototype.map.call(elements, function (element) {\n return _delegate(element, selector, type, callback, useCapture);\n });\n}\n\n/**\n * Finds closest match and invokes callback.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Function}\n */\nfunction listener(element, selector, type, callback) {\n return function(e) {\n e.delegateTarget = closest(e.target, selector);\n\n if (e.delegateTarget) {\n callback.call(element, e);\n }\n }\n}\n\nmodule.exports = delegate;\n\n\n/***/ }),\n/* 5 */\n/***/ (function(module, exports) {\n\nvar DOCUMENT_NODE_TYPE = 9;\n\n/**\n * A polyfill for Element.matches()\n */\nif (typeof Element !== 'undefined' && !Element.prototype.matches) {\n var proto = Element.prototype;\n\n proto.matches = proto.matchesSelector ||\n proto.mozMatchesSelector ||\n proto.msMatchesSelector ||\n proto.oMatchesSelector ||\n proto.webkitMatchesSelector;\n}\n\n/**\n * Finds the closest parent that matches a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @return {Function}\n */\nfunction closest (element, selector) {\n while (element && element.nodeType !== DOCUMENT_NODE_TYPE) {\n if (typeof element.matches === 'function' &&\n element.matches(selector)) {\n return element;\n }\n element = element.parentNode;\n }\n}\n\nmodule.exports = closest;\n\n\n/***/ }),\n/* 6 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n__webpack_require__.r(__webpack_exports__);\n\n// EXTERNAL MODULE: ./node_modules/select/src/select.js\nvar src_select = __webpack_require__(0);\nvar select_default = /*#__PURE__*/__webpack_require__.n(src_select);\n\n// CONCATENATED MODULE: ./src/clipboard-action.js\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\n/**\n * Inner class which performs selection from either `text` or `target`\n * properties and then executes copy or cut operations.\n */\n\nvar clipboard_action_ClipboardAction = function () {\n /**\n * @param {Object} options\n */\n function ClipboardAction(options) {\n _classCallCheck(this, ClipboardAction);\n\n this.resolveOptions(options);\n this.initSelection();\n }\n\n /**\n * Defines base properties passed from constructor.\n * @param {Object} options\n */\n\n\n _createClass(ClipboardAction, [{\n key: 'resolveOptions',\n value: function resolveOptions() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n this.action = options.action;\n this.container = options.container;\n this.emitter = options.emitter;\n this.target = options.target;\n this.text = options.text;\n this.trigger = options.trigger;\n\n this.selectedText = '';\n }\n\n /**\n * Decides which selection strategy is going to be applied based\n * on the existence of `text` and `target` properties.\n */\n\n }, {\n key: 'initSelection',\n value: function initSelection() {\n if (this.text) {\n this.selectFake();\n } else if (this.target) {\n this.selectTarget();\n }\n }\n\n /**\n * Creates a fake textarea element, sets its value from `text` property,\n * and makes a selection on it.\n */\n\n }, {\n key: 'selectFake',\n value: function selectFake() {\n var _this = this;\n\n var isRTL = document.documentElement.getAttribute('dir') == 'rtl';\n\n this.removeFake();\n\n this.fakeHandlerCallback = function () {\n return _this.removeFake();\n };\n this.fakeHandler = this.container.addEventListener('click', this.fakeHandlerCallback) || true;\n\n this.fakeElem = document.createElement('textarea');\n // Prevent zooming on iOS\n this.fakeElem.style.fontSize = '12pt';\n // Reset box model\n this.fakeElem.style.border = '0';\n this.fakeElem.style.padding = '0';\n this.fakeElem.style.margin = '0';\n // Move element out of screen horizontally\n this.fakeElem.style.position = 'absolute';\n this.fakeElem.style[isRTL ? 'right' : 'left'] = '-9999px';\n // Move element to the same position vertically\n var yPosition = window.pageYOffset || document.documentElement.scrollTop;\n this.fakeElem.style.top = yPosition + 'px';\n\n this.fakeElem.setAttribute('readonly', '');\n this.fakeElem.value = this.text;\n\n this.container.appendChild(this.fakeElem);\n\n this.selectedText = select_default()(this.fakeElem);\n this.copyText();\n }\n\n /**\n * Only removes the fake element after another click event, that way\n * a user can hit `Ctrl+C` to copy because selection still exists.\n */\n\n }, {\n key: 'removeFake',\n value: function removeFake() {\n if (this.fakeHandler) {\n this.container.removeEventListener('click', this.fakeHandlerCallback);\n this.fakeHandler = null;\n this.fakeHandlerCallback = null;\n }\n\n if (this.fakeElem) {\n this.container.removeChild(this.fakeElem);\n this.fakeElem = null;\n }\n }\n\n /**\n * Selects the content from element passed on `target` property.\n */\n\n }, {\n key: 'selectTarget',\n value: function selectTarget() {\n this.selectedText = select_default()(this.target);\n this.copyText();\n }\n\n /**\n * Executes the copy operation based on the current selection.\n */\n\n }, {\n key: 'copyText',\n value: function copyText() {\n var succeeded = void 0;\n\n try {\n succeeded = document.execCommand(this.action);\n } catch (err) {\n succeeded = false;\n }\n\n this.handleResult(succeeded);\n }\n\n /**\n * Fires an event based on the copy operation result.\n * @param {Boolean} succeeded\n */\n\n }, {\n key: 'handleResult',\n value: function handleResult(succeeded) {\n this.emitter.emit(succeeded ? 'success' : 'error', {\n action: this.action,\n text: this.selectedText,\n trigger: this.trigger,\n clearSelection: this.clearSelection.bind(this)\n });\n }\n\n /**\n * Moves focus away from `target` and back to the trigger, removes current selection.\n */\n\n }, {\n key: 'clearSelection',\n value: function clearSelection() {\n if (this.trigger) {\n this.trigger.focus();\n }\n document.activeElement.blur();\n window.getSelection().removeAllRanges();\n }\n\n /**\n * Sets the `action` to be performed which can be either 'copy' or 'cut'.\n * @param {String} action\n */\n\n }, {\n key: 'destroy',\n\n\n /**\n * Destroy lifecycle.\n */\n value: function destroy() {\n this.removeFake();\n }\n }, {\n key: 'action',\n set: function set() {\n var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'copy';\n\n this._action = action;\n\n if (this._action !== 'copy' && this._action !== 'cut') {\n throw new Error('Invalid \"action\" value, use either \"copy\" or \"cut\"');\n }\n }\n\n /**\n * Gets the `action` property.\n * @return {String}\n */\n ,\n get: function get() {\n return this._action;\n }\n\n /**\n * Sets the `target` property using an element\n * that will be have its content copied.\n * @param {Element} target\n */\n\n }, {\n key: 'target',\n set: function set(target) {\n if (target !== undefined) {\n if (target && (typeof target === 'undefined' ? 'undefined' : _typeof(target)) === 'object' && target.nodeType === 1) {\n if (this.action === 'copy' && target.hasAttribute('disabled')) {\n throw new Error('Invalid \"target\" attribute. Please use \"readonly\" instead of \"disabled\" attribute');\n }\n\n if (this.action === 'cut' && (target.hasAttribute('readonly') || target.hasAttribute('disabled'))) {\n throw new Error('Invalid \"target\" attribute. You can\\'t cut text from elements with \"readonly\" or \"disabled\" attributes');\n }\n\n this._target = target;\n } else {\n throw new Error('Invalid \"target\" value, use a valid Element');\n }\n }\n }\n\n /**\n * Gets the `target` property.\n * @return {String|HTMLElement}\n */\n ,\n get: function get() {\n return this._target;\n }\n }]);\n\n return ClipboardAction;\n}();\n\n/* harmony default export */ var clipboard_action = (clipboard_action_ClipboardAction);\n// EXTERNAL MODULE: ./node_modules/tiny-emitter/index.js\nvar tiny_emitter = __webpack_require__(1);\nvar tiny_emitter_default = /*#__PURE__*/__webpack_require__.n(tiny_emitter);\n\n// EXTERNAL MODULE: ./node_modules/good-listener/src/listen.js\nvar listen = __webpack_require__(2);\nvar listen_default = /*#__PURE__*/__webpack_require__.n(listen);\n\n// CONCATENATED MODULE: ./src/clipboard.js\nvar clipboard_typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar clipboard_createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction clipboard_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\n\n\n\n/**\n * Base class which takes one or more elements, adds event listeners to them,\n * and instantiates a new `ClipboardAction` on each click.\n */\n\nvar clipboard_Clipboard = function (_Emitter) {\n _inherits(Clipboard, _Emitter);\n\n /**\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n * @param {Object} options\n */\n function Clipboard(trigger, options) {\n clipboard_classCallCheck(this, Clipboard);\n\n var _this = _possibleConstructorReturn(this, (Clipboard.__proto__ || Object.getPrototypeOf(Clipboard)).call(this));\n\n _this.resolveOptions(options);\n _this.listenClick(trigger);\n return _this;\n }\n\n /**\n * Defines if attributes would be resolved using internal setter functions\n * or custom functions that were passed in the constructor.\n * @param {Object} options\n */\n\n\n clipboard_createClass(Clipboard, [{\n key: 'resolveOptions',\n value: function resolveOptions() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n this.action = typeof options.action === 'function' ? options.action : this.defaultAction;\n this.target = typeof options.target === 'function' ? options.target : this.defaultTarget;\n this.text = typeof options.text === 'function' ? options.text : this.defaultText;\n this.container = clipboard_typeof(options.container) === 'object' ? options.container : document.body;\n }\n\n /**\n * Adds a click event listener to the passed trigger.\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n */\n\n }, {\n key: 'listenClick',\n value: function listenClick(trigger) {\n var _this2 = this;\n\n this.listener = listen_default()(trigger, 'click', function (e) {\n return _this2.onClick(e);\n });\n }\n\n /**\n * Defines a new `ClipboardAction` on each click event.\n * @param {Event} e\n */\n\n }, {\n key: 'onClick',\n value: function onClick(e) {\n var trigger = e.delegateTarget || e.currentTarget;\n\n if (this.clipboardAction) {\n this.clipboardAction = null;\n }\n\n this.clipboardAction = new clipboard_action({\n action: this.action(trigger),\n target: this.target(trigger),\n text: this.text(trigger),\n container: this.container,\n trigger: trigger,\n emitter: this\n });\n }\n\n /**\n * Default `action` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: 'defaultAction',\n value: function defaultAction(trigger) {\n return getAttributeValue('action', trigger);\n }\n\n /**\n * Default `target` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: 'defaultTarget',\n value: function defaultTarget(trigger) {\n var selector = getAttributeValue('target', trigger);\n\n if (selector) {\n return document.querySelector(selector);\n }\n }\n\n /**\n * Returns the support of the given action, or all actions if no action is\n * given.\n * @param {String} [action]\n */\n\n }, {\n key: 'defaultText',\n\n\n /**\n * Default `text` lookup function.\n * @param {Element} trigger\n */\n value: function defaultText(trigger) {\n return getAttributeValue('text', trigger);\n }\n\n /**\n * Destroy lifecycle.\n */\n\n }, {\n key: 'destroy',\n value: function destroy() {\n this.listener.destroy();\n\n if (this.clipboardAction) {\n this.clipboardAction.destroy();\n this.clipboardAction = null;\n }\n }\n }], [{\n key: 'isSupported',\n value: function isSupported() {\n var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ['copy', 'cut'];\n\n var actions = typeof action === 'string' ? [action] : action;\n var support = !!document.queryCommandSupported;\n\n actions.forEach(function (action) {\n support = support && !!document.queryCommandSupported(action);\n });\n\n return support;\n }\n }]);\n\n return Clipboard;\n}(tiny_emitter_default.a);\n\n/**\n * Helper function to retrieve attribute value.\n * @param {String} suffix\n * @param {Element} element\n */\n\n\nfunction getAttributeValue(suffix, element) {\n var attribute = 'data-clipboard-' + suffix;\n\n if (!element.hasAttribute(attribute)) {\n return;\n }\n\n return element.getAttribute(attribute);\n}\n\n/* harmony default export */ var clipboard = __webpack_exports__[\"default\"] = (clipboard_Clipboard);\n\n/***/ })\n/******/ ])[\"default\"];\n});","import { __extends } from \"tslib\";\nimport { isScheduler } from '../util/isScheduler';\nimport { isArray } from '../util/isArray';\nimport { OuterSubscriber } from '../OuterSubscriber';\nimport { subscribeToResult } from '../util/subscribeToResult';\nimport { fromArray } from './fromArray';\nvar NONE = {};\nexport function combineLatest() {\n var observables = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n observables[_i] = arguments[_i];\n }\n var resultSelector = undefined;\n var scheduler = undefined;\n if (isScheduler(observables[observables.length - 1])) {\n scheduler = observables.pop();\n }\n if (typeof observables[observables.length - 1] === 'function') {\n resultSelector = observables.pop();\n }\n if (observables.length === 1 && isArray(observables[0])) {\n observables = observables[0];\n }\n return fromArray(observables, scheduler).lift(new CombineLatestOperator(resultSelector));\n}\nvar CombineLatestOperator = (function () {\n function CombineLatestOperator(resultSelector) {\n this.resultSelector = resultSelector;\n }\n CombineLatestOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new CombineLatestSubscriber(subscriber, this.resultSelector));\n };\n return CombineLatestOperator;\n}());\nexport { CombineLatestOperator };\nvar CombineLatestSubscriber = (function (_super) {\n __extends(CombineLatestSubscriber, _super);\n function CombineLatestSubscriber(destination, resultSelector) {\n var _this = _super.call(this, destination) || this;\n _this.resultSelector = resultSelector;\n _this.active = 0;\n _this.values = [];\n _this.observables = [];\n return _this;\n }\n CombineLatestSubscriber.prototype._next = function (observable) {\n this.values.push(NONE);\n this.observables.push(observable);\n };\n CombineLatestSubscriber.prototype._complete = function () {\n var observables = this.observables;\n var len = observables.length;\n if (len === 0) {\n this.destination.complete();\n }\n else {\n this.active = len;\n this.toRespond = len;\n for (var i = 0; i < len; i++) {\n var observable = observables[i];\n this.add(subscribeToResult(this, observable, observable, i));\n }\n }\n };\n CombineLatestSubscriber.prototype.notifyComplete = function (unused) {\n if ((this.active -= 1) === 0) {\n this.destination.complete();\n }\n };\n CombineLatestSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {\n var values = this.values;\n var oldVal = values[outerIndex];\n var toRespond = !this.toRespond\n ? 0\n : oldVal === NONE ? --this.toRespond : this.toRespond;\n values[outerIndex] = innerValue;\n if (toRespond === 0) {\n if (this.resultSelector) {\n this._tryResultSelector(values);\n }\n else {\n this.destination.next(values.slice());\n }\n }\n };\n CombineLatestSubscriber.prototype._tryResultSelector = function (values) {\n var result;\n try {\n result = this.resultSelector.apply(this, values);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n this.destination.next(result);\n };\n return CombineLatestSubscriber;\n}(OuterSubscriber));\nexport { CombineLatestSubscriber };\n//# sourceMappingURL=combineLatest.js.map","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/**\r\n * A collection of shims that provide minimal functionality of the ES6 collections.\r\n *\r\n * These implementations are not meant to be used outside of the ResizeObserver\r\n * modules as they cover only a limited range of use cases.\r\n */\r\n/* eslint-disable require-jsdoc, valid-jsdoc */\r\nvar MapShim = (function () {\r\n if (typeof Map !== 'undefined') {\r\n return Map;\r\n }\r\n /**\r\n * Returns index in provided array that matches the specified key.\r\n *\r\n * @param {Array} arr\r\n * @param {*} key\r\n * @returns {number}\r\n */\r\n function getIndex(arr, key) {\r\n var result = -1;\r\n arr.some(function (entry, index) {\r\n if (entry[0] === key) {\r\n result = index;\r\n return true;\r\n }\r\n return false;\r\n });\r\n return result;\r\n }\r\n return /** @class */ (function () {\r\n function class_1() {\r\n this.__entries__ = [];\r\n }\r\n Object.defineProperty(class_1.prototype, \"size\", {\r\n /**\r\n * @returns {boolean}\r\n */\r\n get: function () {\r\n return this.__entries__.length;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n /**\r\n * @param {*} key\r\n * @returns {*}\r\n */\r\n class_1.prototype.get = function (key) {\r\n var index = getIndex(this.__entries__, key);\r\n var entry = this.__entries__[index];\r\n return entry && entry[1];\r\n };\r\n /**\r\n * @param {*} key\r\n * @param {*} value\r\n * @returns {void}\r\n */\r\n class_1.prototype.set = function (key, value) {\r\n var index = getIndex(this.__entries__, key);\r\n if (~index) {\r\n this.__entries__[index][1] = value;\r\n }\r\n else {\r\n this.__entries__.push([key, value]);\r\n }\r\n };\r\n /**\r\n * @param {*} key\r\n * @returns {void}\r\n */\r\n class_1.prototype.delete = function (key) {\r\n var entries = this.__entries__;\r\n var index = getIndex(entries, key);\r\n if (~index) {\r\n entries.splice(index, 1);\r\n }\r\n };\r\n /**\r\n * @param {*} key\r\n * @returns {void}\r\n */\r\n class_1.prototype.has = function (key) {\r\n return !!~getIndex(this.__entries__, key);\r\n };\r\n /**\r\n * @returns {void}\r\n */\r\n class_1.prototype.clear = function () {\r\n this.__entries__.splice(0);\r\n };\r\n /**\r\n * @param {Function} callback\r\n * @param {*} [ctx=null]\r\n * @returns {void}\r\n */\r\n class_1.prototype.forEach = function (callback, ctx) {\r\n if (ctx === void 0) { ctx = null; }\r\n for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {\r\n var entry = _a[_i];\r\n callback.call(ctx, entry[1], entry[0]);\r\n }\r\n };\r\n return class_1;\r\n }());\r\n})();\n\n/**\r\n * Detects whether window and document objects are available in current environment.\r\n */\r\nvar isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;\n\n// Returns global object of a current environment.\r\nvar global$1 = (function () {\r\n if (typeof global !== 'undefined' && global.Math === Math) {\r\n return global;\r\n }\r\n if (typeof self !== 'undefined' && self.Math === Math) {\r\n return self;\r\n }\r\n if (typeof window !== 'undefined' && window.Math === Math) {\r\n return window;\r\n }\r\n // eslint-disable-next-line no-new-func\r\n return Function('return this')();\r\n})();\n\n/**\r\n * A shim for the requestAnimationFrame which falls back to the setTimeout if\r\n * first one is not supported.\r\n *\r\n * @returns {number} Requests' identifier.\r\n */\r\nvar requestAnimationFrame$1 = (function () {\r\n if (typeof requestAnimationFrame === 'function') {\r\n // It's required to use a bounded function because IE sometimes throws\r\n // an \"Invalid calling object\" error if rAF is invoked without the global\r\n // object on the left hand side.\r\n return requestAnimationFrame.bind(global$1);\r\n }\r\n return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };\r\n})();\n\n// Defines minimum timeout before adding a trailing call.\r\nvar trailingTimeout = 2;\r\n/**\r\n * Creates a wrapper function which ensures that provided callback will be\r\n * invoked only once during the specified delay period.\r\n *\r\n * @param {Function} callback - Function to be invoked after the delay period.\r\n * @param {number} delay - Delay after which to invoke callback.\r\n * @returns {Function}\r\n */\r\nfunction throttle (callback, delay) {\r\n var leadingCall = false, trailingCall = false, lastCallTime = 0;\r\n /**\r\n * Invokes the original callback function and schedules new invocation if\r\n * the \"proxy\" was called during current request.\r\n *\r\n * @returns {void}\r\n */\r\n function resolvePending() {\r\n if (leadingCall) {\r\n leadingCall = false;\r\n callback();\r\n }\r\n if (trailingCall) {\r\n proxy();\r\n }\r\n }\r\n /**\r\n * Callback invoked after the specified delay. It will further postpone\r\n * invocation of the original function delegating it to the\r\n * requestAnimationFrame.\r\n *\r\n * @returns {void}\r\n */\r\n function timeoutCallback() {\r\n requestAnimationFrame$1(resolvePending);\r\n }\r\n /**\r\n * Schedules invocation of the original function.\r\n *\r\n * @returns {void}\r\n */\r\n function proxy() {\r\n var timeStamp = Date.now();\r\n if (leadingCall) {\r\n // Reject immediately following calls.\r\n if (timeStamp - lastCallTime < trailingTimeout) {\r\n return;\r\n }\r\n // Schedule new call to be in invoked when the pending one is resolved.\r\n // This is important for \"transitions\" which never actually start\r\n // immediately so there is a chance that we might miss one if change\r\n // happens amids the pending invocation.\r\n trailingCall = true;\r\n }\r\n else {\r\n leadingCall = true;\r\n trailingCall = false;\r\n setTimeout(timeoutCallback, delay);\r\n }\r\n lastCallTime = timeStamp;\r\n }\r\n return proxy;\r\n}\n\n// Minimum delay before invoking the update of observers.\r\nvar REFRESH_DELAY = 20;\r\n// A list of substrings of CSS properties used to find transition events that\r\n// might affect dimensions of observed elements.\r\nvar transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];\r\n// Check if MutationObserver is available.\r\nvar mutationObserverSupported = typeof MutationObserver !== 'undefined';\r\n/**\r\n * Singleton controller class which handles updates of ResizeObserver instances.\r\n */\r\nvar ResizeObserverController = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of ResizeObserverController.\r\n *\r\n * @private\r\n */\r\n function ResizeObserverController() {\r\n /**\r\n * Indicates whether DOM listeners have been added.\r\n *\r\n * @private {boolean}\r\n */\r\n this.connected_ = false;\r\n /**\r\n * Tells that controller has subscribed for Mutation Events.\r\n *\r\n * @private {boolean}\r\n */\r\n this.mutationEventsAdded_ = false;\r\n /**\r\n * Keeps reference to the instance of MutationObserver.\r\n *\r\n * @private {MutationObserver}\r\n */\r\n this.mutationsObserver_ = null;\r\n /**\r\n * A list of connected observers.\r\n *\r\n * @private {Array}\r\n */\r\n this.observers_ = [];\r\n this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);\r\n this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);\r\n }\r\n /**\r\n * Adds observer to observers list.\r\n *\r\n * @param {ResizeObserverSPI} observer - Observer to be added.\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.addObserver = function (observer) {\r\n if (!~this.observers_.indexOf(observer)) {\r\n this.observers_.push(observer);\r\n }\r\n // Add listeners if they haven't been added yet.\r\n if (!this.connected_) {\r\n this.connect_();\r\n }\r\n };\r\n /**\r\n * Removes observer from observers list.\r\n *\r\n * @param {ResizeObserverSPI} observer - Observer to be removed.\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.removeObserver = function (observer) {\r\n var observers = this.observers_;\r\n var index = observers.indexOf(observer);\r\n // Remove observer if it's present in registry.\r\n if (~index) {\r\n observers.splice(index, 1);\r\n }\r\n // Remove listeners if controller has no connected observers.\r\n if (!observers.length && this.connected_) {\r\n this.disconnect_();\r\n }\r\n };\r\n /**\r\n * Invokes the update of observers. It will continue running updates insofar\r\n * it detects changes.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.refresh = function () {\r\n var changesDetected = this.updateObservers_();\r\n // Continue running updates if changes have been detected as there might\r\n // be future ones caused by CSS transitions.\r\n if (changesDetected) {\r\n this.refresh();\r\n }\r\n };\r\n /**\r\n * Updates every observer from observers list and notifies them of queued\r\n * entries.\r\n *\r\n * @private\r\n * @returns {boolean} Returns \"true\" if any observer has detected changes in\r\n * dimensions of it's elements.\r\n */\r\n ResizeObserverController.prototype.updateObservers_ = function () {\r\n // Collect observers that have active observations.\r\n var activeObservers = this.observers_.filter(function (observer) {\r\n return observer.gatherActive(), observer.hasActive();\r\n });\r\n // Deliver notifications in a separate cycle in order to avoid any\r\n // collisions between observers, e.g. when multiple instances of\r\n // ResizeObserver are tracking the same element and the callback of one\r\n // of them changes content dimensions of the observed target. Sometimes\r\n // this may result in notifications being blocked for the rest of observers.\r\n activeObservers.forEach(function (observer) { return observer.broadcastActive(); });\r\n return activeObservers.length > 0;\r\n };\r\n /**\r\n * Initializes DOM listeners.\r\n *\r\n * @private\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.connect_ = function () {\r\n // Do nothing if running in a non-browser environment or if listeners\r\n // have been already added.\r\n if (!isBrowser || this.connected_) {\r\n return;\r\n }\r\n // Subscription to the \"Transitionend\" event is used as a workaround for\r\n // delayed transitions. This way it's possible to capture at least the\r\n // final state of an element.\r\n document.addEventListener('transitionend', this.onTransitionEnd_);\r\n window.addEventListener('resize', this.refresh);\r\n if (mutationObserverSupported) {\r\n this.mutationsObserver_ = new MutationObserver(this.refresh);\r\n this.mutationsObserver_.observe(document, {\r\n attributes: true,\r\n childList: true,\r\n characterData: true,\r\n subtree: true\r\n });\r\n }\r\n else {\r\n document.addEventListener('DOMSubtreeModified', this.refresh);\r\n this.mutationEventsAdded_ = true;\r\n }\r\n this.connected_ = true;\r\n };\r\n /**\r\n * Removes DOM listeners.\r\n *\r\n * @private\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.disconnect_ = function () {\r\n // Do nothing if running in a non-browser environment or if listeners\r\n // have been already removed.\r\n if (!isBrowser || !this.connected_) {\r\n return;\r\n }\r\n document.removeEventListener('transitionend', this.onTransitionEnd_);\r\n window.removeEventListener('resize', this.refresh);\r\n if (this.mutationsObserver_) {\r\n this.mutationsObserver_.disconnect();\r\n }\r\n if (this.mutationEventsAdded_) {\r\n document.removeEventListener('DOMSubtreeModified', this.refresh);\r\n }\r\n this.mutationsObserver_ = null;\r\n this.mutationEventsAdded_ = false;\r\n this.connected_ = false;\r\n };\r\n /**\r\n * \"Transitionend\" event handler.\r\n *\r\n * @private\r\n * @param {TransitionEvent} event\r\n * @returns {void}\r\n */\r\n ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {\r\n var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;\r\n // Detect whether transition may affect dimensions of an element.\r\n var isReflowProperty = transitionKeys.some(function (key) {\r\n return !!~propertyName.indexOf(key);\r\n });\r\n if (isReflowProperty) {\r\n this.refresh();\r\n }\r\n };\r\n /**\r\n * Returns instance of the ResizeObserverController.\r\n *\r\n * @returns {ResizeObserverController}\r\n */\r\n ResizeObserverController.getInstance = function () {\r\n if (!this.instance_) {\r\n this.instance_ = new ResizeObserverController();\r\n }\r\n return this.instance_;\r\n };\r\n /**\r\n * Holds reference to the controller's instance.\r\n *\r\n * @private {ResizeObserverController}\r\n */\r\n ResizeObserverController.instance_ = null;\r\n return ResizeObserverController;\r\n}());\n\n/**\r\n * Defines non-writable/enumerable properties of the provided target object.\r\n *\r\n * @param {Object} target - Object for which to define properties.\r\n * @param {Object} props - Properties to be defined.\r\n * @returns {Object} Target object.\r\n */\r\nvar defineConfigurable = (function (target, props) {\r\n for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {\r\n var key = _a[_i];\r\n Object.defineProperty(target, key, {\r\n value: props[key],\r\n enumerable: false,\r\n writable: false,\r\n configurable: true\r\n });\r\n }\r\n return target;\r\n});\n\n/**\r\n * Returns the global object associated with provided element.\r\n *\r\n * @param {Object} target\r\n * @returns {Object}\r\n */\r\nvar getWindowOf = (function (target) {\r\n // Assume that the element is an instance of Node, which means that it\r\n // has the \"ownerDocument\" property from which we can retrieve a\r\n // corresponding global object.\r\n var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;\r\n // Return the local global object if it's not possible extract one from\r\n // provided element.\r\n return ownerGlobal || global$1;\r\n});\n\n// Placeholder of an empty content rectangle.\r\nvar emptyRect = createRectInit(0, 0, 0, 0);\r\n/**\r\n * Converts provided string to a number.\r\n *\r\n * @param {number|string} value\r\n * @returns {number}\r\n */\r\nfunction toFloat(value) {\r\n return parseFloat(value) || 0;\r\n}\r\n/**\r\n * Extracts borders size from provided styles.\r\n *\r\n * @param {CSSStyleDeclaration} styles\r\n * @param {...string} positions - Borders positions (top, right, ...)\r\n * @returns {number}\r\n */\r\nfunction getBordersSize(styles) {\r\n var positions = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n positions[_i - 1] = arguments[_i];\r\n }\r\n return positions.reduce(function (size, position) {\r\n var value = styles['border-' + position + '-width'];\r\n return size + toFloat(value);\r\n }, 0);\r\n}\r\n/**\r\n * Extracts paddings sizes from provided styles.\r\n *\r\n * @param {CSSStyleDeclaration} styles\r\n * @returns {Object} Paddings box.\r\n */\r\nfunction getPaddings(styles) {\r\n var positions = ['top', 'right', 'bottom', 'left'];\r\n var paddings = {};\r\n for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {\r\n var position = positions_1[_i];\r\n var value = styles['padding-' + position];\r\n paddings[position] = toFloat(value);\r\n }\r\n return paddings;\r\n}\r\n/**\r\n * Calculates content rectangle of provided SVG element.\r\n *\r\n * @param {SVGGraphicsElement} target - Element content rectangle of which needs\r\n * to be calculated.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction getSVGContentRect(target) {\r\n var bbox = target.getBBox();\r\n return createRectInit(0, 0, bbox.width, bbox.height);\r\n}\r\n/**\r\n * Calculates content rectangle of provided HTMLElement.\r\n *\r\n * @param {HTMLElement} target - Element for which to calculate the content rectangle.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction getHTMLElementContentRect(target) {\r\n // Client width & height properties can't be\r\n // used exclusively as they provide rounded values.\r\n var clientWidth = target.clientWidth, clientHeight = target.clientHeight;\r\n // By this condition we can catch all non-replaced inline, hidden and\r\n // detached elements. Though elements with width & height properties less\r\n // than 0.5 will be discarded as well.\r\n //\r\n // Without it we would need to implement separate methods for each of\r\n // those cases and it's not possible to perform a precise and performance\r\n // effective test for hidden elements. E.g. even jQuery's ':visible' filter\r\n // gives wrong results for elements with width & height less than 0.5.\r\n if (!clientWidth && !clientHeight) {\r\n return emptyRect;\r\n }\r\n var styles = getWindowOf(target).getComputedStyle(target);\r\n var paddings = getPaddings(styles);\r\n var horizPad = paddings.left + paddings.right;\r\n var vertPad = paddings.top + paddings.bottom;\r\n // Computed styles of width & height are being used because they are the\r\n // only dimensions available to JS that contain non-rounded values. It could\r\n // be possible to utilize the getBoundingClientRect if only it's data wasn't\r\n // affected by CSS transformations let alone paddings, borders and scroll bars.\r\n var width = toFloat(styles.width), height = toFloat(styles.height);\r\n // Width & height include paddings and borders when the 'border-box' box\r\n // model is applied (except for IE).\r\n if (styles.boxSizing === 'border-box') {\r\n // Following conditions are required to handle Internet Explorer which\r\n // doesn't include paddings and borders to computed CSS dimensions.\r\n //\r\n // We can say that if CSS dimensions + paddings are equal to the \"client\"\r\n // properties then it's either IE, and thus we don't need to subtract\r\n // anything, or an element merely doesn't have paddings/borders styles.\r\n if (Math.round(width + horizPad) !== clientWidth) {\r\n width -= getBordersSize(styles, 'left', 'right') + horizPad;\r\n }\r\n if (Math.round(height + vertPad) !== clientHeight) {\r\n height -= getBordersSize(styles, 'top', 'bottom') + vertPad;\r\n }\r\n }\r\n // Following steps can't be applied to the document's root element as its\r\n // client[Width/Height] properties represent viewport area of the window.\r\n // Besides, it's as well not necessary as the itself neither has\r\n // rendered scroll bars nor it can be clipped.\r\n if (!isDocumentElement(target)) {\r\n // In some browsers (only in Firefox, actually) CSS width & height\r\n // include scroll bars size which can be removed at this step as scroll\r\n // bars are the only difference between rounded dimensions + paddings\r\n // and \"client\" properties, though that is not always true in Chrome.\r\n var vertScrollbar = Math.round(width + horizPad) - clientWidth;\r\n var horizScrollbar = Math.round(height + vertPad) - clientHeight;\r\n // Chrome has a rather weird rounding of \"client\" properties.\r\n // E.g. for an element with content width of 314.2px it sometimes gives\r\n // the client width of 315px and for the width of 314.7px it may give\r\n // 314px. And it doesn't happen all the time. So just ignore this delta\r\n // as a non-relevant.\r\n if (Math.abs(vertScrollbar) !== 1) {\r\n width -= vertScrollbar;\r\n }\r\n if (Math.abs(horizScrollbar) !== 1) {\r\n height -= horizScrollbar;\r\n }\r\n }\r\n return createRectInit(paddings.left, paddings.top, width, height);\r\n}\r\n/**\r\n * Checks whether provided element is an instance of the SVGGraphicsElement.\r\n *\r\n * @param {Element} target - Element to be checked.\r\n * @returns {boolean}\r\n */\r\nvar isSVGGraphicsElement = (function () {\r\n // Some browsers, namely IE and Edge, don't have the SVGGraphicsElement\r\n // interface.\r\n if (typeof SVGGraphicsElement !== 'undefined') {\r\n return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };\r\n }\r\n // If it's so, then check that element is at least an instance of the\r\n // SVGElement and that it has the \"getBBox\" method.\r\n // eslint-disable-next-line no-extra-parens\r\n return function (target) { return (target instanceof getWindowOf(target).SVGElement &&\r\n typeof target.getBBox === 'function'); };\r\n})();\r\n/**\r\n * Checks whether provided element is a document element ().\r\n *\r\n * @param {Element} target - Element to be checked.\r\n * @returns {boolean}\r\n */\r\nfunction isDocumentElement(target) {\r\n return target === getWindowOf(target).document.documentElement;\r\n}\r\n/**\r\n * Calculates an appropriate content rectangle for provided html or svg element.\r\n *\r\n * @param {Element} target - Element content rectangle of which needs to be calculated.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction getContentRect(target) {\r\n if (!isBrowser) {\r\n return emptyRect;\r\n }\r\n if (isSVGGraphicsElement(target)) {\r\n return getSVGContentRect(target);\r\n }\r\n return getHTMLElementContentRect(target);\r\n}\r\n/**\r\n * Creates rectangle with an interface of the DOMRectReadOnly.\r\n * Spec: https://drafts.fxtf.org/geometry/#domrectreadonly\r\n *\r\n * @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.\r\n * @returns {DOMRectReadOnly}\r\n */\r\nfunction createReadOnlyRect(_a) {\r\n var x = _a.x, y = _a.y, width = _a.width, height = _a.height;\r\n // If DOMRectReadOnly is available use it as a prototype for the rectangle.\r\n var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;\r\n var rect = Object.create(Constr.prototype);\r\n // Rectangle's properties are not writable and non-enumerable.\r\n defineConfigurable(rect, {\r\n x: x, y: y, width: width, height: height,\r\n top: y,\r\n right: x + width,\r\n bottom: height + y,\r\n left: x\r\n });\r\n return rect;\r\n}\r\n/**\r\n * Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.\r\n * Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit\r\n *\r\n * @param {number} x - X coordinate.\r\n * @param {number} y - Y coordinate.\r\n * @param {number} width - Rectangle's width.\r\n * @param {number} height - Rectangle's height.\r\n * @returns {DOMRectInit}\r\n */\r\nfunction createRectInit(x, y, width, height) {\r\n return { x: x, y: y, width: width, height: height };\r\n}\n\n/**\r\n * Class that is responsible for computations of the content rectangle of\r\n * provided DOM element and for keeping track of it's changes.\r\n */\r\nvar ResizeObservation = /** @class */ (function () {\r\n /**\r\n * Creates an instance of ResizeObservation.\r\n *\r\n * @param {Element} target - Element to be observed.\r\n */\r\n function ResizeObservation(target) {\r\n /**\r\n * Broadcasted width of content rectangle.\r\n *\r\n * @type {number}\r\n */\r\n this.broadcastWidth = 0;\r\n /**\r\n * Broadcasted height of content rectangle.\r\n *\r\n * @type {number}\r\n */\r\n this.broadcastHeight = 0;\r\n /**\r\n * Reference to the last observed content rectangle.\r\n *\r\n * @private {DOMRectInit}\r\n */\r\n this.contentRect_ = createRectInit(0, 0, 0, 0);\r\n this.target = target;\r\n }\r\n /**\r\n * Updates content rectangle and tells whether it's width or height properties\r\n * have changed since the last broadcast.\r\n *\r\n * @returns {boolean}\r\n */\r\n ResizeObservation.prototype.isActive = function () {\r\n var rect = getContentRect(this.target);\r\n this.contentRect_ = rect;\r\n return (rect.width !== this.broadcastWidth ||\r\n rect.height !== this.broadcastHeight);\r\n };\r\n /**\r\n * Updates 'broadcastWidth' and 'broadcastHeight' properties with a data\r\n * from the corresponding properties of the last observed content rectangle.\r\n *\r\n * @returns {DOMRectInit} Last observed content rectangle.\r\n */\r\n ResizeObservation.prototype.broadcastRect = function () {\r\n var rect = this.contentRect_;\r\n this.broadcastWidth = rect.width;\r\n this.broadcastHeight = rect.height;\r\n return rect;\r\n };\r\n return ResizeObservation;\r\n}());\n\nvar ResizeObserverEntry = /** @class */ (function () {\r\n /**\r\n * Creates an instance of ResizeObserverEntry.\r\n *\r\n * @param {Element} target - Element that is being observed.\r\n * @param {DOMRectInit} rectInit - Data of the element's content rectangle.\r\n */\r\n function ResizeObserverEntry(target, rectInit) {\r\n var contentRect = createReadOnlyRect(rectInit);\r\n // According to the specification following properties are not writable\r\n // and are also not enumerable in the native implementation.\r\n //\r\n // Property accessors are not being used as they'd require to define a\r\n // private WeakMap storage which may cause memory leaks in browsers that\r\n // don't support this type of collections.\r\n defineConfigurable(this, { target: target, contentRect: contentRect });\r\n }\r\n return ResizeObserverEntry;\r\n}());\n\nvar ResizeObserverSPI = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of ResizeObserver.\r\n *\r\n * @param {ResizeObserverCallback} callback - Callback function that is invoked\r\n * when one of the observed elements changes it's content dimensions.\r\n * @param {ResizeObserverController} controller - Controller instance which\r\n * is responsible for the updates of observer.\r\n * @param {ResizeObserver} callbackCtx - Reference to the public\r\n * ResizeObserver instance which will be passed to callback function.\r\n */\r\n function ResizeObserverSPI(callback, controller, callbackCtx) {\r\n /**\r\n * Collection of resize observations that have detected changes in dimensions\r\n * of elements.\r\n *\r\n * @private {Array}\r\n */\r\n this.activeObservations_ = [];\r\n /**\r\n * Registry of the ResizeObservation instances.\r\n *\r\n * @private {Map}\r\n */\r\n this.observations_ = new MapShim();\r\n if (typeof callback !== 'function') {\r\n throw new TypeError('The callback provided as parameter 1 is not a function.');\r\n }\r\n this.callback_ = callback;\r\n this.controller_ = controller;\r\n this.callbackCtx_ = callbackCtx;\r\n }\r\n /**\r\n * Starts observing provided element.\r\n *\r\n * @param {Element} target - Element to be observed.\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.observe = function (target) {\r\n if (!arguments.length) {\r\n throw new TypeError('1 argument required, but only 0 present.');\r\n }\r\n // Do nothing if current environment doesn't have the Element interface.\r\n if (typeof Element === 'undefined' || !(Element instanceof Object)) {\r\n return;\r\n }\r\n if (!(target instanceof getWindowOf(target).Element)) {\r\n throw new TypeError('parameter 1 is not of type \"Element\".');\r\n }\r\n var observations = this.observations_;\r\n // Do nothing if element is already being observed.\r\n if (observations.has(target)) {\r\n return;\r\n }\r\n observations.set(target, new ResizeObservation(target));\r\n this.controller_.addObserver(this);\r\n // Force the update of observations.\r\n this.controller_.refresh();\r\n };\r\n /**\r\n * Stops observing provided element.\r\n *\r\n * @param {Element} target - Element to stop observing.\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.unobserve = function (target) {\r\n if (!arguments.length) {\r\n throw new TypeError('1 argument required, but only 0 present.');\r\n }\r\n // Do nothing if current environment doesn't have the Element interface.\r\n if (typeof Element === 'undefined' || !(Element instanceof Object)) {\r\n return;\r\n }\r\n if (!(target instanceof getWindowOf(target).Element)) {\r\n throw new TypeError('parameter 1 is not of type \"Element\".');\r\n }\r\n var observations = this.observations_;\r\n // Do nothing if element is not being observed.\r\n if (!observations.has(target)) {\r\n return;\r\n }\r\n observations.delete(target);\r\n if (!observations.size) {\r\n this.controller_.removeObserver(this);\r\n }\r\n };\r\n /**\r\n * Stops observing all elements.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.disconnect = function () {\r\n this.clearActive();\r\n this.observations_.clear();\r\n this.controller_.removeObserver(this);\r\n };\r\n /**\r\n * Collects observation instances the associated element of which has changed\r\n * it's content rectangle.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.gatherActive = function () {\r\n var _this = this;\r\n this.clearActive();\r\n this.observations_.forEach(function (observation) {\r\n if (observation.isActive()) {\r\n _this.activeObservations_.push(observation);\r\n }\r\n });\r\n };\r\n /**\r\n * Invokes initial callback function with a list of ResizeObserverEntry\r\n * instances collected from active resize observations.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.broadcastActive = function () {\r\n // Do nothing if observer doesn't have active observations.\r\n if (!this.hasActive()) {\r\n return;\r\n }\r\n var ctx = this.callbackCtx_;\r\n // Create ResizeObserverEntry instance for every active observation.\r\n var entries = this.activeObservations_.map(function (observation) {\r\n return new ResizeObserverEntry(observation.target, observation.broadcastRect());\r\n });\r\n this.callback_.call(ctx, entries, ctx);\r\n this.clearActive();\r\n };\r\n /**\r\n * Clears the collection of active observations.\r\n *\r\n * @returns {void}\r\n */\r\n ResizeObserverSPI.prototype.clearActive = function () {\r\n this.activeObservations_.splice(0);\r\n };\r\n /**\r\n * Tells whether observer has active observations.\r\n *\r\n * @returns {boolean}\r\n */\r\n ResizeObserverSPI.prototype.hasActive = function () {\r\n return this.activeObservations_.length > 0;\r\n };\r\n return ResizeObserverSPI;\r\n}());\n\n// Registry of internal observers. If WeakMap is not available use current shim\r\n// for the Map collection as it has all required methods and because WeakMap\r\n// can't be fully polyfilled anyway.\r\nvar observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();\r\n/**\r\n * ResizeObserver API. Encapsulates the ResizeObserver SPI implementation\r\n * exposing only those methods and properties that are defined in the spec.\r\n */\r\nvar ResizeObserver = /** @class */ (function () {\r\n /**\r\n * Creates a new instance of ResizeObserver.\r\n *\r\n * @param {ResizeObserverCallback} callback - Callback that is invoked when\r\n * dimensions of the observed elements change.\r\n */\r\n function ResizeObserver(callback) {\r\n if (!(this instanceof ResizeObserver)) {\r\n throw new TypeError('Cannot call a class as a function.');\r\n }\r\n if (!arguments.length) {\r\n throw new TypeError('1 argument required, but only 0 present.');\r\n }\r\n var controller = ResizeObserverController.getInstance();\r\n var observer = new ResizeObserverSPI(callback, controller, this);\r\n observers.set(this, observer);\r\n }\r\n return ResizeObserver;\r\n}());\r\n// Expose public methods of ResizeObserver.\r\n[\r\n 'observe',\r\n 'unobserve',\r\n 'disconnect'\r\n].forEach(function (method) {\r\n ResizeObserver.prototype[method] = function () {\r\n var _a;\r\n return (_a = observers.get(this))[method].apply(_a, arguments);\r\n };\r\n});\n\nvar index = (function () {\r\n // Export existing implementation if available.\r\n if (typeof global$1.ResizeObserver !== 'undefined') {\r\n return global$1.ResizeObserver;\r\n }\r\n return ResizeObserver;\r\n})();\n\nexport default index;\n","/*!\n * escape-html\n * Copyright(c) 2012-2013 TJ Holowaychuk\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n\n'use strict';\n\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = escapeHtml;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n var str = '' + string;\n var match = matchHtmlRegExp.exec(str);\n\n if (!match) {\n return str;\n }\n\n var escape;\n var html = '';\n var index = 0;\n var lastIndex = 0;\n\n for (index = match.index; index < str.length; index++) {\n switch (str.charCodeAt(index)) {\n case 34: // \"\n escape = '"';\n break;\n case 38: // &\n escape = '&';\n break;\n case 39: // '\n escape = ''';\n break;\n case 60: // <\n escape = '<';\n break;\n case 62: // >\n escape = '>';\n break;\n default:\n continue;\n }\n\n if (lastIndex !== index) {\n html += str.substring(lastIndex, index);\n }\n\n lastIndex = index + 1;\n html += escape;\n }\n\n return lastIndex !== index\n ? html + str.substring(lastIndex, index)\n : html;\n}\n","import { Observable } from '../Observable';\nimport { from } from './from';\nimport { EMPTY } from './empty';\nexport function defer(observableFactory) {\n return new Observable(function (subscriber) {\n var input;\n try {\n input = observableFactory();\n }\n catch (err) {\n subscriber.error(err);\n return undefined;\n }\n var source = input ? from(input) : EMPTY;\n return source.subscribe(subscriber);\n });\n}\n//# sourceMappingURL=defer.js.map","import { __extends } from \"tslib\";\nimport { AsyncAction } from './AsyncAction';\nvar QueueAction = (function (_super) {\n __extends(QueueAction, _super);\n function QueueAction(scheduler, work) {\n var _this = _super.call(this, scheduler, work) || this;\n _this.scheduler = scheduler;\n _this.work = work;\n return _this;\n }\n QueueAction.prototype.schedule = function (state, delay) {\n if (delay === void 0) { delay = 0; }\n if (delay > 0) {\n return _super.prototype.schedule.call(this, state, delay);\n }\n this.delay = delay;\n this.state = state;\n this.scheduler.flush(this);\n return this;\n };\n QueueAction.prototype.execute = function (state, delay) {\n return (delay > 0 || this.closed) ?\n _super.prototype.execute.call(this, state, delay) :\n this._execute(state, delay);\n };\n QueueAction.prototype.requestAsyncId = function (scheduler, id, delay) {\n if (delay === void 0) { delay = 0; }\n if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {\n return _super.prototype.requestAsyncId.call(this, scheduler, id, delay);\n }\n return scheduler.flush(this);\n };\n return QueueAction;\n}(AsyncAction));\nexport { QueueAction };\n//# sourceMappingURL=QueueAction.js.map","import { QueueAction } from './QueueAction';\nimport { QueueScheduler } from './QueueScheduler';\nexport var queue = new QueueScheduler(QueueAction);\n//# sourceMappingURL=queue.js.map","import { __extends } from \"tslib\";\nimport { AsyncScheduler } from './AsyncScheduler';\nvar QueueScheduler = (function (_super) {\n __extends(QueueScheduler, _super);\n function QueueScheduler() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n return QueueScheduler;\n}(AsyncScheduler));\nexport { QueueScheduler };\n//# sourceMappingURL=QueueScheduler.js.map","import { __extends } from \"tslib\";\nimport { Subject } from './Subject';\nimport { queue } from './scheduler/queue';\nimport { Subscription } from './Subscription';\nimport { ObserveOnSubscriber } from './operators/observeOn';\nimport { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';\nimport { SubjectSubscription } from './SubjectSubscription';\nvar ReplaySubject = (function (_super) {\n __extends(ReplaySubject, _super);\n function ReplaySubject(bufferSize, windowTime, scheduler) {\n if (bufferSize === void 0) { bufferSize = Number.POSITIVE_INFINITY; }\n if (windowTime === void 0) { windowTime = Number.POSITIVE_INFINITY; }\n var _this = _super.call(this) || this;\n _this.scheduler = scheduler;\n _this._events = [];\n _this._infiniteTimeWindow = false;\n _this._bufferSize = bufferSize < 1 ? 1 : bufferSize;\n _this._windowTime = windowTime < 1 ? 1 : windowTime;\n if (windowTime === Number.POSITIVE_INFINITY) {\n _this._infiniteTimeWindow = true;\n _this.next = _this.nextInfiniteTimeWindow;\n }\n else {\n _this.next = _this.nextTimeWindow;\n }\n return _this;\n }\n ReplaySubject.prototype.nextInfiniteTimeWindow = function (value) {\n var _events = this._events;\n _events.push(value);\n if (_events.length > this._bufferSize) {\n _events.shift();\n }\n _super.prototype.next.call(this, value);\n };\n ReplaySubject.prototype.nextTimeWindow = function (value) {\n this._events.push(new ReplayEvent(this._getNow(), value));\n this._trimBufferThenGetEvents();\n _super.prototype.next.call(this, value);\n };\n ReplaySubject.prototype._subscribe = function (subscriber) {\n var _infiniteTimeWindow = this._infiniteTimeWindow;\n var _events = _infiniteTimeWindow ? this._events : this._trimBufferThenGetEvents();\n var scheduler = this.scheduler;\n var len = _events.length;\n var subscription;\n if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n else if (this.isStopped || this.hasError) {\n subscription = Subscription.EMPTY;\n }\n else {\n this.observers.push(subscriber);\n subscription = new SubjectSubscription(this, subscriber);\n }\n if (scheduler) {\n subscriber.add(subscriber = new ObserveOnSubscriber(subscriber, scheduler));\n }\n if (_infiniteTimeWindow) {\n for (var i = 0; i < len && !subscriber.closed; i++) {\n subscriber.next(_events[i]);\n }\n }\n else {\n for (var i = 0; i < len && !subscriber.closed; i++) {\n subscriber.next(_events[i].value);\n }\n }\n if (this.hasError) {\n subscriber.error(this.thrownError);\n }\n else if (this.isStopped) {\n subscriber.complete();\n }\n return subscription;\n };\n ReplaySubject.prototype._getNow = function () {\n return (this.scheduler || queue).now();\n };\n ReplaySubject.prototype._trimBufferThenGetEvents = function () {\n var now = this._getNow();\n var _bufferSize = this._bufferSize;\n var _windowTime = this._windowTime;\n var _events = this._events;\n var eventsCount = _events.length;\n var spliceCount = 0;\n while (spliceCount < eventsCount) {\n if ((now - _events[spliceCount].time) < _windowTime) {\n break;\n }\n spliceCount++;\n }\n if (eventsCount > _bufferSize) {\n spliceCount = Math.max(spliceCount, eventsCount - _bufferSize);\n }\n if (spliceCount > 0) {\n _events.splice(0, spliceCount);\n }\n return _events;\n };\n return ReplaySubject;\n}(Subject));\nexport { ReplaySubject };\nvar ReplayEvent = (function () {\n function ReplayEvent(time, value) {\n this.time = time;\n this.value = value;\n }\n return ReplayEvent;\n}());\n//# sourceMappingURL=ReplaySubject.js.map","export default function _has(prop, obj) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}","import _has from \"./_has.js\";\nvar toString = Object.prototype.toString;\n\nvar _isArguments =\n/*#__PURE__*/\nfunction () {\n return toString.call(arguments) === '[object Arguments]' ? function _isArguments(x) {\n return toString.call(x) === '[object Arguments]';\n } : function _isArguments(x) {\n return _has('callee', x);\n };\n}();\n\nexport default _isArguments;","import _curry1 from \"./internal/_curry1.js\";\nimport _has from \"./internal/_has.js\";\nimport _isArguments from \"./internal/_isArguments.js\"; // cover IE < 9 keys issues\n\nvar hasEnumBug = !\n/*#__PURE__*/\n{\n toString: null\n}.propertyIsEnumerable('toString');\nvar nonEnumerableProps = ['constructor', 'valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; // Safari bug\n\nvar hasArgsEnumBug =\n/*#__PURE__*/\nfunction () {\n 'use strict';\n\n return arguments.propertyIsEnumerable('length');\n}();\n\nvar contains = function contains(list, item) {\n var idx = 0;\n\n while (idx < list.length) {\n if (list[idx] === item) {\n return true;\n }\n\n idx += 1;\n }\n\n return false;\n};\n/**\n * Returns a list containing the names of all the enumerable own properties of\n * the supplied object.\n * Note that the order of the output array is not guaranteed to be consistent\n * across different JS platforms.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category Object\n * @sig {k: v} -> [k]\n * @param {Object} obj The object to extract properties from\n * @return {Array} An array of the object's own properties.\n * @see R.keysIn, R.values\n * @example\n *\n * R.keys({a: 1, b: 2, c: 3}); //=> ['a', 'b', 'c']\n */\n\n\nvar keys = typeof Object.keys === 'function' && !hasArgsEnumBug ?\n/*#__PURE__*/\n_curry1(function keys(obj) {\n return Object(obj) !== obj ? [] : Object.keys(obj);\n}) :\n/*#__PURE__*/\n_curry1(function keys(obj) {\n if (Object(obj) !== obj) {\n return [];\n }\n\n var prop, nIdx;\n var ks = [];\n\n var checkArgsLength = hasArgsEnumBug && _isArguments(obj);\n\n for (prop in obj) {\n if (_has(prop, obj) && (!checkArgsLength || prop !== 'length')) {\n ks[ks.length] = prop;\n }\n }\n\n if (hasEnumBug) {\n nIdx = nonEnumerableProps.length - 1;\n\n while (nIdx >= 0) {\n prop = nonEnumerableProps[nIdx];\n\n if (_has(prop, obj) && !contains(ks, prop)) {\n ks[ks.length] = prop;\n }\n\n nIdx -= 1;\n }\n }\n\n return ks;\n});\nexport default keys;","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nimport { noop } from '../util/noop';\nimport { isFunction } from '../util/isFunction';\nexport function tap(nextOrObserver, error, complete) {\n return function tapOperatorFunction(source) {\n return source.lift(new DoOperator(nextOrObserver, error, complete));\n };\n}\nvar DoOperator = (function () {\n function DoOperator(nextOrObserver, error, complete) {\n this.nextOrObserver = nextOrObserver;\n this.error = error;\n this.complete = complete;\n }\n DoOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new TapSubscriber(subscriber, this.nextOrObserver, this.error, this.complete));\n };\n return DoOperator;\n}());\nvar TapSubscriber = (function (_super) {\n __extends(TapSubscriber, _super);\n function TapSubscriber(destination, observerOrNext, error, complete) {\n var _this = _super.call(this, destination) || this;\n _this._tapNext = noop;\n _this._tapError = noop;\n _this._tapComplete = noop;\n _this._tapError = error || noop;\n _this._tapComplete = complete || noop;\n if (isFunction(observerOrNext)) {\n _this._context = _this;\n _this._tapNext = observerOrNext;\n }\n else if (observerOrNext) {\n _this._context = observerOrNext;\n _this._tapNext = observerOrNext.next || noop;\n _this._tapError = observerOrNext.error || noop;\n _this._tapComplete = observerOrNext.complete || noop;\n }\n return _this;\n }\n TapSubscriber.prototype._next = function (value) {\n try {\n this._tapNext.call(this._context, value);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n this.destination.next(value);\n };\n TapSubscriber.prototype._error = function (err) {\n try {\n this._tapError.call(this._context, err);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n this.destination.error(err);\n };\n TapSubscriber.prototype._complete = function () {\n try {\n this._tapComplete.call(this._context);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n return this.destination.complete();\n };\n return TapSubscriber;\n}(Subscriber));\n//# sourceMappingURL=tap.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function scan(accumulator, seed) {\n var hasSeed = false;\n if (arguments.length >= 2) {\n hasSeed = true;\n }\n return function scanOperatorFunction(source) {\n return source.lift(new ScanOperator(accumulator, seed, hasSeed));\n };\n}\nvar ScanOperator = (function () {\n function ScanOperator(accumulator, seed, hasSeed) {\n if (hasSeed === void 0) { hasSeed = false; }\n this.accumulator = accumulator;\n this.seed = seed;\n this.hasSeed = hasSeed;\n }\n ScanOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new ScanSubscriber(subscriber, this.accumulator, this.seed, this.hasSeed));\n };\n return ScanOperator;\n}());\nvar ScanSubscriber = (function (_super) {\n __extends(ScanSubscriber, _super);\n function ScanSubscriber(destination, accumulator, _state, _hasState) {\n var _this = _super.call(this, destination) || this;\n _this.accumulator = accumulator;\n _this._state = _state;\n _this._hasState = _hasState;\n _this.index = 0;\n return _this;\n }\n ScanSubscriber.prototype._next = function (value) {\n var destination = this.destination;\n if (!this._hasState) {\n this._state = value;\n this._hasState = true;\n destination.next(value);\n }\n else {\n var index = this.index++;\n var result = void 0;\n try {\n result = this.accumulator(this._state, value, index);\n }\n catch (err) {\n destination.error(err);\n return;\n }\n this._state = result;\n destination.next(result);\n }\n };\n return ScanSubscriber;\n}(Subscriber));\n//# sourceMappingURL=scan.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nimport { Subscription } from '../Subscription';\nexport function finalize(callback) {\n return function (source) { return source.lift(new FinallyOperator(callback)); };\n}\nvar FinallyOperator = (function () {\n function FinallyOperator(callback) {\n this.callback = callback;\n }\n FinallyOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new FinallySubscriber(subscriber, this.callback));\n };\n return FinallyOperator;\n}());\nvar FinallySubscriber = (function (_super) {\n __extends(FinallySubscriber, _super);\n function FinallySubscriber(destination, callback) {\n var _this = _super.call(this, destination) || this;\n _this.add(new Subscription(callback));\n return _this;\n }\n return FinallySubscriber;\n}(Subscriber));\n//# sourceMappingURL=finalize.js.map","import { __extends } from \"tslib\";\nimport { AsyncAction } from './AsyncAction';\nvar AnimationFrameAction = (function (_super) {\n __extends(AnimationFrameAction, _super);\n function AnimationFrameAction(scheduler, work) {\n var _this = _super.call(this, scheduler, work) || this;\n _this.scheduler = scheduler;\n _this.work = work;\n return _this;\n }\n AnimationFrameAction.prototype.requestAsyncId = function (scheduler, id, delay) {\n if (delay === void 0) { delay = 0; }\n if (delay !== null && delay > 0) {\n return _super.prototype.requestAsyncId.call(this, scheduler, id, delay);\n }\n scheduler.actions.push(this);\n return scheduler.scheduled || (scheduler.scheduled = requestAnimationFrame(function () { return scheduler.flush(undefined); }));\n };\n AnimationFrameAction.prototype.recycleAsyncId = function (scheduler, id, delay) {\n if (delay === void 0) { delay = 0; }\n if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {\n return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay);\n }\n if (scheduler.actions.length === 0) {\n cancelAnimationFrame(id);\n scheduler.scheduled = undefined;\n }\n return undefined;\n };\n return AnimationFrameAction;\n}(AsyncAction));\nexport { AnimationFrameAction };\n//# sourceMappingURL=AnimationFrameAction.js.map","import { AnimationFrameAction } from './AnimationFrameAction';\nimport { AnimationFrameScheduler } from './AnimationFrameScheduler';\nexport var animationFrame = new AnimationFrameScheduler(AnimationFrameAction);\n//# sourceMappingURL=animationFrame.js.map","import { __extends } from \"tslib\";\nimport { AsyncScheduler } from './AsyncScheduler';\nvar AnimationFrameScheduler = (function (_super) {\n __extends(AnimationFrameScheduler, _super);\n function AnimationFrameScheduler() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n AnimationFrameScheduler.prototype.flush = function (action) {\n this.active = true;\n this.scheduled = undefined;\n var actions = this.actions;\n var error;\n var index = -1;\n var count = actions.length;\n action = action || actions.shift();\n do {\n if (error = action.execute(action.state, action.delay)) {\n break;\n }\n } while (++index < count && (action = actions.shift()));\n this.active = false;\n if (error) {\n while (++index < count && (action = actions.shift())) {\n action.unsubscribe();\n }\n throw error;\n }\n };\n return AnimationFrameScheduler;\n}(AsyncScheduler));\nexport { AnimationFrameScheduler };\n//# sourceMappingURL=AnimationFrameScheduler.js.map","import { ReplaySubject } from '../ReplaySubject';\nexport function shareReplay(configOrBufferSize, windowTime, scheduler) {\n var config;\n if (configOrBufferSize && typeof configOrBufferSize === 'object') {\n config = configOrBufferSize;\n }\n else {\n config = {\n bufferSize: configOrBufferSize,\n windowTime: windowTime,\n refCount: false,\n scheduler: scheduler\n };\n }\n return function (source) { return source.lift(shareReplayOperator(config)); };\n}\nfunction shareReplayOperator(_a) {\n var _b = _a.bufferSize, bufferSize = _b === void 0 ? Number.POSITIVE_INFINITY : _b, _c = _a.windowTime, windowTime = _c === void 0 ? Number.POSITIVE_INFINITY : _c, useRefCount = _a.refCount, scheduler = _a.scheduler;\n var subject;\n var refCount = 0;\n var subscription;\n var hasError = false;\n var isComplete = false;\n return function shareReplayOperation(source) {\n refCount++;\n if (!subject || hasError) {\n hasError = false;\n subject = new ReplaySubject(bufferSize, windowTime, scheduler);\n subscription = source.subscribe({\n next: function (value) { subject.next(value); },\n error: function (err) {\n hasError = true;\n subject.error(err);\n },\n complete: function () {\n isComplete = true;\n subscription = undefined;\n subject.complete();\n },\n });\n }\n var innerSub = subject.subscribe(this);\n this.add(function () {\n refCount--;\n innerSub.unsubscribe();\n if (subscription && !isComplete && useRefCount && refCount === 0) {\n subscription.unsubscribe();\n subscription = undefined;\n subject = undefined;\n }\n });\n };\n}\n//# sourceMappingURL=shareReplay.js.map","import { distinctUntilChanged } from './distinctUntilChanged';\nexport function distinctUntilKeyChanged(key, compare) {\n return distinctUntilChanged(function (x, y) { return compare ? compare(x[key], y[key]) : x[key] === y[key]; });\n}\n//# sourceMappingURL=distinctUntilKeyChanged.js.map","import { __extends, __spreadArrays } from \"tslib\";\nimport { OuterSubscriber } from '../OuterSubscriber';\nimport { subscribeToResult } from '../util/subscribeToResult';\nexport function withLatestFrom() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n return function (source) {\n var project;\n if (typeof args[args.length - 1] === 'function') {\n project = args.pop();\n }\n var observables = args;\n return source.lift(new WithLatestFromOperator(observables, project));\n };\n}\nvar WithLatestFromOperator = (function () {\n function WithLatestFromOperator(observables, project) {\n this.observables = observables;\n this.project = project;\n }\n WithLatestFromOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new WithLatestFromSubscriber(subscriber, this.observables, this.project));\n };\n return WithLatestFromOperator;\n}());\nvar WithLatestFromSubscriber = (function (_super) {\n __extends(WithLatestFromSubscriber, _super);\n function WithLatestFromSubscriber(destination, observables, project) {\n var _this = _super.call(this, destination) || this;\n _this.observables = observables;\n _this.project = project;\n _this.toRespond = [];\n var len = observables.length;\n _this.values = new Array(len);\n for (var i = 0; i < len; i++) {\n _this.toRespond.push(i);\n }\n for (var i = 0; i < len; i++) {\n var observable = observables[i];\n _this.add(subscribeToResult(_this, observable, observable, i));\n }\n return _this;\n }\n WithLatestFromSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {\n this.values[outerIndex] = innerValue;\n var toRespond = this.toRespond;\n if (toRespond.length > 0) {\n var found = toRespond.indexOf(outerIndex);\n if (found !== -1) {\n toRespond.splice(found, 1);\n }\n }\n };\n WithLatestFromSubscriber.prototype.notifyComplete = function () {\n };\n WithLatestFromSubscriber.prototype._next = function (value) {\n if (this.toRespond.length === 0) {\n var args = __spreadArrays([value], this.values);\n if (this.project) {\n this._tryProject(args);\n }\n else {\n this.destination.next(args);\n }\n }\n };\n WithLatestFromSubscriber.prototype._tryProject = function (args) {\n var result;\n try {\n result = this.project.apply(this, args);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n this.destination.next(result);\n };\n return WithLatestFromSubscriber;\n}(OuterSubscriber));\n//# sourceMappingURL=withLatestFrom.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function bufferCount(bufferSize, startBufferEvery) {\n if (startBufferEvery === void 0) { startBufferEvery = null; }\n return function bufferCountOperatorFunction(source) {\n return source.lift(new BufferCountOperator(bufferSize, startBufferEvery));\n };\n}\nvar BufferCountOperator = (function () {\n function BufferCountOperator(bufferSize, startBufferEvery) {\n this.bufferSize = bufferSize;\n this.startBufferEvery = startBufferEvery;\n if (!startBufferEvery || bufferSize === startBufferEvery) {\n this.subscriberClass = BufferCountSubscriber;\n }\n else {\n this.subscriberClass = BufferSkipCountSubscriber;\n }\n }\n BufferCountOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new this.subscriberClass(subscriber, this.bufferSize, this.startBufferEvery));\n };\n return BufferCountOperator;\n}());\nvar BufferCountSubscriber = (function (_super) {\n __extends(BufferCountSubscriber, _super);\n function BufferCountSubscriber(destination, bufferSize) {\n var _this = _super.call(this, destination) || this;\n _this.bufferSize = bufferSize;\n _this.buffer = [];\n return _this;\n }\n BufferCountSubscriber.prototype._next = function (value) {\n var buffer = this.buffer;\n buffer.push(value);\n if (buffer.length == this.bufferSize) {\n this.destination.next(buffer);\n this.buffer = [];\n }\n };\n BufferCountSubscriber.prototype._complete = function () {\n var buffer = this.buffer;\n if (buffer.length > 0) {\n this.destination.next(buffer);\n }\n _super.prototype._complete.call(this);\n };\n return BufferCountSubscriber;\n}(Subscriber));\nvar BufferSkipCountSubscriber = (function (_super) {\n __extends(BufferSkipCountSubscriber, _super);\n function BufferSkipCountSubscriber(destination, bufferSize, startBufferEvery) {\n var _this = _super.call(this, destination) || this;\n _this.bufferSize = bufferSize;\n _this.startBufferEvery = startBufferEvery;\n _this.buffers = [];\n _this.count = 0;\n return _this;\n }\n BufferSkipCountSubscriber.prototype._next = function (value) {\n var _a = this, bufferSize = _a.bufferSize, startBufferEvery = _a.startBufferEvery, buffers = _a.buffers, count = _a.count;\n this.count++;\n if (count % startBufferEvery === 0) {\n buffers.push([]);\n }\n for (var i = buffers.length; i--;) {\n var buffer = buffers[i];\n buffer.push(value);\n if (buffer.length === bufferSize) {\n buffers.splice(i, 1);\n this.destination.next(buffer);\n }\n }\n };\n BufferSkipCountSubscriber.prototype._complete = function () {\n var _a = this, buffers = _a.buffers, destination = _a.destination;\n while (buffers.length > 0) {\n var buffer = buffers.shift();\n if (buffer.length > 0) {\n destination.next(buffer);\n }\n }\n _super.prototype._complete.call(this);\n };\n return BufferSkipCountSubscriber;\n}(Subscriber));\n//# sourceMappingURL=bufferCount.js.map","import _curry1 from \"./internal/_curry1.js\";\nimport _isString from \"./internal/_isString.js\";\n/**\n * Returns a new list or string with the elements or characters in reverse\n * order.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category List\n * @sig [a] -> [a]\n * @sig String -> String\n * @param {Array|String} list\n * @return {Array|String}\n * @example\n *\n * R.reverse([1, 2, 3]); //=> [3, 2, 1]\n * R.reverse([1, 2]); //=> [2, 1]\n * R.reverse([1]); //=> [1]\n * R.reverse([]); //=> []\n *\n * R.reverse('abc'); //=> 'cba'\n * R.reverse('ab'); //=> 'ba'\n * R.reverse('a'); //=> 'a'\n * R.reverse(''); //=> ''\n */\n\nvar reverse =\n/*#__PURE__*/\n_curry1(function reverse(list) {\n return _isString(list) ? list.split('').reverse().join('') : Array.prototype.slice.call(list, 0).reverse();\n});\n\nexport default reverse;","import { mergeAll } from './mergeAll';\nexport function concatAll() {\n return mergeAll(1);\n}\n//# sourceMappingURL=concatAll.js.map","import { of } from './of';\nimport { concatAll } from '../operators/concatAll';\nexport function concat() {\n var observables = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n observables[_i] = arguments[_i];\n }\n return concatAll()(of.apply(void 0, observables));\n}\n//# sourceMappingURL=concat.js.map","import { concat } from '../observable/concat';\nimport { isScheduler } from '../util/isScheduler';\nexport function startWith() {\n var values = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n values[_i] = arguments[_i];\n }\n var scheduler = values[values.length - 1];\n if (isScheduler(scheduler)) {\n values.pop();\n return function (source) { return concat(values, source, scheduler); };\n }\n else {\n return function (source) { return concat(values, source); };\n }\n}\n//# sourceMappingURL=startWith.js.map","import { Observable } from '../Observable';\nimport { isArray } from '../util/isArray';\nimport { isFunction } from '../util/isFunction';\nimport { map } from '../operators/map';\nexport function fromEvent(target, eventName, options, resultSelector) {\n if (isFunction(options)) {\n resultSelector = options;\n options = undefined;\n }\n if (resultSelector) {\n return fromEvent(target, eventName, options).pipe(map(function (args) { return isArray(args) ? resultSelector.apply(void 0, args) : resultSelector(args); }));\n }\n return new Observable(function (subscriber) {\n function handler(e) {\n if (arguments.length > 1) {\n subscriber.next(Array.prototype.slice.call(arguments));\n }\n else {\n subscriber.next(e);\n }\n }\n setupSubscription(target, eventName, handler, subscriber, options);\n });\n}\nfunction setupSubscription(sourceObj, eventName, handler, subscriber, options) {\n var unsubscribe;\n if (isEventTarget(sourceObj)) {\n var source_1 = sourceObj;\n sourceObj.addEventListener(eventName, handler, options);\n unsubscribe = function () { return source_1.removeEventListener(eventName, handler, options); };\n }\n else if (isJQueryStyleEventEmitter(sourceObj)) {\n var source_2 = sourceObj;\n sourceObj.on(eventName, handler);\n unsubscribe = function () { return source_2.off(eventName, handler); };\n }\n else if (isNodeStyleEventEmitter(sourceObj)) {\n var source_3 = sourceObj;\n sourceObj.addListener(eventName, handler);\n unsubscribe = function () { return source_3.removeListener(eventName, handler); };\n }\n else if (sourceObj && sourceObj.length) {\n for (var i = 0, len = sourceObj.length; i < len; i++) {\n setupSubscription(sourceObj[i], eventName, handler, subscriber, options);\n }\n }\n else {\n throw new TypeError('Invalid event target');\n }\n subscriber.add(unsubscribe);\n}\nfunction isNodeStyleEventEmitter(sourceObj) {\n return sourceObj && typeof sourceObj.addListener === 'function' && typeof sourceObj.removeListener === 'function';\n}\nfunction isJQueryStyleEventEmitter(sourceObj) {\n return sourceObj && typeof sourceObj.on === 'function' && typeof sourceObj.off === 'function';\n}\nfunction isEventTarget(sourceObj) {\n return sourceObj && typeof sourceObj.addEventListener === 'function' && typeof sourceObj.removeEventListener === 'function';\n}\n//# sourceMappingURL=fromEvent.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function mapTo(value) {\n return function (source) { return source.lift(new MapToOperator(value)); };\n}\nvar MapToOperator = (function () {\n function MapToOperator(value) {\n this.value = value;\n }\n MapToOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new MapToSubscriber(subscriber, this.value));\n };\n return MapToOperator;\n}());\nvar MapToSubscriber = (function (_super) {\n __extends(MapToSubscriber, _super);\n function MapToSubscriber(destination, value) {\n var _this = _super.call(this, destination) || this;\n _this.value = value;\n return _this;\n }\n MapToSubscriber.prototype._next = function (x) {\n this.destination.next(this.value);\n };\n return MapToSubscriber;\n}(Subscriber));\n//# sourceMappingURL=mapTo.js.map","import { Observable } from '../Observable';\nimport { isScheduler } from '../util/isScheduler';\nimport { mergeAll } from '../operators/mergeAll';\nimport { fromArray } from './fromArray';\nexport function merge() {\n var observables = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n observables[_i] = arguments[_i];\n }\n var concurrent = Number.POSITIVE_INFINITY;\n var scheduler = undefined;\n var last = observables[observables.length - 1];\n if (isScheduler(last)) {\n scheduler = observables.pop();\n if (observables.length > 1 && typeof observables[observables.length - 1] === 'number') {\n concurrent = observables.pop();\n }\n }\n else if (typeof last === 'number') {\n concurrent = observables.pop();\n }\n if (!scheduler && observables.length === 1 && observables[0] instanceof Observable) {\n return observables[0];\n }\n return mergeAll(concurrent)(fromArray(observables, scheduler));\n}\n//# sourceMappingURL=merge.js.map","import { Observable } from '../Observable';\nimport { isArray } from '../util/isArray';\nimport { isFunction } from '../util/isFunction';\nimport { map } from '../operators/map';\nexport function fromEventPattern(addHandler, removeHandler, resultSelector) {\n if (resultSelector) {\n return fromEventPattern(addHandler, removeHandler).pipe(map(function (args) { return isArray(args) ? resultSelector.apply(void 0, args) : resultSelector(args); }));\n }\n return new Observable(function (subscriber) {\n var handler = function () {\n var e = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n e[_i] = arguments[_i];\n }\n return subscriber.next(e.length === 1 ? e[0] : e);\n };\n var retValue;\n try {\n retValue = addHandler(handler);\n }\n catch (err) {\n subscriber.error(err);\n return undefined;\n }\n if (!isFunction(removeHandler)) {\n return undefined;\n }\n return function () { return removeHandler(handler, retValue); };\n });\n}\n//# sourceMappingURL=fromEventPattern.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function filter(predicate, thisArg) {\n return function filterOperatorFunction(source) {\n return source.lift(new FilterOperator(predicate, thisArg));\n };\n}\nvar FilterOperator = (function () {\n function FilterOperator(predicate, thisArg) {\n this.predicate = predicate;\n this.thisArg = thisArg;\n }\n FilterOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new FilterSubscriber(subscriber, this.predicate, this.thisArg));\n };\n return FilterOperator;\n}());\nvar FilterSubscriber = (function (_super) {\n __extends(FilterSubscriber, _super);\n function FilterSubscriber(destination, predicate, thisArg) {\n var _this = _super.call(this, destination) || this;\n _this.predicate = predicate;\n _this.thisArg = thisArg;\n _this.count = 0;\n return _this;\n }\n FilterSubscriber.prototype._next = function (value) {\n var result;\n try {\n result = this.predicate.call(this.thisArg, value, this.count++);\n }\n catch (err) {\n this.destination.error(err);\n return;\n }\n if (result) {\n this.destination.next(value);\n }\n };\n return FilterSubscriber;\n}(Subscriber));\n//# sourceMappingURL=filter.js.map","import { __extends } from \"tslib\";\nimport { Subject } from './Subject';\nimport { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError';\nvar BehaviorSubject = (function (_super) {\n __extends(BehaviorSubject, _super);\n function BehaviorSubject(_value) {\n var _this = _super.call(this) || this;\n _this._value = _value;\n return _this;\n }\n Object.defineProperty(BehaviorSubject.prototype, \"value\", {\n get: function () {\n return this.getValue();\n },\n enumerable: true,\n configurable: true\n });\n BehaviorSubject.prototype._subscribe = function (subscriber) {\n var subscription = _super.prototype._subscribe.call(this, subscriber);\n if (subscription && !subscription.closed) {\n subscriber.next(this._value);\n }\n return subscription;\n };\n BehaviorSubject.prototype.getValue = function () {\n if (this.hasError) {\n throw this.thrownError;\n }\n else if (this.closed) {\n throw new ObjectUnsubscribedError();\n }\n else {\n return this._value;\n }\n };\n BehaviorSubject.prototype.next = function (value) {\n _super.prototype.next.call(this, this._value = value);\n };\n return BehaviorSubject;\n}(Subject));\nexport { BehaviorSubject };\n//# sourceMappingURL=BehaviorSubject.js.map","import { map } from './map';\nexport function pluck() {\n var properties = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n properties[_i] = arguments[_i];\n }\n var length = properties.length;\n if (length === 0) {\n throw new Error('list of properties cannot be empty.');\n }\n return map(function (x) {\n var currentProp = x;\n for (var i = 0; i < length; i++) {\n var p = currentProp[properties[i]];\n if (typeof p !== 'undefined') {\n currentProp = p;\n }\n else {\n return undefined;\n }\n }\n return currentProp;\n });\n}\n//# sourceMappingURL=pluck.js.map","import { __extends } from \"tslib\";\nimport { OuterSubscriber } from '../OuterSubscriber';\nimport { subscribeToResult } from '../util/subscribeToResult';\nexport var defaultThrottleConfig = {\n leading: true,\n trailing: false\n};\nexport function throttle(durationSelector, config) {\n if (config === void 0) { config = defaultThrottleConfig; }\n return function (source) { return source.lift(new ThrottleOperator(durationSelector, !!config.leading, !!config.trailing)); };\n}\nvar ThrottleOperator = (function () {\n function ThrottleOperator(durationSelector, leading, trailing) {\n this.durationSelector = durationSelector;\n this.leading = leading;\n this.trailing = trailing;\n }\n ThrottleOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new ThrottleSubscriber(subscriber, this.durationSelector, this.leading, this.trailing));\n };\n return ThrottleOperator;\n}());\nvar ThrottleSubscriber = (function (_super) {\n __extends(ThrottleSubscriber, _super);\n function ThrottleSubscriber(destination, durationSelector, _leading, _trailing) {\n var _this = _super.call(this, destination) || this;\n _this.destination = destination;\n _this.durationSelector = durationSelector;\n _this._leading = _leading;\n _this._trailing = _trailing;\n _this._sendValue = null;\n _this._hasValue = false;\n return _this;\n }\n ThrottleSubscriber.prototype._next = function (value) {\n this._hasValue = true;\n this._sendValue = value;\n if (!this._throttled) {\n if (this._leading) {\n this.send();\n }\n else {\n this.throttle(value);\n }\n }\n };\n ThrottleSubscriber.prototype.send = function () {\n var _a = this, _hasValue = _a._hasValue, _sendValue = _a._sendValue;\n if (_hasValue) {\n this.destination.next(_sendValue);\n this.throttle(_sendValue);\n }\n this._hasValue = false;\n this._sendValue = null;\n };\n ThrottleSubscriber.prototype.throttle = function (value) {\n var duration = this.tryDurationSelector(value);\n if (!!duration) {\n this.add(this._throttled = subscribeToResult(this, duration));\n }\n };\n ThrottleSubscriber.prototype.tryDurationSelector = function (value) {\n try {\n return this.durationSelector(value);\n }\n catch (err) {\n this.destination.error(err);\n return null;\n }\n };\n ThrottleSubscriber.prototype.throttlingDone = function () {\n var _a = this, _throttled = _a._throttled, _trailing = _a._trailing;\n if (_throttled) {\n _throttled.unsubscribe();\n }\n this._throttled = null;\n if (_trailing) {\n this.send();\n }\n };\n ThrottleSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {\n this.throttlingDone();\n };\n ThrottleSubscriber.prototype.notifyComplete = function () {\n this.throttlingDone();\n };\n return ThrottleSubscriber;\n}(OuterSubscriber));\n//# sourceMappingURL=throttle.js.map","import { switchMap } from './switchMap';\nexport function switchMapTo(innerObservable, resultSelector) {\n return resultSelector ? switchMap(function () { return innerObservable; }, resultSelector) : switchMap(function () { return innerObservable; });\n}\n//# sourceMappingURL=switchMapTo.js.map","import { __extends } from \"tslib\";\nimport { OuterSubscriber } from '../OuterSubscriber';\nimport { subscribeToResult } from '../util/subscribeToResult';\nexport function sample(notifier) {\n return function (source) { return source.lift(new SampleOperator(notifier)); };\n}\nvar SampleOperator = (function () {\n function SampleOperator(notifier) {\n this.notifier = notifier;\n }\n SampleOperator.prototype.call = function (subscriber, source) {\n var sampleSubscriber = new SampleSubscriber(subscriber);\n var subscription = source.subscribe(sampleSubscriber);\n subscription.add(subscribeToResult(sampleSubscriber, this.notifier));\n return subscription;\n };\n return SampleOperator;\n}());\nvar SampleSubscriber = (function (_super) {\n __extends(SampleSubscriber, _super);\n function SampleSubscriber() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.hasValue = false;\n return _this;\n }\n SampleSubscriber.prototype._next = function (value) {\n this.value = value;\n this.hasValue = true;\n };\n SampleSubscriber.prototype.notifyNext = function (outerValue, innerValue, outerIndex, innerIndex, innerSub) {\n this.emitValue();\n };\n SampleSubscriber.prototype.notifyComplete = function () {\n this.emitValue();\n };\n SampleSubscriber.prototype.emitValue = function () {\n if (this.hasValue) {\n this.hasValue = false;\n this.destination.next(this.value);\n }\n };\n return SampleSubscriber;\n}(OuterSubscriber));\n//# sourceMappingURL=sample.js.map","import { Observable } from '../Observable';\nimport { noop } from '../util/noop';\nexport var NEVER = new Observable(noop);\nexport function never() {\n return NEVER;\n}\n//# sourceMappingURL=never.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function skip(count) {\n return function (source) { return source.lift(new SkipOperator(count)); };\n}\nvar SkipOperator = (function () {\n function SkipOperator(total) {\n this.total = total;\n }\n SkipOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new SkipSubscriber(subscriber, this.total));\n };\n return SkipOperator;\n}());\nvar SkipSubscriber = (function (_super) {\n __extends(SkipSubscriber, _super);\n function SkipSubscriber(destination, total) {\n var _this = _super.call(this, destination) || this;\n _this.total = total;\n _this.count = 0;\n return _this;\n }\n SkipSubscriber.prototype._next = function (x) {\n if (++this.count > this.total) {\n this.destination.next(x);\n }\n };\n return SkipSubscriber;\n}(Subscriber));\n//# sourceMappingURL=skip.js.map","import { __extends } from \"tslib\";\nimport { OuterSubscriber } from '../OuterSubscriber';\nimport { InnerSubscriber } from '../InnerSubscriber';\nimport { subscribeToResult } from '../util/subscribeToResult';\nexport function catchError(selector) {\n return function catchErrorOperatorFunction(source) {\n var operator = new CatchOperator(selector);\n var caught = source.lift(operator);\n return (operator.caught = caught);\n };\n}\nvar CatchOperator = (function () {\n function CatchOperator(selector) {\n this.selector = selector;\n }\n CatchOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new CatchSubscriber(subscriber, this.selector, this.caught));\n };\n return CatchOperator;\n}());\nvar CatchSubscriber = (function (_super) {\n __extends(CatchSubscriber, _super);\n function CatchSubscriber(destination, selector, caught) {\n var _this = _super.call(this, destination) || this;\n _this.selector = selector;\n _this.caught = caught;\n return _this;\n }\n CatchSubscriber.prototype.error = function (err) {\n if (!this.isStopped) {\n var result = void 0;\n try {\n result = this.selector(err, this.caught);\n }\n catch (err2) {\n _super.prototype.error.call(this, err2);\n return;\n }\n this._unsubscribeAndRecycle();\n var innerSubscriber = new InnerSubscriber(this, undefined, undefined);\n this.add(innerSubscriber);\n var innerSubscription = subscribeToResult(this, result, undefined, undefined, innerSubscriber);\n if (innerSubscription !== innerSubscriber) {\n this.add(innerSubscription);\n }\n }\n };\n return CatchSubscriber;\n}(OuterSubscriber));\n//# sourceMappingURL=catchError.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nimport { async } from '../scheduler/async';\nexport function debounceTime(dueTime, scheduler) {\n if (scheduler === void 0) { scheduler = async; }\n return function (source) { return source.lift(new DebounceTimeOperator(dueTime, scheduler)); };\n}\nvar DebounceTimeOperator = (function () {\n function DebounceTimeOperator(dueTime, scheduler) {\n this.dueTime = dueTime;\n this.scheduler = scheduler;\n }\n DebounceTimeOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new DebounceTimeSubscriber(subscriber, this.dueTime, this.scheduler));\n };\n return DebounceTimeOperator;\n}());\nvar DebounceTimeSubscriber = (function (_super) {\n __extends(DebounceTimeSubscriber, _super);\n function DebounceTimeSubscriber(destination, dueTime, scheduler) {\n var _this = _super.call(this, destination) || this;\n _this.dueTime = dueTime;\n _this.scheduler = scheduler;\n _this.debouncedSubscription = null;\n _this.lastValue = null;\n _this.hasValue = false;\n return _this;\n }\n DebounceTimeSubscriber.prototype._next = function (value) {\n this.clearDebounce();\n this.lastValue = value;\n this.hasValue = true;\n this.add(this.debouncedSubscription = this.scheduler.schedule(dispatchNext, this.dueTime, this));\n };\n DebounceTimeSubscriber.prototype._complete = function () {\n this.debouncedNext();\n this.destination.complete();\n };\n DebounceTimeSubscriber.prototype.debouncedNext = function () {\n this.clearDebounce();\n if (this.hasValue) {\n var lastValue = this.lastValue;\n this.lastValue = null;\n this.hasValue = false;\n this.destination.next(lastValue);\n }\n };\n DebounceTimeSubscriber.prototype.clearDebounce = function () {\n var debouncedSubscription = this.debouncedSubscription;\n if (debouncedSubscription !== null) {\n this.remove(debouncedSubscription);\n debouncedSubscription.unsubscribe();\n this.debouncedSubscription = null;\n }\n };\n return DebounceTimeSubscriber;\n}(Subscriber));\nfunction dispatchNext(subscriber) {\n subscriber.debouncedNext();\n}\n//# sourceMappingURL=debounceTime.js.map","import { defer } from './defer';\nimport { EMPTY } from './empty';\nexport function iif(condition, trueResult, falseResult) {\n if (trueResult === void 0) { trueResult = EMPTY; }\n if (falseResult === void 0) { falseResult = EMPTY; }\n return defer(function () { return condition() ? trueResult : falseResult; });\n}\n//# sourceMappingURL=iif.js.map","import _curry2 from \"./internal/_curry2.js\";\n/**\n * Sorts the list according to the supplied function.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category Relation\n * @sig Ord b => (a -> b) -> [a] -> [a]\n * @param {Function} fn\n * @param {Array} list The list to sort.\n * @return {Array} A new list sorted by the keys generated by `fn`.\n * @example\n *\n * const sortByFirstItem = R.sortBy(R.prop(0));\n * const pairs = [[-1, 1], [-2, 2], [-3, 3]];\n * sortByFirstItem(pairs); //=> [[-3, 3], [-2, 2], [-1, 1]]\n *\n * const sortByNameCaseInsensitive = R.sortBy(R.compose(R.toLower, R.prop('name')));\n * const alice = {\n * name: 'ALICE',\n * age: 101\n * };\n * const bob = {\n * name: 'Bob',\n * age: -10\n * };\n * const clara = {\n * name: 'clara',\n * age: 314.159\n * };\n * const people = [clara, bob, alice];\n * sortByNameCaseInsensitive(people); //=> [alice, bob, clara]\n */\n\nvar sortBy =\n/*#__PURE__*/\n_curry2(function sortBy(fn, list) {\n return Array.prototype.slice.call(list, 0).sort(function (a, b) {\n var aa = fn(a);\n var bb = fn(b);\n return aa < bb ? -1 : aa > bb ? 1 : 0;\n });\n});\n\nexport default sortBy;","import _curry1 from \"./internal/_curry1.js\";\nimport keys from \"./keys.js\";\n/**\n * Returns a list of all the enumerable own properties of the supplied object.\n * Note that the order of the output array is not guaranteed across different\n * JS platforms.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category Object\n * @sig {k: v} -> [v]\n * @param {Object} obj The object to extract values from\n * @return {Array} An array of the values of the object's own properties.\n * @see R.valuesIn, R.keys\n * @example\n *\n * R.values({a: 1, b: 2, c: 3}); //=> [1, 2, 3]\n */\n\nvar values =\n/*#__PURE__*/\n_curry1(function values(obj) {\n var props = keys(obj);\n var len = props.length;\n var vals = [];\n var idx = 0;\n\n while (idx < len) {\n vals[idx] = obj[props[idx]];\n idx += 1;\n }\n\n return vals;\n});\n\nexport default values;","/**\n * Determine if the passed argument is an integer.\n *\n * @private\n * @param {*} n\n * @category Type\n * @return {Boolean}\n */\nexport default Number.isInteger || function _isInteger(n) {\n return n << 0 === n;\n};","import _curry2 from \"./internal/_curry2.js\";\nimport _isString from \"./internal/_isString.js\";\n/**\n * Returns the nth element of the given list or string. If n is negative the\n * element at index length + n is returned.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category List\n * @sig Number -> [a] -> a | Undefined\n * @sig Number -> String -> String\n * @param {Number} offset\n * @param {*} list\n * @return {*}\n * @example\n *\n * const list = ['foo', 'bar', 'baz', 'quux'];\n * R.nth(1, list); //=> 'bar'\n * R.nth(-1, list); //=> 'quux'\n * R.nth(-99, list); //=> undefined\n *\n * R.nth(2, 'abc'); //=> 'c'\n * R.nth(3, 'abc'); //=> ''\n * @symb R.nth(-1, [a, b, c]) = c\n * @symb R.nth(0, [a, b, c]) = a\n * @symb R.nth(1, [a, b, c]) = b\n */\n\nvar nth =\n/*#__PURE__*/\n_curry2(function nth(offset, list) {\n var idx = offset < 0 ? list.length + offset : offset;\n return _isString(list) ? list.charAt(idx) : list[idx];\n});\n\nexport default nth;","import _curry2 from \"./internal/_curry2.js\";\nimport _isInteger from \"./internal/_isInteger.js\";\nimport nth from \"./nth.js\";\n/**\n * Retrieves the values at given paths of an object.\n *\n * @func\n * @memberOf R\n * @since v0.27.0\n * @category Object\n * @typedefn Idx = [String | Int]\n * @sig [Idx] -> {a} -> [a | Undefined]\n * @param {Array} pathsArray The array of paths to be fetched.\n * @param {Object} obj The object to retrieve the nested properties from.\n * @return {Array} A list consisting of values at paths specified by \"pathsArray\".\n * @see R.path\n * @example\n *\n * R.paths([['a', 'b'], ['p', 0, 'q']], {a: {b: 2}, p: [{q: 3}]}); //=> [2, 3]\n * R.paths([['a', 'b'], ['p', 'r']], {a: {b: 2}, p: [{q: 3}]}); //=> [2, undefined]\n */\n\nvar paths =\n/*#__PURE__*/\n_curry2(function paths(pathsArray, obj) {\n return pathsArray.map(function (paths) {\n var val = obj;\n var idx = 0;\n var p;\n\n while (idx < paths.length) {\n if (val == null) {\n return;\n }\n\n p = paths[idx];\n val = _isInteger(p) ? nth(p, val) : val[p];\n idx += 1;\n }\n\n return val;\n });\n});\n\nexport default paths;","import _curry2 from \"./internal/_curry2.js\";\nimport paths from \"./paths.js\";\n/**\n * Retrieve the value at a given path.\n *\n * @func\n * @memberOf R\n * @since v0.2.0\n * @category Object\n * @typedefn Idx = String | Int\n * @sig [Idx] -> {a} -> a | Undefined\n * @param {Array} path The path to use.\n * @param {Object} obj The object to retrieve the nested property from.\n * @return {*} The data at `path`.\n * @see R.prop, R.nth\n * @example\n *\n * R.path(['a', 'b'], {a: {b: 2}}); //=> 2\n * R.path(['a', 'b'], {c: {b: 2}}); //=> undefined\n * R.path(['a', 'b', 0], {a: {b: [1, 2, 3]}}); //=> 1\n * R.path(['a', 'b', -2], {a: {b: [1, 2, 3]}}); //=> 2\n */\n\nvar path =\n/*#__PURE__*/\n_curry2(function path(pathAr, obj) {\n return paths([pathAr], obj)[0];\n});\n\nexport default path;","import _curry2 from \"./internal/_curry2.js\";\nimport path from \"./path.js\";\n/**\n * Returns a function that when supplied an object returns the indicated\n * property of that object, if it exists.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category Object\n * @typedefn Idx = String | Int\n * @sig Idx -> {s: a} -> a | Undefined\n * @param {String|Number} p The property name or array index\n * @param {Object} obj The object to query\n * @return {*} The value at `obj.p`.\n * @see R.path, R.nth\n * @example\n *\n * R.prop('x', {x: 100}); //=> 100\n * R.prop('x', {}); //=> undefined\n * R.prop(0, [100]); //=> 100\n * R.compose(R.inc, R.prop('x'))({ x: 3 }) //=> 4\n */\n\nvar prop =\n/*#__PURE__*/\n_curry2(function prop(p, obj) {\n return path([p], obj);\n});\n\nexport default prop;","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nexport function refCount() {\n return function refCountOperatorFunction(source) {\n return source.lift(new RefCountOperator(source));\n };\n}\nvar RefCountOperator = (function () {\n function RefCountOperator(connectable) {\n this.connectable = connectable;\n }\n RefCountOperator.prototype.call = function (subscriber, source) {\n var connectable = this.connectable;\n connectable._refCount++;\n var refCounter = new RefCountSubscriber(subscriber, connectable);\n var subscription = source.subscribe(refCounter);\n if (!refCounter.closed) {\n refCounter.connection = connectable.connect();\n }\n return subscription;\n };\n return RefCountOperator;\n}());\nvar RefCountSubscriber = (function (_super) {\n __extends(RefCountSubscriber, _super);\n function RefCountSubscriber(destination, connectable) {\n var _this = _super.call(this, destination) || this;\n _this.connectable = connectable;\n _this.connection = null;\n return _this;\n }\n RefCountSubscriber.prototype._unsubscribe = function () {\n var connectable = this.connectable;\n if (!connectable) {\n this.connection = null;\n return;\n }\n this.connectable = null;\n var refCount = connectable._refCount;\n if (refCount <= 0) {\n this.connection = null;\n return;\n }\n connectable._refCount = refCount - 1;\n if (refCount > 1) {\n this.connection = null;\n return;\n }\n var connection = this.connection;\n var sharedConnection = connectable._connection;\n this.connection = null;\n if (sharedConnection && (!connection || sharedConnection === connection)) {\n sharedConnection.unsubscribe();\n }\n };\n return RefCountSubscriber;\n}(Subscriber));\n//# sourceMappingURL=refCount.js.map","import { __extends } from \"tslib\";\nimport { SubjectSubscriber } from '../Subject';\nimport { Observable } from '../Observable';\nimport { Subscriber } from '../Subscriber';\nimport { Subscription } from '../Subscription';\nimport { refCount as higherOrderRefCount } from '../operators/refCount';\nvar ConnectableObservable = (function (_super) {\n __extends(ConnectableObservable, _super);\n function ConnectableObservable(source, subjectFactory) {\n var _this = _super.call(this) || this;\n _this.source = source;\n _this.subjectFactory = subjectFactory;\n _this._refCount = 0;\n _this._isComplete = false;\n return _this;\n }\n ConnectableObservable.prototype._subscribe = function (subscriber) {\n return this.getSubject().subscribe(subscriber);\n };\n ConnectableObservable.prototype.getSubject = function () {\n var subject = this._subject;\n if (!subject || subject.isStopped) {\n this._subject = this.subjectFactory();\n }\n return this._subject;\n };\n ConnectableObservable.prototype.connect = function () {\n var connection = this._connection;\n if (!connection) {\n this._isComplete = false;\n connection = this._connection = new Subscription();\n connection.add(this.source\n .subscribe(new ConnectableSubscriber(this.getSubject(), this)));\n if (connection.closed) {\n this._connection = null;\n connection = Subscription.EMPTY;\n }\n }\n return connection;\n };\n ConnectableObservable.prototype.refCount = function () {\n return higherOrderRefCount()(this);\n };\n return ConnectableObservable;\n}(Observable));\nexport { ConnectableObservable };\nexport var connectableObservableDescriptor = (function () {\n var connectableProto = ConnectableObservable.prototype;\n return {\n operator: { value: null },\n _refCount: { value: 0, writable: true },\n _subject: { value: null, writable: true },\n _connection: { value: null, writable: true },\n _subscribe: { value: connectableProto._subscribe },\n _isComplete: { value: connectableProto._isComplete, writable: true },\n getSubject: { value: connectableProto.getSubject },\n connect: { value: connectableProto.connect },\n refCount: { value: connectableProto.refCount }\n };\n})();\nvar ConnectableSubscriber = (function (_super) {\n __extends(ConnectableSubscriber, _super);\n function ConnectableSubscriber(destination, connectable) {\n var _this = _super.call(this, destination) || this;\n _this.connectable = connectable;\n return _this;\n }\n ConnectableSubscriber.prototype._error = function (err) {\n this._unsubscribe();\n _super.prototype._error.call(this, err);\n };\n ConnectableSubscriber.prototype._complete = function () {\n this.connectable._isComplete = true;\n this._unsubscribe();\n _super.prototype._complete.call(this);\n };\n ConnectableSubscriber.prototype._unsubscribe = function () {\n var connectable = this.connectable;\n if (connectable) {\n this.connectable = null;\n var connection = connectable._connection;\n connectable._refCount = 0;\n connectable._subject = null;\n connectable._connection = null;\n if (connection) {\n connection.unsubscribe();\n }\n }\n };\n return ConnectableSubscriber;\n}(SubjectSubscriber));\nvar RefCountOperator = (function () {\n function RefCountOperator(connectable) {\n this.connectable = connectable;\n }\n RefCountOperator.prototype.call = function (subscriber, source) {\n var connectable = this.connectable;\n connectable._refCount++;\n var refCounter = new RefCountSubscriber(subscriber, connectable);\n var subscription = source.subscribe(refCounter);\n if (!refCounter.closed) {\n refCounter.connection = connectable.connect();\n }\n return subscription;\n };\n return RefCountOperator;\n}());\nvar RefCountSubscriber = (function (_super) {\n __extends(RefCountSubscriber, _super);\n function RefCountSubscriber(destination, connectable) {\n var _this = _super.call(this, destination) || this;\n _this.connectable = connectable;\n return _this;\n }\n RefCountSubscriber.prototype._unsubscribe = function () {\n var connectable = this.connectable;\n if (!connectable) {\n this.connection = null;\n return;\n }\n this.connectable = null;\n var refCount = connectable._refCount;\n if (refCount <= 0) {\n this.connection = null;\n return;\n }\n connectable._refCount = refCount - 1;\n if (refCount > 1) {\n this.connection = null;\n return;\n }\n var connection = this.connection;\n var sharedConnection = connectable._connection;\n this.connection = null;\n if (sharedConnection && (!connection || sharedConnection === connection)) {\n sharedConnection.unsubscribe();\n }\n };\n return RefCountSubscriber;\n}(Subscriber));\n//# sourceMappingURL=ConnectableObservable.js.map","import { connectableObservableDescriptor } from '../observable/ConnectableObservable';\nexport function multicast(subjectOrSubjectFactory, selector) {\n return function multicastOperatorFunction(source) {\n var subjectFactory;\n if (typeof subjectOrSubjectFactory === 'function') {\n subjectFactory = subjectOrSubjectFactory;\n }\n else {\n subjectFactory = function subjectFactory() {\n return subjectOrSubjectFactory;\n };\n }\n if (typeof selector === 'function') {\n return source.lift(new MulticastOperator(subjectFactory, selector));\n }\n var connectable = Object.create(source, connectableObservableDescriptor);\n connectable.source = source;\n connectable.subjectFactory = subjectFactory;\n return connectable;\n };\n}\nvar MulticastOperator = (function () {\n function MulticastOperator(subjectFactory, selector) {\n this.subjectFactory = subjectFactory;\n this.selector = selector;\n }\n MulticastOperator.prototype.call = function (subscriber, source) {\n var selector = this.selector;\n var subject = this.subjectFactory();\n var subscription = selector(subject).subscribe(subscriber);\n subscription.add(source.subscribe(subject));\n return subscription;\n };\n return MulticastOperator;\n}());\nexport { MulticastOperator };\n//# sourceMappingURL=multicast.js.map","import { multicast } from './multicast';\nimport { refCount } from './refCount';\nimport { Subject } from '../Subject';\nfunction shareSubjectFactory() {\n return new Subject();\n}\nexport function share() {\n return function (source) { return refCount()(multicast(shareSubjectFactory)(source)); };\n}\n//# sourceMappingURL=share.js.map","var ArgumentOutOfRangeErrorImpl = (function () {\n function ArgumentOutOfRangeErrorImpl() {\n Error.call(this);\n this.message = 'argument out of range';\n this.name = 'ArgumentOutOfRangeError';\n return this;\n }\n ArgumentOutOfRangeErrorImpl.prototype = Object.create(Error.prototype);\n return ArgumentOutOfRangeErrorImpl;\n})();\nexport var ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl;\n//# sourceMappingURL=ArgumentOutOfRangeError.js.map","import { __extends } from \"tslib\";\nimport { Subscriber } from '../Subscriber';\nimport { ArgumentOutOfRangeError } from '../util/ArgumentOutOfRangeError';\nimport { EMPTY } from '../observable/empty';\nexport function take(count) {\n return function (source) {\n if (count === 0) {\n return EMPTY;\n }\n else {\n return source.lift(new TakeOperator(count));\n }\n };\n}\nvar TakeOperator = (function () {\n function TakeOperator(total) {\n this.total = total;\n if (this.total < 0) {\n throw new ArgumentOutOfRangeError;\n }\n }\n TakeOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new TakeSubscriber(subscriber, this.total));\n };\n return TakeOperator;\n}());\nvar TakeSubscriber = (function (_super) {\n __extends(TakeSubscriber, _super);\n function TakeSubscriber(destination, total) {\n var _this = _super.call(this, destination) || this;\n _this.total = total;\n _this.count = 0;\n return _this;\n }\n TakeSubscriber.prototype._next = function (value) {\n var total = this.total;\n var count = ++this.count;\n if (count <= total) {\n this.destination.next(value);\n if (count === total) {\n this.destination.complete();\n this.unsubscribe();\n }\n }\n };\n return TakeSubscriber;\n}(Subscriber));\n//# sourceMappingURL=take.js.map","export default function _identity(x) {\n return x;\n}","import _curry1 from \"./internal/_curry1.js\";\nimport _identity from \"./internal/_identity.js\";\n/**\n * A function that does nothing but return the parameter supplied to it. Good\n * as a default or placeholder function.\n *\n * @func\n * @memberOf R\n * @since v0.1.0\n * @category Function\n * @sig a -> a\n * @param {*} x The value to return.\n * @return {*} The input value, `x`.\n * @example\n *\n * R.identity(1); //=> 1\n *\n * const obj = {};\n * R.identity(obj) === obj; //=> true\n * @symb R.identity(a) = a\n */\n\nvar identity =\n/*#__PURE__*/\n_curry1(_identity);\n\nexport default identity;","import { __extends } from \"tslib\";\nimport { async } from '../scheduler/async';\nimport { isDate } from '../util/isDate';\nimport { Subscriber } from '../Subscriber';\nimport { Notification } from '../Notification';\nexport function delay(delay, scheduler) {\n if (scheduler === void 0) { scheduler = async; }\n var absoluteDelay = isDate(delay);\n var delayFor = absoluteDelay ? (+delay - scheduler.now()) : Math.abs(delay);\n return function (source) { return source.lift(new DelayOperator(delayFor, scheduler)); };\n}\nvar DelayOperator = (function () {\n function DelayOperator(delay, scheduler) {\n this.delay = delay;\n this.scheduler = scheduler;\n }\n DelayOperator.prototype.call = function (subscriber, source) {\n return source.subscribe(new DelaySubscriber(subscriber, this.delay, this.scheduler));\n };\n return DelayOperator;\n}());\nvar DelaySubscriber = (function (_super) {\n __extends(DelaySubscriber, _super);\n function DelaySubscriber(destination, delay, scheduler) {\n var _this = _super.call(this, destination) || this;\n _this.delay = delay;\n _this.scheduler = scheduler;\n _this.queue = [];\n _this.active = false;\n _this.errored = false;\n return _this;\n }\n DelaySubscriber.dispatch = function (state) {\n var source = state.source;\n var queue = source.queue;\n var scheduler = state.scheduler;\n var destination = state.destination;\n while (queue.length > 0 && (queue[0].time - scheduler.now()) <= 0) {\n queue.shift().notification.observe(destination);\n }\n if (queue.length > 0) {\n var delay_1 = Math.max(0, queue[0].time - scheduler.now());\n this.schedule(state, delay_1);\n }\n else if (source.isStopped) {\n source.destination.complete();\n source.active = false;\n }\n else {\n this.unsubscribe();\n source.active = false;\n }\n };\n DelaySubscriber.prototype._schedule = function (scheduler) {\n this.active = true;\n var destination = this.destination;\n destination.add(scheduler.schedule(DelaySubscriber.dispatch, this.delay, {\n source: this, destination: this.destination, scheduler: scheduler\n }));\n };\n DelaySubscriber.prototype.scheduleNotification = function (notification) {\n if (this.errored === true) {\n return;\n }\n var scheduler = this.scheduler;\n var message = new DelayMessage(scheduler.now() + this.delay, notification);\n this.queue.push(message);\n if (this.active === false) {\n this._schedule(scheduler);\n }\n };\n DelaySubscriber.prototype._next = function (value) {\n this.scheduleNotification(Notification.createNext(value));\n };\n DelaySubscriber.prototype._error = function (err) {\n this.errored = true;\n this.queue = [];\n this.destination.error(err);\n this.unsubscribe();\n };\n DelaySubscriber.prototype._complete = function () {\n if (this.queue.length === 0) {\n this.destination.complete();\n }\n this.unsubscribe();\n };\n return DelaySubscriber;\n}(Subscriber));\nvar DelayMessage = (function () {\n function DelayMessage(time, notification) {\n this.time = time;\n this.notification = notification;\n }\n return DelayMessage;\n}());\n//# sourceMappingURL=delay.js.map","export function isDate(value) {\n return value instanceof Date && !isNaN(+value);\n}\n//# sourceMappingURL=isDate.js.map","import { __extends } from \"tslib\";\nimport { root } from '../../util/root';\nimport { Observable } from '../../Observable';\nimport { Subscriber } from '../../Subscriber';\nimport { map } from '../../operators/map';\nfunction getCORSRequest() {\n if (root.XMLHttpRequest) {\n return new root.XMLHttpRequest();\n }\n else if (!!root.XDomainRequest) {\n return new root.XDomainRequest();\n }\n else {\n throw new Error('CORS is not supported by your browser');\n }\n}\nfunction getXMLHttpRequest() {\n if (root.XMLHttpRequest) {\n return new root.XMLHttpRequest();\n }\n else {\n var progId = void 0;\n try {\n var progIds = ['Msxml2.XMLHTTP', 'Microsoft.XMLHTTP', 'Msxml2.XMLHTTP.4.0'];\n for (var i = 0; i < 3; i++) {\n try {\n progId = progIds[i];\n if (new root.ActiveXObject(progId)) {\n break;\n }\n }\n catch (e) {\n }\n }\n return new root.ActiveXObject(progId);\n }\n catch (e) {\n throw new Error('XMLHttpRequest is not supported by your browser');\n }\n }\n}\nexport function ajaxGet(url, headers) {\n return new AjaxObservable({ method: 'GET', url: url, headers: headers });\n}\nexport function ajaxPost(url, body, headers) {\n return new AjaxObservable({ method: 'POST', url: url, body: body, headers: headers });\n}\nexport function ajaxDelete(url, headers) {\n return new AjaxObservable({ method: 'DELETE', url: url, headers: headers });\n}\nexport function ajaxPut(url, body, headers) {\n return new AjaxObservable({ method: 'PUT', url: url, body: body, headers: headers });\n}\nexport function ajaxPatch(url, body, headers) {\n return new AjaxObservable({ method: 'PATCH', url: url, body: body, headers: headers });\n}\nvar mapResponse = map(function (x, index) { return x.response; });\nexport function ajaxGetJSON(url, headers) {\n return mapResponse(new AjaxObservable({\n method: 'GET',\n url: url,\n responseType: 'json',\n headers: headers\n }));\n}\nvar AjaxObservable = (function (_super) {\n __extends(AjaxObservable, _super);\n function AjaxObservable(urlOrRequest) {\n var _this = _super.call(this) || this;\n var request = {\n async: true,\n createXHR: function () {\n return this.crossDomain ? getCORSRequest() : getXMLHttpRequest();\n },\n crossDomain: true,\n withCredentials: false,\n headers: {},\n method: 'GET',\n responseType: 'json',\n timeout: 0\n };\n if (typeof urlOrRequest === 'string') {\n request.url = urlOrRequest;\n }\n else {\n for (var prop in urlOrRequest) {\n if (urlOrRequest.hasOwnProperty(prop)) {\n request[prop] = urlOrRequest[prop];\n }\n }\n }\n _this.request = request;\n return _this;\n }\n AjaxObservable.prototype._subscribe = function (subscriber) {\n return new AjaxSubscriber(subscriber, this.request);\n };\n AjaxObservable.create = (function () {\n var create = function (urlOrRequest) {\n return new AjaxObservable(urlOrRequest);\n };\n create.get = ajaxGet;\n create.post = ajaxPost;\n create.delete = ajaxDelete;\n create.put = ajaxPut;\n create.patch = ajaxPatch;\n create.getJSON = ajaxGetJSON;\n return create;\n })();\n return AjaxObservable;\n}(Observable));\nexport { AjaxObservable };\nvar AjaxSubscriber = (function (_super) {\n __extends(AjaxSubscriber, _super);\n function AjaxSubscriber(destination, request) {\n var _this = _super.call(this, destination) || this;\n _this.request = request;\n _this.done = false;\n var headers = request.headers = request.headers || {};\n if (!request.crossDomain && !_this.getHeader(headers, 'X-Requested-With')) {\n headers['X-Requested-With'] = 'XMLHttpRequest';\n }\n var contentTypeHeader = _this.getHeader(headers, 'Content-Type');\n if (!contentTypeHeader && !(root.FormData && request.body instanceof root.FormData) && typeof request.body !== 'undefined') {\n headers['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';\n }\n request.body = _this.serializeBody(request.body, _this.getHeader(request.headers, 'Content-Type'));\n _this.send();\n return _this;\n }\n AjaxSubscriber.prototype.next = function (e) {\n this.done = true;\n var _a = this, xhr = _a.xhr, request = _a.request, destination = _a.destination;\n var result;\n try {\n result = new AjaxResponse(e, xhr, request);\n }\n catch (err) {\n return destination.error(err);\n }\n destination.next(result);\n };\n AjaxSubscriber.prototype.send = function () {\n var _a = this, request = _a.request, _b = _a.request, user = _b.user, method = _b.method, url = _b.url, async = _b.async, password = _b.password, headers = _b.headers, body = _b.body;\n try {\n var xhr = this.xhr = request.createXHR();\n this.setupEvents(xhr, request);\n if (user) {\n xhr.open(method, url, async, user, password);\n }\n else {\n xhr.open(method, url, async);\n }\n if (async) {\n xhr.timeout = request.timeout;\n xhr.responseType = request.responseType;\n }\n if ('withCredentials' in xhr) {\n xhr.withCredentials = !!request.withCredentials;\n }\n this.setHeaders(xhr, headers);\n if (body) {\n xhr.send(body);\n }\n else {\n xhr.send();\n }\n }\n catch (err) {\n this.error(err);\n }\n };\n AjaxSubscriber.prototype.serializeBody = function (body, contentType) {\n if (!body || typeof body === 'string') {\n return body;\n }\n else if (root.FormData && body instanceof root.FormData) {\n return body;\n }\n if (contentType) {\n var splitIndex = contentType.indexOf(';');\n if (splitIndex !== -1) {\n contentType = contentType.substring(0, splitIndex);\n }\n }\n switch (contentType) {\n case 'application/x-www-form-urlencoded':\n return Object.keys(body).map(function (key) { return encodeURIComponent(key) + \"=\" + encodeURIComponent(body[key]); }).join('&');\n case 'application/json':\n return JSON.stringify(body);\n default:\n return body;\n }\n };\n AjaxSubscriber.prototype.setHeaders = function (xhr, headers) {\n for (var key in headers) {\n if (headers.hasOwnProperty(key)) {\n xhr.setRequestHeader(key, headers[key]);\n }\n }\n };\n AjaxSubscriber.prototype.getHeader = function (headers, headerName) {\n for (var key in headers) {\n if (key.toLowerCase() === headerName.toLowerCase()) {\n return headers[key];\n }\n }\n return undefined;\n };\n AjaxSubscriber.prototype.setupEvents = function (xhr, request) {\n var progressSubscriber = request.progressSubscriber;\n function xhrTimeout(e) {\n var _a = xhrTimeout, subscriber = _a.subscriber, progressSubscriber = _a.progressSubscriber, request = _a.request;\n if (progressSubscriber) {\n progressSubscriber.error(e);\n }\n var error;\n try {\n error = new AjaxTimeoutError(this, request);\n }\n catch (err) {\n error = err;\n }\n subscriber.error(error);\n }\n xhr.ontimeout = xhrTimeout;\n xhrTimeout.request = request;\n xhrTimeout.subscriber = this;\n xhrTimeout.progressSubscriber = progressSubscriber;\n if (xhr.upload && 'withCredentials' in xhr) {\n if (progressSubscriber) {\n var xhrProgress_1;\n xhrProgress_1 = function (e) {\n var progressSubscriber = xhrProgress_1.progressSubscriber;\n progressSubscriber.next(e);\n };\n if (root.XDomainRequest) {\n xhr.onprogress = xhrProgress_1;\n }\n else {\n xhr.upload.onprogress = xhrProgress_1;\n }\n xhrProgress_1.progressSubscriber = progressSubscriber;\n }\n var xhrError_1;\n xhrError_1 = function (e) {\n var _a = xhrError_1, progressSubscriber = _a.progressSubscriber, subscriber = _a.subscriber, request = _a.request;\n if (progressSubscriber) {\n progressSubscriber.error(e);\n }\n var error;\n try {\n error = new AjaxError('ajax error', this, request);\n }\n catch (err) {\n error = err;\n }\n subscriber.error(error);\n };\n xhr.onerror = xhrError_1;\n xhrError_1.request = request;\n xhrError_1.subscriber = this;\n xhrError_1.progressSubscriber = progressSubscriber;\n }\n function xhrReadyStateChange(e) {\n return;\n }\n xhr.onreadystatechange = xhrReadyStateChange;\n xhrReadyStateChange.subscriber = this;\n xhrReadyStateChange.progressSubscriber = progressSubscriber;\n xhrReadyStateChange.request = request;\n function xhrLoad(e) {\n var _a = xhrLoad, subscriber = _a.subscriber, progressSubscriber = _a.progressSubscriber, request = _a.request;\n if (this.readyState === 4) {\n var status_1 = this.status === 1223 ? 204 : this.status;\n var response = (this.responseType === 'text' ? (this.response || this.responseText) : this.response);\n if (status_1 === 0) {\n status_1 = response ? 200 : 0;\n }\n if (status_1 < 400) {\n if (progressSubscriber) {\n progressSubscriber.complete();\n }\n subscriber.next(e);\n subscriber.complete();\n }\n else {\n if (progressSubscriber) {\n progressSubscriber.error(e);\n }\n var error = void 0;\n try {\n error = new AjaxError('ajax error ' + status_1, this, request);\n }\n catch (err) {\n error = err;\n }\n subscriber.error(error);\n }\n }\n }\n xhr.onload = xhrLoad;\n xhrLoad.subscriber = this;\n xhrLoad.progressSubscriber = progressSubscriber;\n xhrLoad.request = request;\n };\n AjaxSubscriber.prototype.unsubscribe = function () {\n var _a = this, done = _a.done, xhr = _a.xhr;\n if (!done && xhr && xhr.readyState !== 4 && typeof xhr.abort === 'function') {\n xhr.abort();\n }\n _super.prototype.unsubscribe.call(this);\n };\n return AjaxSubscriber;\n}(Subscriber));\nexport { AjaxSubscriber };\nvar AjaxResponse = (function () {\n function AjaxResponse(originalEvent, xhr, request) {\n this.originalEvent = originalEvent;\n this.xhr = xhr;\n this.request = request;\n this.status = xhr.status;\n this.responseType = xhr.responseType || request.responseType;\n this.response = parseXhrResponse(this.responseType, xhr);\n }\n return AjaxResponse;\n}());\nexport { AjaxResponse };\nvar AjaxErrorImpl = (function () {\n function AjaxErrorImpl(message, xhr, request) {\n Error.call(this);\n this.message = message;\n this.name = 'AjaxError';\n this.xhr = xhr;\n this.request = request;\n this.status = xhr.status;\n this.responseType = xhr.responseType || request.responseType;\n this.response = parseXhrResponse(this.responseType, xhr);\n return this;\n }\n AjaxErrorImpl.prototype = Object.create(Error.prototype);\n return AjaxErrorImpl;\n})();\nexport var AjaxError = AjaxErrorImpl;\nfunction parseJson(xhr) {\n if ('response' in xhr) {\n return xhr.responseType ? xhr.response : JSON.parse(xhr.response || xhr.responseText || 'null');\n }\n else {\n return JSON.parse(xhr.responseText || 'null');\n }\n}\nfunction parseXhrResponse(responseType, xhr) {\n switch (responseType) {\n case 'json':\n return parseJson(xhr);\n case 'xml':\n return xhr.responseXML;\n case 'text':\n default:\n return ('response' in xhr) ? xhr.response : xhr.responseText;\n }\n}\nvar AjaxTimeoutErrorImpl = (function () {\n function AjaxTimeoutErrorImpl(xhr, request) {\n AjaxError.call(this, 'ajax timeout', xhr, request);\n this.name = 'AjaxTimeoutError';\n return this;\n }\n AjaxTimeoutErrorImpl.prototype = Object.create(AjaxError.prototype);\n return AjaxTimeoutErrorImpl;\n})();\nexport var AjaxTimeoutError = AjaxTimeoutErrorImpl;\n//# sourceMappingURL=AjaxObservable.js.map","import { AjaxObservable } from './AjaxObservable';\nexport var ajax = (function () { return AjaxObservable.create; })();\n//# sourceMappingURL=ajax.js.map"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js b/docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js new file mode 100644 index 000000000..97bff8ba2 --- /dev/null +++ b/docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js @@ -0,0 +1,59 @@ +!function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=4)}([function(e,t,r){"use strict"; +/*! + * escape-html + * Copyright(c) 2012-2013 TJ Holowaychuk + * Copyright(c) 2015 Andreas Lubbe + * Copyright(c) 2015 Tiancheng "Timothy" Gu + * MIT Licensed + */var n=/["'&<>]/;e.exports=function(e){var t,r=""+e,i=n.exec(r);if(!i)return r;var s="",o=0,a=0;for(o=i.index;o0){var u=I.utils.clone(t)||{};u.position=[o,a],u.index=i.length,i.push(new I.Token(r.slice(o,s),u))}o=s+1}}return i},I.tokenizer.separator=/[\s\-]+/ +/*! + * lunr.Pipeline + * Copyright (C) 2019 Oliver Nightingale + */,I.Pipeline=function(){this._stack=[]},I.Pipeline.registeredFunctions=Object.create(null),I.Pipeline.registerFunction=function(e,t){t in this.registeredFunctions&&I.utils.warn("Overwriting existing registered function: "+t),e.label=t,I.Pipeline.registeredFunctions[e.label]=e},I.Pipeline.warnIfFunctionNotRegistered=function(e){e.label&&e.label in this.registeredFunctions||I.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},I.Pipeline.load=function(e){var t=new I.Pipeline;return e.forEach((function(e){var r=I.Pipeline.registeredFunctions[e];if(!r)throw new Error("Cannot load unregistered function: "+e);t.add(r)})),t},I.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach((function(e){I.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)}),this)},I.Pipeline.prototype.after=function(e,t){I.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");r+=1,this._stack.splice(r,0,t)},I.Pipeline.prototype.before=function(e,t){I.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");this._stack.splice(r,0,t)},I.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);-1!=t&&this._stack.splice(t,1)},I.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=i),s!=e);)n=r-t,i=t+Math.floor(n/2),s=this.elements[2*i];return s==e||s>e?2*i:sa?l+=2:o==a&&(t+=r[u+1]*n[l+1],u+=2,l+=2);return t},I.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},I.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var s,o=i.str.charAt(0);o in i.node.edges?s=i.node.edges[o]:(s=new I.TokenSet,i.node.edges[o]=s),1==i.str.length&&(s.final=!0),n.push({node:s,editsRemaining:i.editsRemaining,str:i.str.slice(1)})}if(0!=i.editsRemaining){if("*"in i.node.edges)var a=i.node.edges["*"];else{a=new I.TokenSet;i.node.edges["*"]=a}if(0==i.str.length&&(a.final=!0),n.push({node:a,editsRemaining:i.editsRemaining-1,str:i.str}),i.str.length>1&&n.push({node:i.node,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)}),1==i.str.length&&(i.node.final=!0),i.str.length>=1){if("*"in i.node.edges)var u=i.node.edges["*"];else{u=new I.TokenSet;i.node.edges["*"]=u}1==i.str.length&&(u.final=!0),n.push({node:u,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)})}if(i.str.length>1){var l,c=i.str.charAt(0),h=i.str.charAt(1);h in i.node.edges?l=i.node.edges[h]:(l=new I.TokenSet,i.node.edges[h]=l),1==i.str.length&&(l.final=!0),n.push({node:l,editsRemaining:i.editsRemaining-1,str:c+i.str.slice(2)})}}}return r},I.TokenSet.fromString=function(e){for(var t=new I.TokenSet,r=t,n=0,i=e.length;n=e;t--){var r=this.uncheckedNodes[t],n=r.child.toString();n in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[n]:(r.child._str=n,this.minimizedNodes[n]=r.child),this.uncheckedNodes.pop()}} +/*! + * lunr.Index + * Copyright (C) 2019 Oliver Nightingale + */,I.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},I.Index.prototype.search=function(e){return this.query((function(t){new I.QueryParser(e,t).parse()}))},I.Index.prototype.query=function(e){for(var t=new I.Query(this.fields),r=Object.create(null),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=0;a1?1:e},I.Builder.prototype.k1=function(e){this._k1=e},I.Builder.prototype.add=function(e,t){var r=e[this._ref],n=Object.keys(this._fields);this._documents[r]=t||{},this.documentCount+=1;for(var i=0;i=this.length)return I.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},I.QueryLexer.prototype.width=function(){return this.pos-this.start},I.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},I.QueryLexer.prototype.backup=function(){this.pos-=1},I.QueryLexer.prototype.acceptDigitRun=function(){var e,t;do{t=(e=this.next()).charCodeAt(0)}while(t>47&&t<58);e!=I.QueryLexer.EOS&&this.backup()},I.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(I.QueryLexer.TERM)),e.ignore(),e.more())return I.QueryLexer.lexText},I.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(I.QueryLexer.EDIT_DISTANCE),I.QueryLexer.lexText},I.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(I.QueryLexer.BOOST),I.QueryLexer.lexText},I.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(I.QueryLexer.TERM)},I.QueryLexer.termSeparator=I.tokenizer.separator,I.QueryLexer.lexText=function(e){for(;;){var t=e.next();if(t==I.QueryLexer.EOS)return I.QueryLexer.lexEOS;if(92!=t.charCodeAt(0)){if(":"==t)return I.QueryLexer.lexField;if("~"==t)return e.backup(),e.width()>0&&e.emit(I.QueryLexer.TERM),I.QueryLexer.lexEditDistance;if("^"==t)return e.backup(),e.width()>0&&e.emit(I.QueryLexer.TERM),I.QueryLexer.lexBoost;if("+"==t&&1===e.width())return e.emit(I.QueryLexer.PRESENCE),I.QueryLexer.lexText;if("-"==t&&1===e.width())return e.emit(I.QueryLexer.PRESENCE),I.QueryLexer.lexText;if(t.match(I.QueryLexer.termSeparator))return I.QueryLexer.lexTerm}else e.escapeCharacter()}},I.QueryParser=function(e,t){this.lexer=new I.QueryLexer(e),this.query=t,this.currentClause={},this.lexemeIdx=0},I.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=I.QueryParser.parseClause;e;)e=e(this);return this.query},I.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},I.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},I.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},I.QueryParser.parseClause=function(e){var t=e.peekLexeme();if(null!=t)switch(t.type){case I.QueryLexer.PRESENCE:return I.QueryParser.parsePresence;case I.QueryLexer.FIELD:return I.QueryParser.parseField;case I.QueryLexer.TERM:return I.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+t.type;throw t.str.length>=1&&(r+=" with value '"+t.str+"'"),new I.QueryParseError(r,t.start,t.end)}},I.QueryParser.parsePresence=function(e){var t=e.consumeLexeme();if(null!=t){switch(t.str){case"-":e.currentClause.presence=I.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=I.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+t.str+"'";throw new I.QueryParseError(r,t.start,t.end)}var n=e.peekLexeme();if(null==n){r="expecting term or field, found nothing";throw new I.QueryParseError(r,t.start,t.end)}switch(n.type){case I.QueryLexer.FIELD:return I.QueryParser.parseField;case I.QueryLexer.TERM:return I.QueryParser.parseTerm;default:r="expecting term or field, found '"+n.type+"'";throw new I.QueryParseError(r,n.start,n.end)}}},I.QueryParser.parseField=function(e){var t=e.consumeLexeme();if(null!=t){if(-1==e.query.allFields.indexOf(t.str)){var r=e.query.allFields.map((function(e){return"'"+e+"'"})).join(", "),n="unrecognised field '"+t.str+"', possible fields: "+r;throw new I.QueryParseError(n,t.start,t.end)}e.currentClause.fields=[t.str];var i=e.peekLexeme();if(null==i){n="expecting term, found nothing";throw new I.QueryParseError(n,t.start,t.end)}switch(i.type){case I.QueryLexer.TERM:return I.QueryParser.parseTerm;default:n="expecting term, found '"+i.type+"'";throw new I.QueryParseError(n,i.start,i.end)}}},I.QueryParser.parseTerm=function(e){var t=e.consumeLexeme();if(null!=t){e.currentClause.term=t.str.toLowerCase(),-1!=t.str.indexOf("*")&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(null!=r)switch(r.type){case I.QueryLexer.TERM:return e.nextClause(),I.QueryParser.parseTerm;case I.QueryLexer.FIELD:return e.nextClause(),I.QueryParser.parseField;case I.QueryLexer.EDIT_DISTANCE:return I.QueryParser.parseEditDistance;case I.QueryLexer.BOOST:return I.QueryParser.parseBoost;case I.QueryLexer.PRESENCE:return e.nextClause(),I.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+r.type+"'";throw new I.QueryParseError(n,r.start,r.end)}else e.nextClause()}},I.QueryParser.parseEditDistance=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var n="edit distance must be numeric";throw new I.QueryParseError(n,t.start,t.end)}e.currentClause.editDistance=r;var i=e.peekLexeme();if(null!=i)switch(i.type){case I.QueryLexer.TERM:return e.nextClause(),I.QueryParser.parseTerm;case I.QueryLexer.FIELD:return e.nextClause(),I.QueryParser.parseField;case I.QueryLexer.EDIT_DISTANCE:return I.QueryParser.parseEditDistance;case I.QueryLexer.BOOST:return I.QueryParser.parseBoost;case I.QueryLexer.PRESENCE:return e.nextClause(),I.QueryParser.parsePresence;default:n="Unexpected lexeme type '"+i.type+"'";throw new I.QueryParseError(n,i.start,i.end)}else e.nextClause()}},I.QueryParser.parseBoost=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var n="boost must be numeric";throw new I.QueryParseError(n,t.start,t.end)}e.currentClause.boost=r;var i=e.peekLexeme();if(null!=i)switch(i.type){case I.QueryLexer.TERM:return e.nextClause(),I.QueryParser.parseTerm;case I.QueryLexer.FIELD:return e.nextClause(),I.QueryParser.parseField;case I.QueryLexer.EDIT_DISTANCE:return I.QueryParser.parseEditDistance;case I.QueryLexer.BOOST:return I.QueryParser.parseBoost;case I.QueryLexer.PRESENCE:return e.nextClause(),I.QueryParser.parsePresence;default:n="Unexpected lexeme type '"+i.type+"'";throw new I.QueryParseError(n,i.start,i.end)}else e.nextClause()}},void 0===(i="function"==typeof(n=function(){return I})?n.call(t,r,t,e):n)||(e.exports=i)}()},function(e,t,r){"use strict";r.r(t),r.d(t,"handler",(function(){return h}));var n=function(){return(n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function s(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,i,s=r.call(e),o=[];try{for(;(void 0===t||t-- >0)&&!(n=s.next()).done;)o.push(n.value)}catch(e){i={error:e}}finally{try{n&&!n.done&&(r=s.return)&&r.call(s)}finally{if(i)throw i.error}}return o}function o(){for(var e=[],t=0;t"+r+""};return function(i){i=i.replace(/[\s*+-:~^]+/g," ").trim();var s=new RegExp("(^|"+e.separator+")("+i.replace(/[|\\{}()[\]^$+*?.-]/g,"\\$&").replace(t,"|")+")","img");return function(e){return n(n({},e),{title:e.title.replace(s,r),text:e.text.replace(s,r)})}}}(t),this.index=void 0===l?lunr((function(){var e,n,s,a,l;u=u||["trimmer","stopWordFilter"],this.pipeline.reset();try{for(var c=i(u),h=c.next();!h.done;h=c.next()){var d=h.value;this.pipeline.add(lunr[d])}}catch(t){e={error:t}}finally{try{h&&!h.done&&(n=c.return)&&n.call(c)}finally{if(e)throw e.error}}1===t.lang.length&&"en"!==t.lang[0]?this.use(lunr[t.lang[0]]):t.lang.length>1&&this.use((s=lunr).multiLanguage.apply(s,o(t.lang))),this.field("title",{boost:1e3}),this.field("text"),this.ref("location");try{for(var f=i(r),p=f.next();!p.done;p=f.next()){var y=p.value;this.add(y)}}catch(e){a={error:e}}finally{try{p&&!p.done&&(l=f.return)&&l.call(f)}finally{if(a)throw a.error}}})):lunr.Index.load("string"==typeof l?JSON.parse(l):l)}return e.prototype.query=function(e){var t=this;if(e)try{var r=this.index.search(e).reduce((function(e,r){var n=t.documents.get(r.ref);if(void 0!==n)if("parent"in n){var i=n.parent.location;e.set(i,o(e.get(i)||[],[r]))}else{i=n.location;e.set(i,e.get(i)||[])}return e}),new Map),n=this.highlight(e);return o(r).map((function(e){var r=s(e,2),i=r[0],o=r[1];return{article:n(t.documents.get(i)),sections:o.map((function(e){return n(t.documents.get(e.ref))}))}}))}catch(t){console.warn("Invalid query: "+e+" – see https://bit.ly/2s3ChXG")}return[]},e}();function h(e){switch(e.type){case u.SETUP:return function(e){var t,r,n="../lunr",s=[];try{for(var a=i(e.lang),u=a.next();!u.done;u=a.next()){var l=u.value;"ja"===l&&s.push(n+"/tinyseg.min.js"),"en"!==l&&s.push(n+"/min/lunr."+l+".min.js")}}catch(e){t={error:e}}finally{try{u&&!u.done&&(r=a.return)&&r.call(a)}finally{if(t)throw t.error}}e.lang.length>1&&s.push(n+"/min/lunr.multi.min.js"),s.length&&importScripts.apply(void 0,o([n+"/min/lunr.stemmer.support.min.js"],s))}(e.data.config),l=new c(e.data),{type:u.READY};case u.QUERY:return{type:u.RESULT,data:l?l.query(e.data):[]};default:throw new TypeError("Invalid message type")}}!function(e){e[e.SETUP=0]="SETUP",e[e.READY=1]="READY",e[e.QUERY=2]="QUERY",e[e.RESULT=3]="RESULT"}(u||(u={})),addEventListener("message",(function(e){postMessage(h(e.data))}))}]); +//# sourceMappingURL=search.f6ebf1dc.min.js.map \ No newline at end of file diff --git a/docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js.map b/docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js.map new file mode 100644 index 000000000..6789d0a0f --- /dev/null +++ b/docs/material/assets/javascripts/worker/search.f6ebf1dc.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/escape-html/index.js","webpack:///./node_modules/lunr/lunr.js-exposed","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/lunr/lunr.js","webpack:///./node_modules/tslib/tslib.es6.js","webpack:///./src/assets/javascripts/integrations/search/_/index.ts","webpack:///./src/assets/javascripts/integrations/search/worker/message/index.ts","webpack:///./src/assets/javascripts/integrations/search/worker/main/index.ts","webpack:///./src/assets/javascripts/integrations/search/document/index.ts","webpack:///./src/assets/javascripts/integrations/search/highlighter/index.ts"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","matchHtmlRegExp","string","escape","str","match","exec","html","index","lastIndex","length","charCodeAt","substring","g","this","Function","e","window","global","step2list","step3list","v","C","re_mgr0","re_mgr1","re_meq1","re_s_v","re_1a","re2_1a","re_1b","re2_1b","re_1b_2","re2_1b_2","re3_1b_2","re4_1b_2","re_1c","re_2","re_3","re_4","re2_4","re_5","re_5_1","re3_5","porterStemmer","lunr","config","builder","Builder","pipeline","add","trimmer","stopWordFilter","stemmer","searchPipeline","build","version","utils","warn","message","console","asString","obj","toString","clone","keys","val","Array","isArray","slice","TypeError","FieldRef","docRef","fieldName","stringValue","_stringValue","joiner","fromString","indexOf","fieldRef","undefined","Set","elements","complete","intersect","other","union","contains","empty","a","b","intersection","element","push","concat","idf","posting","documentCount","documentsWithTerm","x","Math","log","abs","Token","metadata","update","fn","tokenizer","map","toLowerCase","len","tokens","sliceEnd","sliceStart","sliceLength","charAt","separator","tokenMetadata","Pipeline","_stack","registeredFunctions","registerFunction","label","warnIfFunctionNotRegistered","load","serialised","forEach","fnName","Error","fns","arguments","after","existingFn","newFn","pos","splice","before","remove","run","stackLength","memo","j","result","k","runString","token","reset","toJSON","Vector","_magnitude","positionForIndex","start","end","pivotPoint","floor","pivotIndex","insert","insertIdx","upsert","position","magnitude","sumOfSquares","elementsLength","sqrt","dot","otherVector","dotProduct","aLen","bLen","aVal","bVal","similarity","toArray","output","RegExp","w","stem","suffix","firstch","re","re2","re3","re4","substr","toUpperCase","test","replace","fp","generateStopWordFilter","stopWords","words","reduce","stopWord","TokenSet","final","edges","id","_nextId","fromArray","arr","finish","root","fromClause","clause","fromFuzzyString","term","editDistance","stack","node","editsRemaining","frame","pop","noEditNode","char","insertionNode","substitutionNode","transposeNode","charA","charB","next","prefix","edge","_str","labels","sort","qNode","qEdges","qLen","nEdges","nLen","q","qEdge","nEdge","previousWord","uncheckedNodes","minimizedNodes","word","commonPrefix","minimize","child","nextNode","parent","downTo","childKey","Index","attrs","invertedIndex","fieldVectors","tokenSet","fields","search","queryString","query","QueryParser","parse","Query","matchingFields","queryVectors","termFieldCache","requiredMatches","prohibitedMatches","clauses","terms","clauseMatches","usePipeline","termTokenSet","expandedTerms","presence","REQUIRED","field","expandedTerm","termIndex","_index","fieldPosting","matchingDocumentRefs","termField","matchingDocumentsSet","PROHIBITED","boost","fieldMatch","matchingDocumentRef","matchingFieldRef","MatchData","allRequiredMatches","allProhibitedMatches","matchingFieldRefs","results","matches","isNegated","docMatch","fieldVector","score","matchData","combine","ref","serializedIndex","serializedVectors","serializedInvertedIndex","tokenSetBuilder","tuple","_ref","_fields","_documents","fieldTermFrequencies","fieldLengths","_b","_k1","metadataWhitelist","attributes","RangeError","number","k1","doc","extractor","fieldTerms","metadataKey","calculateAverageFieldLengths","fieldRefs","numberOfFields","accumulator","documentsWithField","averageFieldLength","createFieldVectors","fieldRefsLength","termIdfCache","fieldLength","termFrequencies","termsLength","fieldBoost","docBoost","scoreWithPrecision","tf","round","createTokenSet","use","args","unshift","apply","clonedMetadata","metadataKeys","otherMatchData","allFields","wildcard","String","NONE","LEADING","TRAILING","OPTIONAL","options","QueryParseError","QueryLexer","lexemes","escapeCharPositions","state","lexText","sliceString","subSlices","join","emit","type","escapeCharacter","EOS","width","ignore","backup","acceptDigitRun","charCode","more","FIELD","TERM","EDIT_DISTANCE","BOOST","PRESENCE","lexField","lexer","lexTerm","lexEditDistance","lexBoost","lexEOS","termSeparator","currentClause","lexemeIdx","parseClause","peekLexeme","consumeLexeme","lexeme","nextClause","completedClause","parser","parsePresence","parseField","parseTerm","errorMessage","nextLexeme","possibleFields","f","parseEditDistance","parseBoost","parseInt","isNaN","__assign","assign","__values","iterator","done","__read","ar","error","__spread","SearchMessageType","docs","documents","Map","path","hash","location","title","text","linked","set","setupSearchDocumentMap","highlight","_","data","trim","document","setupSearchHighlighter","lang","multiLanguage","JSON","groups","sections","article","section","err","handler","SETUP","base","scripts","importScripts","setupLunrLanguages","READY","QUERY","RESULT","addEventListener","ev","postMessage"],"mappings":"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C,GACtC,IAAIC,EAAQD,EAAUE,QAAO,SAAUnD,EAAMoD,GAE3C,OADApD,EAAKoD,GAAYA,EACVpD,IACN,IAEH,OAAO,SAAUK,GACf,GAAIA,GAAS6C,EAAM7C,EAAMlF,cAAgBkF,EAAMlF,WAAY,OAAOkF,IAiBtEpG,EAAKO,eAAiBP,EAAK+I,uBAAuB,CAChD,IACA,OACA,QACA,SACA,QACA,MACA,SACA,OACA,KACA,QACA,KACA,MACA,MACA,MACA,KACA,KACA,KACA,UACA,OACA,MACA,KACA,MACA,SACA,QACA,OACA,MACA,KACA,OACA,SACA,OACA,OACA,QACA,MACA,OACA,MACA,MACA,MACA,MACA,OACA,KACA,MACA,OACA,MACA,MACA,MACA,UACA,IACA,KACA,KACA,OACA,KACA,KACA,MACA,OACA,QACA,MACA,OACA,SACA,MACA,KACA,QACA,OACA,OACA,KACA,UACA,KACA,MACA,MACA,KACA,MACA,QACA,KACA,OACA,KACA,QACA,MACA,MACA,SACA,OACA,MACA,OACA,MACA,SACA,QACA,KACA,OACA,OACA,OACA,MACA,QACA,OACA,OACA,QACA,QACA,OACA,OACA,MACA,KACA,MACA,OACA,KACA,QACA,MACA,KACA,OACA,OACA,OACA,QACA,QACA,QACA,MACA,OACA,MACA,OACA,OACA,QACA,MACA,MACA,SAGF/I,EAAKyE,SAASG,iBAAiB5E,EAAKO,eAAgB;;;;IAqBpDP,EAAKM,QAAU,SAAU8F,GACvB,OAAOA,EAAMxC,QAAO,SAAUxG,GAC5B,OAAOA,EAAEyL,QAAQ,OAAQ,IAAIA,QAAQ,OAAQ,QAIjD7I,EAAKyE,SAASG,iBAAiB5E,EAAKM,QAAS;;;;IA2B7CN,EAAKoJ,SAAW,WACdlL,KAAKmL,OAAQ,EACbnL,KAAKoL,MAAQ,GACbpL,KAAKqL,GAAKvJ,EAAKoJ,SAASI,QACxBxJ,EAAKoJ,SAASI,SAAW,GAW3BxJ,EAAKoJ,SAASI,QAAU,EASxBxJ,EAAKoJ,SAASK,UAAY,SAAUC,GAGlC,IAFA,IAAIxJ,EAAU,IAAIF,EAAKoJ,SAASjJ,Q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","file":"assets/javascripts/worker/search.f6ebf1dc.min.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 4);\n","/*!\n * escape-html\n * Copyright(c) 2012-2013 TJ Holowaychuk\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n\n'use strict';\n\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = escapeHtml;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n var str = '' + string;\n var match = matchHtmlRegExp.exec(str);\n\n if (!match) {\n return str;\n }\n\n var escape;\n var html = '';\n var index = 0;\n var lastIndex = 0;\n\n for (index = match.index; index < str.length; index++) {\n switch (str.charCodeAt(index)) {\n case 34: // \"\n escape = '"';\n break;\n case 38: // &\n escape = '&';\n break;\n case 39: // '\n escape = ''';\n break;\n case 60: // <\n escape = '<';\n break;\n case 62: // >\n escape = '>';\n break;\n default:\n continue;\n }\n\n if (lastIndex !== index) {\n html += str.substring(lastIndex, index);\n }\n\n lastIndex = index + 1;\n html += escape;\n }\n\n return lastIndex !== index\n ? html + str.substring(lastIndex, index)\n : html;\n}\n","module.exports = global[\"lunr\"] = require(\"-!./lunr.js\");","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.8\n * Copyright (C) 2019 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * A convenience function for configuring and constructing\n * a new lunr Index.\n *\n * A lunr.Builder instance is created and the pipeline setup\n * with a trimmer, stop word filter and stemmer.\n *\n * This builder object is yielded to the configuration function\n * that is passed as a parameter, allowing the list of fields\n * and other builder parameters to be customised.\n *\n * All documents _must_ be added within the passed config function.\n *\n * @example\n * var idx = lunr(function () {\n * this.field('title')\n * this.field('body')\n * this.ref('id')\n *\n * documents.forEach(function (doc) {\n * this.add(doc)\n * }, this)\n * })\n *\n * @see {@link lunr.Builder}\n * @see {@link lunr.Pipeline}\n * @see {@link lunr.trimmer}\n * @see {@link lunr.stopWordFilter}\n * @see {@link lunr.stemmer}\n * @namespace {function} lunr\n */\nvar lunr = function (config) {\n var builder = new lunr.Builder\n\n builder.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n builder.searchPipeline.add(\n lunr.stemmer\n )\n\n config.call(builder, builder)\n return builder.build()\n}\n\nlunr.version = \"2.3.8\"\n/*!\n * lunr.utils\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n * @namespace lunr.utils\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf lunr.utils\n * @function\n */\nlunr.utils.warn = (function (global) {\n /* eslint-disable no-console */\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n /* eslint-enable no-console */\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf lunr.utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n\n/**\n * Clones an object.\n *\n * Will create a copy of an existing object such that any mutations\n * on the copy cannot affect the original.\n *\n * Only shallow objects are supported, passing a nested object to this\n * function will cause a TypeError.\n *\n * Objects with primitives, and arrays of primitives are supported.\n *\n * @param {Object} obj The object to clone.\n * @return {Object} a clone of the passed object.\n * @throws {TypeError} when a nested object is passed.\n * @memberOf Utils\n */\nlunr.utils.clone = function (obj) {\n if (obj === null || obj === undefined) {\n return obj\n }\n\n var clone = Object.create(null),\n keys = Object.keys(obj)\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i],\n val = obj[key]\n\n if (Array.isArray(val)) {\n clone[key] = val.slice()\n continue\n }\n\n if (typeof val === 'string' ||\n typeof val === 'number' ||\n typeof val === 'boolean') {\n clone[key] = val\n continue\n }\n\n throw new TypeError(\"clone is not deep and does not support nested objects\")\n }\n\n return clone\n}\nlunr.FieldRef = function (docRef, fieldName, stringValue) {\n this.docRef = docRef\n this.fieldName = fieldName\n this._stringValue = stringValue\n}\n\nlunr.FieldRef.joiner = \"/\"\n\nlunr.FieldRef.fromString = function (s) {\n var n = s.indexOf(lunr.FieldRef.joiner)\n\n if (n === -1) {\n throw \"malformed field ref string\"\n }\n\n var fieldRef = s.slice(0, n),\n docRef = s.slice(n + 1)\n\n return new lunr.FieldRef (docRef, fieldRef, s)\n}\n\nlunr.FieldRef.prototype.toString = function () {\n if (this._stringValue == undefined) {\n this._stringValue = this.fieldName + lunr.FieldRef.joiner + this.docRef\n }\n\n return this._stringValue\n}\n/*!\n * lunr.Set\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * A lunr set.\n *\n * @constructor\n */\nlunr.Set = function (elements) {\n this.elements = Object.create(null)\n\n if (elements) {\n this.length = elements.length\n\n for (var i = 0; i < this.length; i++) {\n this.elements[elements[i]] = true\n }\n } else {\n this.length = 0\n }\n}\n\n/**\n * A complete set that contains all elements.\n *\n * @static\n * @readonly\n * @type {lunr.Set}\n */\nlunr.Set.complete = {\n intersect: function (other) {\n return other\n },\n\n union: function (other) {\n return other\n },\n\n contains: function () {\n return true\n }\n}\n\n/**\n * An empty set that contains no elements.\n *\n * @static\n * @readonly\n * @type {lunr.Set}\n */\nlunr.Set.empty = {\n intersect: function () {\n return this\n },\n\n union: function (other) {\n return other\n },\n\n contains: function () {\n return false\n }\n}\n\n/**\n * Returns true if this set contains the specified object.\n *\n * @param {object} object - Object whose presence in this set is to be tested.\n * @returns {boolean} - True if this set contains the specified object.\n */\nlunr.Set.prototype.contains = function (object) {\n return !!this.elements[object]\n}\n\n/**\n * Returns a new set containing only the elements that are present in both\n * this set and the specified set.\n *\n * @param {lunr.Set} other - set to intersect with this set.\n * @returns {lunr.Set} a new set that is the intersection of this and the specified set.\n */\n\nlunr.Set.prototype.intersect = function (other) {\n var a, b, elements, intersection = []\n\n if (other === lunr.Set.complete) {\n return this\n }\n\n if (other === lunr.Set.empty) {\n return other\n }\n\n if (this.length < other.length) {\n a = this\n b = other\n } else {\n a = other\n b = this\n }\n\n elements = Object.keys(a.elements)\n\n for (var i = 0; i < elements.length; i++) {\n var element = elements[i]\n if (element in b.elements) {\n intersection.push(element)\n }\n }\n\n return new lunr.Set (intersection)\n}\n\n/**\n * Returns a new set combining the elements of this and the specified set.\n *\n * @param {lunr.Set} other - set to union with this set.\n * @return {lunr.Set} a new set that is the union of this and the specified set.\n */\n\nlunr.Set.prototype.union = function (other) {\n if (other === lunr.Set.complete) {\n return lunr.Set.complete\n }\n\n if (other === lunr.Set.empty) {\n return this\n }\n\n return new lunr.Set(Object.keys(this.elements).concat(Object.keys(other.elements)))\n}\n/**\n * A function to calculate the inverse document frequency for\n * a posting. This is shared between the builder and the index\n *\n * @private\n * @param {object} posting - The posting for a given term\n * @param {number} documentCount - The total number of documents.\n */\nlunr.idf = function (posting, documentCount) {\n var documentsWithTerm = 0\n\n for (var fieldName in posting) {\n if (fieldName == '_index') continue // Ignore the term index, its not a field\n documentsWithTerm += Object.keys(posting[fieldName]).length\n }\n\n var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5)\n\n return Math.log(1 + Math.abs(x))\n}\n\n/**\n * A token wraps a string representation of a token\n * as it is passed through the text processing pipeline.\n *\n * @constructor\n * @param {string} [str=''] - The string token being wrapped.\n * @param {object} [metadata={}] - Metadata associated with this token.\n */\nlunr.Token = function (str, metadata) {\n this.str = str || \"\"\n this.metadata = metadata || {}\n}\n\n/**\n * Returns the token string that is being wrapped by this object.\n *\n * @returns {string}\n */\nlunr.Token.prototype.toString = function () {\n return this.str\n}\n\n/**\n * A token update function is used when updating or optionally\n * when cloning a token.\n *\n * @callback lunr.Token~updateFunction\n * @param {string} str - The string representation of the token.\n * @param {Object} metadata - All metadata associated with this token.\n */\n\n/**\n * Applies the given function to the wrapped string token.\n *\n * @example\n * token.update(function (str, metadata) {\n * return str.toUpperCase()\n * })\n *\n * @param {lunr.Token~updateFunction} fn - A function to apply to the token string.\n * @returns {lunr.Token}\n */\nlunr.Token.prototype.update = function (fn) {\n this.str = fn(this.str, this.metadata)\n return this\n}\n\n/**\n * Creates a clone of this token. Optionally a function can be\n * applied to the cloned token.\n *\n * @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token.\n * @returns {lunr.Token}\n */\nlunr.Token.prototype.clone = function (fn) {\n fn = fn || function (s) { return s }\n return new lunr.Token (fn(this.str, this.metadata), this.metadata)\n}\n/*!\n * lunr.tokenizer\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.separator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * This tokenizer will convert its parameter to a string by calling `toString` and\n * then will split this string on the character in `lunr.tokenizer.separator`.\n * Arrays will have their elements converted to strings and wrapped in a lunr.Token.\n *\n * Optional metadata can be passed to the tokenizer, this metadata will be cloned and\n * added as metadata to every token that is created from the object to be tokenized.\n *\n * @static\n * @param {?(string|object|object[])} obj - The object to convert into tokens\n * @param {?object} metadata - Optional metadata to associate with every token\n * @returns {lunr.Token[]}\n * @see {@link lunr.Pipeline}\n */\nlunr.tokenizer = function (obj, metadata) {\n if (obj == null || obj == undefined) {\n return []\n }\n\n if (Array.isArray(obj)) {\n return obj.map(function (t) {\n return new lunr.Token(\n lunr.utils.asString(t).toLowerCase(),\n lunr.utils.clone(metadata)\n )\n })\n }\n\n var str = obj.toString().toLowerCase(),\n len = str.length,\n tokens = []\n\n for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) {\n var char = str.charAt(sliceEnd),\n sliceLength = sliceEnd - sliceStart\n\n if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) {\n\n if (sliceLength > 0) {\n var tokenMetadata = lunr.utils.clone(metadata) || {}\n tokenMetadata[\"position\"] = [sliceStart, sliceLength]\n tokenMetadata[\"index\"] = tokens.length\n\n tokens.push(\n new lunr.Token (\n str.slice(sliceStart, sliceEnd),\n tokenMetadata\n )\n )\n }\n\n sliceStart = sliceEnd + 1\n }\n\n }\n\n return tokens\n}\n\n/**\n * The separator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.separator = /[\\s\\-]+/\n/*!\n * lunr.Pipeline\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = Object.create(null)\n\n/**\n * A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token\n * string as well as all known metadata. A pipeline function can mutate the token string\n * or mutate (or add) metadata for a given token.\n *\n * A pipeline function can indicate that the passed token should be discarded by returning\n * null, undefined or an empty string. This token will not be passed to any downstream pipeline\n * functions and will not be added to the index.\n *\n * Multiple tokens can be returned by returning an array of tokens. Each token will be passed\n * to any downstream pipeline functions and all will returned tokens will be added to the index.\n *\n * Any number of pipeline functions may be chained together using a lunr.Pipeline.\n *\n * @interface lunr.PipelineFunction\n * @param {lunr.Token} token - A token from the document being processed.\n * @param {number} i - The index of this token in the complete list of tokens for this document/field.\n * @param {lunr.Token[]} tokens - All tokens for this document/field.\n * @returns {(?lunr.Token|lunr.Token[])}\n */\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {lunr.PipelineFunction} fn - The function to check for.\n * @param {String} label - The label to register this function with\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {lunr.PipelineFunction} fn - The function to check for.\n * @private\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised - The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load unregistered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline.\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.\n * @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {lunr.PipelineFunction} fn The function to remove from the pipeline.\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var stackLength = this._stack.length\n\n for (var i = 0; i < stackLength; i++) {\n var fn = this._stack[i]\n var memo = []\n\n for (var j = 0; j < tokens.length; j++) {\n var result = fn(tokens[j], j, tokens)\n\n if (result === null || result === void 0 || result === '') continue\n\n if (Array.isArray(result)) {\n for (var k = 0; k < result.length; k++) {\n memo.push(result[k])\n }\n } else {\n memo.push(result)\n }\n }\n\n tokens = memo\n }\n\n return tokens\n}\n\n/**\n * Convenience method for passing a string through a pipeline and getting\n * strings out. This method takes care of wrapping the passed string in a\n * token and mapping the resulting tokens back to strings.\n *\n * @param {string} str - The string to pass through the pipeline.\n * @param {?object} metadata - Optional metadata to associate with the token\n * passed to the pipeline.\n * @returns {string[]}\n */\nlunr.Pipeline.prototype.runString = function (str, metadata) {\n var token = new lunr.Token (str, metadata)\n\n return this.run([token]).map(function (t) {\n return t.toString()\n })\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * A vector is used to construct the vector space of documents and queries. These\n * vectors support operations to determine the similarity between two documents or\n * a document and a query.\n *\n * Normally no parameters are required for initializing a vector, but in the case of\n * loading a previously dumped vector the raw elements can be provided to the constructor.\n *\n * For performance reasons vectors are implemented with a flat array, where an elements\n * index is immediately followed by its value. E.g. [index, value, index, value]. This\n * allows the underlying array to be as sparse as possible and still offer decent\n * performance when being used for vector calculations.\n *\n * @constructor\n * @param {Number[]} [elements] - The flat list of element index and element value pairs.\n */\nlunr.Vector = function (elements) {\n this._magnitude = 0\n this.elements = elements || []\n}\n\n\n/**\n * Calculates the position within the vector to insert a given index.\n *\n * This is used internally by insert and upsert. If there are duplicate indexes then\n * the position is returned as if the value for that index were to be updated, but it\n * is the callers responsibility to check whether there is a duplicate at that index\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @returns {Number}\n */\nlunr.Vector.prototype.positionForIndex = function (index) {\n // For an empty vector the tuple can be inserted at the beginning\n if (this.elements.length == 0) {\n return 0\n }\n\n var start = 0,\n end = this.elements.length / 2,\n sliceLength = end - start,\n pivotPoint = Math.floor(sliceLength / 2),\n pivotIndex = this.elements[pivotPoint * 2]\n\n while (sliceLength > 1) {\n if (pivotIndex < index) {\n start = pivotPoint\n }\n\n if (pivotIndex > index) {\n end = pivotPoint\n }\n\n if (pivotIndex == index) {\n break\n }\n\n sliceLength = end - start\n pivotPoint = start + Math.floor(sliceLength / 2)\n pivotIndex = this.elements[pivotPoint * 2]\n }\n\n if (pivotIndex == index) {\n return pivotPoint * 2\n }\n\n if (pivotIndex > index) {\n return pivotPoint * 2\n }\n\n if (pivotIndex < index) {\n return (pivotPoint + 1) * 2\n }\n}\n\n/**\n * Inserts an element at an index within the vector.\n *\n * Does not allow duplicates, will throw an error if there is already an entry\n * for this index.\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @param {Number} val - The value to be inserted into the vector.\n */\nlunr.Vector.prototype.insert = function (insertIdx, val) {\n this.upsert(insertIdx, val, function () {\n throw \"duplicate index\"\n })\n}\n\n/**\n * Inserts or updates an existing index within the vector.\n *\n * @param {Number} insertIdx - The index at which the element should be inserted.\n * @param {Number} val - The value to be inserted into the vector.\n * @param {function} fn - A function that is called for updates, the existing value and the\n * requested value are passed as arguments\n */\nlunr.Vector.prototype.upsert = function (insertIdx, val, fn) {\n this._magnitude = 0\n var position = this.positionForIndex(insertIdx)\n\n if (this.elements[position] == insertIdx) {\n this.elements[position + 1] = fn(this.elements[position + 1], val)\n } else {\n this.elements.splice(position, 0, insertIdx, val)\n }\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n\n var sumOfSquares = 0,\n elementsLength = this.elements.length\n\n for (var i = 1; i < elementsLength; i += 2) {\n var val = this.elements[i]\n sumOfSquares += val * val\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector - The vector to compute the dot product with.\n * @returns {Number}\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var dotProduct = 0,\n a = this.elements, b = otherVector.elements,\n aLen = a.length, bLen = b.length,\n aVal = 0, bVal = 0,\n i = 0, j = 0\n\n while (i < aLen && j < bLen) {\n aVal = a[i], bVal = b[j]\n if (aVal < bVal) {\n i += 2\n } else if (aVal > bVal) {\n j += 2\n } else if (aVal == bVal) {\n dotProduct += a[i + 1] * b[j + 1]\n i += 2\n j += 2\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the similarity between this vector and another vector.\n *\n * @param {lunr.Vector} otherVector - The other vector to calculate the\n * similarity with.\n * @returns {Number}\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / this.magnitude() || 0\n}\n\n/**\n * Converts the vector to an array of the elements within the vector.\n *\n * @returns {Number[]}\n */\nlunr.Vector.prototype.toArray = function () {\n var output = new Array (this.elements.length / 2)\n\n for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) {\n output[j] = this.elements[i]\n }\n\n return output\n}\n\n/**\n * A JSON serializable representation of the vector.\n *\n * @returns {Number[]}\n */\nlunr.Vector.prototype.toJSON = function () {\n return this.elements\n}\n/* eslint-disable */\n/*!\n * lunr.stemmer\n * Copyright (C) 2019 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @static\n * @implements {lunr.PipelineFunction}\n * @param {lunr.Token} token - The string to stem\n * @returns {lunr.Token}\n * @see {@link lunr.Pipeline}\n * @function\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return function (token) {\n return token.update(porterStemmer);\n }\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @function\n * @param {Array} token The token to pass through the filter\n * @returns {lunr.PipelineFunction}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token.toString()] !== token.toString()) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @function\n * @implements {lunr.PipelineFunction}\n * @params {lunr.Token} token - A token to check for being a stop word.\n * @returns {lunr.Token}\n * @see {@link lunr.Pipeline}\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the beginning and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @static\n * @implements {lunr.PipelineFunction}\n * @param {lunr.Token} token The token to pass through the filter\n * @returns {lunr.Token}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.update(function (s) {\n return s.replace(/^\\W+/, '').replace(/\\W+$/, '')\n })\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.TokenSet\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * A token set is used to store the unique list of all tokens\n * within an index. Token sets are also used to represent an\n * incoming query to the index, this query token set and index\n * token set are then intersected to find which tokens to look\n * up in the inverted index.\n *\n * A token set can hold multiple tokens, as in the case of the\n * index token set, or it can hold a single token as in the\n * case of a simple query token set.\n *\n * Additionally token sets are used to perform wildcard matching.\n * Leading, contained and trailing wildcards are supported, and\n * from this edit distance matching can also be provided.\n *\n * Token sets are implemented as a minimal finite state automata,\n * where both common prefixes and suffixes are shared between tokens.\n * This helps to reduce the space used for storing the token set.\n *\n * @constructor\n */\nlunr.TokenSet = function () {\n this.final = false\n this.edges = {}\n this.id = lunr.TokenSet._nextId\n lunr.TokenSet._nextId += 1\n}\n\n/**\n * Keeps track of the next, auto increment, identifier to assign\n * to a new tokenSet.\n *\n * TokenSets require a unique identifier to be correctly minimised.\n *\n * @private\n */\nlunr.TokenSet._nextId = 1\n\n/**\n * Creates a TokenSet instance from the given sorted array of words.\n *\n * @param {String[]} arr - A sorted array of strings to create the set from.\n * @returns {lunr.TokenSet}\n * @throws Will throw an error if the input array is not sorted.\n */\nlunr.TokenSet.fromArray = function (arr) {\n var builder = new lunr.TokenSet.Builder\n\n for (var i = 0, len = arr.length; i < len; i++) {\n builder.insert(arr[i])\n }\n\n builder.finish()\n return builder.root\n}\n\n/**\n * Creates a token set from a query clause.\n *\n * @private\n * @param {Object} clause - A single clause from lunr.Query.\n * @param {string} clause.term - The query clause term.\n * @param {number} [clause.editDistance] - The optional edit distance for the term.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.fromClause = function (clause) {\n if ('editDistance' in clause) {\n return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance)\n } else {\n return lunr.TokenSet.fromString(clause.term)\n }\n}\n\n/**\n * Creates a token set representing a single string with a specified\n * edit distance.\n *\n * Insertions, deletions, substitutions and transpositions are each\n * treated as an edit distance of 1.\n *\n * Increasing the allowed edit distance will have a dramatic impact\n * on the performance of both creating and intersecting these TokenSets.\n * It is advised to keep the edit distance less than 3.\n *\n * @param {string} str - The string to create the token set from.\n * @param {number} editDistance - The allowed edit distance to match.\n * @returns {lunr.Vector}\n */\nlunr.TokenSet.fromFuzzyString = function (str, editDistance) {\n var root = new lunr.TokenSet\n\n var stack = [{\n node: root,\n editsRemaining: editDistance,\n str: str\n }]\n\n while (stack.length) {\n var frame = stack.pop()\n\n // no edit\n if (frame.str.length > 0) {\n var char = frame.str.charAt(0),\n noEditNode\n\n if (char in frame.node.edges) {\n noEditNode = frame.node.edges[char]\n } else {\n noEditNode = new lunr.TokenSet\n frame.node.edges[char] = noEditNode\n }\n\n if (frame.str.length == 1) {\n noEditNode.final = true\n }\n\n stack.push({\n node: noEditNode,\n editsRemaining: frame.editsRemaining,\n str: frame.str.slice(1)\n })\n }\n\n if (frame.editsRemaining == 0) {\n continue\n }\n\n // insertion\n if (\"*\" in frame.node.edges) {\n var insertionNode = frame.node.edges[\"*\"]\n } else {\n var insertionNode = new lunr.TokenSet\n frame.node.edges[\"*\"] = insertionNode\n }\n\n if (frame.str.length == 0) {\n insertionNode.final = true\n }\n\n stack.push({\n node: insertionNode,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str\n })\n\n // deletion\n // can only do a deletion if we have enough edits remaining\n // and if there are characters left to delete in the string\n if (frame.str.length > 1) {\n stack.push({\n node: frame.node,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str.slice(1)\n })\n }\n\n // deletion\n // just removing the last character from the str\n if (frame.str.length == 1) {\n frame.node.final = true\n }\n\n // substitution\n // can only do a substitution if we have enough edits remaining\n // and if there are characters left to substitute\n if (frame.str.length >= 1) {\n if (\"*\" in frame.node.edges) {\n var substitutionNode = frame.node.edges[\"*\"]\n } else {\n var substitutionNode = new lunr.TokenSet\n frame.node.edges[\"*\"] = substitutionNode\n }\n\n if (frame.str.length == 1) {\n substitutionNode.final = true\n }\n\n stack.push({\n node: substitutionNode,\n editsRemaining: frame.editsRemaining - 1,\n str: frame.str.slice(1)\n })\n }\n\n // transposition\n // can only do a transposition if there are edits remaining\n // and there are enough characters to transpose\n if (frame.str.length > 1) {\n var charA = frame.str.charAt(0),\n charB = frame.str.charAt(1),\n transposeNode\n\n if (charB in frame.node.edges) {\n transposeNode = frame.node.edges[charB]\n } else {\n transposeNode = new lunr.TokenSet\n frame.node.edges[charB] = transposeNode\n }\n\n if (frame.str.length == 1) {\n transposeNode.final = true\n }\n\n stack.push({\n node: transposeNode,\n editsRemaining: frame.editsRemaining - 1,\n str: charA + frame.str.slice(2)\n })\n }\n }\n\n return root\n}\n\n/**\n * Creates a TokenSet from a string.\n *\n * The string may contain one or more wildcard characters (*)\n * that will allow wildcard matching when intersecting with\n * another TokenSet.\n *\n * @param {string} str - The string to create a TokenSet from.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.fromString = function (str) {\n var node = new lunr.TokenSet,\n root = node\n\n /*\n * Iterates through all characters within the passed string\n * appending a node for each character.\n *\n * When a wildcard character is found then a self\n * referencing edge is introduced to continually match\n * any number of any characters.\n */\n for (var i = 0, len = str.length; i < len; i++) {\n var char = str[i],\n final = (i == len - 1)\n\n if (char == \"*\") {\n node.edges[char] = node\n node.final = final\n\n } else {\n var next = new lunr.TokenSet\n next.final = final\n\n node.edges[char] = next\n node = next\n }\n }\n\n return root\n}\n\n/**\n * Converts this TokenSet into an array of strings\n * contained within the TokenSet.\n *\n * This is not intended to be used on a TokenSet that\n * contains wildcards, in these cases the results are\n * undefined and are likely to cause an infinite loop.\n *\n * @returns {string[]}\n */\nlunr.TokenSet.prototype.toArray = function () {\n var words = []\n\n var stack = [{\n prefix: \"\",\n node: this\n }]\n\n while (stack.length) {\n var frame = stack.pop(),\n edges = Object.keys(frame.node.edges),\n len = edges.length\n\n if (frame.node.final) {\n /* In Safari, at this point the prefix is sometimes corrupted, see:\n * https://github.com/olivernn/lunr.js/issues/279 Calling any\n * String.prototype method forces Safari to \"cast\" this string to what\n * it's supposed to be, fixing the bug. */\n frame.prefix.charAt(0)\n words.push(frame.prefix)\n }\n\n for (var i = 0; i < len; i++) {\n var edge = edges[i]\n\n stack.push({\n prefix: frame.prefix.concat(edge),\n node: frame.node.edges[edge]\n })\n }\n }\n\n return words\n}\n\n/**\n * Generates a string representation of a TokenSet.\n *\n * This is intended to allow TokenSets to be used as keys\n * in objects, largely to aid the construction and minimisation\n * of a TokenSet. As such it is not designed to be a human\n * friendly representation of the TokenSet.\n *\n * @returns {string}\n */\nlunr.TokenSet.prototype.toString = function () {\n // NOTE: Using Object.keys here as this.edges is very likely\n // to enter 'hash-mode' with many keys being added\n //\n // avoiding a for-in loop here as it leads to the function\n // being de-optimised (at least in V8). From some simple\n // benchmarks the performance is comparable, but allowing\n // V8 to optimize may mean easy performance wins in the future.\n\n if (this._str) {\n return this._str\n }\n\n var str = this.final ? '1' : '0',\n labels = Object.keys(this.edges).sort(),\n len = labels.length\n\n for (var i = 0; i < len; i++) {\n var label = labels[i],\n node = this.edges[label]\n\n str = str + label + node.id\n }\n\n return str\n}\n\n/**\n * Returns a new TokenSet that is the intersection of\n * this TokenSet and the passed TokenSet.\n *\n * This intersection will take into account any wildcards\n * contained within the TokenSet.\n *\n * @param {lunr.TokenSet} b - An other TokenSet to intersect with.\n * @returns {lunr.TokenSet}\n */\nlunr.TokenSet.prototype.intersect = function (b) {\n var output = new lunr.TokenSet,\n frame = undefined\n\n var stack = [{\n qNode: b,\n output: output,\n node: this\n }]\n\n while (stack.length) {\n frame = stack.pop()\n\n // NOTE: As with the #toString method, we are using\n // Object.keys and a for loop instead of a for-in loop\n // as both of these objects enter 'hash' mode, causing\n // the function to be de-optimised in V8\n var qEdges = Object.keys(frame.qNode.edges),\n qLen = qEdges.length,\n nEdges = Object.keys(frame.node.edges),\n nLen = nEdges.length\n\n for (var q = 0; q < qLen; q++) {\n var qEdge = qEdges[q]\n\n for (var n = 0; n < nLen; n++) {\n var nEdge = nEdges[n]\n\n if (nEdge == qEdge || qEdge == '*') {\n var node = frame.node.edges[nEdge],\n qNode = frame.qNode.edges[qEdge],\n final = node.final && qNode.final,\n next = undefined\n\n if (nEdge in frame.output.edges) {\n // an edge already exists for this character\n // no need to create a new node, just set the finality\n // bit unless this node is already final\n next = frame.output.edges[nEdge]\n next.final = next.final || final\n\n } else {\n // no edge exists yet, must create one\n // set the finality bit and insert it\n // into the output\n next = new lunr.TokenSet\n next.final = final\n frame.output.edges[nEdge] = next\n }\n\n stack.push({\n qNode: qNode,\n output: next,\n node: node\n })\n }\n }\n }\n }\n\n return output\n}\nlunr.TokenSet.Builder = function () {\n this.previousWord = \"\"\n this.root = new lunr.TokenSet\n this.uncheckedNodes = []\n this.minimizedNodes = {}\n}\n\nlunr.TokenSet.Builder.prototype.insert = function (word) {\n var node,\n commonPrefix = 0\n\n if (word < this.previousWord) {\n throw new Error (\"Out of order word insertion\")\n }\n\n for (var i = 0; i < word.length && i < this.previousWord.length; i++) {\n if (word[i] != this.previousWord[i]) break\n commonPrefix++\n }\n\n this.minimize(commonPrefix)\n\n if (this.uncheckedNodes.length == 0) {\n node = this.root\n } else {\n node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child\n }\n\n for (var i = commonPrefix; i < word.length; i++) {\n var nextNode = new lunr.TokenSet,\n char = word[i]\n\n node.edges[char] = nextNode\n\n this.uncheckedNodes.push({\n parent: node,\n char: char,\n child: nextNode\n })\n\n node = nextNode\n }\n\n node.final = true\n this.previousWord = word\n}\n\nlunr.TokenSet.Builder.prototype.finish = function () {\n this.minimize(0)\n}\n\nlunr.TokenSet.Builder.prototype.minimize = function (downTo) {\n for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) {\n var node = this.uncheckedNodes[i],\n childKey = node.child.toString()\n\n if (childKey in this.minimizedNodes) {\n node.parent.edges[node.char] = this.minimizedNodes[childKey]\n } else {\n // Cache the key for this node since\n // we know it can't change anymore\n node.child._str = childKey\n\n this.minimizedNodes[childKey] = node.child\n }\n\n this.uncheckedNodes.pop()\n }\n}\n/*!\n * lunr.Index\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * An index contains the built index of all documents and provides a query interface\n * to the index.\n *\n * Usually instances of lunr.Index will not be created using this constructor, instead\n * lunr.Builder should be used to construct new indexes, or lunr.Index.load should be\n * used to load previously built and serialized indexes.\n *\n * @constructor\n * @param {Object} attrs - The attributes of the built search index.\n * @param {Object} attrs.invertedIndex - An index of term/field to document reference.\n * @param {Object} attrs.fieldVectors - Field vectors\n * @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens.\n * @param {string[]} attrs.fields - The names of indexed document fields.\n * @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms.\n */\nlunr.Index = function (attrs) {\n this.invertedIndex = attrs.invertedIndex\n this.fieldVectors = attrs.fieldVectors\n this.tokenSet = attrs.tokenSet\n this.fields = attrs.fields\n this.pipeline = attrs.pipeline\n}\n\n/**\n * A result contains details of a document matching a search query.\n * @typedef {Object} lunr.Index~Result\n * @property {string} ref - The reference of the document this result represents.\n * @property {number} score - A number between 0 and 1 representing how similar this document is to the query.\n * @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match.\n */\n\n/**\n * Although lunr provides the ability to create queries using lunr.Query, it also provides a simple\n * query language which itself is parsed into an instance of lunr.Query.\n *\n * For programmatically building queries it is advised to directly use lunr.Query, the query language\n * is best used for human entered text rather than program generated text.\n *\n * At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported\n * and will be combined with OR, e.g `hello world` will match documents that contain either 'hello'\n * or 'world', though those that contain both will rank higher in the results.\n *\n * Wildcards can be included in terms to match one or more unspecified characters, these wildcards can\n * be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding\n * wildcards will increase the number of documents that will be found but can also have a negative\n * impact on query performance, especially with wildcards at the beginning of a term.\n *\n * Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term\n * hello in the title field will match this query. Using a field not present in the index will lead\n * to an error being thrown.\n *\n * Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term\n * boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported\n * to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2.\n * Avoid large values for edit distance to improve query performance.\n *\n * Each term also supports a presence modifier. By default a term's presence in document is optional, however\n * this can be changed to either required or prohibited. For a term's presence to be required in a document the\n * term should be prefixed with a '+', e.g. `+foo bar` is a search for documents that must contain 'foo' and\n * optionally contain 'bar'. Conversely a leading '-' sets the terms presence to prohibited, i.e. it must not\n * appear in a document, e.g. `-foo bar` is a search for documents that do not contain 'foo' but may contain 'bar'.\n *\n * To escape special characters the backslash character '\\' can be used, this allows searches to include\n * characters that would normally be considered modifiers, e.g. `foo\\~2` will search for a term \"foo~2\" instead\n * of attempting to apply a boost of 2 to the search term \"foo\".\n *\n * @typedef {string} lunr.Index~QueryString\n * @example Simple single term query\n * hello\n * @example Multiple term query\n * hello world\n * @example term scoped to a field\n * title:hello\n * @example term with a boost of 10\n * hello^10\n * @example term with an edit distance of 2\n * hello~2\n * @example terms with presence modifiers\n * -foo +bar baz\n */\n\n/**\n * Performs a search against the index using lunr query syntax.\n *\n * Results will be returned sorted by their score, the most relevant results\n * will be returned first. For details on how the score is calculated, please see\n * the {@link https://lunrjs.com/guides/searching.html#scoring|guide}.\n *\n * For more programmatic querying use lunr.Index#query.\n *\n * @param {lunr.Index~QueryString} queryString - A string containing a lunr query.\n * @throws {lunr.QueryParseError} If the passed query string cannot be parsed.\n * @returns {lunr.Index~Result[]}\n */\nlunr.Index.prototype.search = function (queryString) {\n return this.query(function (query) {\n var parser = new lunr.QueryParser(queryString, query)\n parser.parse()\n })\n}\n\n/**\n * A query builder callback provides a query object to be used to express\n * the query to perform on the index.\n *\n * @callback lunr.Index~queryBuilder\n * @param {lunr.Query} query - The query object to build up.\n * @this lunr.Query\n */\n\n/**\n * Performs a query against the index using the yielded lunr.Query object.\n *\n * If performing programmatic queries against the index, this method is preferred\n * over lunr.Index#search so as to avoid the additional query parsing overhead.\n *\n * A query object is yielded to the supplied function which should be used to\n * express the query to be run against the index.\n *\n * Note that although this function takes a callback parameter it is _not_ an\n * asynchronous operation, the callback is just yielded a query object to be\n * customized.\n *\n * @param {lunr.Index~queryBuilder} fn - A function that is used to build the query.\n * @returns {lunr.Index~Result[]}\n */\nlunr.Index.prototype.query = function (fn) {\n // for each query clause\n // * process terms\n // * expand terms from token set\n // * find matching documents and metadata\n // * get document vectors\n // * score documents\n\n var query = new lunr.Query(this.fields),\n matchingFields = Object.create(null),\n queryVectors = Object.create(null),\n termFieldCache = Object.create(null),\n requiredMatches = Object.create(null),\n prohibitedMatches = Object.create(null)\n\n /*\n * To support field level boosts a query vector is created per\n * field. An empty vector is eagerly created to support negated\n * queries.\n */\n for (var i = 0; i < this.fields.length; i++) {\n queryVectors[this.fields[i]] = new lunr.Vector\n }\n\n fn.call(query, query)\n\n for (var i = 0; i < query.clauses.length; i++) {\n /*\n * Unless the pipeline has been disabled for this term, which is\n * the case for terms with wildcards, we need to pass the clause\n * term through the search pipeline. A pipeline returns an array\n * of processed terms. Pipeline functions may expand the passed\n * term, which means we may end up performing multiple index lookups\n * for a single query term.\n */\n var clause = query.clauses[i],\n terms = null,\n clauseMatches = lunr.Set.complete\n\n if (clause.usePipeline) {\n terms = this.pipeline.runString(clause.term, {\n fields: clause.fields\n })\n } else {\n terms = [clause.term]\n }\n\n for (var m = 0; m < terms.length; m++) {\n var term = terms[m]\n\n /*\n * Each term returned from the pipeline needs to use the same query\n * clause object, e.g. the same boost and or edit distance. The\n * simplest way to do this is to re-use the clause object but mutate\n * its term property.\n */\n clause.term = term\n\n /*\n * From the term in the clause we create a token set which will then\n * be used to intersect the indexes token set to get a list of terms\n * to lookup in the inverted index\n */\n var termTokenSet = lunr.TokenSet.fromClause(clause),\n expandedTerms = this.tokenSet.intersect(termTokenSet).toArray()\n\n /*\n * If a term marked as required does not exist in the tokenSet it is\n * impossible for the search to return any matches. We set all the field\n * scoped required matches set to empty and stop examining any further\n * clauses.\n */\n if (expandedTerms.length === 0 && clause.presence === lunr.Query.presence.REQUIRED) {\n for (var k = 0; k < clause.fields.length; k++) {\n var field = clause.fields[k]\n requiredMatches[field] = lunr.Set.empty\n }\n\n break\n }\n\n for (var j = 0; j < expandedTerms.length; j++) {\n /*\n * For each term get the posting and termIndex, this is required for\n * building the query vector.\n */\n var expandedTerm = expandedTerms[j],\n posting = this.invertedIndex[expandedTerm],\n termIndex = posting._index\n\n for (var k = 0; k < clause.fields.length; k++) {\n /*\n * For each field that this query term is scoped by (by default\n * all fields are in scope) we need to get all the document refs\n * that have this term in that field.\n *\n * The posting is the entry in the invertedIndex for the matching\n * term from above.\n */\n var field = clause.fields[k],\n fieldPosting = posting[field],\n matchingDocumentRefs = Object.keys(fieldPosting),\n termField = expandedTerm + \"/\" + field,\n matchingDocumentsSet = new lunr.Set(matchingDocumentRefs)\n\n /*\n * if the presence of this term is required ensure that the matching\n * documents are added to the set of required matches for this clause.\n *\n */\n if (clause.presence == lunr.Query.presence.REQUIRED) {\n clauseMatches = clauseMatches.union(matchingDocumentsSet)\n\n if (requiredMatches[field] === undefined) {\n requiredMatches[field] = lunr.Set.complete\n }\n }\n\n /*\n * if the presence of this term is prohibited ensure that the matching\n * documents are added to the set of prohibited matches for this field,\n * creating that set if it does not yet exist.\n */\n if (clause.presence == lunr.Query.presence.PROHIBITED) {\n if (prohibitedMatches[field] === undefined) {\n prohibitedMatches[field] = lunr.Set.empty\n }\n\n prohibitedMatches[field] = prohibitedMatches[field].union(matchingDocumentsSet)\n\n /*\n * Prohibited matches should not be part of the query vector used for\n * similarity scoring and no metadata should be extracted so we continue\n * to the next field\n */\n continue\n }\n\n /*\n * The query field vector is populated using the termIndex found for\n * the term and a unit value with the appropriate boost applied.\n * Using upsert because there could already be an entry in the vector\n * for the term we are working with. In that case we just add the scores\n * together.\n */\n queryVectors[field].upsert(termIndex, clause.boost, function (a, b) { return a + b })\n\n /**\n * If we've already seen this term, field combo then we've already collected\n * the matching documents and metadata, no need to go through all that again\n */\n if (termFieldCache[termField]) {\n continue\n }\n\n for (var l = 0; l < matchingDocumentRefs.length; l++) {\n /*\n * All metadata for this term/field/document triple\n * are then extracted and collected into an instance\n * of lunr.MatchData ready to be returned in the query\n * results\n */\n var matchingDocumentRef = matchingDocumentRefs[l],\n matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field),\n metadata = fieldPosting[matchingDocumentRef],\n fieldMatch\n\n if ((fieldMatch = matchingFields[matchingFieldRef]) === undefined) {\n matchingFields[matchingFieldRef] = new lunr.MatchData (expandedTerm, field, metadata)\n } else {\n fieldMatch.add(expandedTerm, field, metadata)\n }\n\n }\n\n termFieldCache[termField] = true\n }\n }\n }\n\n /**\n * If the presence was required we need to update the requiredMatches field sets.\n * We do this after all fields for the term have collected their matches because\n * the clause terms presence is required in _any_ of the fields not _all_ of the\n * fields.\n */\n if (clause.presence === lunr.Query.presence.REQUIRED) {\n for (var k = 0; k < clause.fields.length; k++) {\n var field = clause.fields[k]\n requiredMatches[field] = requiredMatches[field].intersect(clauseMatches)\n }\n }\n }\n\n /**\n * Need to combine the field scoped required and prohibited\n * matching documents into a global set of required and prohibited\n * matches\n */\n var allRequiredMatches = lunr.Set.complete,\n allProhibitedMatches = lunr.Set.empty\n\n for (var i = 0; i < this.fields.length; i++) {\n var field = this.fields[i]\n\n if (requiredMatches[field]) {\n allRequiredMatches = allRequiredMatches.intersect(requiredMatches[field])\n }\n\n if (prohibitedMatches[field]) {\n allProhibitedMatches = allProhibitedMatches.union(prohibitedMatches[field])\n }\n }\n\n var matchingFieldRefs = Object.keys(matchingFields),\n results = [],\n matches = Object.create(null)\n\n /*\n * If the query is negated (contains only prohibited terms)\n * we need to get _all_ fieldRefs currently existing in the\n * index. This is only done when we know that the query is\n * entirely prohibited terms to avoid any cost of getting all\n * fieldRefs unnecessarily.\n *\n * Additionally, blank MatchData must be created to correctly\n * populate the results.\n */\n if (query.isNegated()) {\n matchingFieldRefs = Object.keys(this.fieldVectors)\n\n for (var i = 0; i < matchingFieldRefs.length; i++) {\n var matchingFieldRef = matchingFieldRefs[i]\n var fieldRef = lunr.FieldRef.fromString(matchingFieldRef)\n matchingFields[matchingFieldRef] = new lunr.MatchData\n }\n }\n\n for (var i = 0; i < matchingFieldRefs.length; i++) {\n /*\n * Currently we have document fields that match the query, but we\n * need to return documents. The matchData and scores are combined\n * from multiple fields belonging to the same document.\n *\n * Scores are calculated by field, using the query vectors created\n * above, and combined into a final document score using addition.\n */\n var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]),\n docRef = fieldRef.docRef\n\n if (!allRequiredMatches.contains(docRef)) {\n continue\n }\n\n if (allProhibitedMatches.contains(docRef)) {\n continue\n }\n\n var fieldVector = this.fieldVectors[fieldRef],\n score = queryVectors[fieldRef.fieldName].similarity(fieldVector),\n docMatch\n\n if ((docMatch = matches[docRef]) !== undefined) {\n docMatch.score += score\n docMatch.matchData.combine(matchingFields[fieldRef])\n } else {\n var match = {\n ref: docRef,\n score: score,\n matchData: matchingFields[fieldRef]\n }\n matches[docRef] = match\n results.push(match)\n }\n }\n\n /*\n * Sort the results objects by score, highest first.\n */\n return results.sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Prepares the index for JSON serialization.\n *\n * The schema for this JSON blob will be described in a\n * separate JSON schema file.\n *\n * @returns {Object}\n */\nlunr.Index.prototype.toJSON = function () {\n var invertedIndex = Object.keys(this.invertedIndex)\n .sort()\n .map(function (term) {\n return [term, this.invertedIndex[term]]\n }, this)\n\n var fieldVectors = Object.keys(this.fieldVectors)\n .map(function (ref) {\n return [ref, this.fieldVectors[ref].toJSON()]\n }, this)\n\n return {\n version: lunr.version,\n fields: this.fields,\n fieldVectors: fieldVectors,\n invertedIndex: invertedIndex,\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Loads a previously serialized lunr.Index\n *\n * @param {Object} serializedIndex - A previously serialized lunr.Index\n * @returns {lunr.Index}\n */\nlunr.Index.load = function (serializedIndex) {\n var attrs = {},\n fieldVectors = {},\n serializedVectors = serializedIndex.fieldVectors,\n invertedIndex = Object.create(null),\n serializedInvertedIndex = serializedIndex.invertedIndex,\n tokenSetBuilder = new lunr.TokenSet.Builder,\n pipeline = lunr.Pipeline.load(serializedIndex.pipeline)\n\n if (serializedIndex.version != lunr.version) {\n lunr.utils.warn(\"Version mismatch when loading serialised index. Current version of lunr '\" + lunr.version + \"' does not match serialized index '\" + serializedIndex.version + \"'\")\n }\n\n for (var i = 0; i < serializedVectors.length; i++) {\n var tuple = serializedVectors[i],\n ref = tuple[0],\n elements = tuple[1]\n\n fieldVectors[ref] = new lunr.Vector(elements)\n }\n\n for (var i = 0; i < serializedInvertedIndex.length; i++) {\n var tuple = serializedInvertedIndex[i],\n term = tuple[0],\n posting = tuple[1]\n\n tokenSetBuilder.insert(term)\n invertedIndex[term] = posting\n }\n\n tokenSetBuilder.finish()\n\n attrs.fields = serializedIndex.fields\n\n attrs.fieldVectors = fieldVectors\n attrs.invertedIndex = invertedIndex\n attrs.tokenSet = tokenSetBuilder.root\n attrs.pipeline = pipeline\n\n return new lunr.Index(attrs)\n}\n/*!\n * lunr.Builder\n * Copyright (C) 2019 Oliver Nightingale\n */\n\n/**\n * lunr.Builder performs indexing on a set of documents and\n * returns instances of lunr.Index ready for querying.\n *\n * All configuration of the index is done via the builder, the\n * fields to index, the document reference, the text processing\n * pipeline and document scoring parameters are all set on the\n * builder before indexing.\n *\n * @constructor\n * @property {string} _ref - Internal reference to the document reference field.\n * @property {string[]} _fields - Internal reference to the document fields to index.\n * @property {object} invertedIndex - The inverted index maps terms to document fields.\n * @property {object} documentTermFrequencies - Keeps track of document term frequencies.\n * @property {object} documentLengths - Keeps track of the length of documents added to the index.\n * @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing.\n * @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing.\n * @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index.\n * @property {number} documentCount - Keeps track of the total number of documents indexed.\n * @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75.\n * @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2.\n * @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space.\n * @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index.\n */\nlunr.Builder = function () {\n this._ref = \"id\"\n this._fields = Object.create(null)\n this._documents = Object.create(null)\n this.invertedIndex = Object.create(null)\n this.fieldTermFrequencies = {}\n this.fieldLengths = {}\n this.tokenizer = lunr.tokenizer\n this.pipeline = new lunr.Pipeline\n this.searchPipeline = new lunr.Pipeline\n this.documentCount = 0\n this._b = 0.75\n this._k1 = 1.2\n this.termIndex = 0\n this.metadataWhitelist = []\n}\n\n/**\n * Sets the document field used as the document reference. Every document must have this field.\n * The type of this field in the document should be a string, if it is not a string it will be\n * coerced into a string by calling toString.\n *\n * The default ref is 'id'.\n *\n * The ref should _not_ be changed during indexing, it should be set before any documents are\n * added to the index. Changing it during indexing can lead to inconsistent results.\n *\n * @param {string} ref - The name of the reference field in the document.\n */\nlunr.Builder.prototype.ref = function (ref) {\n this._ref = ref\n}\n\n/**\n * A function that is used to extract a field from a document.\n *\n * Lunr expects a field to be at the top level of a document, if however the field\n * is deeply nested within a document an extractor function can be used to extract\n * the right field for indexing.\n *\n * @callback fieldExtractor\n * @param {object} doc - The document being added to the index.\n * @returns {?(string|object|object[])} obj - The object that will be indexed for this field.\n * @example Extracting a nested field\n * function (doc) { return doc.nested.field }\n */\n\n/**\n * Adds a field to the list of document fields that will be indexed. Every document being\n * indexed should have this field. Null values for this field in indexed documents will\n * not cause errors but will limit the chance of that document being retrieved by searches.\n *\n * All fields should be added before adding documents to the index. Adding fields after\n * a document has been indexed will have no effect on already indexed documents.\n *\n * Fields can be boosted at build time. This allows terms within that field to have more\n * importance when ranking search results. Use a field boost to specify that matches within\n * one field are more important than other fields.\n *\n * @param {string} fieldName - The name of a field to index in all documents.\n * @param {object} attributes - Optional attributes associated with this field.\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this field.\n * @param {fieldExtractor} [attributes.extractor] - Function to extract a field from a document.\n * @throws {RangeError} fieldName cannot contain unsupported characters '/'\n */\nlunr.Builder.prototype.field = function (fieldName, attributes) {\n if (/\\//.test(fieldName)) {\n throw new RangeError (\"Field '\" + fieldName + \"' contains illegal character '/'\")\n }\n\n this._fields[fieldName] = attributes || {}\n}\n\n/**\n * A parameter to tune the amount of field length normalisation that is applied when\n * calculating relevance scores. A value of 0 will completely disable any normalisation\n * and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b\n * will be clamped to the range 0 - 1.\n *\n * @param {number} number - The value to set for this tuning parameter.\n */\nlunr.Builder.prototype.b = function (number) {\n if (number < 0) {\n this._b = 0\n } else if (number > 1) {\n this._b = 1\n } else {\n this._b = number\n }\n}\n\n/**\n * A parameter that controls the speed at which a rise in term frequency results in term\n * frequency saturation. The default value is 1.2. Setting this to a higher value will give\n * slower saturation levels, a lower value will result in quicker saturation.\n *\n * @param {number} number - The value to set for this tuning parameter.\n */\nlunr.Builder.prototype.k1 = function (number) {\n this._k1 = number\n}\n\n/**\n * Adds a document to the index.\n *\n * Before adding fields to the index the index should have been fully setup, with the document\n * ref and all fields to index already having been specified.\n *\n * The document must have a field name as specified by the ref (by default this is 'id') and\n * it should have all fields defined for indexing, though null or undefined values will not\n * cause errors.\n *\n * Entire documents can be boosted at build time. Applying a boost to a document indicates that\n * this document should rank higher in search results than other documents.\n *\n * @param {object} doc - The document to add to the index.\n * @param {object} attributes - Optional attributes associated with this document.\n * @param {number} [attributes.boost=1] - Boost applied to all terms within this document.\n */\nlunr.Builder.prototype.add = function (doc, attributes) {\n var docRef = doc[this._ref],\n fields = Object.keys(this._fields)\n\n this._documents[docRef] = attributes || {}\n this.documentCount += 1\n\n for (var i = 0; i < fields.length; i++) {\n var fieldName = fields[i],\n extractor = this._fields[fieldName].extractor,\n field = extractor ? extractor(doc) : doc[fieldName],\n tokens = this.tokenizer(field, {\n fields: [fieldName]\n }),\n terms = this.pipeline.run(tokens),\n fieldRef = new lunr.FieldRef (docRef, fieldName),\n fieldTerms = Object.create(null)\n\n this.fieldTermFrequencies[fieldRef] = fieldTerms\n this.fieldLengths[fieldRef] = 0\n\n // store the length of this field for this document\n this.fieldLengths[fieldRef] += terms.length\n\n // calculate term frequencies for this field\n for (var j = 0; j < terms.length; j++) {\n var term = terms[j]\n\n if (fieldTerms[term] == undefined) {\n fieldTerms[term] = 0\n }\n\n fieldTerms[term] += 1\n\n // add to inverted index\n // create an initial posting if one doesn't exist\n if (this.invertedIndex[term] == undefined) {\n var posting = Object.create(null)\n posting[\"_index\"] = this.termIndex\n this.termIndex += 1\n\n for (var k = 0; k < fields.length; k++) {\n posting[fields[k]] = Object.create(null)\n }\n\n this.invertedIndex[term] = posting\n }\n\n // add an entry for this term/fieldName/docRef to the invertedIndex\n if (this.invertedIndex[term][fieldName][docRef] == undefined) {\n this.invertedIndex[term][fieldName][docRef] = Object.create(null)\n }\n\n // store all whitelisted metadata about this token in the\n // inverted index\n for (var l = 0; l < this.metadataWhitelist.length; l++) {\n var metadataKey = this.metadataWhitelist[l],\n metadata = term.metadata[metadataKey]\n\n if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) {\n this.invertedIndex[term][fieldName][docRef][metadataKey] = []\n }\n\n this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata)\n }\n }\n\n }\n}\n\n/**\n * Calculates the average document length for this index\n *\n * @private\n */\nlunr.Builder.prototype.calculateAverageFieldLengths = function () {\n\n var fieldRefs = Object.keys(this.fieldLengths),\n numberOfFields = fieldRefs.length,\n accumulator = {},\n documentsWithField = {}\n\n for (var i = 0; i < numberOfFields; i++) {\n var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\n field = fieldRef.fieldName\n\n documentsWithField[field] || (documentsWithField[field] = 0)\n documentsWithField[field] += 1\n\n accumulator[field] || (accumulator[field] = 0)\n accumulator[field] += this.fieldLengths[fieldRef]\n }\n\n var fields = Object.keys(this._fields)\n\n for (var i = 0; i < fields.length; i++) {\n var fieldName = fields[i]\n accumulator[fieldName] = accumulator[fieldName] / documentsWithField[fieldName]\n }\n\n this.averageFieldLength = accumulator\n}\n\n/**\n * Builds a vector space model of every document using lunr.Vector\n *\n * @private\n */\nlunr.Builder.prototype.createFieldVectors = function () {\n var fieldVectors = {},\n fieldRefs = Object.keys(this.fieldTermFrequencies),\n fieldRefsLength = fieldRefs.length,\n termIdfCache = Object.create(null)\n\n for (var i = 0; i < fieldRefsLength; i++) {\n var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),\n fieldName = fieldRef.fieldName,\n fieldLength = this.fieldLengths[fieldRef],\n fieldVector = new lunr.Vector,\n termFrequencies = this.fieldTermFrequencies[fieldRef],\n terms = Object.keys(termFrequencies),\n termsLength = terms.length\n\n\n var fieldBoost = this._fields[fieldName].boost || 1,\n docBoost = this._documents[fieldRef.docRef].boost || 1\n\n for (var j = 0; j < termsLength; j++) {\n var term = terms[j],\n tf = termFrequencies[term],\n termIndex = this.invertedIndex[term]._index,\n idf, score, scoreWithPrecision\n\n if (termIdfCache[term] === undefined) {\n idf = lunr.idf(this.invertedIndex[term], this.documentCount)\n termIdfCache[term] = idf\n } else {\n idf = termIdfCache[term]\n }\n\n score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[fieldName])) + tf)\n score *= fieldBoost\n score *= docBoost\n scoreWithPrecision = Math.round(score * 1000) / 1000\n // Converts 1.23456789 to 1.234.\n // Reducing the precision so that the vectors take up less\n // space when serialised. Doing it now so that they behave\n // the same before and after serialisation. Also, this is\n // the fastest approach to reducing a number's precision in\n // JavaScript.\n\n fieldVector.insert(termIndex, scoreWithPrecision)\n }\n\n fieldVectors[fieldRef] = fieldVector\n }\n\n this.fieldVectors = fieldVectors\n}\n\n/**\n * Creates a token set of all tokens in the index using lunr.TokenSet\n *\n * @private\n */\nlunr.Builder.prototype.createTokenSet = function () {\n this.tokenSet = lunr.TokenSet.fromArray(\n Object.keys(this.invertedIndex).sort()\n )\n}\n\n/**\n * Builds the index, creating an instance of lunr.Index.\n *\n * This completes the indexing process and should only be called\n * once all documents have been added to the index.\n *\n * @returns {lunr.Index}\n */\nlunr.Builder.prototype.build = function () {\n this.calculateAverageFieldLengths()\n this.createFieldVectors()\n this.createTokenSet()\n\n return new lunr.Index({\n invertedIndex: this.invertedIndex,\n fieldVectors: this.fieldVectors,\n tokenSet: this.tokenSet,\n fields: Object.keys(this._fields),\n pipeline: this.searchPipeline\n })\n}\n\n/**\n * Applies a plugin to the index builder.\n *\n * A plugin is a function that is called with the index builder as its context.\n * Plugins can be used to customise or extend the behaviour of the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied when building the index.\n *\n * The plugin function will be called with the index builder as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index builder as its context.\n *\n * @param {Function} plugin The plugin to apply.\n */\nlunr.Builder.prototype.use = function (fn) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n fn.apply(this, args)\n}\n/**\n * Contains and collects metadata about a matching document.\n * A single instance of lunr.MatchData is returned as part of every\n * lunr.Index~Result.\n *\n * @constructor\n * @param {string} term - The term this match data is associated with\n * @param {string} field - The field in which the term was found\n * @param {object} metadata - The metadata recorded about this term in this field\n * @property {object} metadata - A cloned collection of metadata associated with this document.\n * @see {@link lunr.Index~Result}\n */\nlunr.MatchData = function (term, field, metadata) {\n var clonedMetadata = Object.create(null),\n metadataKeys = Object.keys(metadata || {})\n\n // Cloning the metadata to prevent the original\n // being mutated during match data combination.\n // Metadata is kept in an array within the inverted\n // index so cloning the data can be done with\n // Array#slice\n for (var i = 0; i < metadataKeys.length; i++) {\n var key = metadataKeys[i]\n clonedMetadata[key] = metadata[key].slice()\n }\n\n this.metadata = Object.create(null)\n\n if (term !== undefined) {\n this.metadata[term] = Object.create(null)\n this.metadata[term][field] = clonedMetadata\n }\n}\n\n/**\n * An instance of lunr.MatchData will be created for every term that matches a\n * document. However only one instance is required in a lunr.Index~Result. This\n * method combines metadata from another instance of lunr.MatchData with this\n * objects metadata.\n *\n * @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one.\n * @see {@link lunr.Index~Result}\n */\nlunr.MatchData.prototype.combine = function (otherMatchData) {\n var terms = Object.keys(otherMatchData.metadata)\n\n for (var i = 0; i < terms.length; i++) {\n var term = terms[i],\n fields = Object.keys(otherMatchData.metadata[term])\n\n if (this.metadata[term] == undefined) {\n this.metadata[term] = Object.create(null)\n }\n\n for (var j = 0; j < fields.length; j++) {\n var field = fields[j],\n keys = Object.keys(otherMatchData.metadata[term][field])\n\n if (this.metadata[term][field] == undefined) {\n this.metadata[term][field] = Object.create(null)\n }\n\n for (var k = 0; k < keys.length; k++) {\n var key = keys[k]\n\n if (this.metadata[term][field][key] == undefined) {\n this.metadata[term][field][key] = otherMatchData.metadata[term][field][key]\n } else {\n this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key])\n }\n\n }\n }\n }\n}\n\n/**\n * Add metadata for a term/field pair to this instance of match data.\n *\n * @param {string} term - The term this match data is associated with\n * @param {string} field - The field in which the term was found\n * @param {object} metadata - The metadata recorded about this term in this field\n */\nlunr.MatchData.prototype.add = function (term, field, metadata) {\n if (!(term in this.metadata)) {\n this.metadata[term] = Object.create(null)\n this.metadata[term][field] = metadata\n return\n }\n\n if (!(field in this.metadata[term])) {\n this.metadata[term][field] = metadata\n return\n }\n\n var metadataKeys = Object.keys(metadata)\n\n for (var i = 0; i < metadataKeys.length; i++) {\n var key = metadataKeys[i]\n\n if (key in this.metadata[term][field]) {\n this.metadata[term][field][key] = this.metadata[term][field][key].concat(metadata[key])\n } else {\n this.metadata[term][field][key] = metadata[key]\n }\n }\n}\n/**\n * A lunr.Query provides a programmatic way of defining queries to be performed\n * against a {@link lunr.Index}.\n *\n * Prefer constructing a lunr.Query using the {@link lunr.Index#query} method\n * so the query object is pre-initialized with the right index fields.\n *\n * @constructor\n * @property {lunr.Query~Clause[]} clauses - An array of query clauses.\n * @property {string[]} allFields - An array of all available fields in a lunr.Index.\n */\nlunr.Query = function (allFields) {\n this.clauses = []\n this.allFields = allFields\n}\n\n/**\n * Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause.\n *\n * This allows wildcards to be added to the beginning and end of a term without having to manually do any string\n * concatenation.\n *\n * The wildcard constants can be bitwise combined to select both leading and trailing wildcards.\n *\n * @constant\n * @default\n * @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour\n * @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists\n * @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists\n * @see lunr.Query~Clause\n * @see lunr.Query#clause\n * @see lunr.Query#term\n * @example query term with trailing wildcard\n * query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING })\n * @example query term with leading and trailing wildcard\n * query.term('foo', {\n * wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING\n * })\n */\n\nlunr.Query.wildcard = new String (\"*\")\nlunr.Query.wildcard.NONE = 0\nlunr.Query.wildcard.LEADING = 1\nlunr.Query.wildcard.TRAILING = 2\n\n/**\n * Constants for indicating what kind of presence a term must have in matching documents.\n *\n * @constant\n * @enum {number}\n * @see lunr.Query~Clause\n * @see lunr.Query#clause\n * @see lunr.Query#term\n * @example query term with required presence\n * query.term('foo', { presence: lunr.Query.presence.REQUIRED })\n */\nlunr.Query.presence = {\n /**\n * Term's presence in a document is optional, this is the default value.\n */\n OPTIONAL: 1,\n\n /**\n * Term's presence in a document is required, documents that do not contain\n * this term will not be returned.\n */\n REQUIRED: 2,\n\n /**\n * Term's presence in a document is prohibited, documents that do contain\n * this term will not be returned.\n */\n PROHIBITED: 3\n}\n\n/**\n * A single clause in a {@link lunr.Query} contains a term and details on how to\n * match that term against a {@link lunr.Index}.\n *\n * @typedef {Object} lunr.Query~Clause\n * @property {string[]} fields - The fields in an index this clause should be matched against.\n * @property {number} [boost=1] - Any boost that should be applied when matching this clause.\n * @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be.\n * @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline.\n * @property {number} [wildcard=lunr.Query.wildcard.NONE] - Whether the term should have wildcards appended or prepended.\n * @property {number} [presence=lunr.Query.presence.OPTIONAL] - The terms presence in any matching documents.\n */\n\n/**\n * Adds a {@link lunr.Query~Clause} to this query.\n *\n * Unless the clause contains the fields to be matched all fields will be matched. In addition\n * a default boost of 1 is applied to the clause.\n *\n * @param {lunr.Query~Clause} clause - The clause to add to this query.\n * @see lunr.Query~Clause\n * @returns {lunr.Query}\n */\nlunr.Query.prototype.clause = function (clause) {\n if (!('fields' in clause)) {\n clause.fields = this.allFields\n }\n\n if (!('boost' in clause)) {\n clause.boost = 1\n }\n\n if (!('usePipeline' in clause)) {\n clause.usePipeline = true\n }\n\n if (!('wildcard' in clause)) {\n clause.wildcard = lunr.Query.wildcard.NONE\n }\n\n if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) {\n clause.term = \"*\" + clause.term\n }\n\n if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) {\n clause.term = \"\" + clause.term + \"*\"\n }\n\n if (!('presence' in clause)) {\n clause.presence = lunr.Query.presence.OPTIONAL\n }\n\n this.clauses.push(clause)\n\n return this\n}\n\n/**\n * A negated query is one in which every clause has a presence of\n * prohibited. These queries require some special processing to return\n * the expected results.\n *\n * @returns boolean\n */\nlunr.Query.prototype.isNegated = function () {\n for (var i = 0; i < this.clauses.length; i++) {\n if (this.clauses[i].presence != lunr.Query.presence.PROHIBITED) {\n return false\n }\n }\n\n return true\n}\n\n/**\n * Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause}\n * to the list of clauses that make up this query.\n *\n * The term is used as is, i.e. no tokenization will be performed by this method. Instead conversion\n * to a token or token-like string should be done before calling this method.\n *\n * The term will be converted to a string by calling `toString`. Multiple terms can be passed as an\n * array, each term in the array will share the same options.\n *\n * @param {object|object[]} term - The term(s) to add to the query.\n * @param {object} [options] - Any additional properties to add to the query clause.\n * @returns {lunr.Query}\n * @see lunr.Query#clause\n * @see lunr.Query~Clause\n * @example adding a single term to a query\n * query.term(\"foo\")\n * @example adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard\n * query.term(\"foo\", {\n * fields: [\"title\"],\n * boost: 10,\n * wildcard: lunr.Query.wildcard.TRAILING\n * })\n * @example using lunr.tokenizer to convert a string to tokens before using them as terms\n * query.term(lunr.tokenizer(\"foo bar\"))\n */\nlunr.Query.prototype.term = function (term, options) {\n if (Array.isArray(term)) {\n term.forEach(function (t) { this.term(t, lunr.utils.clone(options)) }, this)\n return this\n }\n\n var clause = options || {}\n clause.term = term.toString()\n\n this.clause(clause)\n\n return this\n}\nlunr.QueryParseError = function (message, start, end) {\n this.name = \"QueryParseError\"\n this.message = message\n this.start = start\n this.end = end\n}\n\nlunr.QueryParseError.prototype = new Error\nlunr.QueryLexer = function (str) {\n this.lexemes = []\n this.str = str\n this.length = str.length\n this.pos = 0\n this.start = 0\n this.escapeCharPositions = []\n}\n\nlunr.QueryLexer.prototype.run = function () {\n var state = lunr.QueryLexer.lexText\n\n while (state) {\n state = state(this)\n }\n}\n\nlunr.QueryLexer.prototype.sliceString = function () {\n var subSlices = [],\n sliceStart = this.start,\n sliceEnd = this.pos\n\n for (var i = 0; i < this.escapeCharPositions.length; i++) {\n sliceEnd = this.escapeCharPositions[i]\n subSlices.push(this.str.slice(sliceStart, sliceEnd))\n sliceStart = sliceEnd + 1\n }\n\n subSlices.push(this.str.slice(sliceStart, this.pos))\n this.escapeCharPositions.length = 0\n\n return subSlices.join('')\n}\n\nlunr.QueryLexer.prototype.emit = function (type) {\n this.lexemes.push({\n type: type,\n str: this.sliceString(),\n start: this.start,\n end: this.pos\n })\n\n this.start = this.pos\n}\n\nlunr.QueryLexer.prototype.escapeCharacter = function () {\n this.escapeCharPositions.push(this.pos - 1)\n this.pos += 1\n}\n\nlunr.QueryLexer.prototype.next = function () {\n if (this.pos >= this.length) {\n return lunr.QueryLexer.EOS\n }\n\n var char = this.str.charAt(this.pos)\n this.pos += 1\n return char\n}\n\nlunr.QueryLexer.prototype.width = function () {\n return this.pos - this.start\n}\n\nlunr.QueryLexer.prototype.ignore = function () {\n if (this.start == this.pos) {\n this.pos += 1\n }\n\n this.start = this.pos\n}\n\nlunr.QueryLexer.prototype.backup = function () {\n this.pos -= 1\n}\n\nlunr.QueryLexer.prototype.acceptDigitRun = function () {\n var char, charCode\n\n do {\n char = this.next()\n charCode = char.charCodeAt(0)\n } while (charCode > 47 && charCode < 58)\n\n if (char != lunr.QueryLexer.EOS) {\n this.backup()\n }\n}\n\nlunr.QueryLexer.prototype.more = function () {\n return this.pos < this.length\n}\n\nlunr.QueryLexer.EOS = 'EOS'\nlunr.QueryLexer.FIELD = 'FIELD'\nlunr.QueryLexer.TERM = 'TERM'\nlunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE'\nlunr.QueryLexer.BOOST = 'BOOST'\nlunr.QueryLexer.PRESENCE = 'PRESENCE'\n\nlunr.QueryLexer.lexField = function (lexer) {\n lexer.backup()\n lexer.emit(lunr.QueryLexer.FIELD)\n lexer.ignore()\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexTerm = function (lexer) {\n if (lexer.width() > 1) {\n lexer.backup()\n lexer.emit(lunr.QueryLexer.TERM)\n }\n\n lexer.ignore()\n\n if (lexer.more()) {\n return lunr.QueryLexer.lexText\n }\n}\n\nlunr.QueryLexer.lexEditDistance = function (lexer) {\n lexer.ignore()\n lexer.acceptDigitRun()\n lexer.emit(lunr.QueryLexer.EDIT_DISTANCE)\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexBoost = function (lexer) {\n lexer.ignore()\n lexer.acceptDigitRun()\n lexer.emit(lunr.QueryLexer.BOOST)\n return lunr.QueryLexer.lexText\n}\n\nlunr.QueryLexer.lexEOS = function (lexer) {\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n}\n\n// This matches the separator used when tokenising fields\n// within a document. These should match otherwise it is\n// not possible to search for some tokens within a document.\n//\n// It is possible for the user to change the separator on the\n// tokenizer so it _might_ clash with any other of the special\n// characters already used within the search string, e.g. :.\n//\n// This means that it is possible to change the separator in\n// such a way that makes some words unsearchable using a search\n// string.\nlunr.QueryLexer.termSeparator = lunr.tokenizer.separator\n\nlunr.QueryLexer.lexText = function (lexer) {\n while (true) {\n var char = lexer.next()\n\n if (char == lunr.QueryLexer.EOS) {\n return lunr.QueryLexer.lexEOS\n }\n\n // Escape character is '\\'\n if (char.charCodeAt(0) == 92) {\n lexer.escapeCharacter()\n continue\n }\n\n if (char == \":\") {\n return lunr.QueryLexer.lexField\n }\n\n if (char == \"~\") {\n lexer.backup()\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n return lunr.QueryLexer.lexEditDistance\n }\n\n if (char == \"^\") {\n lexer.backup()\n if (lexer.width() > 0) {\n lexer.emit(lunr.QueryLexer.TERM)\n }\n return lunr.QueryLexer.lexBoost\n }\n\n // \"+\" indicates term presence is required\n // checking for length to ensure that only\n // leading \"+\" are considered\n if (char == \"+\" && lexer.width() === 1) {\n lexer.emit(lunr.QueryLexer.PRESENCE)\n return lunr.QueryLexer.lexText\n }\n\n // \"-\" indicates term presence is prohibited\n // checking for length to ensure that only\n // leading \"-\" are considered\n if (char == \"-\" && lexer.width() === 1) {\n lexer.emit(lunr.QueryLexer.PRESENCE)\n return lunr.QueryLexer.lexText\n }\n\n if (char.match(lunr.QueryLexer.termSeparator)) {\n return lunr.QueryLexer.lexTerm\n }\n }\n}\n\nlunr.QueryParser = function (str, query) {\n this.lexer = new lunr.QueryLexer (str)\n this.query = query\n this.currentClause = {}\n this.lexemeIdx = 0\n}\n\nlunr.QueryParser.prototype.parse = function () {\n this.lexer.run()\n this.lexemes = this.lexer.lexemes\n\n var state = lunr.QueryParser.parseClause\n\n while (state) {\n state = state(this)\n }\n\n return this.query\n}\n\nlunr.QueryParser.prototype.peekLexeme = function () {\n return this.lexemes[this.lexemeIdx]\n}\n\nlunr.QueryParser.prototype.consumeLexeme = function () {\n var lexeme = this.peekLexeme()\n this.lexemeIdx += 1\n return lexeme\n}\n\nlunr.QueryParser.prototype.nextClause = function () {\n var completedClause = this.currentClause\n this.query.clause(completedClause)\n this.currentClause = {}\n}\n\nlunr.QueryParser.parseClause = function (parser) {\n var lexeme = parser.peekLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n switch (lexeme.type) {\n case lunr.QueryLexer.PRESENCE:\n return lunr.QueryParser.parsePresence\n case lunr.QueryLexer.FIELD:\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expected either a field or a term, found \" + lexeme.type\n\n if (lexeme.str.length >= 1) {\n errorMessage += \" with value '\" + lexeme.str + \"'\"\n }\n\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n}\n\nlunr.QueryParser.parsePresence = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n switch (lexeme.str) {\n case \"-\":\n parser.currentClause.presence = lunr.Query.presence.PROHIBITED\n break\n case \"+\":\n parser.currentClause.presence = lunr.Query.presence.REQUIRED\n break\n default:\n var errorMessage = \"unrecognised presence operator'\" + lexeme.str + \"'\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n var errorMessage = \"expecting term or field, found nothing\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.FIELD:\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expecting term or field, found '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseField = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n if (parser.query.allFields.indexOf(lexeme.str) == -1) {\n var possibleFields = parser.query.allFields.map(function (f) { return \"'\" + f + \"'\" }).join(', '),\n errorMessage = \"unrecognised field '\" + lexeme.str + \"', possible fields: \" + possibleFields\n\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.fields = [lexeme.str]\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n var errorMessage = \"expecting term, found nothing\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n return lunr.QueryParser.parseTerm\n default:\n var errorMessage = \"expecting term, found '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseTerm = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n parser.currentClause.term = lexeme.str.toLowerCase()\n\n if (lexeme.str.indexOf(\"*\") != -1) {\n parser.currentClause.usePipeline = false\n }\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseEditDistance = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n var editDistance = parseInt(lexeme.str, 10)\n\n if (isNaN(editDistance)) {\n var errorMessage = \"edit distance must be numeric\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.editDistance = editDistance\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\nlunr.QueryParser.parseBoost = function (parser) {\n var lexeme = parser.consumeLexeme()\n\n if (lexeme == undefined) {\n return\n }\n\n var boost = parseInt(lexeme.str, 10)\n\n if (isNaN(boost)) {\n var errorMessage = \"boost must be numeric\"\n throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)\n }\n\n parser.currentClause.boost = boost\n\n var nextLexeme = parser.peekLexeme()\n\n if (nextLexeme == undefined) {\n parser.nextClause()\n return\n }\n\n switch (nextLexeme.type) {\n case lunr.QueryLexer.TERM:\n parser.nextClause()\n return lunr.QueryParser.parseTerm\n case lunr.QueryLexer.FIELD:\n parser.nextClause()\n return lunr.QueryParser.parseField\n case lunr.QueryLexer.EDIT_DISTANCE:\n return lunr.QueryParser.parseEditDistance\n case lunr.QueryLexer.BOOST:\n return lunr.QueryParser.parseBoost\n case lunr.QueryLexer.PRESENCE:\n parser.nextClause()\n return lunr.QueryParser.parsePresence\n default:\n var errorMessage = \"Unexpected lexeme type '\" + nextLexeme.type + \"'\"\n throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory)\n } else if (typeof exports === 'object') {\n /**\n * Node. Does not work with strict CommonJS, but\n * only CommonJS-like enviroments that support module.exports,\n * like Node.\n */\n module.exports = factory()\n } else {\n // Browser globals (root is window)\n root.lunr = factory()\n }\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport function __exportStar(m, exports) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n};\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = mod;\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport {\n ArticleDocument,\n SearchDocumentMap,\n SectionDocument,\n setupSearchDocumentMap\n} from \"../document\"\nimport {\n SearchHighlightFactoryFn,\n setupSearchHighlighter\n} from \"../highlighter\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search index configuration\n */\nexport interface SearchIndexConfig {\n lang: string[] /* Search languages */\n separator: string /* Search separator */\n}\n\n/**\n * Search index document\n */\nexport interface SearchIndexDocument {\n location: string /* Document location */\n title: string /* Document title */\n text: string /* Document text */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search index pipeline function\n */\nexport type SearchIndexPipelineFn =\n | \"stemmer\" /* Stemmer */\n | \"stopWordFilter\" /* Stop word filter */\n | \"trimmer\" /* Trimmer */\n\n/**\n * Search index pipeline\n */\nexport type SearchIndexPipeline = SearchIndexPipelineFn[]\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search index\n *\n * This interfaces describes the format of the `search_index.json` file which\n * is automatically built by the MkDocs search plugin.\n */\nexport interface SearchIndex {\n config: SearchIndexConfig /* Search index configuration */\n docs: SearchIndexDocument[] /* Search index documents */\n index?: object | string /* Prebuilt or serialized index */\n pipeline?: SearchIndexPipeline /* Search index pipeline */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search result\n */\nexport interface SearchResult {\n article: ArticleDocument /* Article document */\n sections: SectionDocument[] /* Section documents */\n}\n\n/* ----------------------------------------------------------------------------\n * Class\n * ------------------------------------------------------------------------- */\n\n/**\n * Search\n *\n * Note that `lunr` is injected via Webpack, as it will otherwise also be\n * bundled in the application bundle.\n */\nexport class Search {\n\n /**\n * Search document mapping\n *\n * A mapping of URLs (including hash fragments) to the actual articles and\n * sections of the documentation. The search document mapping must be created\n * regardless of whether the index was prebuilt or not, as `lunr` itself will\n * only store the actual index.\n */\n protected documents: SearchDocumentMap\n\n /**\n * Search highlight factory function\n */\n protected highlight: SearchHighlightFactoryFn\n\n /**\n * The `lunr` search index\n */\n protected index: lunr.Index\n\n /**\n * Create the search integration\n *\n * @param data - Search index\n */\n public constructor({ config, docs, pipeline, index }: SearchIndex) {\n this.documents = setupSearchDocumentMap(docs)\n this.highlight = setupSearchHighlighter(config)\n\n /* If no index was given, create it */\n if (typeof index === \"undefined\") {\n this.index = lunr(function() {\n pipeline = pipeline || [\"trimmer\", \"stopWordFilter\"]\n\n /* Set up pipeline according to configuration */\n this.pipeline.reset()\n for (const fn of pipeline)\n this.pipeline.add(lunr[fn])\n\n /* Set up alternate search languages */\n if (config.lang.length === 1 && config.lang[0] !== \"en\") {\n this.use((lunr as any)[config.lang[0]])\n } else if (config.lang.length > 1) {\n this.use((lunr as any).multiLanguage(...config.lang))\n }\n\n /* Set up fields and reference */\n this.field(\"title\", { boost: 1000 })\n this.field(\"text\")\n this.ref(\"location\")\n\n /* Index documents */\n for (const doc of docs)\n this.add(doc)\n })\n\n /* Prebuilt or serialized index */\n } else {\n this.index = lunr.Index.load(\n typeof index === \"string\"\n ? JSON.parse(index)\n : index\n )\n }\n }\n\n /**\n * Search for matching documents\n *\n * The search index which MkDocs provides is divided up into articles, which\n * contain the whole content of the individual pages, and sections, which only\n * contain the contents of the subsections obtained by breaking the individual\n * pages up at `h1` ... `h6`. As there may be many sections on different pages\n * with identical titles (for example within this very project, e.g. \"Usage\"\n * or \"Installation\"), they need to be put into the context of the containing\n * page. For this reason, section results are grouped within their respective\n * articles which are the top-level results that are returned.\n *\n * @param value - Query value\n *\n * @return Search results\n */\n public query(value: string): SearchResult[] {\n if (value) {\n try {\n\n /* Group sections by containing article */\n const groups = this.index.search(value)\n .reduce((results, result) => {\n const document = this.documents.get(result.ref)\n if (typeof document !== \"undefined\") {\n if (\"parent\" in document) {\n const ref = document.parent.location\n results.set(ref, [...results.get(ref) || [], result])\n } else {\n const ref = document.location\n results.set(ref, results.get(ref) || [])\n }\n }\n return results\n }, new Map())\n\n /* Create highlighter for query */\n const fn = this.highlight(value)\n\n /* Map groups to search documents */\n return [...groups].map(([ref, sections]) => ({\n article: fn(this.documents.get(ref) as ArticleDocument),\n sections: sections.map(section => {\n return fn(this.documents.get(section.ref) as SectionDocument)\n })\n }))\n\n /* Log errors to console (for now) */\n } catch (err) {\n // tslint:disable-next-line no-console\n console.warn(`Invalid query: ${value} – see https://bit.ly/2s3ChXG`)\n }\n }\n\n /* Return nothing in case of error or empty query */\n return []\n }\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchIndex, SearchResult } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search message type\n */\nexport const enum SearchMessageType {\n SETUP, /* Search index setup */\n READY, /* Search index ready */\n QUERY, /* Search query */\n RESULT /* Search results */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * A message containing the data necessary to setup the search index\n */\nexport interface SearchSetupMessage {\n type: SearchMessageType.SETUP /* Message type */\n data: SearchIndex /* Message data */\n}\n\n/**\n * A message indicating the search index is ready\n */\nexport interface SearchReadyMessage {\n type: SearchMessageType.READY /* Message type */\n}\n\n/**\n * A message containing a search query\n */\nexport interface SearchQueryMessage {\n type: SearchMessageType.QUERY /* Message type */\n data: string /* Message data */\n}\n\n/**\n * A message containing results for a search query\n */\nexport interface SearchResultMessage {\n type: SearchMessageType.RESULT /* Message type */\n data: SearchResult[] /* Message data */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * A message exchanged with the search worker\n */\nexport type SearchMessage =\n | SearchSetupMessage\n | SearchReadyMessage\n | SearchQueryMessage\n | SearchResultMessage\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Type guard for search setup messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchSetupMessage(\n message: SearchMessage\n): message is SearchSetupMessage {\n return message.type === SearchMessageType.SETUP\n}\n\n/**\n * Type guard for search ready messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchReadyMessage(\n message: SearchMessage\n): message is SearchReadyMessage {\n return message.type === SearchMessageType.READY\n}\n\n/**\n * Type guard for search query messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchQueryMessage(\n message: SearchMessage\n): message is SearchQueryMessage {\n return message.type === SearchMessageType.QUERY\n}\n\n/**\n * Type guard for search result messages\n *\n * @param message - Search worker message\n *\n * @return Test result\n */\nexport function isSearchResultMessage(\n message: SearchMessage\n): message is SearchResultMessage {\n return message.type === SearchMessageType.RESULT\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport \"expose-loader?lunr!lunr\"\n\nimport { Search, SearchIndexConfig } from \"../../_\"\nimport { SearchMessage, SearchMessageType } from \"../message\"\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Search\n */\nlet search: Search\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up multi-language support through `lunr-languages`\n *\n * This function will automatically import the stemmers necessary to process\n * the languages which were given through the search index configuration.\n *\n * @param config - Search index configuration\n */\nfunction setupLunrLanguages(config: SearchIndexConfig): void {\n const base = \"../lunr\"\n\n /* Add scripts for languages */\n const scripts = []\n for (const lang of config.lang) {\n if (lang === \"ja\") scripts.push(`${base}/tinyseg.min.js`)\n if (lang !== \"en\") scripts.push(`${base}/min/lunr.${lang}.min.js`)\n }\n\n /* Add multi-language support */\n if (config.lang.length > 1)\n scripts.push(`${base}/min/lunr.multi.min.js`)\n\n /* Load scripts synchronously */\n if (scripts.length)\n importScripts(\n `${base}/min/lunr.stemmer.support.min.js`,\n ...scripts\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Message handler\n *\n * @param message - Source message\n *\n * @return Target message\n */\nexport function handler(message: SearchMessage): SearchMessage {\n switch (message.type) {\n\n /* Search setup message */\n case SearchMessageType.SETUP:\n setupLunrLanguages(message.data.config)\n search = new Search(message.data)\n return {\n type: SearchMessageType.READY\n }\n\n /* Search query message */\n case SearchMessageType.QUERY:\n return {\n type: SearchMessageType.RESULT,\n data: search ? search.query(message.data) : []\n }\n\n /* All other messages */\n default:\n throw new TypeError(\"Invalid message type\")\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Worker\n * ------------------------------------------------------------------------- */\n\naddEventListener(\"message\", ev => {\n postMessage(handler(ev.data))\n})\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport * as escapeHTML from \"escape-html\"\n\nimport { SearchIndexDocument } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * A top-level article\n */\nexport interface ArticleDocument extends SearchIndexDocument {\n linked: boolean /* Whether the section was linked */\n}\n\n/**\n * A section of an article\n */\nexport interface SectionDocument extends SearchIndexDocument {\n parent: ArticleDocument /* Parent article */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search document\n */\nexport type SearchDocument =\n | ArticleDocument\n | SectionDocument\n\n/**\n * Search document mapping\n */\nexport type SearchDocumentMap = Map\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a search document mapping\n *\n * @param docs - Search index documents\n *\n * @return Search document map\n */\nexport function setupSearchDocumentMap(\n docs: SearchIndexDocument[]\n): SearchDocumentMap {\n const documents = new Map()\n for (const doc of docs) {\n const [path, hash] = doc.location.split(\"#\")\n\n /* Extract location and title */\n const location = doc.location\n const title = doc.title\n\n /* Escape and cleanup text */\n const text = escapeHTML(doc.text)\n .replace(/\\s+(?=[,.:;!?])/g, \"\")\n .replace(/\\s+/g, \" \")\n\n /* Handle section */\n if (hash) {\n const parent = documents.get(path) as ArticleDocument\n\n /* Ignore first section, override article */\n if (!parent.linked) {\n parent.title = doc.title\n parent.text = text\n parent.linked = true\n\n /* Add subsequent section */\n } else {\n documents.set(location, {\n location,\n title,\n text,\n parent\n })\n }\n\n /* Add article */\n } else {\n documents.set(location, {\n location,\n title,\n text,\n linked: false\n })\n }\n }\n return documents\n}\n","/*\n * Copyright (c) 2016-2020 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchIndexConfig } from \"../_\"\nimport { SearchDocument } from \"../document\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search highlight function\n *\n * @template T - Search document type\n *\n * @param document - Search document\n *\n * @return Highlighted document\n */\nexport type SearchHighlightFn = <\n T extends SearchDocument\n>(document: Readonly) => T\n\n/**\n * Search highlight factory function\n *\n * @param value - Query value\n *\n * @return Search highlight function\n */\nexport type SearchHighlightFactoryFn = (value: string) => SearchHighlightFn\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a search highlighter\n *\n * @param config - Search index configuration\n *\n * @return Search highlight factory function\n */\nexport function setupSearchHighlighter(\n config: SearchIndexConfig\n): SearchHighlightFactoryFn {\n const separator = new RegExp(config.separator, \"img\")\n const highlight = (_: unknown, data: string, term: string) => {\n return `${data}${term}`\n }\n\n /* Return factory function */\n return (value: string) => {\n value = value\n .replace(/[\\s*+-:~^]+/g, \" \")\n .trim()\n\n /* Create search term match expression */\n const match = new RegExp(`(^|${config.separator})(${\n value\n .replace(/[|\\\\{}()[\\]^$+*?.-]/g, \"\\\\$&\")\n .replace(separator, \"|\")\n })`, \"img\")\n\n /* Highlight document */\n return document => ({\n ...document,\n title: document.title.replace(match, highlight),\n text: document.text.replace(match, highlight)\n })\n }\n}\n"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/material/assets/manifest.json b/docs/material/assets/manifest.json new file mode 100644 index 000000000..f0cbdef47 --- /dev/null +++ b/docs/material/assets/manifest.json @@ -0,0 +1,12 @@ +{ + "assets/javascripts/bundle.js": "assets/javascripts/bundle.8566d47a.min.js", + "assets/javascripts/bundle.js.map": "assets/javascripts/bundle.8566d47a.min.js.map", + "assets/javascripts/vendor.js": "assets/javascripts/vendor.809e24aa.min.js", + "assets/javascripts/vendor.js.map": "assets/javascripts/vendor.809e24aa.min.js.map", + "assets/javascripts/worker/search.js": "assets/javascripts/worker/search.f6ebf1dc.min.js", + "assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.f6ebf1dc.min.js.map", + "assets/stylesheets/main.css": "assets/stylesheets/main.127eade9.min.css", + "assets/stylesheets/main.css.map": "assets/stylesheets/main.127eade9.min.css.map", + "assets/stylesheets/palette.css": "assets/stylesheets/palette.c929de0b.min.css", + "assets/stylesheets/palette.css.map": "assets/stylesheets/palette.c929de0b.min.css.map" +} \ No newline at end of file diff --git a/docs/material/assets/stylesheets/main.127eade9.min.css b/docs/material/assets/stylesheets/main.127eade9.min.css new file mode 100644 index 000000000..3f82e7ce7 --- /dev/null +++ b/docs/material/assets/stylesheets/main.127eade9.min.css @@ -0,0 +1,3 @@ +html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}html{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}body{margin:0}hr{box-sizing:content-box;overflow:visible}a,button,label,input{-webkit-tap-highlight-color:transparent}a{color:inherit;text-decoration:none}small{font-size:80%}sub,sup{position:relative;font-size:80%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}table{border-collapse:separate;border-spacing:0}td,th{font-weight:normal;vertical-align:top}button{margin:0;padding:0;font-size:inherit;background:transparent;border:0}input{border:0;outline:0}:root{--md-default-fg-color: hsla(0, 0%, 0%, 0.87);--md-default-fg-color--light: hsla(0, 0%, 0%, 0.54);--md-default-fg-color--lighter: hsla(0, 0%, 0%, 0.26);--md-default-fg-color--lightest: hsla(0, 0%, 0%, 0.07);--md-default-bg-color: hsla(0, 0%, 100%, 1);--md-default-bg-color--light: hsla(0, 0%, 100%, 0.7);--md-default-bg-color--lighter: hsla(0, 0%, 100%, 0.3);--md-default-bg-color--lightest: hsla(0, 0%, 100%, 0.12);--md-primary-fg-color: hsla(231deg, 48%, 48%, 1);--md-primary-fg-color--light: hsla(230deg, 44%, 64%, 1);--md-primary-fg-color--dark: hsla(232deg, 54%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light);--md-accent-fg-color: hsla(231deg, 99%, 66%, 1);--md-accent-fg-color--transparent: hsla(231deg, 99%, 66%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light);--md-code-bg-color: hsla(0, 0%, 96%, 1);--md-code-fg-color: hsla(200, 18%, 26%, 1)}.md-icon svg{display:block;width:1.2rem;height:1.2rem;margin:0 auto;fill:currentColor}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body,input{color:var(--md-default-fg-color);font-feature-settings:"kern","liga";font-family:-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,pre,kbd{color:var(--md-default-fg-color);font-feature-settings:"kern";font-family:SFMono-Regular,Consolas,Menlo,monospace}.md-typeset{font-size:.8rem;line-height:1.6;-webkit-print-color-adjust:exact;color-adjust:exact}.md-typeset p,.md-typeset ul,.md-typeset ol,.md-typeset blockquote{margin:1em 0}.md-typeset h1{margin:0 0 2rem;color:var(--md-default-fg-color--light);font-weight:300;font-size:1.5625rem;line-height:1.3;letter-spacing:-0.01em}.md-typeset h2{margin:2rem 0 .8rem;font-weight:300;font-size:1.25rem;line-height:1.4;letter-spacing:-0.01em}.md-typeset h3{margin:1.6rem 0 .8rem;font-weight:400;font-size:1rem;line-height:1.5;letter-spacing:-0.01em}.md-typeset h2+h3{margin-top:.8rem}.md-typeset h4{margin:.8rem 0;font-weight:700;font-size:.8rem;letter-spacing:-0.01em}.md-typeset h5,.md-typeset h6{margin:.8rem 0;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;letter-spacing:-0.01em}.md-typeset h5{text-transform:uppercase}.md-typeset hr{margin:1.5em 0;border-bottom:.05rem dotted var(--md-default-fg-color--lighter)}.md-typeset a{color:var(--md-primary-fg-color);word-break:break-word}.md-typeset a,.md-typeset a::before{transition:color 125ms}.md-typeset a:focus,.md-typeset a:hover{color:var(--md-accent-fg-color)}.md-typeset code,.md-typeset pre,.md-typeset kbd{color:var(--md-code-fg-color);direction:ltr}@media print{.md-typeset code,.md-typeset pre,.md-typeset kbd{white-space:pre-wrap}}.md-typeset code{padding:0 .2941176471em;font-size:.85em;word-break:break-word;background-color:var(--md-code-bg-color);border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset h1 code,.md-typeset h2 code,.md-typeset h3 code,.md-typeset h4 code,.md-typeset h5 code,.md-typeset h6 code{margin:initial;padding:initial;background-color:transparent;box-shadow:none}.md-typeset a>code{color:currentColor}.md-typeset pre{position:relative;margin:1em 0;line-height:1.4}.md-typeset pre>code{display:block;margin:0;padding:.525rem 1.1764705882em;overflow:auto;word-break:normal;box-shadow:none;-webkit-box-decoration-break:slice;box-decoration-break:slice;touch-action:auto;scrollbar-width:thin}.md-typeset pre>code::-webkit-scrollbar{width:.2rem;height:.2rem}.md-typeset pre>code::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-typeset pre>code::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@media screen and (max-width: 44.9375em){.md-typeset>pre{margin:1em -0.8rem}.md-typeset>pre code{border-radius:0}}.md-typeset kbd{display:inline-block;padding:0 .6666666667em;font-size:.75em;line-height:1.5;vertical-align:text-top;word-break:break-word;border-radius:.1rem;box-shadow:0 .1rem 0 .05rem var(--md-default-fg-color--lighter),0 .1rem 0 var(--md-default-fg-color--lighter),inset 0 -0.1rem .2rem var(--md-default-bg-color)}.md-typeset mark{padding:0 .25em;word-break:break-word;background-color:rgba(255,235,59,.5);border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset abbr{text-decoration:none;border-bottom:.05rem dotted var(--md-default-fg-color--light);cursor:help}.md-typeset small{opacity:.75}.md-typeset sup,.md-typeset sub{margin-left:.078125em}[dir=rtl] .md-typeset sup,[dir=rtl] .md-typeset sub{margin-right:.078125em;margin-left:initial}.md-typeset blockquote{padding-left:.6rem;color:var(--md-default-fg-color--light);border-left:.2rem solid var(--md-default-fg-color--lighter)}[dir=rtl] .md-typeset blockquote{padding-right:.6rem;padding-left:initial;border-right:.2rem solid var(--md-default-fg-color--lighter);border-left:initial}.md-typeset ul{list-style-type:disc}.md-typeset ul,.md-typeset ol{margin-left:.625em;padding:0}[dir=rtl] .md-typeset ul,[dir=rtl] .md-typeset ol{margin-right:.625em;margin-left:initial}.md-typeset ul ol,.md-typeset ol ol{list-style-type:lower-alpha}.md-typeset ul ol ol,.md-typeset ol ol ol{list-style-type:lower-roman}.md-typeset ul li,.md-typeset ol li{margin-bottom:.5em;margin-left:1.25em}[dir=rtl] .md-typeset ul li,[dir=rtl] .md-typeset ol li{margin-right:1.25em;margin-left:initial}.md-typeset ul li p,.md-typeset ul li blockquote,.md-typeset ol li p,.md-typeset ol li blockquote{margin:.5em 0}.md-typeset ul li:last-child,.md-typeset ol li:last-child{margin-bottom:0}.md-typeset ul li ul,.md-typeset ul li ol,.md-typeset ol li ul,.md-typeset ol li ol{margin:.5em 0 .5em .625em}[dir=rtl] .md-typeset ul li ul,[dir=rtl] .md-typeset ul li ol,[dir=rtl] .md-typeset ol li ul,[dir=rtl] .md-typeset ol li ol{margin-right:.625em;margin-left:initial}.md-typeset dd{margin:1em 0 1em 1.875em}[dir=rtl] .md-typeset dd{margin-right:1.875em;margin-left:initial}.md-typeset img,.md-typeset svg{max-width:100%;height:auto}.md-typeset iframe{max-width:100%}.md-typeset table:not([class]){display:inline-block;max-width:100%;overflow:auto;font-size:.64rem;background:var(--md-default-bg-color);border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1);touch-action:auto}.md-typeset table:not([class])+*{margin-top:1.5em}.md-typeset table:not([class]) th:not([align]),.md-typeset table:not([class]) td:not([align]){text-align:left}[dir=rtl] .md-typeset table:not([class]) th:not([align]),[dir=rtl] .md-typeset table:not([class]) td:not([align]){text-align:right}.md-typeset table:not([class]) th{min-width:5rem;padding:.6rem .8rem;color:var(--md-default-bg-color);vertical-align:top;background-color:var(--md-default-fg-color--light)}.md-typeset table:not([class]) td{padding:.6rem .8rem;vertical-align:top;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-typeset table:not([class]) tr{transition:background-color 125ms}.md-typeset table:not([class]) tr:hover{background-color:rgba(0,0,0,.035);box-shadow:0 .05rem 0 var(--md-default-bg-color) inset}.md-typeset table:not([class]) tr:first-child td{border-top:0}.md-typeset table:not([class]) a{word-break:normal}.md-typeset__scrollwrap{margin:1em -0.8rem;overflow-x:auto;touch-action:auto}.md-typeset__table{display:inline-block;margin-bottom:.5em;padding:0 .8rem}.md-typeset__table table{display:table;width:100%;margin:0;overflow:hidden}html{height:100%;overflow-x:hidden;font-size:125%;background-color:var(--md-default-bg-color)}@media screen and (min-width: 100em){html{font-size:137.5%}}@media screen and (min-width: 125em){html{font-size:150%}}body{position:relative;display:flex;flex-direction:column;width:100%;min-height:100%;font-size:.5rem}@media screen and (max-width: 59.9375em){body[data-md-state=lock]{position:fixed}}@media print{body{display:block}}hr{display:block;height:.05rem;padding:0;border:0}.md-grid{max-width:61rem;margin-right:auto;margin-left:auto}.md-container{display:flex;flex-direction:column;flex-grow:1}@media print{.md-container{display:block}}.md-main{flex-grow:1}.md-main__inner{display:flex;height:100%;margin-top:1.5rem}.md-ellipsis{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.md-toggle{display:none}.md-overlay{position:fixed;top:0;z-index:3;width:0;height:0;background-color:var(--md-default-fg-color--light);opacity:0;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}@media screen and (max-width: 76.1875em){[data-md-toggle=drawer]:checked~.md-overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-skip{position:fixed;z-index:-1;margin:.5rem;padding:.3rem .5rem;color:var(--md-default-bg-color);font-size:.64rem;background-color:var(--md-default-fg-color);border-radius:.1rem;transform:translateY(0.4rem);opacity:0}.md-skip:focus{z-index:10;transform:translateY(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 175ms 75ms}@page{margin:25mm}.md-announce{overflow:auto;background-color:var(--md-default-fg-color)}.md-announce__inner{margin:.6rem auto;padding:0 .8rem;color:var(--md-default-bg-color);font-size:.7rem}@media print{.md-announce{display:none}}.md-typeset .md-button{display:inline-block;padding:.625em 2em;color:var(--md-primary-fg-color);font-weight:700;border:.1rem solid currentColor;border-radius:.1rem;transition:color 125ms,background-color 125ms,border-color 125ms}.md-typeset .md-button--primary{color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);border-color:var(--md-primary-fg-color)}.md-typeset .md-button:focus,.md-typeset .md-button:hover{color:var(--md-accent-bg-color);background-color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-clipboard{position:absolute;top:.4rem;right:.5em;z-index:1;width:1.5em;height:1.5em;color:var(--md-default-fg-color--lightest);border-radius:.1rem;cursor:pointer;transition:color 125ms}@media print{.md-clipboard{display:none}}.md-clipboard svg{width:1.125em;height:1.125em}pre:hover .md-clipboard{color:var(--md-default-fg-color--light)}pre .md-clipboard:focus,pre .md-clipboard:hover{color:var(--md-accent-fg-color)}.md-content{flex:1;max-width:100%}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-content{max-width:calc(100% - 12.1rem)}}@media screen and (min-width: 76.25em){.md-content{max-width:calc(100% - 12.1rem * 2)}}.md-content__inner{margin:0 .8rem 1.2rem;padding-top:.6rem}@media screen and (min-width: 76.25em){.md-content__inner{margin-right:1.2rem;margin-left:1.2rem}}.md-content__inner::before{display:block;height:.4rem;content:""}.md-content__inner>:last-child{margin-bottom:0}.md-content__button{float:right;margin:.4rem 0;margin-left:.4rem;padding:0}[dir=rtl] .md-content__button{float:left;margin-right:.4rem;margin-left:initial}[dir=rtl] .md-content__button svg{transform:scaleX(-1)}.md-typeset .md-content__button{color:var(--md-default-fg-color--lighter)}.md-content__button svg{display:inline;vertical-align:top}@media print{.md-content__button{display:none}}.md-dialog{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:fixed;right:.8rem;bottom:.8rem;left:initial;z-index:2;display:block;min-width:11.1rem;padding:.4rem .6rem;color:var(--md-default-bg-color);font-size:.7rem;background:var(--md-default-fg-color);border:none;border-radius:.1rem;transform:translateY(100%);opacity:0;transition:transform 0ms 400ms,opacity 400ms}[dir=rtl] .md-dialog{right:initial;left:.8rem}.md-dialog[data-md-state=open]{transform:translateY(0);opacity:1;transition:transform 400ms cubic-bezier(0.075, 0.85, 0.175, 1),opacity 400ms}@media print{.md-dialog{display:none}}.md-header{position:-webkit-sticky;position:sticky;top:0;right:0;left:0;z-index:2;height:2.4rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);box-shadow:0 0 .2rem rgba(0,0,0,0),0 .2rem .4rem rgba(0,0,0,0);transition:color 250ms,background-color 250ms}.no-js .md-header{box-shadow:none;transition:none}.md-header[data-md-state=shadow]{box-shadow:0 0 .2rem rgba(0,0,0,.1),0 .2rem .4rem rgba(0,0,0,.2);transition:color 250ms,background-color 250ms,box-shadow 250ms}@media print{.md-header{display:none}}.md-header-nav{display:flex;padding:0 .2rem}.md-header-nav__button{position:relative;z-index:1;margin:.2rem;padding:.4rem;cursor:pointer;transition:opacity 250ms}[dir=rtl] .md-header-nav__button svg{transform:scaleX(-1)}.md-header-nav__button:focus,.md-header-nav__button:hover{opacity:.7}.md-header-nav__button.md-logo{margin:.2rem;padding:.4rem}.md-header-nav__button.md-logo img,.md-header-nav__button.md-logo svg{display:block;width:1.2rem;height:1.2rem;fill:currentColor}.no-js .md-header-nav__button[for=__search]{display:none}@media screen and (min-width: 60em){.md-header-nav__button[for=__search]{display:none}}@media screen and (max-width: 76.1875em){.md-header-nav__button.md-logo{display:none}}@media screen and (min-width: 76.25em){.md-header-nav__button[for=__drawer]{display:none}}.md-header-nav__topic{position:absolute;width:100%;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms}.md-header-nav__topic+.md-header-nav__topic{z-index:-1;transform:translateX(1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__topic+.md-header-nav__topic{transform:translateX(-1.25rem)}.no-js .md-header-nav__topic{position:initial}.no-js .md-header-nav__topic+.md-header-nav__topic{display:none}.md-header-nav__title{flex-grow:1;padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-header-nav__title[data-md-state=active] .md-header-nav__topic{z-index:-1;transform:translateX(-1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__title[data-md-state=active] .md-header-nav__topic{transform:translateX(1.25rem)}.md-header-nav__title[data-md-state=active] .md-header-nav__topic+.md-header-nav__topic{z-index:0;transform:translateX(0);opacity:1;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:initial}.md-header-nav__title>.md-header-nav__ellipsis{position:relative;width:100%;height:100%}.md-header-nav__source{display:none}@media screen and (min-width: 60em){.md-header-nav__source{display:block;width:11.7rem;max-width:11.7rem;margin-left:1rem}[dir=rtl] .md-header-nav__source{margin-right:1rem;margin-left:initial}}@media screen and (min-width: 76.25em){.md-header-nav__source{margin-left:1.4rem}[dir=rtl] .md-header-nav__source{margin-right:1.4rem}}.md-hero{overflow:hidden;color:var(--md-primary-bg-color);font-size:1rem;background-color:var(--md-primary-fg-color);transition:background 250ms}.md-hero__inner{margin-top:1rem;padding:.8rem .8rem .4rem;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms;transition-delay:100ms}@media screen and (max-width: 76.1875em){.md-hero__inner{margin-top:2.4rem;margin-bottom:1.2rem}}[data-md-state=hidden] .md-hero__inner{transform:translateY(0.625rem);opacity:0;transition:transform 0ms 400ms,opacity 100ms 0ms;pointer-events:none}.md-hero--expand .md-hero__inner{margin-bottom:1.2rem}.md-footer{color:var(--md-default-bg-color);background-color:var(--md-default-fg-color)}@media print{.md-footer{display:none}}.md-footer-nav__inner{padding:.2rem;overflow:auto}.md-footer-nav__link{display:flex;padding-top:1.4rem;padding-bottom:.4rem;transition:opacity 250ms}@media screen and (min-width: 45em){.md-footer-nav__link{width:50%}}.md-footer-nav__link:focus,.md-footer-nav__link:hover{opacity:.7}.md-footer-nav__link--prev{float:left;width:25%}[dir=rtl] .md-footer-nav__link--prev{float:right}[dir=rtl] .md-footer-nav__link--prev svg{transform:scaleX(-1)}@media screen and (max-width: 44.9375em){.md-footer-nav__link--prev .md-footer-nav__title{display:none}}.md-footer-nav__link--next{float:right;width:75%;text-align:right}[dir=rtl] .md-footer-nav__link--next{float:left;text-align:left}[dir=rtl] .md-footer-nav__link--next svg{transform:scaleX(-1)}.md-footer-nav__title{position:relative;flex-grow:1;max-width:calc(100% - 2.4rem);padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-footer-nav__button{margin:.2rem;padding:.4rem}.md-footer-nav__direction{position:absolute;right:0;left:0;margin-top:-1rem;padding:0 1rem;color:var(--md-default-bg-color--light);font-size:.64rem}.md-footer-meta{background-color:var(--md-default-fg-color--lighter)}.md-footer-meta__inner{display:flex;flex-wrap:wrap;justify-content:space-between;padding:.2rem}html .md-footer-meta.md-typeset a{color:var(--md-default-bg-color--light)}html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover{color:var(--md-default-bg-color)}.md-footer-copyright{width:100%;margin:auto .6rem;padding:.4rem 0;color:var(--md-default-bg-color--lighter);font-size:.64rem}@media screen and (min-width: 45em){.md-footer-copyright{width:auto}}.md-footer-copyright__highlight{color:var(--md-default-bg-color--light)}.md-footer-social{margin:0 .4rem;padding:.2rem 0 .6rem}@media screen and (min-width: 45em){.md-footer-social{padding:.6rem 0}}.md-footer-social__link{display:inline-block;width:1.6rem;height:1.6rem;text-align:center}.md-footer-social__link::before{line-height:1.9}.md-footer-social__link svg{max-height:.8rem;vertical-align:-25%;fill:currentColor}.md-nav{font-size:.7rem;line-height:1.3}.md-nav__title{display:block;padding:0 .6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis}.md-nav__title .md-nav__button{display:none}.md-nav__title .md-nav__button img{width:100%;height:auto}.md-nav__title .md-nav__button.md-logo img,.md-nav__title .md-nav__button.md-logo svg{display:block;width:2.4rem;height:2.4rem}.md-nav__title .md-nav__button.md-logo svg{fill:currentColor}.md-nav__list{margin:0;padding:0;list-style:none}.md-nav__item{padding:0 .6rem}.md-nav__item:last-child{padding-bottom:.6rem}.md-nav__item .md-nav__item{padding-right:0}[dir=rtl] .md-nav__item .md-nav__item{padding-right:.6rem;padding-left:0}.md-nav__item .md-nav__item:last-child{padding-bottom:0}.md-nav__link{display:block;margin-top:.625em;overflow:hidden;text-overflow:ellipsis;cursor:pointer;transition:color 125ms;scroll-snap-align:start}html .md-nav__link[for=__toc]{display:none}html .md-nav__link[for=__toc]~.md-nav{display:none}.md-nav__link[data-md-state=blur]{color:var(--md-default-fg-color--light)}.md-nav__item .md-nav__link--active{color:var(--md-primary-fg-color)}.md-nav__item--nested>.md-nav__link{color:inherit}.md-nav__link:focus,.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav__source{display:none}@media screen and (max-width: 76.1875em){.md-nav{background-color:var(--md-default-bg-color)}.md-nav--primary,.md-nav--primary .md-nav{position:absolute;top:0;right:0;left:0;z-index:1;display:flex;flex-direction:column;height:100%}.md-nav--primary .md-nav__title,.md-nav--primary .md-nav__item{font-size:.8rem;line-height:1.5}.md-nav--primary .md-nav__title{position:relative;height:5.6rem;padding:3rem .8rem .2rem;color:var(--md-default-fg-color--light);font-weight:400;line-height:2.4rem;white-space:nowrap;background-color:var(--md-default-fg-color--lightest);cursor:pointer}.md-nav--primary .md-nav__title .md-nav__icon{position:absolute;top:.4rem;left:.4rem;display:block;width:1.2rem;height:1.2rem;margin:.2rem}[dir=rtl] .md-nav--primary .md-nav__title .md-nav__icon{right:.4rem;left:initial}.md-nav--primary .md-nav__title~.md-nav__list{overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory;touch-action:pan-y}.md-nav--primary .md-nav__title~.md-nav__list>.md-nav__item:first-child{border-top:0}.md-nav--primary .md-nav__title[for=__drawer]{position:relative;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{position:absolute;top:.2rem;left:.2rem;display:block;margin:.2rem;padding:.4rem;font-size:2.4rem}html [dir=rtl] .md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{right:.2rem;left:initial}.md-nav--primary .md-nav__list{flex:1}.md-nav--primary .md-nav__item{padding:0;border-top:.05rem solid var(--md-default-fg-color--lightest)}[dir=rtl] .md-nav--primary .md-nav__item{padding:0}.md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:2.4rem}[dir=rtl] .md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav--primary .md-nav__item--active>.md-nav__link{color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__item--active>.md-nav__link:focus,.md-nav--primary .md-nav__item--active>.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav--primary .md-nav__link{position:relative;margin-top:0;padding:.6rem .8rem}.md-nav--primary .md-nav__link .md-nav__icon{position:absolute;top:50%;right:.6rem;margin-top:-0.6rem;color:inherit;font-size:1.2rem}[dir=rtl] .md-nav--primary .md-nav__link .md-nav__icon{right:initial;left:.6rem}[dir=rtl] .md-nav--primary .md-nav__icon svg{transform:scale(-1)}.md-nav--primary .md-nav--secondary .md-nav__link{position:static}.md-nav--primary .md-nav--secondary .md-nav{position:static;background-color:transparent}.md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-left:1.4rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-right:1.4rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-left:2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-right:2rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-left:2.6rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-right:2.6rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-left:3.2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-right:3.2rem;padding-left:initial}.md-nav__toggle~.md-nav{display:flex;transform:translateX(100%);opacity:0;transition:transform 250ms cubic-bezier(0.8, 0, 0.6, 1),opacity 125ms 50ms}[dir=rtl] .md-nav__toggle~.md-nav{transform:translateX(-100%)}.md-nav__toggle:checked~.md-nav{transform:translateX(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 125ms 125ms}.md-nav__toggle:checked~.md-nav>.md-nav__list{-webkit-backface-visibility:hidden;backface-visibility:hidden}}@media screen and (max-width: 59.9375em){html .md-nav__link[for=__toc]{display:block;padding-right:2.4rem}html .md-nav__link[for=__toc]+.md-nav__link{display:none}html .md-nav__link[for=__toc]~.md-nav{display:flex}html [dir=rtl] .md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav__source{display:block;padding:0 .2rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color--dark)}}@media screen and (min-width: 60em){.md-nav--secondary .md-nav__title[for=__toc]{scroll-snap-align:start}.md-nav--secondary .md-nav__title .md-nav__icon{display:none}}@media screen and (min-width: 76.25em){.md-nav{transition:max-height 250ms cubic-bezier(0.86, 0, 0.07, 1)}.md-nav--primary .md-nav__title[for=__drawer]{scroll-snap-align:start}.md-nav--primary .md-nav__title .md-nav__icon{display:none}.md-nav__toggle~.md-nav{display:none}.md-nav__toggle:checked~.md-nav{display:block}.md-nav__item--nested>.md-nav>.md-nav__title{display:none}.md-nav__icon{float:right;height:.9rem;transition:transform 250ms}[dir=rtl] .md-nav__icon{float:left;transform:rotate(180deg)}.md-nav__icon svg{display:inline-block;width:.9rem;height:.9rem;vertical-align:-0.1rem}.md-nav__item--nested .md-nav__toggle:checked~.md-nav__link .md-nav__icon{transform:rotate(90deg)}}.md-search{position:relative}.no-js .md-search{display:none}@media screen and (min-width: 60em){.md-search{padding:.2rem 0}}.md-search__overlay{z-index:1;opacity:0}@media screen and (max-width: 59.9375em){.md-search__overlay{position:absolute;top:.2rem;left:-2.2rem;width:2rem;height:2rem;overflow:hidden;background-color:var(--md-default-bg-color);border-radius:1rem;transform-origin:center;transition:transform 300ms 100ms,opacity 200ms 200ms;pointer-events:none}[dir=rtl] .md-search__overlay{right:-2.2rem;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{opacity:1;transition:transform 400ms,opacity 100ms}}@media screen and (max-width: 29.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(45)}}@media screen and (min-width: 30em)and (max-width: 44.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(60)}}@media screen and (min-width: 45em)and (max-width: 59.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(75)}}@media screen and (min-width: 60em){.md-search__overlay{position:fixed;top:0;left:0;width:0;height:0;background-color:var(--md-default-fg-color--light);cursor:pointer;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}[dir=rtl] .md-search__overlay{right:0;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-search__inner{-webkit-backface-visibility:hidden;backface-visibility:hidden}@media screen and (max-width: 59.9375em){.md-search__inner{position:fixed;top:0;left:100%;z-index:2;width:100%;height:100%;transform:translateX(5%);opacity:0;transition:right 0ms 300ms,left 0ms 300ms,transform 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1),opacity 150ms 150ms}[data-md-toggle=search]:checked~.md-header .md-search__inner{left:0;transform:translateX(0);opacity:1;transition:right 0ms 0ms,left 0ms 0ms,transform 150ms 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms 150ms}[dir=rtl] [data-md-toggle=search]:checked~.md-header .md-search__inner{right:0;left:initial}html [dir=rtl] .md-search__inner{right:100%;left:initial;transform:translateX(-5%)}}@media screen and (min-width: 60em){.md-search__inner{position:relative;float:right;width:11.7rem;padding:.1rem 0;transition:width 250ms cubic-bezier(0.1, 0.7, 0.1, 1)}[dir=rtl] .md-search__inner{float:left}}@media screen and (min-width: 60em)and (max-width: 76.1875em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:23.4rem}}@media screen and (min-width: 76.25em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:34.4rem}}.md-search__form{position:relative}@media screen and (min-width: 60em){.md-search__form{border-radius:.1rem}}.md-search__input{position:relative;z-index:2;padding:0 2.2rem 0 3.6rem;text-overflow:ellipsis}[dir=rtl] .md-search__input{padding:0 3.6rem 0 2.2rem}.md-search__input::-webkit-input-placeholder{-webkit-transition:color 250ms;transition:color 250ms}.md-search__input::-moz-placeholder{-moz-transition:color 250ms;transition:color 250ms}.md-search__input::-ms-input-placeholder{-ms-transition:color 250ms;transition:color 250ms}.md-search__input::placeholder{transition:color 250ms}.md-search__input::-webkit-input-placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-moz-placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-ms-input-placeholder{color:var(--md-default-fg-color--light)}.md-search__input~.md-search__icon,.md-search__input::placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-ms-clear{display:none}@media screen and (max-width: 59.9375em){.md-search__input{width:100%;height:2.4rem;font-size:.9rem}}@media screen and (min-width: 60em){.md-search__input{width:100%;height:1.8rem;padding-left:2.2rem;color:inherit;font-size:.8rem;background-color:var(--md-default-fg-color--lighter);border-radius:.1rem;transition:color 250ms,background-color 250ms}[dir=rtl] .md-search__input{padding-right:2.2rem}.md-search__input+.md-search__icon{color:var(--md-primary-bg-color)}.md-search__input::-webkit-input-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::-moz-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::-ms-input-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::placeholder{color:var(--md-primary-bg-color--light)}.md-search__input:hover{background-color:var(--md-default-bg-color--lightest)}[data-md-toggle=search]:checked~.md-header .md-search__input{color:var(--md-default-fg-color);text-overflow:clip;background-color:var(--md-default-bg-color);border-radius:.1rem .1rem 0 0}[data-md-toggle=search]:checked~.md-header .md-search__input::-webkit-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input::-moz-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input::-ms-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::placeholder{color:var(--md-default-fg-color--light)}}.md-search__icon{position:absolute;z-index:2;width:1.2rem;height:1.2rem;cursor:pointer;transition:color 250ms,opacity 250ms}.md-search__icon:hover{opacity:.7}.md-search__icon[for=__search]{top:.3rem;left:.5rem}[dir=rtl] .md-search__icon[for=__search]{right:.5rem;left:initial}[dir=rtl] .md-search__icon[for=__search] svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search__icon[for=__search]{top:.6rem;left:.8rem}[dir=rtl] .md-search__icon[for=__search]{right:.8rem;left:initial}.md-search__icon[for=__search] svg:first-child{display:none}}@media screen and (min-width: 60em){.md-search__icon[for=__search]{pointer-events:none}.md-search__icon[for=__search] svg:last-child{display:none}}.md-search__icon[type=reset]{top:.3rem;right:.5rem;transform:scale(0.75);opacity:0;transition:transform 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:none}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.5rem}@media screen and (max-width: 59.9375em){.md-search__icon[type=reset]{top:.6rem;right:.8rem}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.8rem}}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]{transform:scale(1);opacity:1;pointer-events:initial}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]:hover{opacity:.7}.md-search__output{position:absolute;z-index:1;width:100%;overflow:hidden;border-radius:0 0 .1rem .1rem}@media screen and (max-width: 59.9375em){.md-search__output{top:2.4rem;bottom:0}}@media screen and (min-width: 60em){.md-search__output{top:1.9rem;opacity:0;transition:opacity 400ms}[data-md-toggle=search]:checked~.md-header .md-search__output{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.4);opacity:1}}.md-search__scrollwrap{height:100%;overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory;touch-action:pan-y}@media(-webkit-max-device-pixel-ratio: 1), (max-resolution: 1dppx){.md-search__scrollwrap{transform:translateZ(0)}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search__scrollwrap{width:23.4rem}}@media screen and (min-width: 76.25em){.md-search__scrollwrap{width:34.4rem}}@media screen and (min-width: 60em){.md-search__scrollwrap{max-height:0}[data-md-toggle=search]:checked~.md-header .md-search__scrollwrap{max-height:75vh}.md-search__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-search__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}}.md-search-result{color:var(--md-default-fg-color);word-break:break-word}.md-search-result__meta{padding:0 .8rem;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.8rem;background-color:var(--md-default-fg-color--lightest);scroll-snap-align:start}@media screen and (min-width: 60em){.md-search-result__meta{padding-left:2.2rem}[dir=rtl] .md-search-result__meta{padding-right:2.2rem;padding-left:initial}}.md-search-result__list{margin:0;padding:0;list-style:none;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-search-result__item{box-shadow:0 -0.05rem 0 var(--md-default-fg-color--lightest)}.md-search-result__link{display:block;outline:0;transition:background 250ms;scroll-snap-align:start}.md-search-result__link:focus,.md-search-result__link:hover{background-color:var(--md-accent-fg-color--transparent)}.md-search-result__link:focus .md-search-result__article::before,.md-search-result__link:hover .md-search-result__article::before{opacity:.7}.md-search-result__link:last-child .md-search-result__teaser{margin-bottom:.6rem}.md-search-result__article{position:relative;padding:0 .8rem;overflow:hidden}@media screen and (min-width: 60em){.md-search-result__article{padding-left:2.2rem}[dir=rtl] .md-search-result__article{padding-right:2.2rem;padding-left:.8rem}}.md-search-result__article--document .md-search-result__title{margin:.55rem 0;font-weight:400;font-size:.8rem;line-height:1.4}.md-search-result__icon{position:absolute;left:0;margin:.1rem;padding:.4rem;color:var(--md-default-fg-color--light)}[dir=rtl] .md-search-result__icon{right:0;left:initial}[dir=rtl] .md-search-result__icon svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search-result__icon{display:none}}.md-search-result__title{margin:.5em 0;font-weight:700;font-size:.64rem;line-height:1.4}.md-search-result__teaser{display:-webkit-box;max-height:1.65rem;margin:.5em 0;overflow:hidden;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.4;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:2}@media screen and (max-width: 44.9375em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}.md-search-result em{font-weight:700;font-style:normal;text-decoration:underline}@-webkit-keyframes md-sidebar__scrollwrap--hack{0%,99%{-webkit-scroll-snap-type:none;scroll-snap-type:none}100%{-webkit-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}}@keyframes md-sidebar__scrollwrap--hack{0%,99%{-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none}100%{-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}}.md-sidebar{position:-webkit-sticky;position:sticky;top:2.4rem;align-self:flex-start;width:12.1rem;padding:1.2rem 0;overflow:hidden}@media print{.md-sidebar{display:none}}@media screen and (max-width: 76.1875em){.md-sidebar--primary{position:fixed;top:0;left:-12.1rem;z-index:3;width:12.1rem;height:100%;background-color:var(--md-default-bg-color);transform:translateX(0);transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 250ms}[dir=rtl] .md-sidebar--primary{right:-12.1rem;left:initial}[data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.4);transform:translateX(12.1rem)}[dir=rtl] [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{transform:translateX(-12.1rem)}.md-sidebar--primary .md-sidebar__scrollwrap{overflow:hidden}}.md-sidebar--secondary{display:none;order:2}@media screen and (min-width: 60em){.md-sidebar--secondary{display:block}.md-sidebar--secondary .md-sidebar__scrollwrap{touch-action:pan-y}}.md-sidebar__scrollwrap{max-height:100%;margin:0 .2rem;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.js .md-sidebar__scrollwrap{-webkit-animation:md-sidebar__scrollwrap--hack 400ms forwards;animation:md-sidebar__scrollwrap--hack 400ms forwards}@media screen and (max-width: 76.1875em){.md-sidebar--primary .md-sidebar__scrollwrap{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none}}.md-sidebar__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@-webkit-keyframes md-source__facts--done{0%{height:0}100%{height:.65rem}}@keyframes md-source__facts--done{0%{height:0}100%{height:.65rem}}@-webkit-keyframes md-source__fact--done{0%{transform:translateY(100%);opacity:0}50%{opacity:0}100%{transform:translateY(0%);opacity:1}}@keyframes md-source__fact--done{0%{transform:translateY(100%);opacity:0}50%{opacity:0}100%{transform:translateY(0%);opacity:1}}.md-source{display:block;font-size:.65rem;line-height:1.2;white-space:nowrap;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:opacity 250ms}.md-source:hover{opacity:.7}.md-source__icon{display:inline-block;width:2.4rem;height:2.4rem;vertical-align:middle}.md-source__icon svg{margin-top:.6rem;margin-left:.6rem}[dir=rtl] .md-source__icon svg{margin-right:.6rem;margin-left:initial}.md-source__icon+.md-source__repository{margin-left:-2rem;padding-left:2rem}[dir=rtl] .md-source__icon+.md-source__repository{margin-right:-2rem;margin-left:initial;padding-right:2rem;padding-left:initial}.md-source__repository{display:inline-block;max-width:calc(100% - 1.2rem);margin-left:.6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis;vertical-align:middle}.md-source__facts{margin:0;padding:0;overflow:hidden;font-weight:700;font-size:.55rem;list-style-type:none;opacity:.75}[data-md-state=done] .md-source__facts{-webkit-animation:md-source__facts--done 250ms ease-in;animation:md-source__facts--done 250ms ease-in}.md-source__fact{float:left}[dir=rtl] .md-source__fact{float:right}[data-md-state=done] .md-source__fact{-webkit-animation:md-source__fact--done 400ms ease-out;animation:md-source__fact--done 400ms ease-out}.md-source__fact::before{margin:0 .1rem;content:"·"}.md-source__fact:first-child::before{display:none}.md-tabs{width:100%;overflow:auto;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);transition:background 250ms}.no-js .md-tabs{transition:none}@media screen and (max-width: 76.1875em){.md-tabs{display:none}}@media print{.md-tabs{display:none}}.md-tabs__list{margin:0;margin-left:.2rem;padding:0;white-space:nowrap;list-style:none;contain:content}[dir=rtl] .md-tabs__list{margin-right:.2rem;margin-left:initial}.md-tabs__item{display:inline-block;height:2.4rem;padding-right:.6rem;padding-left:.6rem}.md-tabs__link{display:block;margin-top:.8rem;font-size:.7rem;opacity:.7;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms}.no-js .md-tabs__link{transition:none}.md-tabs__link--active,.md-tabs__link:hover{color:inherit;opacity:1}.md-tabs__item:nth-child(2) .md-tabs__link{transition-delay:20ms}.md-tabs__item:nth-child(3) .md-tabs__link{transition-delay:40ms}.md-tabs__item:nth-child(4) .md-tabs__link{transition-delay:60ms}.md-tabs__item:nth-child(5) .md-tabs__link{transition-delay:80ms}.md-tabs__item:nth-child(6) .md-tabs__link{transition-delay:100ms}.md-tabs__item:nth-child(7) .md-tabs__link{transition-delay:120ms}.md-tabs__item:nth-child(8) .md-tabs__link{transition-delay:140ms}.md-tabs__item:nth-child(9) .md-tabs__link{transition-delay:160ms}.md-tabs__item:nth-child(10) .md-tabs__link{transition-delay:180ms}.md-tabs__item:nth-child(11) .md-tabs__link{transition-delay:200ms}.md-tabs__item:nth-child(12) .md-tabs__link{transition-delay:220ms}.md-tabs__item:nth-child(13) .md-tabs__link{transition-delay:240ms}.md-tabs__item:nth-child(14) .md-tabs__link{transition-delay:260ms}.md-tabs__item:nth-child(15) .md-tabs__link{transition-delay:280ms}.md-tabs__item:nth-child(16) .md-tabs__link{transition-delay:300ms}.md-tabs[data-md-state=hidden]{pointer-events:none}.md-tabs[data-md-state=hidden] .md-tabs__link{transform:translateY(50%);opacity:0;transition:color 250ms,transform 0ms 400ms,opacity 100ms}@media screen and (min-width: 76.25em){.md-tabs~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--nested{display:none}.md-tabs--active~.md-main .md-nav--primary .md-nav__title{display:block;padding:0 .6rem;pointer-events:none;scroll-snap-align:start}.md-tabs--active~.md-main .md-nav--primary .md-nav__title[for=__drawer]{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active{display:block;padding:0}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active>.md-nav__link{display:none}.md-tabs--active~.md-main .md-nav[data-md-level="1"]{display:block}.md-tabs--active~.md-main .md-nav[data-md-level="1"]>.md-nav__list>.md-nav__item{padding:0 .6rem}.md-tabs--active~.md-main .md-nav[data-md-level="1"] .md-nav .md-nav__title{display:none}}:root{--md-admonition-icon--note: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--abstract: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--info: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--tip: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--success: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--question: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--warning: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--failure: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--danger: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--bug: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--example: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--quote: url('data:image/svg+xml;charset=utf-8,')}.md-typeset .admonition,.md-typeset details{margin:1.5625em 0;padding:0 .6rem;overflow:hidden;font-size:.64rem;page-break-inside:avoid;border-left:.2rem solid #448aff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1)}[dir=rtl] .md-typeset .admonition,[dir=rtl] .md-typeset details{border-right:.2rem solid #448aff;border-left:none}@media print{.md-typeset .admonition,.md-typeset details{box-shadow:none}}html .md-typeset .admonition>:last-child,html .md-typeset details>:last-child{margin-bottom:.6rem}.md-typeset .admonition .admonition,.md-typeset details .admonition,.md-typeset .admonition details,.md-typeset details details{margin:1em 0}.md-typeset .admonition .md-typeset__scrollwrap,.md-typeset details .md-typeset__scrollwrap{margin:1em -0.6rem}.md-typeset .admonition .md-typeset__table,.md-typeset details .md-typeset__table{padding:0 .6rem}.md-typeset .admonition-title,.md-typeset summary{position:relative;margin:0 -0.6rem;padding:.4rem .6rem .4rem 2rem;font-weight:700;background-color:rgba(68,138,255,.1)}[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem .6rem}html .md-typeset .admonition-title:last-child,html .md-typeset summary:last-child{margin-bottom:0}.md-typeset .admonition-title::before,.md-typeset summary::before{position:absolute;left:.6rem;width:1rem;height:1rem;background-color:#448aff;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note);content:""}[dir=rtl] .md-typeset .admonition-title::before,[dir=rtl] .md-typeset summary::before{right:.6rem;left:initial}.md-typeset .admonition-title code,.md-typeset summary code{margin:initial;padding:initial;color:currentColor;background-color:transparent;border-radius:initial;box-shadow:none}.md-typeset .admonition.note,.md-typeset details.note{border-color:#448aff}.md-typeset .note>.admonition-title,.md-typeset .note>summary{background-color:rgba(68,138,255,.1)}.md-typeset .note>.admonition-title::before,.md-typeset .note>summary::before{background-color:#448aff;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note)}.md-typeset .admonition.abstract,.md-typeset details.abstract,.md-typeset .admonition.tldr,.md-typeset details.tldr,.md-typeset .admonition.summary,.md-typeset details.summary{border-color:#00b0ff}.md-typeset .abstract>.admonition-title,.md-typeset .abstract>summary,.md-typeset .tldr>.admonition-title,.md-typeset .tldr>summary,.md-typeset .summary>.admonition-title,.md-typeset .summary>summary{background-color:rgba(0,176,255,.1)}.md-typeset .abstract>.admonition-title::before,.md-typeset .abstract>summary::before,.md-typeset .tldr>.admonition-title::before,.md-typeset .tldr>summary::before,.md-typeset .summary>.admonition-title::before,.md-typeset .summary>summary::before{background-color:#00b0ff;-webkit-mask-image:var(--md-admonition-icon--abstract);mask-image:var(--md-admonition-icon--abstract)}.md-typeset .admonition.info,.md-typeset details.info,.md-typeset .admonition.todo,.md-typeset details.todo{border-color:#00b8d4}.md-typeset .info>.admonition-title,.md-typeset .info>summary,.md-typeset .todo>.admonition-title,.md-typeset .todo>summary{background-color:rgba(0,184,212,.1)}.md-typeset .info>.admonition-title::before,.md-typeset .info>summary::before,.md-typeset .todo>.admonition-title::before,.md-typeset .todo>summary::before{background-color:#00b8d4;-webkit-mask-image:var(--md-admonition-icon--info);mask-image:var(--md-admonition-icon--info)}.md-typeset .admonition.tip,.md-typeset details.tip,.md-typeset .admonition.important,.md-typeset details.important,.md-typeset .admonition.hint,.md-typeset details.hint{border-color:#00bfa5}.md-typeset .tip>.admonition-title,.md-typeset .tip>summary,.md-typeset .important>.admonition-title,.md-typeset .important>summary,.md-typeset .hint>.admonition-title,.md-typeset .hint>summary{background-color:rgba(0,191,165,.1)}.md-typeset .tip>.admonition-title::before,.md-typeset .tip>summary::before,.md-typeset .important>.admonition-title::before,.md-typeset .important>summary::before,.md-typeset .hint>.admonition-title::before,.md-typeset .hint>summary::before{background-color:#00bfa5;-webkit-mask-image:var(--md-admonition-icon--tip);mask-image:var(--md-admonition-icon--tip)}.md-typeset .admonition.success,.md-typeset details.success,.md-typeset .admonition.done,.md-typeset details.done,.md-typeset .admonition.check,.md-typeset details.check{border-color:#00c853}.md-typeset .success>.admonition-title,.md-typeset .success>summary,.md-typeset .done>.admonition-title,.md-typeset .done>summary,.md-typeset .check>.admonition-title,.md-typeset .check>summary{background-color:rgba(0,200,83,.1)}.md-typeset .success>.admonition-title::before,.md-typeset .success>summary::before,.md-typeset .done>.admonition-title::before,.md-typeset .done>summary::before,.md-typeset .check>.admonition-title::before,.md-typeset .check>summary::before{background-color:#00c853;-webkit-mask-image:var(--md-admonition-icon--success);mask-image:var(--md-admonition-icon--success)}.md-typeset .admonition.question,.md-typeset details.question,.md-typeset .admonition.faq,.md-typeset details.faq,.md-typeset .admonition.help,.md-typeset details.help{border-color:#64dd17}.md-typeset .question>.admonition-title,.md-typeset .question>summary,.md-typeset .faq>.admonition-title,.md-typeset .faq>summary,.md-typeset .help>.admonition-title,.md-typeset .help>summary{background-color:rgba(100,221,23,.1)}.md-typeset .question>.admonition-title::before,.md-typeset .question>summary::before,.md-typeset .faq>.admonition-title::before,.md-typeset .faq>summary::before,.md-typeset .help>.admonition-title::before,.md-typeset .help>summary::before{background-color:#64dd17;-webkit-mask-image:var(--md-admonition-icon--question);mask-image:var(--md-admonition-icon--question)}.md-typeset .admonition.warning,.md-typeset details.warning,.md-typeset .admonition.attention,.md-typeset details.attention,.md-typeset .admonition.caution,.md-typeset details.caution{border-color:#ff9100}.md-typeset .warning>.admonition-title,.md-typeset .warning>summary,.md-typeset .attention>.admonition-title,.md-typeset .attention>summary,.md-typeset .caution>.admonition-title,.md-typeset .caution>summary{background-color:rgba(255,145,0,.1)}.md-typeset .warning>.admonition-title::before,.md-typeset .warning>summary::before,.md-typeset .attention>.admonition-title::before,.md-typeset .attention>summary::before,.md-typeset .caution>.admonition-title::before,.md-typeset .caution>summary::before{background-color:#ff9100;-webkit-mask-image:var(--md-admonition-icon--warning);mask-image:var(--md-admonition-icon--warning)}.md-typeset .admonition.failure,.md-typeset details.failure,.md-typeset .admonition.missing,.md-typeset details.missing,.md-typeset .admonition.fail,.md-typeset details.fail{border-color:#ff5252}.md-typeset .failure>.admonition-title,.md-typeset .failure>summary,.md-typeset .missing>.admonition-title,.md-typeset .missing>summary,.md-typeset .fail>.admonition-title,.md-typeset .fail>summary{background-color:rgba(255,82,82,.1)}.md-typeset .failure>.admonition-title::before,.md-typeset .failure>summary::before,.md-typeset .missing>.admonition-title::before,.md-typeset .missing>summary::before,.md-typeset .fail>.admonition-title::before,.md-typeset .fail>summary::before{background-color:#ff5252;-webkit-mask-image:var(--md-admonition-icon--failure);mask-image:var(--md-admonition-icon--failure)}.md-typeset .admonition.danger,.md-typeset details.danger,.md-typeset .admonition.error,.md-typeset details.error{border-color:#ff1744}.md-typeset .danger>.admonition-title,.md-typeset .danger>summary,.md-typeset .error>.admonition-title,.md-typeset .error>summary{background-color:rgba(255,23,68,.1)}.md-typeset .danger>.admonition-title::before,.md-typeset .danger>summary::before,.md-typeset .error>.admonition-title::before,.md-typeset .error>summary::before{background-color:#ff1744;-webkit-mask-image:var(--md-admonition-icon--danger);mask-image:var(--md-admonition-icon--danger)}.md-typeset .admonition.bug,.md-typeset details.bug{border-color:#f50057}.md-typeset .bug>.admonition-title,.md-typeset .bug>summary{background-color:rgba(245,0,87,.1)}.md-typeset .bug>.admonition-title::before,.md-typeset .bug>summary::before{background-color:#f50057;-webkit-mask-image:var(--md-admonition-icon--bug);mask-image:var(--md-admonition-icon--bug)}.md-typeset .admonition.example,.md-typeset details.example{border-color:#651fff}.md-typeset .example>.admonition-title,.md-typeset .example>summary{background-color:rgba(101,31,255,.1)}.md-typeset .example>.admonition-title::before,.md-typeset .example>summary::before{background-color:#651fff;-webkit-mask-image:var(--md-admonition-icon--example);mask-image:var(--md-admonition-icon--example)}.md-typeset .admonition.quote,.md-typeset details.quote,.md-typeset .admonition.cite,.md-typeset details.cite{border-color:#9e9e9e}.md-typeset .quote>.admonition-title,.md-typeset .quote>summary,.md-typeset .cite>.admonition-title,.md-typeset .cite>summary{background-color:rgba(158,158,158,.1)}.md-typeset .quote>.admonition-title::before,.md-typeset .quote>summary::before,.md-typeset .cite>.admonition-title::before,.md-typeset .cite>summary::before{background-color:#9e9e9e;-webkit-mask-image:var(--md-admonition-icon--quote);mask-image:var(--md-admonition-icon--quote)}.codehilite .o,.highlight .o{color:inherit}.codehilite .ow,.highlight .ow{color:inherit}.codehilite .ge,.highlight .ge{color:#000}.codehilite .gr,.highlight .gr{color:#a00}.codehilite .gh,.highlight .gh{color:#999}.codehilite .go,.highlight .go{color:#888}.codehilite .gp,.highlight .gp{color:#555}.codehilite .gs,.highlight .gs{color:inherit}.codehilite .gu,.highlight .gu{color:#aaa}.codehilite .gt,.highlight .gt{color:#a00}.codehilite .gd,.highlight .gd{background-color:#fdd}.codehilite .gi,.highlight .gi{background-color:#dfd}.codehilite .k,.highlight .k{color:#3b78e7}.codehilite .kc,.highlight .kc{color:#a71d5d}.codehilite .kd,.highlight .kd{color:#3b78e7}.codehilite .kn,.highlight .kn{color:#3b78e7}.codehilite .kp,.highlight .kp{color:#a71d5d}.codehilite .kr,.highlight .kr{color:#3e61a2}.codehilite .kt,.highlight .kt{color:#3e61a2}.codehilite .c,.highlight .c{color:#999}.codehilite .cm,.highlight .cm{color:#999}.codehilite .cp,.highlight .cp{color:#666}.codehilite .c1,.highlight .c1{color:#999}.codehilite .ch,.highlight .ch{color:#999}.codehilite .cs,.highlight .cs{color:#999}.codehilite .na,.highlight .na{color:#c2185b}.codehilite .nb,.highlight .nb{color:#c2185b}.codehilite .bp,.highlight .bp{color:#3e61a2}.codehilite .nc,.highlight .nc{color:#c2185b}.codehilite .no,.highlight .no{color:#3e61a2}.codehilite .nd,.highlight .nd{color:#666}.codehilite .ni,.highlight .ni{color:#666}.codehilite .ne,.highlight .ne{color:#c2185b}.codehilite .nf,.highlight .nf{color:#c2185b}.codehilite .nl,.highlight .nl{color:#3b5179}.codehilite .nn,.highlight .nn{color:#ec407a}.codehilite .nt,.highlight .nt{color:#3b78e7}.codehilite .nv,.highlight .nv{color:#3e61a2}.codehilite .vc,.highlight .vc{color:#3e61a2}.codehilite .vg,.highlight .vg{color:#3e61a2}.codehilite .vi,.highlight .vi{color:#3e61a2}.codehilite .nx,.highlight .nx{color:#ec407a}.codehilite .m,.highlight .m{color:#e74c3c}.codehilite .mf,.highlight .mf{color:#e74c3c}.codehilite .mh,.highlight .mh{color:#e74c3c}.codehilite .mi,.highlight .mi{color:#e74c3c}.codehilite .il,.highlight .il{color:#e74c3c}.codehilite .mo,.highlight .mo{color:#e74c3c}.codehilite .s,.highlight .s{color:#0d904f}.codehilite .sb,.highlight .sb{color:#0d904f}.codehilite .sc,.highlight .sc{color:#0d904f}.codehilite .sd,.highlight .sd{color:#999}.codehilite .s2,.highlight .s2{color:#0d904f}.codehilite .se,.highlight .se{color:#183691}.codehilite .sh,.highlight .sh{color:#183691}.codehilite .si,.highlight .si{color:#183691}.codehilite .sx,.highlight .sx{color:#183691}.codehilite .sr,.highlight .sr{color:#009926}.codehilite .s1,.highlight .s1{color:#0d904f}.codehilite .ss,.highlight .ss{color:#0d904f}.codehilite .err,.highlight .err{color:#a61717}.codehilite .w,.highlight .w{color:transparent}.codehilite .hll,.highlight .hll{display:block;margin:0 -1.1764705882em;padding:0 1.1764705882em;background-color:rgba(255,235,59,.5)}.codehilitetable,.highlighttable{display:block;overflow:hidden}.codehilitetable tbody,.highlighttable tbody,.codehilitetable td,.highlighttable td{display:block;padding:0}.codehilitetable tr,.highlighttable tr{display:flex}.codehilitetable pre,.highlighttable pre{margin:0}.codehilitetable .linenos,.highlighttable .linenos{padding:.525rem 1.1764705882em;padding-right:0;font-size:.85em;background-color:var(--md-code-bg-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.codehilitetable .linenodiv,.highlighttable .linenodiv{padding-right:.5882352941em;box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest)}.codehilitetable .linenodiv pre,.highlighttable .linenodiv pre{color:var(--md-default-fg-color--lighter);text-align:right}.codehilitetable .code,.highlighttable .code{flex:1;overflow:hidden}.md-typeset .codehilitetable,.md-typeset .highlighttable{margin:1em 0;direction:ltr;border-radius:.1rem}.md-typeset .codehilitetable code,.md-typeset .highlighttable code{border-radius:0}@media screen and (max-width: 44.9375em){.md-typeset>.codehilite,.md-typeset>.highlight{margin:1em -0.8rem}.md-typeset>.codehilite .hll,.md-typeset>.highlight .hll{margin:0 -0.8rem;padding:0 .8rem}.md-typeset>.codehilite code,.md-typeset>.highlight code{border-radius:0}.md-typeset>.codehilitetable,.md-typeset>.highlighttable{margin:1em -0.8rem;border-radius:0}.md-typeset>.codehilitetable .hll,.md-typeset>.highlighttable .hll{margin:0 -0.8rem;padding:0 .8rem}}:root{--md-footnotes-icon: url('data:image/svg+xml;charset=utf-8,')}.md-typeset [id^="fnref:"]{display:inline-block}.md-typeset [id^="fnref:"]:target{margin-top:-3.8rem;padding-top:3.8rem;pointer-events:none}.md-typeset [id^="fn:"]::before{display:none;height:0;content:""}.md-typeset [id^="fn:"]:target::before{display:block;margin-top:-3.5rem;padding-top:3.5rem;pointer-events:none}.md-typeset .footnote{color:var(--md-default-fg-color--light);font-size:.64rem}.md-typeset .footnote ol{margin-left:0}.md-typeset .footnote li{transition:color 125ms}.md-typeset .footnote li:target{color:var(--md-default-fg-color)}.md-typeset .footnote li :first-child{margin-top:0}.md-typeset .footnote li:hover .footnote-backref,.md-typeset .footnote li:target .footnote-backref{transform:translateX(0);opacity:1}.md-typeset .footnote li:hover .footnote-backref:hover{color:var(--md-accent-fg-color)}.md-typeset .footnote-ref{display:inline-block;pointer-events:initial}.md-typeset .footnote-backref{display:inline-block;color:var(--md-primary-fg-color);font-size:0;vertical-align:text-bottom;transform:translateX(0.25rem);opacity:0;transition:color 250ms,transform 250ms 250ms,opacity 125ms 250ms}[dir=rtl] .md-typeset .footnote-backref{transform:translateX(-0.25rem)}.md-typeset .footnote-backref::before{display:inline-block;width:.8rem;height:.8rem;background-color:currentColor;-webkit-mask-image:var(--md-footnotes-icon);mask-image:var(--md-footnotes-icon);content:""}[dir=rtl] .md-typeset .footnote-backref::before svg{transform:scaleX(-1)}@media print{.md-typeset .footnote-backref{color:var(--md-primary-fg-color);transform:translateX(0);opacity:1}}.md-typeset .headerlink{display:inline-block;margin-left:.5rem;visibility:hidden;opacity:0;transition:color 250ms,visibility 0ms 500ms,opacity 125ms}[dir=rtl] .md-typeset .headerlink{margin-right:.5rem;margin-left:initial}html body .md-typeset .headerlink{color:var(--md-default-fg-color--lighter)}@media print{.md-typeset .headerlink{display:none}}.md-typeset :hover>.headerlink,.md-typeset :target>.headerlink,.md-typeset .headerlink:focus{visibility:visible;opacity:1;transition:color 250ms,visibility 0ms,opacity 125ms}.md-typeset :target>.headerlink,.md-typeset .headerlink:focus,.md-typeset .headerlink:hover{color:var(--md-accent-fg-color)}.md-typeset :target{scroll-margin-top:3.6rem}.md-typeset h3[id]:target,.md-typeset h2[id]:target,.md-typeset h1[id]:target{scroll-margin-top:initial}.md-typeset h3[id]::before,.md-typeset h2[id]::before,.md-typeset h1[id]::before{display:block;margin-top:-0.4rem;padding-top:.4rem;content:""}.md-typeset h3[id]:target::before,.md-typeset h2[id]:target::before,.md-typeset h1[id]:target::before{margin-top:-3.4rem;padding-top:3.4rem}.md-typeset h4[id]:target{scroll-margin-top:initial}.md-typeset h4[id]::before{display:block;margin-top:-0.45rem;padding-top:.45rem;content:""}.md-typeset h4[id]:target::before{margin-top:-3.45rem;padding-top:3.45rem}.md-typeset h6[id]:target,.md-typeset h5[id]:target{scroll-margin-top:initial}.md-typeset h6[id]::before,.md-typeset h5[id]::before{display:block;margin-top:-0.6rem;padding-top:.6rem;content:""}.md-typeset h6[id]:target::before,.md-typeset h5[id]:target::before{margin-top:-3.6rem;padding-top:3.6rem}.md-typeset .MJXc-display{margin:.75em 0;padding:.75em 0;overflow:auto;touch-action:auto}@media screen and (max-width: 44.9375em){.md-typeset>p>.MJXc-display{margin:.75em -0.8rem;padding:.25em .8rem}}.md-typeset .MathJax_CHTML{outline:0}.md-typeset del.critic,.md-typeset ins.critic,.md-typeset .critic.comment{padding:0 .25em;border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset del.critic{background-color:#fdd}.md-typeset ins.critic{background-color:#dfd}.md-typeset .critic.comment{color:#999}.md-typeset .critic.comment::before{content:"/* "}.md-typeset .critic.comment::after{content:" */"}.md-typeset .critic.block{display:block;margin:1em 0;padding-right:.8rem;padding-left:.8rem;overflow:auto;box-shadow:none}.md-typeset .critic.block :first-child{margin-top:.5em}.md-typeset .critic.block :last-child{margin-bottom:.5em}:root{--md-details-icon: url('data:image/svg+xml;charset=utf-8,')}.md-typeset details{display:block;padding-top:0;overflow:visible}.md-typeset details[open]>summary::after{transform:rotate(90deg)}.md-typeset details:not([open]){padding-bottom:0}.md-typeset details:not([open])>summary{border-bottom-right-radius:.1rem}.md-typeset details::after{display:table;content:""}.md-typeset summary{display:block;min-height:1rem;padding:.4rem 1.8rem .4rem 2rem;border-top-right-radius:.1rem;cursor:pointer}[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem 1.8rem}.md-typeset summary::-webkit-details-marker{display:none}.md-typeset summary::after{position:absolute;top:.4rem;right:.4rem;width:1rem;height:1rem;background-color:currentColor;-webkit-mask-image:var(--md-details-icon);mask-image:var(--md-details-icon);transform:rotate(0deg);transition:transform 250ms;content:""}[dir=rtl] .md-typeset summary::after{right:initial;left:.4rem;transform:rotate(180deg)}.md-typeset img.emojione,.md-typeset img.twemoji,.md-typeset img.gemoji{width:1.125em;vertical-align:-15%}.md-typeset span.twemoji{display:inline-block;height:1.125em;vertical-align:text-top}.md-typeset span.twemoji svg{width:1.125em;fill:currentColor}.highlight [data-linenos]::before{position:-webkit-sticky;position:sticky;left:-1.1764705882em;float:left;margin-right:1.1764705882em;margin-left:-1.1764705882em;padding-left:1.1764705882em;color:var(--md-default-fg-color--lighter);background-color:var(--md-code-bg-color);box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest);content:attr(data-linenos);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md-typeset .tabbed-content{display:none;order:99;width:100%;box-shadow:0 -0.05rem var(--md-default-fg-color--lightest)}.md-typeset .tabbed-content>.codehilite:only-child pre,.md-typeset .tabbed-content>.codehilitetable:only-child,.md-typeset .tabbed-content>.highlight:only-child pre,.md-typeset .tabbed-content>.highlighttable:only-child{margin:0}.md-typeset .tabbed-content>.codehilite:only-child pre>code,.md-typeset .tabbed-content>.codehilitetable:only-child>code,.md-typeset .tabbed-content>.highlight:only-child pre>code,.md-typeset .tabbed-content>.highlighttable:only-child>code{border-top-left-radius:0;border-top-right-radius:0}.md-typeset .tabbed-content>.tabbed-set{margin:0}.md-typeset .tabbed-set{position:relative;display:flex;flex-wrap:wrap;margin:1em 0;border-radius:.1rem}.md-typeset .tabbed-set>input{display:none}.md-typeset .tabbed-set>input:checked+label{color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-typeset .tabbed-set>input:checked+label+.tabbed-content{display:block}.md-typeset .tabbed-set>label{z-index:1;width:auto;padding:.6rem 1.25em .5rem;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;border-bottom:.1rem solid transparent;cursor:pointer;transition:color 125ms}html .md-typeset .tabbed-set>label:hover{color:var(--md-accent-fg-color)}:root{--md-tasklist-icon: url('data:image/svg+xml;charset=utf-8,');--md-tasklist-icon--checked: url('data:image/svg+xml;charset=utf-8,')}.md-typeset .task-list-item{position:relative;list-style-type:none}.md-typeset .task-list-item [type=checkbox]{position:absolute;top:.45em;left:-2em}[dir=rtl] .md-typeset .task-list-item [type=checkbox]{right:-2em;left:initial}.md-typeset .task-list-control .task-list-indicator::before{position:absolute;top:.15em;left:-1.5em;width:1.25em;height:1.25em;background-color:var(--md-default-fg-color--lightest);-webkit-mask-image:var(--md-tasklist-icon);mask-image:var(--md-tasklist-icon);content:""}[dir=rtl] .md-typeset .task-list-control .task-list-indicator::before{right:-1.5em;left:initial}.md-typeset .task-list-control [type=checkbox]:checked+.task-list-indicator::before{background-color:#00e676;-webkit-mask-image:var(--md-tasklist-icon--checked);mask-image:var(--md-tasklist-icon--checked)}.md-typeset .task-list-control [type=checkbox]{z-index:-1;opacity:0} + +/*# sourceMappingURL=main.127eade9.min.css.map*/ \ No newline at end of file diff --git a/docs/material/assets/stylesheets/main.127eade9.min.css.map b/docs/material/assets/stylesheets/main.127eade9.min.css.map new file mode 100644 index 000000000..a496b6f4a --- /dev/null +++ b/docs/material/assets/stylesheets/main.127eade9.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["webpack:///main.scss","webpack:///./src/assets/stylesheets/base/_reset.scss","webpack:///./src/assets/stylesheets/base/_colors.scss","webpack:///./src/assets/stylesheets/base/_icons.scss","webpack:///./src/assets/stylesheets/base/_typeset.scss","webpack:///./src/assets/stylesheets/utilities/_break.scss","webpack:///./src/assets/stylesheets/layout/_base.scss","webpack:///./src/assets/stylesheets/layout/_announce.scss","webpack:///./src/assets/stylesheets/layout/_button.scss","webpack:///./src/assets/stylesheets/layout/_clipboard.scss","webpack:///./src/assets/stylesheets/layout/_content.scss","webpack:///./src/assets/stylesheets/layout/_dialog.scss","webpack:///./node_modules/material-shadows/material-shadows.scss","webpack:///./src/assets/stylesheets/layout/_header.scss","webpack:///./src/assets/stylesheets/layout/_hero.scss","webpack:///./src/assets/stylesheets/layout/_footer.scss","webpack:///./src/assets/stylesheets/layout/_nav.scss","webpack:///./src/assets/stylesheets/layout/_search.scss","webpack:///./src/assets/stylesheets/layout/_sidebar.scss","webpack:///./src/assets/stylesheets/layout/_source.scss","webpack:///./src/assets/stylesheets/layout/_tabs.scss","webpack:///./src/assets/stylesheets/extensions/_admonition.scss","webpack:///./node_modules/material-design-color/material-color.scss","webpack:///./src/assets/stylesheets/extensions/_codehilite.scss","webpack:///./src/assets/stylesheets/extensions/_footnotes.scss","webpack:///./src/assets/stylesheets/extensions/_permalinks.scss","webpack:///./src/assets/stylesheets/extensions/pymdown/_arithmatex.scss","webpack:///./src/assets/stylesheets/extensions/pymdown/_critic.scss","webpack:///./src/assets/stylesheets/extensions/pymdown/_details.scss","webpack:///./src/assets/stylesheets/extensions/pymdown/_emoji.scss","webpack:///./src/assets/stylesheets/extensions/pymdown/_highlight.scss","webpack:///./src/assets/stylesheets/extensions/pymdown/_tabbed.scss","webpack:///./src/assets/stylesheets/extensions/pymdown/_tasklist.scss"],"names":[],"mappings":"AAAA,KC6BA,qBACE,sBAIF,kBAGE,MAIF,6BACE,CADF,0BACE,CADF,yBACE,CADF,qBACE,MAIF,QACE,IAIF,sBACE,iBACA,sBAIF,uCAIE,GAIF,aACE,qBACA,OAIF,aACE,SAIF,iBAEE,cACA,cACA,wBACA,KAIF,cACE,KAIF,UACE,KAIF,iBACE,OAIF,wBACE,iBACA,OAIF,kBAEE,mBACA,QAIF,QACE,UACA,kBACA,uBACA,SACA,OAIF,QACE,UACA,OCjGF,4CAGE,oDACA,sDACA,uDACA,4CACA,qDACA,uDACA,yDACA,iDAGA,wDACA,uDACA,kDACA,gEACA,gDAGA,+DACA,iDACA,+DACA,wCAGA,2CACA,cCxBA,aACE,aACA,cACA,cACA,kBACA,MCRJ,kCACE,kCACA,YAIF,gCAEE,oCACA,wEACA,cAIF,gCAGE,6BACA,oDACA,aAWF,eACE,gBACA,iCACA,CADA,kBACA,oEAGA,YAIE,gBAIF,eACE,wCACA,gBACA,oBACA,gBACA,uBACA,gBAIF,mBACE,gBACA,kBACA,gBACA,uBACA,gBAIF,qBACE,gBACA,eACA,gBACA,uBACA,mBAIF,gBACE,gBAIF,cACE,gBACA,gBACA,uBACA,+BAIF,cAEE,wCACA,gBACA,iBACA,uBACA,gBAIF,wBACE,gBAIF,cACE,gEACA,eAIF,gCACE,sBACA,qCAGA,sBAEE,yCAIF,+BAEE,kDAKJ,6BAGE,cACA,cAGA,iDAPF,oBAQI,mBAKJ,uBACE,gBACA,sBACA,yCACA,oBACA,mCACA,CADA,0BACA,yHAIF,cAME,gBACA,6BACA,gBACA,oBAIF,kBACE,iBAIF,iBACE,aACA,gBACA,sBAGA,aACE,SACA,+BACA,cACA,kBACA,gBACA,mCACA,CADA,0BACA,kBACA,qBACA,yCAGA,WACE,aACA,+CAIF,oDACE,qDAGA,0CACE,0CChBN,gBD0BA,kBACE,sBAGA,eACE,kBAMN,oBACE,wBACA,gBACA,gBACA,wBACA,sBACA,oBACA,+JAEE,kBAMJ,eACE,sBACA,qCACA,oBACA,mCACA,CADA,0BACA,kBAIF,oBACE,8DACA,YACA,mBAIF,WACE,iCAIF,qBAEE,qDAGA,sBACE,oBACA,wBAKJ,kBACE,wCACA,4DACA,kCAGA,mBACE,qBACA,6DACA,oBACA,gBAKJ,oBACE,+BAIF,kBAEE,UACA,mDAGA,mBACE,oBACA,qCAIF,2BACE,2CAGA,2BACE,qCAKJ,kBACE,mBACA,yDAGA,mBACE,oBACA,mGAIF,aAEE,2DAIF,eACE,qFAIF,yBAEE,6HAGA,mBACE,oBACA,gBAOR,wBACE,0BAGA,oBACE,oBACA,iCAKJ,cAEE,YACA,oBAIF,cACE,gCAIF,oBACE,eACA,cACA,iBACA,sCACA,oBACA,mEAEE,kBAEF,kCAKA,gBACE,+FAIF,eAEE,mHAGA,gBACE,mCAKJ,cACE,oBACA,iCACA,mBACA,mDACA,mCAIF,mBACE,mBACA,6DACA,mCAIF,iCACE,yCAGA,iCACE,uDACA,kDAIF,YACE,kCAMJ,iBACE,yBAKJ,kBACE,gBACA,kBACA,oBAIF,oBACE,mBACA,gBACA,0BAGA,aACE,WACA,SACA,gBACA,ME1bN,WACE,kBAKA,eAOA,4CACA,sCDyIE,KCvJJ,gBAkBI,uCDqIA,KCvJJ,cAuBI,OAKJ,iBACE,aACA,sBACA,WACA,gBACA,gBAGA,0CDqIE,yBC/HA,cACE,eAMJ,KArBF,aAsBI,KAKJ,aACE,cACA,UACA,SACA,UAIF,eACE,kBACA,iBACA,eAIF,YACE,sBACA,YACA,cAIA,cAPF,aAQI,WAKJ,WACE,iBAGA,YACE,YACA,kBACA,cAKJ,aACE,gBACA,mBACA,uBACA,YAQF,YACE,aAIF,cACE,MACA,UACA,QACA,SACA,mDACA,UACA,0DAEE,0CDgDA,4CCxCA,UACE,YACA,UACA,8CAEE,WAYR,cACE,WAGA,aACA,oBACA,iCACA,iBACA,4CACA,oBACA,6BACA,UACA,gBAGA,UACE,wBACA,UACA,2EAEE,OAUN,WACE,cC1LF,aACE,4CACA,qBAGA,iBACE,gBACA,iCACA,gBACA,cAIF,aAbF,YAcI,yBCXF,oBACE,mBACA,iCACA,gBACA,gCACA,oBACA,iEAEE,iCAKF,gCACE,4CACA,wCACA,2DAIF,+BAEE,2CACA,uCACA,eC3BN,iBACE,UACA,WACA,UACA,YACA,aACA,2CACA,oBACA,eACA,uBACA,cAGA,cAbF,YAcI,oBAIF,aACE,eACA,yBAIF,uCACE,iDAIF,+BAEE,aC/BJ,MACE,eACA,+DLyII,YK3IN,8BAMI,yCL0JA,YKhKJ,kCAWI,qBAIF,qBACE,kBACA,wCL+IA,mBKjJF,mBAMI,mBACA,6BAKF,aACE,aACA,WACA,gCAIF,eACE,qBAKJ,WACE,eACA,kBACA,UACA,+BAGA,UACE,mBACA,oBACA,mCAGA,oBACE,iCAKJ,yCACE,yBAIF,cACE,mBACA,cAIF,oBA9BF,YA+BI,aCvEN,gGCFE,eDKA,YACA,aACA,aACA,UACA,cACA,kBACA,oBACA,iCACA,gBACA,sCACA,YACA,oBACA,2BACA,UACA,6CAEE,sBAIF,aACE,WACA,gCAIF,uBACE,UACA,6EAEE,cAKJ,WAtCF,YAuCI,aEvCJ,uBACE,CADF,eACE,MACA,QACA,OACA,UACA,cACA,iCACA,4CACA,+DAIE,8CAGA,mBAIF,eACE,gBACA,kCAIF,gEAEI,+DAGA,cAMJ,WApCF,YAqCI,iBAKJ,YACE,gBACA,wBAGA,iBACE,UACA,aACA,cACA,eACA,yBACA,sCAME,oBACE,2DAKJ,UAEE,gCAIF,YACE,cACA,uEAGA,aAEE,aACA,cACA,kBACA,6CAKJ,YACE,qCRyEF,qCQlEE,YACE,2CRmFJ,+BQ3EE,YACE,yCRwDJ,qCQhDE,YACE,wBAMN,iBACE,WACA,wEAEE,6CAIF,UACE,8BACA,UACA,wEAEE,oBAEF,uDAGA,8BACE,8BAKJ,gBACE,oDAIF,YACE,uBAKJ,WACE,eACA,gBACA,mBACA,mEAGA,UACE,+BACA,UACA,wEAEE,oBAEF,6EAGA,6BACE,yFAIF,SACE,wBACA,UACA,wEAEE,uBAEF,gDAKJ,iBACE,WACA,YACA,wBAKJ,YACE,qCRrCA,uBQoCF,aAKI,cACA,kBACA,iBACA,kCAGA,iBACE,oBACA,yCRjDJ,uBQoCF,kBAmBI,kCAGA,mBACE,WC3NR,eACE,iCACA,eACA,4CACA,4BACA,iBAGA,eACE,0BACA,wEAEE,uBAEF,0CToKA,gBS1KF,iBAUI,qBACA,yCAIF,8BACE,UACA,iDAEE,oBAEF,kCAIF,oBACE,YClCN,gCACE,4CACA,cAGA,WALF,YAMI,wBAQF,aACE,cACA,sBAIF,YACE,mBACA,qBACA,yBACA,qCVwIA,qBU5IF,SAQI,wDAIF,UAEE,4BAIF,UACE,UACA,sCAGA,WACE,0CAGA,oBACE,0CVkIN,iDU7HE,YAII,6BAMN,WACE,UACA,iBACA,sCAGA,UACE,gBACA,0CAGA,oBACE,uBAOR,iBACE,YACA,8BACA,eACA,gBACA,mBACA,wBAIF,YACE,cACA,2BAIF,iBACE,QACA,OACA,iBACA,eACA,wCACA,iBACA,iBAKJ,oDACE,wBAGA,YACE,eACA,8BACA,cACA,mCAIF,uCACE,iFAGA,gCAEE,sBAMN,UACE,kBACA,gBACA,0CACA,iBACA,qCVqBE,qBU1BJ,UASI,kCAIF,uCACE,mBAKJ,cACE,sBACA,qCVKE,kBUPJ,eAMI,0BAIF,oBACE,aACA,cACA,kBACA,iCAGA,eACE,6BAIF,gBACE,oBACA,kBACA,SClLN,eACE,gBACA,gBAGA,aACE,gBACA,gBACA,gBACA,uBACA,gCAGA,YACE,oCAGA,UACE,YACA,uFAOA,aAEE,aACA,cACA,4CAIF,iBACE,eAOR,QACE,UACA,gBACA,eAIF,eACE,0BAGA,oBACE,6BAIF,eACE,uCAGA,mBACE,eACA,wCAIF,gBACE,eAMN,aACE,kBACA,gBACA,uBACA,eACA,uBACA,wBACA,+BAIA,YACE,uCAGA,YACE,mCAKJ,uCACE,qCAIF,gCACE,qCAIF,aACE,yCAIF,+BAEE,iBAKJ,YACE,0CX2DA,QWlLJ,2CA4HI,2CAGA,iBAEE,MACA,QACA,OACA,UACA,aACA,sBACA,YACA,gEAOA,eAEE,gBACA,iCAIF,iBACE,cACA,yBACA,wCACA,gBACA,mBACA,mBACA,sDACA,eACA,+CAGA,iBACE,UACA,WACA,cACA,aACA,cACA,aACA,yDAGA,WACE,aACA,+CAKJ,eACE,4CACA,iEAEE,qCACF,CADE,gCA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,uBAXF,uBAYI,gEZ9RA,uBYkRJ,aAiBI,yCZ9QF,uBY6PF,aAsBI,sCZnRF,uBY6PF,YA2BI,mEAGA,eACE,2CAIF,WACE,aACA,iDAIF,oDACE,uDAGA,0CACE,oBAQV,gCACE,sBACA,yBAGA,eACE,wCACA,iBACA,mBACA,sDACA,wBACA,qCZ9TA,wBYwTF,mBAUI,mCAGA,oBACE,qBACA,0BAMN,QACE,UACA,gBACA,6DACA,yBAIF,4DACE,yBAIF,aACE,UACA,4BACA,wBACA,6DAGA,uDAEE,mIAGA,UACE,8DAKJ,mBACE,4BAKJ,iBACE,gBACA,gBACA,qCZrXA,2BYkXF,mBAOI,sCAGA,oBACE,mBACA,gEAQF,eACE,gBACA,gBACA,gBACA,yBAMN,iBACE,OACA,aACA,cACA,wCACA,mCAGA,OACE,aACA,uCAGA,oBACE,0CZ5YJ,wBY8XF,YAoBI,2BAKJ,aACE,gBACA,iBACA,gBACA,2BAMF,mBACE,mBACA,cACA,gBACA,wCACA,iBACA,gBACA,uBACA,4BACA,qBACA,0CZ3aA,0BYiaF,iBAcI,qBACA,gEZvdA,0BYwcJ,iBAoBI,qBACA,uBAOJ,eACE,kBACA,0BACA,iDC1mBJ,OACE,6BACE,CADF,qBACE,MAGF,oCACE,CADF,4BACE,EDomBA,wCC1mBJ,OACE,6BACE,CADF,yBACE,CADF,qBACE,MAGF,oCACE,CADF,gCACE,CADF,4BACE,cASJ,uBACE,CADF,eACE,WACA,sBACA,cACA,iBACA,gBACA,cAGA,YATF,YAUI,2CbiJA,qBa1IA,cACE,MACA,cACA,UACA,cACA,YACA,4CACA,wBACA,yEAEE,gCAIF,cACE,aACA,oEAIF,sGNtCJ,8BMyCM,8EAGA,8BACE,8CAKJ,eACE,yBAMN,YACE,QACA,qCb+EA,uBajFF,aAMI,gDAGA,kBACE,0BAMN,eACE,eACA,gBACA,mCAEA,CAFA,0BAEA,6BAMA,6DACE,CADF,qDACE,0CbuEF,6CahEE,iBACE,MACA,QACA,SACA,OACA,SACA,8BACA,CADA,yBACA,CADA,qBACA,6CAKJ,WACE,aACA,kDAIF,oDACE,wDAGA,0CACE,2CCzIR,GACE,QACE,MAGF,aACE,EDmII,kCCzIR,GACE,QACE,MAGF,aACE,2CAKJ,GACE,0BACE,UACA,KAGF,SACE,MAGF,wBACE,UACA,EAjBA,iCAKJ,GACE,0BACE,UACA,KAGF,SACE,MAGF,wBACE,UACA,aASJ,aACE,iBACA,gBACA,mBACA,mCAEA,CAFA,0BAEA,yBACA,kBAGA,UACE,kBAIF,oBACE,aACA,cACA,sBACA,sBAGA,gBACE,kBACA,gCAGA,kBACE,oBACA,yCAKJ,iBACE,kBACA,mDAGA,kBACE,oBACA,mBACA,qBACA,wBAMN,oBACE,8BACA,kBACA,gBACA,gBACA,uBACA,sBACA,mBAIF,QACE,UACA,gBACA,gBACA,iBACA,qBACA,YACA,wCAGA,sDACE,CADF,8CACE,kBAKJ,UACE,4BAGA,WACE,uCAIF,sDACE,CADF,8CACE,0BAIF,cACE,YACA,sCAIF,YACE,UCjIN,UACE,cACA,iCACA,4CACA,4BACA,iBAGA,eACE,0CfyKA,SelLJ,YAcI,eAIF,SAlBF,YAmBI,iBAIF,QACE,kBACA,UACA,mBACA,gBACA,gBACA,0BAGA,kBACE,oBACA,gBAKJ,oBACE,cACA,oBACA,mBACA,gBAKF,aACE,iBACA,gBACA,WACA,wEAEE,uBAIF,eACE,6CAIF,aAEE,UACA,4CAKA,qBACE,4CADF,qBACE,4CADF,qBACE,4CADF,qBACE,4CADF,sBACE,4CADF,sBACE,4CADF,sBACE,4CADF,sBACE,6CADF,sBACE,6CADF,sBACE,6CADF,sBACE,6CADF,sBACE,6CADF,sBACE,6CADF,sBACE,6CADF,sBACE,gCAMN,mBACE,+CAIA,yBACE,UACA,yDAEE,wCfyEJ,uEe/DA,YACE,2DAUE,aACE,gBACA,oBACA,wBACA,yEAGA,YACE,wEAKJ,YACE,gFAGA,aACE,UACA,8FAGA,YACE,sDAOR,aAGE,kFAGA,eACE,6EAIF,YACE,QChIV,4RAMI,owHAUF,iBACE,gBACA,gBACA,iBACA,wBACA,gCACA,oBACA,mEAEE,iEAIF,gCACE,iBACA,cAIF,4CAnBF,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E,YACA,aACA,8BACA,4CACA,CADA,mCACA,WACA,qDAME,oBACE,cAMN,8BAtCF,gCAuCI,wBACA,UACA,0BC3HJ,oBACE,kBACA,kBAGA,UACA,0DAEE,mCAKF,kBACE,oBACA,mCAIF,yCACE,cAIF,wBAxBF,YAyBI,+FAKJ,kBAGE,UACA,oDAEE,6FAMJ,+BAGE,qBAMF,wBACE,+EAYE,yBACE,kFAIF,aACE,mBACA,kBACA,WACA,uGAIF,kBACE,mBACA,2BAfF,yBACE,4BAIF,aACE,oBACA,mBACA,WACA,mCAIF,mBACE,oBACA,qDAfF,yBACE,uDAIF,aACE,mBACA,kBACA,WACA,qEAIF,kBACE,mBACA,2BC7EN,cACE,gBACA,cACA,kBACA,0CrByKA,4BqBrKF,oBAII,oBACA,6BAKJ,SACE,2ECrBF,eAGE,oBACA,mCACA,CADA,0BACA,wBAIF,qBJEwB,wBIGxB,qBJFyB,6BIOzB,UJKmB,qCIDjB,aACE,oCAIF,aACE,2BAKJ,aACE,aACA,oBACA,mBACA,cACA,gBACA,wCAGA,eACE,uCAIF,kBACE,OCpDN,+LACE,qBASA,aAGE,cACA,iBACA,0CAIA,uBACE,iCAIF,gBACE,yCAIA,gCACE,4BAKJ,aACE,WACA,qBAKJ,aAGE,gBACA,gCACA,8BACA,eACA,+BAGA,+BACE,6CAIF,YACE,4BAIF,iBACE,UACA,YACA,WACA,YACA,8BACA,0CACA,CADA,iCACA,uBACA,2BACA,WACA,sCAGA,aACE,WACA,yBACA,yEC3EN,aAGE,oBACA,0BAIF,oBACE,eACA,wBACA,8BAGA,aACE,kBACA,mCCbJ,uBACE,CADF,eACE,qBACA,WACA,4BACA,4BACA,4BACA,0CACA,yCACA,iEACA,2BACA,yBACA,CADA,qBACA,CADA,oBACA,CADA,gBACA,6BCdF,YACE,SACA,WACA,2DACA,6NAGA,QAIE,iPAGA,wBACE,0BACA,yCAKJ,QACE,yBAKJ,iBACE,aACA,eACA,aACA,oBACA,+BAGA,YACE,6CAGA,+BACE,uCACA,6DAGA,aACE,+BAMN,SACE,WACA,2BACA,wCACA,gBACA,iBACA,sCACA,eACA,uBACA,0CAGA,+BACE,OCnER,8MACE,mQACA,6BASA,iBACE,qBACA,6CAIA,iBACE,UACA,UACA,uDAGA,UACE,aACA,6DASJ,iBACE,UACA,YACA,aACA,cACA,sDACA,2CACA,CADA,kCACA,WACA,uEAGA,YACE,aACA,qFAKJ,wBVsWa,oDUpWX,CVoWW,2CUpWX,gDAIF,UACE,UACA,C","file":"assets/stylesheets/main.127eade9.min.css","sourcesContent":["html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}html{text-size-adjust:none}body{margin:0}hr{box-sizing:content-box;overflow:visible}a,button,label,input{-webkit-tap-highlight-color:transparent}a{color:inherit;text-decoration:none}small{font-size:80%}sub,sup{position:relative;font-size:80%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}table{border-collapse:separate;border-spacing:0}td,th{font-weight:normal;vertical-align:top}button{margin:0;padding:0;font-size:inherit;background:transparent;border:0}input{border:0;outline:0}:root{--md-default-fg-color: hsla(0, 0%, 0%, 0.87);--md-default-fg-color--light: hsla(0, 0%, 0%, 0.54);--md-default-fg-color--lighter: hsla(0, 0%, 0%, 0.26);--md-default-fg-color--lightest: hsla(0, 0%, 0%, 0.07);--md-default-bg-color: hsla(0, 0%, 100%, 1);--md-default-bg-color--light: hsla(0, 0%, 100%, 0.7);--md-default-bg-color--lighter: hsla(0, 0%, 100%, 0.3);--md-default-bg-color--lightest: hsla(0, 0%, 100%, 0.12);--md-primary-fg-color: hsla(231deg, 48%, 48%, 1);--md-primary-fg-color--light: hsla(230deg, 44%, 64%, 1);--md-primary-fg-color--dark: hsla(232deg, 54%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light);--md-accent-fg-color: hsla(231deg, 99%, 66%, 1);--md-accent-fg-color--transparent: hsla(231deg, 99%, 66%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light);--md-code-bg-color: hsla(0, 0%, 96%, 1);--md-code-fg-color: hsla(200, 18%, 26%, 1)}.md-icon svg{display:block;width:1.2rem;height:1.2rem;margin:0 auto;fill:currentColor}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body,input{color:var(--md-default-fg-color);font-feature-settings:\"kern\",\"liga\";font-family:-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,pre,kbd{color:var(--md-default-fg-color);font-feature-settings:\"kern\";font-family:SFMono-Regular,Consolas,Menlo,monospace}.md-typeset{font-size:.8rem;line-height:1.6;color-adjust:exact}.md-typeset p,.md-typeset ul,.md-typeset ol,.md-typeset blockquote{margin:1em 0}.md-typeset h1{margin:0 0 2rem;color:var(--md-default-fg-color--light);font-weight:300;font-size:1.5625rem;line-height:1.3;letter-spacing:-0.01em}.md-typeset h2{margin:2rem 0 .8rem;font-weight:300;font-size:1.25rem;line-height:1.4;letter-spacing:-0.01em}.md-typeset h3{margin:1.6rem 0 .8rem;font-weight:400;font-size:1rem;line-height:1.5;letter-spacing:-0.01em}.md-typeset h2+h3{margin-top:.8rem}.md-typeset h4{margin:.8rem 0;font-weight:700;font-size:.8rem;letter-spacing:-0.01em}.md-typeset h5,.md-typeset h6{margin:.8rem 0;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;letter-spacing:-0.01em}.md-typeset h5{text-transform:uppercase}.md-typeset hr{margin:1.5em 0;border-bottom:.05rem dotted var(--md-default-fg-color--lighter)}.md-typeset a{color:var(--md-primary-fg-color);word-break:break-word}.md-typeset a,.md-typeset a::before{transition:color 125ms}.md-typeset a:focus,.md-typeset a:hover{color:var(--md-accent-fg-color)}.md-typeset code,.md-typeset pre,.md-typeset kbd{color:var(--md-code-fg-color);direction:ltr}@media print{.md-typeset code,.md-typeset pre,.md-typeset kbd{white-space:pre-wrap}}.md-typeset code{padding:0 .2941176471em;font-size:.85em;word-break:break-word;background-color:var(--md-code-bg-color);border-radius:.1rem;box-decoration-break:clone}.md-typeset h1 code,.md-typeset h2 code,.md-typeset h3 code,.md-typeset h4 code,.md-typeset h5 code,.md-typeset h6 code{margin:initial;padding:initial;background-color:transparent;box-shadow:none}.md-typeset a>code{color:currentColor}.md-typeset pre{position:relative;margin:1em 0;line-height:1.4}.md-typeset pre>code{display:block;margin:0;padding:.525rem 1.1764705882em;overflow:auto;word-break:normal;box-shadow:none;box-decoration-break:slice;touch-action:auto;scrollbar-width:thin}.md-typeset pre>code::-webkit-scrollbar{width:.2rem;height:.2rem}.md-typeset pre>code::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-typeset pre>code::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@media screen and (max-width: 44.9375em){.md-typeset>pre{margin:1em -0.8rem}.md-typeset>pre code{border-radius:0}}.md-typeset kbd{display:inline-block;padding:0 .6666666667em;font-size:.75em;line-height:1.5;vertical-align:text-top;word-break:break-word;border-radius:.1rem;box-shadow:0 .1rem 0 .05rem var(--md-default-fg-color--lighter),0 .1rem 0 var(--md-default-fg-color--lighter),inset 0 -0.1rem .2rem var(--md-default-bg-color)}.md-typeset mark{padding:0 .25em;word-break:break-word;background-color:rgba(255,235,59,.5);border-radius:.1rem;box-decoration-break:clone}.md-typeset abbr{text-decoration:none;border-bottom:.05rem dotted var(--md-default-fg-color--light);cursor:help}.md-typeset small{opacity:.75}.md-typeset sup,.md-typeset sub{margin-left:.078125em}[dir=rtl] .md-typeset sup,[dir=rtl] .md-typeset sub{margin-right:.078125em;margin-left:initial}.md-typeset blockquote{padding-left:.6rem;color:var(--md-default-fg-color--light);border-left:.2rem solid var(--md-default-fg-color--lighter)}[dir=rtl] .md-typeset blockquote{padding-right:.6rem;padding-left:initial;border-right:.2rem solid var(--md-default-fg-color--lighter);border-left:initial}.md-typeset ul{list-style-type:disc}.md-typeset ul,.md-typeset ol{margin-left:.625em;padding:0}[dir=rtl] .md-typeset ul,[dir=rtl] .md-typeset ol{margin-right:.625em;margin-left:initial}.md-typeset ul ol,.md-typeset ol ol{list-style-type:lower-alpha}.md-typeset ul ol ol,.md-typeset ol ol ol{list-style-type:lower-roman}.md-typeset ul li,.md-typeset ol li{margin-bottom:.5em;margin-left:1.25em}[dir=rtl] .md-typeset ul li,[dir=rtl] .md-typeset ol li{margin-right:1.25em;margin-left:initial}.md-typeset ul li p,.md-typeset ul li blockquote,.md-typeset ol li p,.md-typeset ol li blockquote{margin:.5em 0}.md-typeset ul li:last-child,.md-typeset ol li:last-child{margin-bottom:0}.md-typeset ul li ul,.md-typeset ul li ol,.md-typeset ol li ul,.md-typeset ol li ol{margin:.5em 0 .5em .625em}[dir=rtl] .md-typeset ul li ul,[dir=rtl] .md-typeset ul li ol,[dir=rtl] .md-typeset ol li ul,[dir=rtl] .md-typeset ol li ol{margin-right:.625em;margin-left:initial}.md-typeset dd{margin:1em 0 1em 1.875em}[dir=rtl] .md-typeset dd{margin-right:1.875em;margin-left:initial}.md-typeset img,.md-typeset svg{max-width:100%;height:auto}.md-typeset iframe{max-width:100%}.md-typeset table:not([class]){display:inline-block;max-width:100%;overflow:auto;font-size:.64rem;background:var(--md-default-bg-color);border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1);touch-action:auto}.md-typeset table:not([class])+*{margin-top:1.5em}.md-typeset table:not([class]) th:not([align]),.md-typeset table:not([class]) td:not([align]){text-align:left}[dir=rtl] .md-typeset table:not([class]) th:not([align]),[dir=rtl] .md-typeset table:not([class]) td:not([align]){text-align:right}.md-typeset table:not([class]) th{min-width:5rem;padding:.6rem .8rem;color:var(--md-default-bg-color);vertical-align:top;background-color:var(--md-default-fg-color--light)}.md-typeset table:not([class]) td{padding:.6rem .8rem;vertical-align:top;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-typeset table:not([class]) tr{transition:background-color 125ms}.md-typeset table:not([class]) tr:hover{background-color:rgba(0,0,0,.035);box-shadow:0 .05rem 0 var(--md-default-bg-color) inset}.md-typeset table:not([class]) tr:first-child td{border-top:0}.md-typeset table:not([class]) a{word-break:normal}.md-typeset__scrollwrap{margin:1em -0.8rem;overflow-x:auto;touch-action:auto}.md-typeset__table{display:inline-block;margin-bottom:.5em;padding:0 .8rem}.md-typeset__table table{display:table;width:100%;margin:0;overflow:hidden}html{height:100%;overflow-x:hidden;font-size:125%;background-color:var(--md-default-bg-color)}@media screen and (min-width: 100em){html{font-size:137.5%}}@media screen and (min-width: 125em){html{font-size:150%}}body{position:relative;display:flex;flex-direction:column;width:100%;min-height:100%;font-size:.5rem}@media screen and (max-width: 59.9375em){body[data-md-state=lock]{position:fixed}}@media print{body{display:block}}hr{display:block;height:.05rem;padding:0;border:0}.md-grid{max-width:61rem;margin-right:auto;margin-left:auto}.md-container{display:flex;flex-direction:column;flex-grow:1}@media print{.md-container{display:block}}.md-main{flex-grow:1}.md-main__inner{display:flex;height:100%;margin-top:1.5rem}.md-ellipsis{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.md-toggle{display:none}.md-overlay{position:fixed;top:0;z-index:3;width:0;height:0;background-color:var(--md-default-fg-color--light);opacity:0;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}@media screen and (max-width: 76.1875em){[data-md-toggle=drawer]:checked~.md-overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-skip{position:fixed;z-index:-1;margin:.5rem;padding:.3rem .5rem;color:var(--md-default-bg-color);font-size:.64rem;background-color:var(--md-default-fg-color);border-radius:.1rem;transform:translateY(0.4rem);opacity:0}.md-skip:focus{z-index:10;transform:translateY(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 175ms 75ms}@page{margin:25mm}.md-announce{overflow:auto;background-color:var(--md-default-fg-color)}.md-announce__inner{margin:.6rem auto;padding:0 .8rem;color:var(--md-default-bg-color);font-size:.7rem}@media print{.md-announce{display:none}}.md-typeset .md-button{display:inline-block;padding:.625em 2em;color:var(--md-primary-fg-color);font-weight:700;border:.1rem solid currentColor;border-radius:.1rem;transition:color 125ms,background-color 125ms,border-color 125ms}.md-typeset .md-button--primary{color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);border-color:var(--md-primary-fg-color)}.md-typeset .md-button:focus,.md-typeset .md-button:hover{color:var(--md-accent-bg-color);background-color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-clipboard{position:absolute;top:.4rem;right:.5em;z-index:1;width:1.5em;height:1.5em;color:var(--md-default-fg-color--lightest);border-radius:.1rem;cursor:pointer;transition:color 125ms}@media print{.md-clipboard{display:none}}.md-clipboard svg{width:1.125em;height:1.125em}pre:hover .md-clipboard{color:var(--md-default-fg-color--light)}pre .md-clipboard:focus,pre .md-clipboard:hover{color:var(--md-accent-fg-color)}.md-content{flex:1;max-width:100%}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-content{max-width:calc(100% - 12.1rem)}}@media screen and (min-width: 76.25em){.md-content{max-width:calc(100% - 12.1rem * 2)}}.md-content__inner{margin:0 .8rem 1.2rem;padding-top:.6rem}@media screen and (min-width: 76.25em){.md-content__inner{margin-right:1.2rem;margin-left:1.2rem}}.md-content__inner::before{display:block;height:.4rem;content:\"\"}.md-content__inner>:last-child{margin-bottom:0}.md-content__button{float:right;margin:.4rem 0;margin-left:.4rem;padding:0}[dir=rtl] .md-content__button{float:left;margin-right:.4rem;margin-left:initial}[dir=rtl] .md-content__button svg{transform:scaleX(-1)}.md-typeset .md-content__button{color:var(--md-default-fg-color--lighter)}.md-content__button svg{display:inline;vertical-align:top}@media print{.md-content__button{display:none}}.md-dialog{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:fixed;right:.8rem;bottom:.8rem;left:initial;z-index:2;display:block;min-width:11.1rem;padding:.4rem .6rem;color:var(--md-default-bg-color);font-size:.7rem;background:var(--md-default-fg-color);border:none;border-radius:.1rem;transform:translateY(100%);opacity:0;transition:transform 0ms 400ms,opacity 400ms}[dir=rtl] .md-dialog{right:initial;left:.8rem}.md-dialog[data-md-state=open]{transform:translateY(0);opacity:1;transition:transform 400ms cubic-bezier(0.075, 0.85, 0.175, 1),opacity 400ms}@media print{.md-dialog{display:none}}.md-header{position:sticky;top:0;right:0;left:0;z-index:2;height:2.4rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);box-shadow:0 0 .2rem rgba(0,0,0,0),0 .2rem .4rem rgba(0,0,0,0);transition:color 250ms,background-color 250ms}.no-js .md-header{box-shadow:none;transition:none}.md-header[data-md-state=shadow]{box-shadow:0 0 .2rem rgba(0,0,0,.1),0 .2rem .4rem rgba(0,0,0,.2);transition:color 250ms,background-color 250ms,box-shadow 250ms}@media print{.md-header{display:none}}.md-header-nav{display:flex;padding:0 .2rem}.md-header-nav__button{position:relative;z-index:1;margin:.2rem;padding:.4rem;cursor:pointer;transition:opacity 250ms}[dir=rtl] .md-header-nav__button svg{transform:scaleX(-1)}.md-header-nav__button:focus,.md-header-nav__button:hover{opacity:.7}.md-header-nav__button.md-logo{margin:.2rem;padding:.4rem}.md-header-nav__button.md-logo img,.md-header-nav__button.md-logo svg{display:block;width:1.2rem;height:1.2rem;fill:currentColor}.no-js .md-header-nav__button[for=__search]{display:none}@media screen and (min-width: 60em){.md-header-nav__button[for=__search]{display:none}}@media screen and (max-width: 76.1875em){.md-header-nav__button.md-logo{display:none}}@media screen and (min-width: 76.25em){.md-header-nav__button[for=__drawer]{display:none}}.md-header-nav__topic{position:absolute;width:100%;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms}.md-header-nav__topic+.md-header-nav__topic{z-index:-1;transform:translateX(1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__topic+.md-header-nav__topic{transform:translateX(-1.25rem)}.no-js .md-header-nav__topic{position:initial}.no-js .md-header-nav__topic+.md-header-nav__topic{display:none}.md-header-nav__title{flex-grow:1;padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-header-nav__title[data-md-state=active] .md-header-nav__topic{z-index:-1;transform:translateX(-1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__title[data-md-state=active] .md-header-nav__topic{transform:translateX(1.25rem)}.md-header-nav__title[data-md-state=active] .md-header-nav__topic+.md-header-nav__topic{z-index:0;transform:translateX(0);opacity:1;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:initial}.md-header-nav__title>.md-header-nav__ellipsis{position:relative;width:100%;height:100%}.md-header-nav__source{display:none}@media screen and (min-width: 60em){.md-header-nav__source{display:block;width:11.7rem;max-width:11.7rem;margin-left:1rem}[dir=rtl] .md-header-nav__source{margin-right:1rem;margin-left:initial}}@media screen and (min-width: 76.25em){.md-header-nav__source{margin-left:1.4rem}[dir=rtl] .md-header-nav__source{margin-right:1.4rem}}.md-hero{overflow:hidden;color:var(--md-primary-bg-color);font-size:1rem;background-color:var(--md-primary-fg-color);transition:background 250ms}.md-hero__inner{margin-top:1rem;padding:.8rem .8rem .4rem;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms;transition-delay:100ms}@media screen and (max-width: 76.1875em){.md-hero__inner{margin-top:2.4rem;margin-bottom:1.2rem}}[data-md-state=hidden] .md-hero__inner{transform:translateY(0.625rem);opacity:0;transition:transform 0ms 400ms,opacity 100ms 0ms;pointer-events:none}.md-hero--expand .md-hero__inner{margin-bottom:1.2rem}.md-footer{color:var(--md-default-bg-color);background-color:var(--md-default-fg-color)}@media print{.md-footer{display:none}}.md-footer-nav__inner{padding:.2rem;overflow:auto}.md-footer-nav__link{display:flex;padding-top:1.4rem;padding-bottom:.4rem;transition:opacity 250ms}@media screen and (min-width: 45em){.md-footer-nav__link{width:50%}}.md-footer-nav__link:focus,.md-footer-nav__link:hover{opacity:.7}.md-footer-nav__link--prev{float:left;width:25%}[dir=rtl] .md-footer-nav__link--prev{float:right}[dir=rtl] .md-footer-nav__link--prev svg{transform:scaleX(-1)}@media screen and (max-width: 44.9375em){.md-footer-nav__link--prev .md-footer-nav__title{display:none}}.md-footer-nav__link--next{float:right;width:75%;text-align:right}[dir=rtl] .md-footer-nav__link--next{float:left;text-align:left}[dir=rtl] .md-footer-nav__link--next svg{transform:scaleX(-1)}.md-footer-nav__title{position:relative;flex-grow:1;max-width:calc(100% - 2.4rem);padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-footer-nav__button{margin:.2rem;padding:.4rem}.md-footer-nav__direction{position:absolute;right:0;left:0;margin-top:-1rem;padding:0 1rem;color:var(--md-default-bg-color--light);font-size:.64rem}.md-footer-meta{background-color:var(--md-default-fg-color--lighter)}.md-footer-meta__inner{display:flex;flex-wrap:wrap;justify-content:space-between;padding:.2rem}html .md-footer-meta.md-typeset a{color:var(--md-default-bg-color--light)}html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover{color:var(--md-default-bg-color)}.md-footer-copyright{width:100%;margin:auto .6rem;padding:.4rem 0;color:var(--md-default-bg-color--lighter);font-size:.64rem}@media screen and (min-width: 45em){.md-footer-copyright{width:auto}}.md-footer-copyright__highlight{color:var(--md-default-bg-color--light)}.md-footer-social{margin:0 .4rem;padding:.2rem 0 .6rem}@media screen and (min-width: 45em){.md-footer-social{padding:.6rem 0}}.md-footer-social__link{display:inline-block;width:1.6rem;height:1.6rem;text-align:center}.md-footer-social__link::before{line-height:1.9}.md-footer-social__link svg{max-height:.8rem;vertical-align:-25%;fill:currentColor}.md-nav{font-size:.7rem;line-height:1.3}.md-nav__title{display:block;padding:0 .6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis}.md-nav__title .md-nav__button{display:none}.md-nav__title .md-nav__button img{width:100%;height:auto}.md-nav__title .md-nav__button.md-logo img,.md-nav__title .md-nav__button.md-logo svg{display:block;width:2.4rem;height:2.4rem}.md-nav__title .md-nav__button.md-logo svg{fill:currentColor}.md-nav__list{margin:0;padding:0;list-style:none}.md-nav__item{padding:0 .6rem}.md-nav__item:last-child{padding-bottom:.6rem}.md-nav__item .md-nav__item{padding-right:0}[dir=rtl] .md-nav__item .md-nav__item{padding-right:.6rem;padding-left:0}.md-nav__item .md-nav__item:last-child{padding-bottom:0}.md-nav__link{display:block;margin-top:.625em;overflow:hidden;text-overflow:ellipsis;cursor:pointer;transition:color 125ms;scroll-snap-align:start}html .md-nav__link[for=__toc]{display:none}html .md-nav__link[for=__toc]~.md-nav{display:none}.md-nav__link[data-md-state=blur]{color:var(--md-default-fg-color--light)}.md-nav__item .md-nav__link--active{color:var(--md-primary-fg-color)}.md-nav__item--nested>.md-nav__link{color:inherit}.md-nav__link:focus,.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav__source{display:none}@media screen and (max-width: 76.1875em){.md-nav{background-color:var(--md-default-bg-color)}.md-nav--primary,.md-nav--primary .md-nav{position:absolute;top:0;right:0;left:0;z-index:1;display:flex;flex-direction:column;height:100%}.md-nav--primary .md-nav__title,.md-nav--primary .md-nav__item{font-size:.8rem;line-height:1.5}.md-nav--primary .md-nav__title{position:relative;height:5.6rem;padding:3rem .8rem .2rem;color:var(--md-default-fg-color--light);font-weight:400;line-height:2.4rem;white-space:nowrap;background-color:var(--md-default-fg-color--lightest);cursor:pointer}.md-nav--primary .md-nav__title .md-nav__icon{position:absolute;top:.4rem;left:.4rem;display:block;width:1.2rem;height:1.2rem;margin:.2rem}[dir=rtl] .md-nav--primary .md-nav__title .md-nav__icon{right:.4rem;left:initial}.md-nav--primary .md-nav__title~.md-nav__list{overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);scroll-snap-type:y mandatory;touch-action:pan-y}.md-nav--primary .md-nav__title~.md-nav__list>.md-nav__item:first-child{border-top:0}.md-nav--primary .md-nav__title[for=__drawer]{position:relative;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{position:absolute;top:.2rem;left:.2rem;display:block;margin:.2rem;padding:.4rem;font-size:2.4rem}html [dir=rtl] .md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{right:.2rem;left:initial}.md-nav--primary .md-nav__list{flex:1}.md-nav--primary .md-nav__item{padding:0;border-top:.05rem solid var(--md-default-fg-color--lightest)}[dir=rtl] .md-nav--primary .md-nav__item{padding:0}.md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:2.4rem}[dir=rtl] .md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav--primary .md-nav__item--active>.md-nav__link{color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__item--active>.md-nav__link:focus,.md-nav--primary .md-nav__item--active>.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav--primary .md-nav__link{position:relative;margin-top:0;padding:.6rem .8rem}.md-nav--primary .md-nav__link .md-nav__icon{position:absolute;top:50%;right:.6rem;margin-top:-0.6rem;color:inherit;font-size:1.2rem}[dir=rtl] .md-nav--primary .md-nav__link .md-nav__icon{right:initial;left:.6rem}[dir=rtl] .md-nav--primary .md-nav__icon svg{transform:scale(-1)}.md-nav--primary .md-nav--secondary .md-nav__link{position:static}.md-nav--primary .md-nav--secondary .md-nav{position:static;background-color:transparent}.md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-left:1.4rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-right:1.4rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-left:2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-right:2rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-left:2.6rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-right:2.6rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-left:3.2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-right:3.2rem;padding-left:initial}.md-nav__toggle~.md-nav{display:flex;transform:translateX(100%);opacity:0;transition:transform 250ms cubic-bezier(0.8, 0, 0.6, 1),opacity 125ms 50ms}[dir=rtl] .md-nav__toggle~.md-nav{transform:translateX(-100%)}.md-nav__toggle:checked~.md-nav{transform:translateX(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 125ms 125ms}.md-nav__toggle:checked~.md-nav>.md-nav__list{backface-visibility:hidden}}@media screen and (max-width: 59.9375em){html .md-nav__link[for=__toc]{display:block;padding-right:2.4rem}html .md-nav__link[for=__toc]+.md-nav__link{display:none}html .md-nav__link[for=__toc]~.md-nav{display:flex}html [dir=rtl] .md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav__source{display:block;padding:0 .2rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color--dark)}}@media screen and (min-width: 60em){.md-nav--secondary .md-nav__title[for=__toc]{scroll-snap-align:start}.md-nav--secondary .md-nav__title .md-nav__icon{display:none}}@media screen and (min-width: 76.25em){.md-nav{transition:max-height 250ms cubic-bezier(0.86, 0, 0.07, 1)}.md-nav--primary .md-nav__title[for=__drawer]{scroll-snap-align:start}.md-nav--primary .md-nav__title .md-nav__icon{display:none}.md-nav__toggle~.md-nav{display:none}.md-nav__toggle:checked~.md-nav{display:block}.md-nav__item--nested>.md-nav>.md-nav__title{display:none}.md-nav__icon{float:right;height:.9rem;transition:transform 250ms}[dir=rtl] .md-nav__icon{float:left;transform:rotate(180deg)}.md-nav__icon svg{display:inline-block;width:.9rem;height:.9rem;vertical-align:-0.1rem}.md-nav__item--nested .md-nav__toggle:checked~.md-nav__link .md-nav__icon{transform:rotate(90deg)}}.md-search{position:relative}.no-js .md-search{display:none}@media screen and (min-width: 60em){.md-search{padding:.2rem 0}}.md-search__overlay{z-index:1;opacity:0}@media screen and (max-width: 59.9375em){.md-search__overlay{position:absolute;top:.2rem;left:-2.2rem;width:2rem;height:2rem;overflow:hidden;background-color:var(--md-default-bg-color);border-radius:1rem;transform-origin:center;transition:transform 300ms 100ms,opacity 200ms 200ms;pointer-events:none}[dir=rtl] .md-search__overlay{right:-2.2rem;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{opacity:1;transition:transform 400ms,opacity 100ms}}@media screen and (max-width: 29.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(45)}}@media screen and (min-width: 30em)and (max-width: 44.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(60)}}@media screen and (min-width: 45em)and (max-width: 59.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(75)}}@media screen and (min-width: 60em){.md-search__overlay{position:fixed;top:0;left:0;width:0;height:0;background-color:var(--md-default-fg-color--light);cursor:pointer;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}[dir=rtl] .md-search__overlay{right:0;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-search__inner{backface-visibility:hidden}@media screen and (max-width: 59.9375em){.md-search__inner{position:fixed;top:0;left:100%;z-index:2;width:100%;height:100%;transform:translateX(5%);opacity:0;transition:right 0ms 300ms,left 0ms 300ms,transform 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1),opacity 150ms 150ms}[data-md-toggle=search]:checked~.md-header .md-search__inner{left:0;transform:translateX(0);opacity:1;transition:right 0ms 0ms,left 0ms 0ms,transform 150ms 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms 150ms}[dir=rtl] [data-md-toggle=search]:checked~.md-header .md-search__inner{right:0;left:initial}html [dir=rtl] .md-search__inner{right:100%;left:initial;transform:translateX(-5%)}}@media screen and (min-width: 60em){.md-search__inner{position:relative;float:right;width:11.7rem;padding:.1rem 0;transition:width 250ms cubic-bezier(0.1, 0.7, 0.1, 1)}[dir=rtl] .md-search__inner{float:left}}@media screen and (min-width: 60em)and (max-width: 76.1875em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:23.4rem}}@media screen and (min-width: 76.25em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:34.4rem}}.md-search__form{position:relative}@media screen and (min-width: 60em){.md-search__form{border-radius:.1rem}}.md-search__input{position:relative;z-index:2;padding:0 2.2rem 0 3.6rem;text-overflow:ellipsis}[dir=rtl] .md-search__input{padding:0 3.6rem 0 2.2rem}.md-search__input::placeholder{transition:color 250ms}.md-search__input~.md-search__icon,.md-search__input::placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-ms-clear{display:none}@media screen and (max-width: 59.9375em){.md-search__input{width:100%;height:2.4rem;font-size:.9rem}}@media screen and (min-width: 60em){.md-search__input{width:100%;height:1.8rem;padding-left:2.2rem;color:inherit;font-size:.8rem;background-color:var(--md-default-fg-color--lighter);border-radius:.1rem;transition:color 250ms,background-color 250ms}[dir=rtl] .md-search__input{padding-right:2.2rem}.md-search__input+.md-search__icon{color:var(--md-primary-bg-color)}.md-search__input::placeholder{color:var(--md-primary-bg-color--light)}.md-search__input:hover{background-color:var(--md-default-bg-color--lightest)}[data-md-toggle=search]:checked~.md-header .md-search__input{color:var(--md-default-fg-color);text-overflow:clip;background-color:var(--md-default-bg-color);border-radius:.1rem .1rem 0 0}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::placeholder{color:var(--md-default-fg-color--light)}}.md-search__icon{position:absolute;z-index:2;width:1.2rem;height:1.2rem;cursor:pointer;transition:color 250ms,opacity 250ms}.md-search__icon:hover{opacity:.7}.md-search__icon[for=__search]{top:.3rem;left:.5rem}[dir=rtl] .md-search__icon[for=__search]{right:.5rem;left:initial}[dir=rtl] .md-search__icon[for=__search] svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search__icon[for=__search]{top:.6rem;left:.8rem}[dir=rtl] .md-search__icon[for=__search]{right:.8rem;left:initial}.md-search__icon[for=__search] svg:first-child{display:none}}@media screen and (min-width: 60em){.md-search__icon[for=__search]{pointer-events:none}.md-search__icon[for=__search] svg:last-child{display:none}}.md-search__icon[type=reset]{top:.3rem;right:.5rem;transform:scale(0.75);opacity:0;transition:transform 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:none}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.5rem}@media screen and (max-width: 59.9375em){.md-search__icon[type=reset]{top:.6rem;right:.8rem}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.8rem}}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]{transform:scale(1);opacity:1;pointer-events:initial}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]:hover{opacity:.7}.md-search__output{position:absolute;z-index:1;width:100%;overflow:hidden;border-radius:0 0 .1rem .1rem}@media screen and (max-width: 59.9375em){.md-search__output{top:2.4rem;bottom:0}}@media screen and (min-width: 60em){.md-search__output{top:1.9rem;opacity:0;transition:opacity 400ms}[data-md-toggle=search]:checked~.md-header .md-search__output{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.4);opacity:1}}.md-search__scrollwrap{height:100%;overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);backface-visibility:hidden;scroll-snap-type:y mandatory;touch-action:pan-y}@media(max-resolution: 1dppx){.md-search__scrollwrap{transform:translateZ(0)}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search__scrollwrap{width:23.4rem}}@media screen and (min-width: 76.25em){.md-search__scrollwrap{width:34.4rem}}@media screen and (min-width: 60em){.md-search__scrollwrap{max-height:0}[data-md-toggle=search]:checked~.md-header .md-search__scrollwrap{max-height:75vh}.md-search__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-search__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}}.md-search-result{color:var(--md-default-fg-color);word-break:break-word}.md-search-result__meta{padding:0 .8rem;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.8rem;background-color:var(--md-default-fg-color--lightest);scroll-snap-align:start}@media screen and (min-width: 60em){.md-search-result__meta{padding-left:2.2rem}[dir=rtl] .md-search-result__meta{padding-right:2.2rem;padding-left:initial}}.md-search-result__list{margin:0;padding:0;list-style:none;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-search-result__item{box-shadow:0 -0.05rem 0 var(--md-default-fg-color--lightest)}.md-search-result__link{display:block;outline:0;transition:background 250ms;scroll-snap-align:start}.md-search-result__link:focus,.md-search-result__link:hover{background-color:var(--md-accent-fg-color--transparent)}.md-search-result__link:focus .md-search-result__article::before,.md-search-result__link:hover .md-search-result__article::before{opacity:.7}.md-search-result__link:last-child .md-search-result__teaser{margin-bottom:.6rem}.md-search-result__article{position:relative;padding:0 .8rem;overflow:hidden}@media screen and (min-width: 60em){.md-search-result__article{padding-left:2.2rem}[dir=rtl] .md-search-result__article{padding-right:2.2rem;padding-left:.8rem}}.md-search-result__article--document .md-search-result__title{margin:.55rem 0;font-weight:400;font-size:.8rem;line-height:1.4}.md-search-result__icon{position:absolute;left:0;margin:.1rem;padding:.4rem;color:var(--md-default-fg-color--light)}[dir=rtl] .md-search-result__icon{right:0;left:initial}[dir=rtl] .md-search-result__icon svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search-result__icon{display:none}}.md-search-result__title{margin:.5em 0;font-weight:700;font-size:.64rem;line-height:1.4}.md-search-result__teaser{display:-webkit-box;max-height:1.65rem;margin:.5em 0;overflow:hidden;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.4;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:2}@media screen and (max-width: 44.9375em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}.md-search-result em{font-weight:700;font-style:normal;text-decoration:underline}@keyframes md-sidebar__scrollwrap--hack{0%,99%{scroll-snap-type:none}100%{scroll-snap-type:y mandatory}}.md-sidebar{position:sticky;top:2.4rem;align-self:flex-start;width:12.1rem;padding:1.2rem 0;overflow:hidden}@media print{.md-sidebar{display:none}}@media screen and (max-width: 76.1875em){.md-sidebar--primary{position:fixed;top:0;left:-12.1rem;z-index:3;width:12.1rem;height:100%;background-color:var(--md-default-bg-color);transform:translateX(0);transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 250ms}[dir=rtl] .md-sidebar--primary{right:-12.1rem;left:initial}[data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.4);transform:translateX(12.1rem)}[dir=rtl] [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{transform:translateX(-12.1rem)}.md-sidebar--primary .md-sidebar__scrollwrap{overflow:hidden}}.md-sidebar--secondary{display:none;order:2}@media screen and (min-width: 60em){.md-sidebar--secondary{display:block}.md-sidebar--secondary .md-sidebar__scrollwrap{touch-action:pan-y}}.md-sidebar__scrollwrap{max-height:100%;margin:0 .2rem;overflow-y:auto;backface-visibility:hidden}.js .md-sidebar__scrollwrap{animation:md-sidebar__scrollwrap--hack 400ms forwards}@media screen and (max-width: 76.1875em){.md-sidebar--primary .md-sidebar__scrollwrap{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;scroll-snap-type:none}}.md-sidebar__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@keyframes md-source__facts--done{0%{height:0}100%{height:.65rem}}@keyframes md-source__fact--done{0%{transform:translateY(100%);opacity:0}50%{opacity:0}100%{transform:translateY(0%);opacity:1}}.md-source{display:block;font-size:.65rem;line-height:1.2;white-space:nowrap;backface-visibility:hidden;transition:opacity 250ms}.md-source:hover{opacity:.7}.md-source__icon{display:inline-block;width:2.4rem;height:2.4rem;vertical-align:middle}.md-source__icon svg{margin-top:.6rem;margin-left:.6rem}[dir=rtl] .md-source__icon svg{margin-right:.6rem;margin-left:initial}.md-source__icon+.md-source__repository{margin-left:-2rem;padding-left:2rem}[dir=rtl] .md-source__icon+.md-source__repository{margin-right:-2rem;margin-left:initial;padding-right:2rem;padding-left:initial}.md-source__repository{display:inline-block;max-width:calc(100% - 1.2rem);margin-left:.6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis;vertical-align:middle}.md-source__facts{margin:0;padding:0;overflow:hidden;font-weight:700;font-size:.55rem;list-style-type:none;opacity:.75}[data-md-state=done] .md-source__facts{animation:md-source__facts--done 250ms ease-in}.md-source__fact{float:left}[dir=rtl] .md-source__fact{float:right}[data-md-state=done] .md-source__fact{animation:md-source__fact--done 400ms ease-out}.md-source__fact::before{margin:0 .1rem;content:\"·\"}.md-source__fact:first-child::before{display:none}.md-tabs{width:100%;overflow:auto;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);transition:background 250ms}.no-js .md-tabs{transition:none}@media screen and (max-width: 76.1875em){.md-tabs{display:none}}@media print{.md-tabs{display:none}}.md-tabs__list{margin:0;margin-left:.2rem;padding:0;white-space:nowrap;list-style:none;contain:content}[dir=rtl] .md-tabs__list{margin-right:.2rem;margin-left:initial}.md-tabs__item{display:inline-block;height:2.4rem;padding-right:.6rem;padding-left:.6rem}.md-tabs__link{display:block;margin-top:.8rem;font-size:.7rem;opacity:.7;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms}.no-js .md-tabs__link{transition:none}.md-tabs__link--active,.md-tabs__link:hover{color:inherit;opacity:1}.md-tabs__item:nth-child(2) .md-tabs__link{transition-delay:20ms}.md-tabs__item:nth-child(3) .md-tabs__link{transition-delay:40ms}.md-tabs__item:nth-child(4) .md-tabs__link{transition-delay:60ms}.md-tabs__item:nth-child(5) .md-tabs__link{transition-delay:80ms}.md-tabs__item:nth-child(6) .md-tabs__link{transition-delay:100ms}.md-tabs__item:nth-child(7) .md-tabs__link{transition-delay:120ms}.md-tabs__item:nth-child(8) .md-tabs__link{transition-delay:140ms}.md-tabs__item:nth-child(9) .md-tabs__link{transition-delay:160ms}.md-tabs__item:nth-child(10) .md-tabs__link{transition-delay:180ms}.md-tabs__item:nth-child(11) .md-tabs__link{transition-delay:200ms}.md-tabs__item:nth-child(12) .md-tabs__link{transition-delay:220ms}.md-tabs__item:nth-child(13) .md-tabs__link{transition-delay:240ms}.md-tabs__item:nth-child(14) .md-tabs__link{transition-delay:260ms}.md-tabs__item:nth-child(15) .md-tabs__link{transition-delay:280ms}.md-tabs__item:nth-child(16) .md-tabs__link{transition-delay:300ms}.md-tabs[data-md-state=hidden]{pointer-events:none}.md-tabs[data-md-state=hidden] .md-tabs__link{transform:translateY(50%);opacity:0;transition:color 250ms,transform 0ms 400ms,opacity 100ms}@media screen and (min-width: 76.25em){.md-tabs~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--nested{display:none}.md-tabs--active~.md-main .md-nav--primary .md-nav__title{display:block;padding:0 .6rem;pointer-events:none;scroll-snap-align:start}.md-tabs--active~.md-main .md-nav--primary .md-nav__title[for=__drawer]{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active{display:block;padding:0}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active>.md-nav__link{display:none}.md-tabs--active~.md-main .md-nav[data-md-level=\"1\"]{display:block}.md-tabs--active~.md-main .md-nav[data-md-level=\"1\"]>.md-nav__list>.md-nav__item{padding:0 .6rem}.md-tabs--active~.md-main .md-nav[data-md-level=\"1\"] .md-nav .md-nav__title{display:none}}:root{--md-admonition-icon--note: svg-load(\"@mdi/svg/svg/pencil.svg\");--md-admonition-icon--abstract: svg-load(\"@mdi/svg/svg/text-subject.svg\");--md-admonition-icon--info: svg-load(\"@mdi/svg/svg/information.svg\");--md-admonition-icon--tip: svg-load(\"@mdi/svg/svg/fire.svg\");--md-admonition-icon--success: svg-load(\"@mdi/svg/svg/check-circle.svg\");--md-admonition-icon--question: svg-load(\"@mdi/svg/svg/help-circle.svg\");--md-admonition-icon--warning: svg-load(\"@mdi/svg/svg/alert.svg\");--md-admonition-icon--failure: svg-load(\"@mdi/svg/svg/close-circle.svg\");--md-admonition-icon--danger: svg-load(\"@mdi/svg/svg/flash-circle.svg\");--md-admonition-icon--bug: svg-load(\"@mdi/svg/svg/bug.svg\");--md-admonition-icon--example: svg-load(\"@mdi/svg/svg/format-list-numbered.svg\");--md-admonition-icon--quote: svg-load(\"@mdi/svg/svg/format-quote-close.svg\")}.md-typeset .admonition,.md-typeset details{margin:1.5625em 0;padding:0 .6rem;overflow:hidden;font-size:.64rem;page-break-inside:avoid;border-left:.2rem solid #448aff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1)}[dir=rtl] .md-typeset .admonition,[dir=rtl] .md-typeset details{border-right:.2rem solid #448aff;border-left:none}@media print{.md-typeset .admonition,.md-typeset details{box-shadow:none}}html .md-typeset .admonition>:last-child,html .md-typeset details>:last-child{margin-bottom:.6rem}.md-typeset .admonition .admonition,.md-typeset details .admonition,.md-typeset .admonition details,.md-typeset details details{margin:1em 0}.md-typeset .admonition .md-typeset__scrollwrap,.md-typeset details .md-typeset__scrollwrap{margin:1em -0.6rem}.md-typeset .admonition .md-typeset__table,.md-typeset details .md-typeset__table{padding:0 .6rem}.md-typeset .admonition-title,.md-typeset summary{position:relative;margin:0 -0.6rem;padding:.4rem .6rem .4rem 2rem;font-weight:700;background-color:rgba(68,138,255,.1)}[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem .6rem}html .md-typeset .admonition-title:last-child,html .md-typeset summary:last-child{margin-bottom:0}.md-typeset .admonition-title::before,.md-typeset summary::before{position:absolute;left:.6rem;width:1rem;height:1rem;background-color:#448aff;mask-image:var(--md-admonition-icon--note);content:\"\"}[dir=rtl] .md-typeset .admonition-title::before,[dir=rtl] .md-typeset summary::before{right:.6rem;left:initial}.md-typeset .admonition-title code,.md-typeset summary code{margin:initial;padding:initial;color:currentColor;background-color:transparent;border-radius:initial;box-shadow:none}.md-typeset .admonition.note,.md-typeset details.note{border-color:#448aff}.md-typeset .note>.admonition-title,.md-typeset .note>summary{background-color:rgba(68,138,255,.1)}.md-typeset .note>.admonition-title::before,.md-typeset .note>summary::before{background-color:#448aff;mask-image:var(--md-admonition-icon--note)}.md-typeset .admonition.abstract,.md-typeset details.abstract,.md-typeset .admonition.tldr,.md-typeset details.tldr,.md-typeset .admonition.summary,.md-typeset details.summary{border-color:#00b0ff}.md-typeset .abstract>.admonition-title,.md-typeset .abstract>summary,.md-typeset .tldr>.admonition-title,.md-typeset .tldr>summary,.md-typeset .summary>.admonition-title,.md-typeset .summary>summary{background-color:rgba(0,176,255,.1)}.md-typeset .abstract>.admonition-title::before,.md-typeset .abstract>summary::before,.md-typeset .tldr>.admonition-title::before,.md-typeset .tldr>summary::before,.md-typeset .summary>.admonition-title::before,.md-typeset .summary>summary::before{background-color:#00b0ff;mask-image:var(--md-admonition-icon--abstract)}.md-typeset .admonition.info,.md-typeset details.info,.md-typeset .admonition.todo,.md-typeset details.todo{border-color:#00b8d4}.md-typeset .info>.admonition-title,.md-typeset .info>summary,.md-typeset .todo>.admonition-title,.md-typeset .todo>summary{background-color:rgba(0,184,212,.1)}.md-typeset .info>.admonition-title::before,.md-typeset .info>summary::before,.md-typeset .todo>.admonition-title::before,.md-typeset .todo>summary::before{background-color:#00b8d4;mask-image:var(--md-admonition-icon--info)}.md-typeset .admonition.tip,.md-typeset details.tip,.md-typeset .admonition.important,.md-typeset details.important,.md-typeset .admonition.hint,.md-typeset details.hint{border-color:#00bfa5}.md-typeset .tip>.admonition-title,.md-typeset .tip>summary,.md-typeset .important>.admonition-title,.md-typeset .important>summary,.md-typeset .hint>.admonition-title,.md-typeset .hint>summary{background-color:rgba(0,191,165,.1)}.md-typeset .tip>.admonition-title::before,.md-typeset .tip>summary::before,.md-typeset .important>.admonition-title::before,.md-typeset .important>summary::before,.md-typeset .hint>.admonition-title::before,.md-typeset .hint>summary::before{background-color:#00bfa5;mask-image:var(--md-admonition-icon--tip)}.md-typeset .admonition.success,.md-typeset details.success,.md-typeset .admonition.done,.md-typeset details.done,.md-typeset .admonition.check,.md-typeset details.check{border-color:#00c853}.md-typeset .success>.admonition-title,.md-typeset .success>summary,.md-typeset .done>.admonition-title,.md-typeset .done>summary,.md-typeset .check>.admonition-title,.md-typeset .check>summary{background-color:rgba(0,200,83,.1)}.md-typeset .success>.admonition-title::before,.md-typeset .success>summary::before,.md-typeset .done>.admonition-title::before,.md-typeset .done>summary::before,.md-typeset .check>.admonition-title::before,.md-typeset .check>summary::before{background-color:#00c853;mask-image:var(--md-admonition-icon--success)}.md-typeset .admonition.question,.md-typeset details.question,.md-typeset .admonition.faq,.md-typeset details.faq,.md-typeset .admonition.help,.md-typeset details.help{border-color:#64dd17}.md-typeset .question>.admonition-title,.md-typeset .question>summary,.md-typeset .faq>.admonition-title,.md-typeset .faq>summary,.md-typeset .help>.admonition-title,.md-typeset .help>summary{background-color:rgba(100,221,23,.1)}.md-typeset .question>.admonition-title::before,.md-typeset .question>summary::before,.md-typeset .faq>.admonition-title::before,.md-typeset .faq>summary::before,.md-typeset .help>.admonition-title::before,.md-typeset .help>summary::before{background-color:#64dd17;mask-image:var(--md-admonition-icon--question)}.md-typeset .admonition.warning,.md-typeset details.warning,.md-typeset .admonition.attention,.md-typeset details.attention,.md-typeset .admonition.caution,.md-typeset details.caution{border-color:#ff9100}.md-typeset .warning>.admonition-title,.md-typeset .warning>summary,.md-typeset .attention>.admonition-title,.md-typeset .attention>summary,.md-typeset .caution>.admonition-title,.md-typeset .caution>summary{background-color:rgba(255,145,0,.1)}.md-typeset .warning>.admonition-title::before,.md-typeset .warning>summary::before,.md-typeset .attention>.admonition-title::before,.md-typeset .attention>summary::before,.md-typeset .caution>.admonition-title::before,.md-typeset .caution>summary::before{background-color:#ff9100;mask-image:var(--md-admonition-icon--warning)}.md-typeset .admonition.failure,.md-typeset details.failure,.md-typeset .admonition.missing,.md-typeset details.missing,.md-typeset .admonition.fail,.md-typeset details.fail{border-color:#ff5252}.md-typeset .failure>.admonition-title,.md-typeset .failure>summary,.md-typeset .missing>.admonition-title,.md-typeset .missing>summary,.md-typeset .fail>.admonition-title,.md-typeset .fail>summary{background-color:rgba(255,82,82,.1)}.md-typeset .failure>.admonition-title::before,.md-typeset .failure>summary::before,.md-typeset .missing>.admonition-title::before,.md-typeset .missing>summary::before,.md-typeset .fail>.admonition-title::before,.md-typeset .fail>summary::before{background-color:#ff5252;mask-image:var(--md-admonition-icon--failure)}.md-typeset .admonition.danger,.md-typeset details.danger,.md-typeset .admonition.error,.md-typeset details.error{border-color:#ff1744}.md-typeset .danger>.admonition-title,.md-typeset .danger>summary,.md-typeset .error>.admonition-title,.md-typeset .error>summary{background-color:rgba(255,23,68,.1)}.md-typeset .danger>.admonition-title::before,.md-typeset .danger>summary::before,.md-typeset .error>.admonition-title::before,.md-typeset .error>summary::before{background-color:#ff1744;mask-image:var(--md-admonition-icon--danger)}.md-typeset .admonition.bug,.md-typeset details.bug{border-color:#f50057}.md-typeset .bug>.admonition-title,.md-typeset .bug>summary{background-color:rgba(245,0,87,.1)}.md-typeset .bug>.admonition-title::before,.md-typeset .bug>summary::before{background-color:#f50057;mask-image:var(--md-admonition-icon--bug)}.md-typeset .admonition.example,.md-typeset details.example{border-color:#651fff}.md-typeset .example>.admonition-title,.md-typeset .example>summary{background-color:rgba(101,31,255,.1)}.md-typeset .example>.admonition-title::before,.md-typeset .example>summary::before{background-color:#651fff;mask-image:var(--md-admonition-icon--example)}.md-typeset .admonition.quote,.md-typeset details.quote,.md-typeset .admonition.cite,.md-typeset details.cite{border-color:#9e9e9e}.md-typeset .quote>.admonition-title,.md-typeset .quote>summary,.md-typeset .cite>.admonition-title,.md-typeset .cite>summary{background-color:rgba(158,158,158,.1)}.md-typeset .quote>.admonition-title::before,.md-typeset .quote>summary::before,.md-typeset .cite>.admonition-title::before,.md-typeset .cite>summary::before{background-color:#9e9e9e;mask-image:var(--md-admonition-icon--quote)}.codehilite .o,.highlight .o{color:inherit}.codehilite .ow,.highlight .ow{color:inherit}.codehilite .ge,.highlight .ge{color:#000}.codehilite .gr,.highlight .gr{color:#a00}.codehilite .gh,.highlight .gh{color:#999}.codehilite .go,.highlight .go{color:#888}.codehilite .gp,.highlight .gp{color:#555}.codehilite .gs,.highlight .gs{color:inherit}.codehilite .gu,.highlight .gu{color:#aaa}.codehilite .gt,.highlight .gt{color:#a00}.codehilite .gd,.highlight .gd{background-color:#fdd}.codehilite .gi,.highlight .gi{background-color:#dfd}.codehilite .k,.highlight .k{color:#3b78e7}.codehilite .kc,.highlight .kc{color:#a71d5d}.codehilite .kd,.highlight .kd{color:#3b78e7}.codehilite .kn,.highlight .kn{color:#3b78e7}.codehilite .kp,.highlight .kp{color:#a71d5d}.codehilite .kr,.highlight .kr{color:#3e61a2}.codehilite .kt,.highlight .kt{color:#3e61a2}.codehilite .c,.highlight .c{color:#999}.codehilite .cm,.highlight .cm{color:#999}.codehilite .cp,.highlight .cp{color:#666}.codehilite .c1,.highlight .c1{color:#999}.codehilite .ch,.highlight .ch{color:#999}.codehilite .cs,.highlight .cs{color:#999}.codehilite .na,.highlight .na{color:#c2185b}.codehilite .nb,.highlight .nb{color:#c2185b}.codehilite .bp,.highlight .bp{color:#3e61a2}.codehilite .nc,.highlight .nc{color:#c2185b}.codehilite .no,.highlight .no{color:#3e61a2}.codehilite .nd,.highlight .nd{color:#666}.codehilite .ni,.highlight .ni{color:#666}.codehilite .ne,.highlight .ne{color:#c2185b}.codehilite .nf,.highlight .nf{color:#c2185b}.codehilite .nl,.highlight .nl{color:#3b5179}.codehilite .nn,.highlight .nn{color:#ec407a}.codehilite .nt,.highlight .nt{color:#3b78e7}.codehilite .nv,.highlight .nv{color:#3e61a2}.codehilite .vc,.highlight .vc{color:#3e61a2}.codehilite .vg,.highlight .vg{color:#3e61a2}.codehilite .vi,.highlight .vi{color:#3e61a2}.codehilite .nx,.highlight .nx{color:#ec407a}.codehilite .m,.highlight .m{color:#e74c3c}.codehilite .mf,.highlight .mf{color:#e74c3c}.codehilite .mh,.highlight .mh{color:#e74c3c}.codehilite .mi,.highlight .mi{color:#e74c3c}.codehilite .il,.highlight .il{color:#e74c3c}.codehilite .mo,.highlight .mo{color:#e74c3c}.codehilite .s,.highlight .s{color:#0d904f}.codehilite .sb,.highlight .sb{color:#0d904f}.codehilite .sc,.highlight .sc{color:#0d904f}.codehilite .sd,.highlight .sd{color:#999}.codehilite .s2,.highlight .s2{color:#0d904f}.codehilite .se,.highlight .se{color:#183691}.codehilite .sh,.highlight .sh{color:#183691}.codehilite .si,.highlight .si{color:#183691}.codehilite .sx,.highlight .sx{color:#183691}.codehilite .sr,.highlight .sr{color:#009926}.codehilite .s1,.highlight .s1{color:#0d904f}.codehilite .ss,.highlight .ss{color:#0d904f}.codehilite .err,.highlight .err{color:#a61717}.codehilite .w,.highlight .w{color:transparent}.codehilite .hll,.highlight .hll{display:block;margin:0 -1.1764705882em;padding:0 1.1764705882em;background-color:rgba(255,235,59,.5)}.codehilitetable,.highlighttable{display:block;overflow:hidden}.codehilitetable tbody,.highlighttable tbody,.codehilitetable td,.highlighttable td{display:block;padding:0}.codehilitetable tr,.highlighttable tr{display:flex}.codehilitetable pre,.highlighttable pre{margin:0}.codehilitetable .linenos,.highlighttable .linenos{padding:.525rem 1.1764705882em;padding-right:0;font-size:.85em;background-color:var(--md-code-bg-color);user-select:none}.codehilitetable .linenodiv,.highlighttable .linenodiv{padding-right:.5882352941em;box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest)}.codehilitetable .linenodiv pre,.highlighttable .linenodiv pre{color:var(--md-default-fg-color--lighter);text-align:right}.codehilitetable .code,.highlighttable .code{flex:1;overflow:hidden}.md-typeset .codehilitetable,.md-typeset .highlighttable{margin:1em 0;direction:ltr;border-radius:.1rem}.md-typeset .codehilitetable code,.md-typeset .highlighttable code{border-radius:0}@media screen and (max-width: 44.9375em){.md-typeset>.codehilite,.md-typeset>.highlight{margin:1em -0.8rem}.md-typeset>.codehilite .hll,.md-typeset>.highlight .hll{margin:0 -0.8rem;padding:0 .8rem}.md-typeset>.codehilite code,.md-typeset>.highlight code{border-radius:0}.md-typeset>.codehilitetable,.md-typeset>.highlighttable{margin:1em -0.8rem;border-radius:0}.md-typeset>.codehilitetable .hll,.md-typeset>.highlighttable .hll{margin:0 -0.8rem;padding:0 .8rem}}:root{--md-footnotes-icon: svg-load(\"@mdi/svg/svg/keyboard-return.svg\")}.md-typeset [id^=\"fnref:\"]{display:inline-block}.md-typeset [id^=\"fnref:\"]:target{margin-top:-3.8rem;padding-top:3.8rem;pointer-events:none}.md-typeset [id^=\"fn:\"]::before{display:none;height:0;content:\"\"}.md-typeset [id^=\"fn:\"]:target::before{display:block;margin-top:-3.5rem;padding-top:3.5rem;pointer-events:none}.md-typeset .footnote{color:var(--md-default-fg-color--light);font-size:.64rem}.md-typeset .footnote ol{margin-left:0}.md-typeset .footnote li{transition:color 125ms}.md-typeset .footnote li:target{color:var(--md-default-fg-color)}.md-typeset .footnote li :first-child{margin-top:0}.md-typeset .footnote li:hover .footnote-backref,.md-typeset .footnote li:target .footnote-backref{transform:translateX(0);opacity:1}.md-typeset .footnote li:hover .footnote-backref:hover{color:var(--md-accent-fg-color)}.md-typeset .footnote-ref{display:inline-block;pointer-events:initial}.md-typeset .footnote-backref{display:inline-block;color:var(--md-primary-fg-color);font-size:0;vertical-align:text-bottom;transform:translateX(0.25rem);opacity:0;transition:color 250ms,transform 250ms 250ms,opacity 125ms 250ms}[dir=rtl] .md-typeset .footnote-backref{transform:translateX(-0.25rem)}.md-typeset .footnote-backref::before{display:inline-block;width:.8rem;height:.8rem;background-color:currentColor;mask-image:var(--md-footnotes-icon);content:\"\"}[dir=rtl] .md-typeset .footnote-backref::before svg{transform:scaleX(-1)}@media print{.md-typeset .footnote-backref{color:var(--md-primary-fg-color);transform:translateX(0);opacity:1}}.md-typeset .headerlink{display:inline-block;margin-left:.5rem;visibility:hidden;opacity:0;transition:color 250ms,visibility 0ms 500ms,opacity 125ms}[dir=rtl] .md-typeset .headerlink{margin-right:.5rem;margin-left:initial}html body .md-typeset .headerlink{color:var(--md-default-fg-color--lighter)}@media print{.md-typeset .headerlink{display:none}}.md-typeset :hover>.headerlink,.md-typeset :target>.headerlink,.md-typeset .headerlink:focus{visibility:visible;opacity:1;transition:color 250ms,visibility 0ms,opacity 125ms}.md-typeset :target>.headerlink,.md-typeset .headerlink:focus,.md-typeset .headerlink:hover{color:var(--md-accent-fg-color)}.md-typeset :target{scroll-margin-top:3.6rem}.md-typeset h3[id]:target,.md-typeset h2[id]:target,.md-typeset h1[id]:target{scroll-margin-top:initial}.md-typeset h3[id]::before,.md-typeset h2[id]::before,.md-typeset h1[id]::before{display:block;margin-top:-0.4rem;padding-top:.4rem;content:\"\"}.md-typeset h3[id]:target::before,.md-typeset h2[id]:target::before,.md-typeset h1[id]:target::before{margin-top:-3.4rem;padding-top:3.4rem}.md-typeset h4[id]:target{scroll-margin-top:initial}.md-typeset h4[id]::before{display:block;margin-top:-0.45rem;padding-top:.45rem;content:\"\"}.md-typeset h4[id]:target::before{margin-top:-3.45rem;padding-top:3.45rem}.md-typeset h6[id]:target,.md-typeset h5[id]:target{scroll-margin-top:initial}.md-typeset h6[id]::before,.md-typeset h5[id]::before{display:block;margin-top:-0.6rem;padding-top:.6rem;content:\"\"}.md-typeset h6[id]:target::before,.md-typeset h5[id]:target::before{margin-top:-3.6rem;padding-top:3.6rem}.md-typeset .MJXc-display{margin:.75em 0;padding:.75em 0;overflow:auto;touch-action:auto}@media screen and (max-width: 44.9375em){.md-typeset>p>.MJXc-display{margin:.75em -0.8rem;padding:.25em .8rem}}.md-typeset .MathJax_CHTML{outline:0}.md-typeset del.critic,.md-typeset ins.critic,.md-typeset .critic.comment{padding:0 .25em;border-radius:.1rem;box-decoration-break:clone}.md-typeset del.critic{background-color:#fdd}.md-typeset ins.critic{background-color:#dfd}.md-typeset .critic.comment{color:#999}.md-typeset .critic.comment::before{content:\"/* \"}.md-typeset .critic.comment::after{content:\" */\"}.md-typeset .critic.block{display:block;margin:1em 0;padding-right:.8rem;padding-left:.8rem;overflow:auto;box-shadow:none}.md-typeset .critic.block :first-child{margin-top:.5em}.md-typeset .critic.block :last-child{margin-bottom:.5em}:root{--md-details-icon: svg-load(\"@mdi/svg/svg/chevron-right.svg\")}.md-typeset details{display:block;padding-top:0;overflow:visible}.md-typeset details[open]>summary::after{transform:rotate(90deg)}.md-typeset details:not([open]){padding-bottom:0}.md-typeset details:not([open])>summary{border-bottom-right-radius:.1rem}.md-typeset details::after{display:table;content:\"\"}.md-typeset summary{display:block;min-height:1rem;padding:.4rem 1.8rem .4rem 2rem;border-top-right-radius:.1rem;cursor:pointer}[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem 1.8rem}.md-typeset summary::-webkit-details-marker{display:none}.md-typeset summary::after{position:absolute;top:.4rem;right:.4rem;width:1rem;height:1rem;background-color:currentColor;mask-image:var(--md-details-icon);transform:rotate(0deg);transition:transform 250ms;content:\"\"}[dir=rtl] .md-typeset summary::after{right:initial;left:.4rem;transform:rotate(180deg)}.md-typeset img.emojione,.md-typeset img.twemoji,.md-typeset img.gemoji{width:1.125em;vertical-align:-15%}.md-typeset span.twemoji{display:inline-block;height:1.125em;vertical-align:text-top}.md-typeset span.twemoji svg{width:1.125em;fill:currentColor}.highlight [data-linenos]::before{position:sticky;left:-1.1764705882em;float:left;margin-right:1.1764705882em;margin-left:-1.1764705882em;padding-left:1.1764705882em;color:var(--md-default-fg-color--lighter);background-color:var(--md-code-bg-color);box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest);content:attr(data-linenos);user-select:none}.md-typeset .tabbed-content{display:none;order:99;width:100%;box-shadow:0 -0.05rem var(--md-default-fg-color--lightest)}.md-typeset .tabbed-content>.codehilite:only-child pre,.md-typeset .tabbed-content>.codehilitetable:only-child,.md-typeset .tabbed-content>.highlight:only-child pre,.md-typeset .tabbed-content>.highlighttable:only-child{margin:0}.md-typeset .tabbed-content>.codehilite:only-child pre>code,.md-typeset .tabbed-content>.codehilitetable:only-child>code,.md-typeset .tabbed-content>.highlight:only-child pre>code,.md-typeset .tabbed-content>.highlighttable:only-child>code{border-top-left-radius:0;border-top-right-radius:0}.md-typeset .tabbed-content>.tabbed-set{margin:0}.md-typeset .tabbed-set{position:relative;display:flex;flex-wrap:wrap;margin:1em 0;border-radius:.1rem}.md-typeset .tabbed-set>input{display:none}.md-typeset .tabbed-set>input:checked+label{color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-typeset .tabbed-set>input:checked+label+.tabbed-content{display:block}.md-typeset .tabbed-set>label{z-index:1;width:auto;padding:.6rem 1.25em .5rem;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;border-bottom:.1rem solid transparent;cursor:pointer;transition:color 125ms}html .md-typeset .tabbed-set>label:hover{color:var(--md-accent-fg-color)}:root{--md-tasklist-icon: svg-load(\"@mdi/svg/svg/checkbox-blank-circle.svg\");--md-tasklist-icon--checked: svg-load(\"@mdi/svg/svg/check-circle.svg\")}.md-typeset .task-list-item{position:relative;list-style-type:none}.md-typeset .task-list-item [type=checkbox]{position:absolute;top:.45em;left:-2em}[dir=rtl] .md-typeset .task-list-item [type=checkbox]{right:-2em;left:initial}.md-typeset .task-list-control .task-list-indicator::before{position:absolute;top:.15em;left:-1.5em;width:1.25em;height:1.25em;background-color:var(--md-default-fg-color--lightest);mask-image:var(--md-tasklist-icon);content:\"\"}[dir=rtl] .md-typeset .task-list-control .task-list-indicator::before{right:-1.5em;left:initial}.md-typeset .task-list-control [type=checkbox]:checked+.task-list-indicator::before{background-color:#00e676;mask-image:var(--md-tasklist-icon--checked)}.md-typeset .task-list-control [type=checkbox]{z-index:-1;opacity:0}","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// stylelint-disable no-duplicate-selectors\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Enforce correct box model\nhtml {\n box-sizing: border-box;\n}\n\n// All elements shall inherit the document default\n*,\n*::before,\n*::after {\n box-sizing: inherit;\n}\n\n// Prevent adjustments of font size after orientation changes in IE and iOS\nhtml {\n text-size-adjust: none;\n}\n\n// Remove margin in all browsers\nbody {\n margin: 0;\n}\n\n// Reset horizontal rules in FF\nhr {\n box-sizing: content-box;\n overflow: visible;\n}\n\n// Reset tap outlines on iOS and Android\na,\nbutton,\nlabel,\ninput {\n -webkit-tap-highlight-color: transparent;\n}\n\n// Reset link styles\na {\n color: inherit;\n text-decoration: none;\n}\n\n// Normalize font-size in all browsers\nsmall {\n font-size: 80%;\n}\n\n// Prevent subscript and superscript from affecting line-height\nsub,\nsup {\n position: relative;\n font-size: 80%;\n line-height: 0;\n vertical-align: baseline;\n}\n\n// Correct subscript offset\nsub {\n bottom: -0.25em;\n}\n\n// Correct superscript offset\nsup {\n top: -0.5em;\n}\n\n// Remove borders on images\nimg {\n border-style: none;\n}\n\n// Reset table styles\ntable {\n border-collapse: separate;\n border-spacing: 0;\n}\n\n// Reset table cell styles\ntd,\nth {\n font-weight: normal; // stylelint-disable-line\n vertical-align: top;\n}\n\n// Reset button styles\nbutton {\n margin: 0;\n padding: 0;\n font-size: inherit;\n background: transparent;\n border: 0;\n}\n\n// Reset input styles\ninput {\n border: 0;\n outline: 0;\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Color definitions\n:root {\n\n // Default color shades\n --md-default-fg-color: hsla(0, 0%, 0%, 0.87);\n --md-default-fg-color--light: hsla(0, 0%, 0%, 0.54);\n --md-default-fg-color--lighter: hsla(0, 0%, 0%, 0.26);\n --md-default-fg-color--lightest: hsla(0, 0%, 0%, 0.07);\n --md-default-bg-color: hsla(0, 0%, 100%, 1);\n --md-default-bg-color--light: hsla(0, 0%, 100%, 0.7);\n --md-default-bg-color--lighter: hsla(0, 0%, 100%, 0.3);\n --md-default-bg-color--lightest: hsla(0, 0%, 100%, 0.12);\n\n // Primary color shades\n --md-primary-fg-color: hsla(#{hex2hsl($clr-indigo-500)}, 1);\n --md-primary-fg-color--light: hsla(#{hex2hsl($clr-indigo-300)}, 1);\n --md-primary-fg-color--dark: hsla(#{hex2hsl($clr-indigo-700)}, 1);\n --md-primary-bg-color: var(--md-default-bg-color);\n --md-primary-bg-color--light: var(--md-default-bg-color--light);\n\n // Accent color shades\n --md-accent-fg-color: hsla(#{hex2hsl($clr-indigo-a200)}, 1);\n --md-accent-fg-color--transparent: hsla(#{hex2hsl($clr-indigo-a200)}, 0.1);\n --md-accent-bg-color: var(--md-default-bg-color);\n --md-accent-bg-color--light: var(--md-default-bg-color--light);\n\n // Code block color shades\n --md-code-bg-color: hsla(0, 0%, 96%, 1);\n --md-code-fg-color: hsla(200, 18%, 26%, 1);\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Icon\n.md-icon {\n\n // SVG defaults\n svg {\n display: block;\n width: px2rem(24px);\n height: px2rem(24px);\n margin: 0 auto;\n fill: currentColor;\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules: font definitions\n// ----------------------------------------------------------------------------\n\n// Enable font-smoothing in Webkit and FF\nbody {\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Default fonts\nbody,\ninput {\n color: var(--md-default-fg-color);\n font-feature-settings: \"kern\", \"liga\";\n font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;\n}\n\n// Proportionally spaced fonts\ncode,\npre,\nkbd {\n color: var(--md-default-fg-color);\n font-feature-settings: \"kern\";\n font-family: SFMono-Regular, Consolas, Menlo, monospace;\n}\n\n// ----------------------------------------------------------------------------\n// Rules: typesetted content\n// ----------------------------------------------------------------------------\n\n// Content that is typeset - if possible, all margins, paddings and font sizes\n// should be set in ems, so nested blocks (e.g. Admonition) render correctly,\n// except headlines that should only appear on the top level and need to have\n// consistent spacing due to layout constraints.\n.md-typeset {\n font-size: ms(0);\n line-height: 1.6;\n color-adjust: exact;\n\n // Default spacing\n p,\n ul,\n ol,\n blockquote {\n margin: 1em 0;\n }\n\n // 1st level headline\n h1 {\n margin: 0 0 px2rem(40px);\n color: var(--md-default-fg-color--light);\n font-weight: 300;\n font-size: ms(3);\n line-height: 1.3;\n letter-spacing: -0.01em;\n }\n\n // 2nd level headline\n h2 {\n margin: px2rem(40px) 0 px2rem(16px);\n font-weight: 300;\n font-size: ms(2);\n line-height: 1.4;\n letter-spacing: -0.01em;\n }\n\n // 3rd level headline\n h3 {\n margin: px2rem(32px) 0 px2rem(16px);\n font-weight: 400;\n font-size: ms(1);\n line-height: 1.5;\n letter-spacing: -0.01em;\n }\n\n // 3rd level headline following an 2nd level headline\n h2 + h3 {\n margin-top: px2rem(16px);\n }\n\n // 4th level headline\n h4 {\n margin: px2rem(16px) 0;\n font-weight: 700;\n font-size: ms(0);\n letter-spacing: -0.01em;\n }\n\n // 5th and 6th level headline\n h5,\n h6 {\n margin: px2rem(16px) 0;\n color: var(--md-default-fg-color--light);\n font-weight: 700;\n font-size: ms(-1);\n letter-spacing: -0.01em;\n }\n\n // Overrides for 5th level headline\n h5 {\n text-transform: uppercase;\n }\n\n // Horizontal separators\n hr {\n margin: 1.5em 0;\n border-bottom: px2rem(1px) dotted var(--md-default-fg-color--lighter);\n }\n\n // Links\n a {\n color: var(--md-primary-fg-color);\n word-break: break-word;\n\n // Also enable color transition on pseudo elements\n &,\n &::before {\n transition: color 125ms;\n }\n\n // Focused or hover links\n &:focus,\n &:hover {\n color: var(--md-accent-fg-color);\n }\n }\n\n // Code blocks\n code,\n pre,\n kbd {\n color: var(--md-code-fg-color);\n direction: ltr;\n\n // Wrap text and hide scollbars\n @media print {\n white-space: pre-wrap;\n }\n }\n\n // Inline code blocks\n code {\n padding: 0 px2em(4px, 13.6px);\n font-size: px2em(13.6px);\n word-break: break-word;\n background-color: var(--md-code-bg-color);\n border-radius: px2rem(2px);\n box-decoration-break: clone;\n }\n\n // Disable containing block inside headlines\n h1 code,\n h2 code,\n h3 code,\n h4 code,\n h5 code,\n h6 code {\n margin: initial;\n padding: initial;\n background-color: transparent;\n box-shadow: none;\n }\n\n // Ensure link color in code blocks\n a > code {\n color: currentColor;\n }\n\n // Unformatted code blocks\n pre {\n position: relative;\n margin: 1em 0;\n line-height: 1.4;\n\n // Actual container with code, overflowing\n > code {\n display: block;\n margin: 0;\n padding: px2rem(10.5px) px2em(16px, 13.6px);\n overflow: auto;\n word-break: normal;\n box-shadow: none;\n box-decoration-break: slice;\n touch-action: auto;\n scrollbar-width: thin;\n\n // Override native scrollbar styles\n &::-webkit-scrollbar {\n width: px2rem(4px);\n height: px2rem(4px);\n }\n\n // Scrollbar thumb\n &::-webkit-scrollbar-thumb {\n background-color: var(--md-default-fg-color--lighter);\n\n // Hovered scrollbar thumb\n &:hover {\n background-color: var(--md-accent-fg-color);\n }\n }\n }\n }\n\n // [mobile -]: Stretch to whole width\n @include break-to-device(mobile) {\n\n // Stretch top-level containers\n > pre {\n margin: 1em px2rem(-16px);\n\n // Remove rounded borders\n code {\n border-radius: 0;\n }\n }\n }\n\n // Keystrokes\n kbd {\n display: inline-block;\n padding: 0 px2em(8px, 12px);\n font-size: px2em(12px);\n line-height: 1.5;\n vertical-align: text-top;\n word-break: break-word;\n border-radius: px2rem(2px);\n box-shadow:\n 0 px2rem(2px) 0 px2rem(1px) var(--md-default-fg-color--lighter),\n 0 px2rem(2px) 0 var(--md-default-fg-color--lighter),\n inset 0 px2rem(-2px) px2rem(4px) var(--md-default-bg-color);\n }\n\n // Text highlighting marker\n mark {\n padding: 0 px2em(4px, 16px);\n word-break: break-word;\n background-color: transparentize($clr-yellow-500, 0.5);\n border-radius: px2rem(2px);\n box-decoration-break: clone;\n }\n\n // Abbreviations\n abbr {\n text-decoration: none;\n border-bottom: px2rem(1px) dotted var(--md-default-fg-color--light);\n cursor: help;\n }\n\n // Small text\n small {\n opacity: 0.75;\n }\n\n // Superscript and subscript\n sup,\n sub {\n margin-left: px2em(1px, 12.8px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2em(1px, 12.8px);\n margin-left: initial;\n }\n }\n\n // Blockquotes, possibly nested\n blockquote {\n padding-left: px2rem(12px);\n color: var(--md-default-fg-color--light);\n border-left: px2rem(4px) solid var(--md-default-fg-color--lighter);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(12px);\n padding-left: initial;\n border-right: px2rem(4px) solid var(--md-default-fg-color--lighter);\n border-left: initial;\n }\n }\n\n // Unordered lists\n ul {\n list-style-type: disc;\n }\n\n // Unordered and ordered lists\n ul,\n ol {\n margin-left: px2em(10px, 16px);\n padding: 0;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2em(10px, 16px);\n margin-left: initial;\n }\n\n // Nested ordered lists\n ol {\n list-style-type: lower-alpha;\n\n // Triply nested ordered list\n ol {\n list-style-type: lower-roman;\n }\n }\n\n // List elements\n li {\n margin-bottom: 0.5em;\n margin-left: px2em(20px, 16px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2em(20px, 16px);\n margin-left: initial;\n }\n\n // Decrease vertical spacing\n p,\n blockquote {\n margin: 0.5em 0;\n }\n\n // Remove margin on last element\n &:last-child {\n margin-bottom: 0;\n }\n\n // Nested lists\n ul,\n ol {\n margin: 0.5em 0 0.5em px2em(10px, 16px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2em(10px, 16px);\n margin-left: initial;\n }\n }\n }\n }\n\n // Definition lists\n dd {\n margin: 1em 0 1em px2em(30px, 16px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2em(30px, 16px);\n margin-left: initial;\n }\n }\n\n // Limit width to container, scale height proportionally\n img,\n svg {\n max-width: 100%;\n height: auto;\n }\n\n // Limit width to container\n iframe {\n max-width: 100%;\n }\n\n // Data tables\n table:not([class]) {\n display: inline-block;\n max-width: 100%;\n overflow: auto;\n font-size: ms(-1);\n background: var(--md-default-bg-color);\n border-radius: px2rem(2px);\n box-shadow:\n 0 px2rem(4px) px2rem(10px) hsla(0, 0%, 0%, 0.05),\n 0 0 px2rem(1px) hsla(0, 0%, 0%, 0.1);\n touch-action: auto;\n\n // Due to margin collapse because of the necessary inline-block hack, we\n // cannot increase the bottom margin on the table, so we just increase the\n // top margin on the following element\n & + * {\n margin-top: 1.5em;\n }\n\n // Table headings and cells\n th:not([align]),\n td:not([align]) {\n text-align: left;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n text-align: right;\n }\n }\n\n // Table headings\n th {\n min-width: px2rem(100px);\n padding: px2rem(12px) px2rem(16px);\n color: var(--md-default-bg-color);\n vertical-align: top;\n background-color: var(--md-default-fg-color--light);\n }\n\n // Table cells\n td {\n padding: px2rem(12px) px2rem(16px);\n vertical-align: top;\n border-top: px2rem(1px) solid var(--md-default-fg-color--lightest);\n }\n\n // Table rows\n tr {\n transition: background-color 125ms;\n\n // Add background on hover\n &:hover {\n background-color: rgba(0, 0, 0, 0.035);\n box-shadow: 0 px2rem(1px) 0 var(--md-default-bg-color) inset;\n }\n\n // Remove top border on first row\n &:first-child td {\n border-top: 0;\n }\n }\n\n\n // Do not wrap links in tables\n a {\n word-break: normal;\n }\n }\n\n // Wrapper for scrolling on overflow\n &__scrollwrap {\n margin: 1em px2rem(-16px);\n overflow-x: auto;\n touch-action: auto;\n }\n\n // Data table wrapper, in case JavaScript is available\n &__table {\n display: inline-block;\n margin-bottom: 0.5em;\n padding: 0 px2rem(16px);\n\n // Data tables\n table {\n display: table;\n width: 100%;\n margin: 0;\n overflow: hidden;\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Variables\n// ----------------------------------------------------------------------------\n\n///\n/// Device-specific breakpoints\n///\n/// @example\n/// $break-devices: (\n/// mobile: (\n/// portrait: 220px 479px,\n/// landscape: 480px 719px\n/// ),\n/// tablet: (\n/// portrait: 720px 959px,\n/// landscape: 960px 1219px\n/// ),\n/// screen: (\n/// small: 1220px 1599px,\n/// medium: 1600px 1999px,\n/// large: 2000px\n/// )\n/// );\n///\n$break-devices: () !default;\n\n// ----------------------------------------------------------------------------\n// Helpers\n// ----------------------------------------------------------------------------\n\n///\n/// Choose minimum and maximum device widths\n///\n@function break-select-min-max($devices) {\n $min: 1000000;\n $max: 0;\n @each $key, $value in $devices {\n @while type-of($value) == map {\n $value: break-select-min-max($value);\n }\n @if type-of($value) == list {\n @each $number in $value {\n @if type-of($number) == number {\n $min: min($number, $min);\n @if $max != null {\n $max: max($number, $max);\n }\n } @else {\n @error \"Invalid number: #{$number}\";\n }\n }\n } @else if type-of($value) == number {\n $min: min($value, $min);\n $max: null;\n } @else {\n @error \"Invalid value: #{$value}\";\n }\n }\n @return $min, $max;\n}\n\n///\n/// Select minimum and maximum widths for a device breakpoint\n///\n@function break-select-device($device) {\n $current: $break-devices;\n @for $n from 1 through length($device) {\n @if type-of($current) == map {\n $current: map-get($current, nth($device, $n));\n } @else {\n @error \"Invalid device map: #{$devices}\";\n }\n }\n @if type-of($current) == list or type-of($current) == number {\n $current: (default: $current);\n }\n @return break-select-min-max($current);\n}\n\n// ----------------------------------------------------------------------------\n// Mixins\n// ----------------------------------------------------------------------------\n\n///\n/// A minimum-maximum media query breakpoint\n///\n@mixin break-at($breakpoint) {\n @if type-of($breakpoint) == number {\n @media screen and (min-width: $breakpoint) {\n @content;\n }\n } @else if type-of($breakpoint) == list {\n $min: nth($breakpoint, 1);\n $max: nth($breakpoint, 2);\n @if type-of($min) == number and type-of($max) == number {\n @media screen and (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n}\n\n///\n/// An orientation media query breakpoint\n///\n@mixin break-at-orientation($breakpoint) {\n @if type-of($breakpoint) == string {\n @media screen and (orientation: $breakpoint) {\n @content;\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n}\n\n///\n/// A maximum-aspect-ratio media query breakpoint\n///\n@mixin break-at-ratio($breakpoint) {\n @if type-of($breakpoint) == number {\n @media screen and (max-aspect-ratio: $breakpoint) {\n @content;\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n}\n\n///\n/// A minimum-maximum media query device breakpoint\n///\n@mixin break-at-device($device) {\n @if type-of($device) == string {\n $device: $device,;\n }\n @if type-of($device) == list {\n $breakpoint: break-select-device($device);\n @if nth($breakpoint, 2) != null {\n $min: nth($breakpoint, 1);\n $max: nth($breakpoint, 2);\n @media screen and (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n}\n\n///\n/// A minimum media query device breakpoint\n///\n@mixin break-from-device($device) {\n @if type-of($device) == string {\n $device: $device,;\n }\n @if type-of($device) == list {\n $breakpoint: break-select-device($device);\n $min: nth($breakpoint, 1);\n @media screen and (min-width: $min) {\n @content;\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n}\n\n///\n/// A maximum media query device breakpoint\n///\n@mixin break-to-device($device) {\n @if type-of($device) == string {\n $device: $device,;\n }\n @if type-of($device) == list {\n $breakpoint: break-select-device($device);\n $max: nth($breakpoint, 2);\n @media screen and (max-width: $max) {\n @content;\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Variables\n// ----------------------------------------------------------------------------\n\n// Active (toggled) drawer\n$md-toggle__drawer--checked:\n \"[data-md-toggle=\\\"drawer\\\"]:checked ~\";\n\n// ----------------------------------------------------------------------------\n// Rules: base grid and containers\n// ----------------------------------------------------------------------------\n\n// Stretch container to viewport and set base font-sizefor simple calculations\n// based on relative ems (rems)\nhtml {\n height: 100%;\n // Hack: some browsers on some operating systems don't account for scroll\n // bars when firing media queries, so we need to do this for safety. This\n // currently impacts the table of contents component between 1220 and 1234px\n // and is to current knowledge not fixable.\n overflow-x: hidden;\n // Hack: normally, we would set the base font-size to 62.5%, so we can base\n // all calculations on 10px, but Chromium and Chrome define a minimal font\n // size of 12 if the system language is set to Chinese. For this reason we\n // just double the font-size, set it to 20px which seems to do the trick.\n //\n // See https://github.com/squidfunk/mkdocs-material/issues/911\n font-size: 125%;\n background-color: var(--md-default-bg-color);\n\n // [screen medium +]: Set base font-size to 11px\n @include break-from-device(screen medium) {\n font-size: 137.50%;\n }\n\n // [screen large +]: Set base font-size to 12px\n @include break-from-device(screen large) {\n font-size: 150%;\n }\n}\n\n// Stretch body to container and leave room for footer\nbody {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n min-height: 100%;\n // Hack: reset font-size to 10px, so the spacing for all inline elements is\n // correct again. Otherwise the spacing would be based on 20px.\n font-size: 0.5rem; // stylelint-disable-line unit-whitelist\n\n // [tablet portrait -]: Lock body to disable scroll bubbling\n @include break-to-device(tablet portrait) {\n\n // Lock body to viewport height (e.g. in search mode)\n &[data-md-state=\"lock\"] {\n position: fixed;\n }\n }\n\n // Hack: we must not use flex, or Firefox will only print the first page\n // see https://mzl.la/39DgR3m\n @media print {\n display: block;\n }\n}\n\n// Horizontal separators\nhr {\n display: block;\n height: px2rem(1px);\n padding: 0;\n border: 0;\n}\n\n// Template-wide grid\n.md-grid {\n max-width: px2rem(1220px);\n margin-right: auto;\n margin-left: auto;\n}\n\n// Content wrapper\n.md-container {\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n\n // Hack: we must not use flex, or Firefox will only print the first page\n // see https://mzl.la/39DgR3m\n @media print {\n display: block;\n }\n}\n\n// The main content should stretch to maximum height in the table\n.md-main {\n flex-grow: 1;\n\n // Increase top spacing of content area to give typography more room\n &__inner {\n display: flex;\n height: 100%;\n margin-top: px2rem(24px + 6px);\n }\n}\n\n// Apply ellipsis in case of overflowing text\n.md-ellipsis {\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n\n// ----------------------------------------------------------------------------\n// Rules: navigational elements\n// ----------------------------------------------------------------------------\n\n// Toggle checkbox\n.md-toggle {\n display: none;\n}\n\n// Overlay below expanded drawer\n.md-overlay {\n position: fixed;\n top: 0;\n z-index: 3;\n width: 0;\n height: 0;\n background-color: var(--md-default-fg-color--light);\n opacity: 0;\n transition:\n width 0ms 250ms,\n height 0ms 250ms,\n opacity 250ms;\n\n // [tablet -]: Trigger overlay\n @include break-to-device(tablet) {\n\n // Expanded drawer\n #{$md-toggle__drawer--checked} & {\n width: 100%;\n height: 100%;\n opacity: 1;\n transition:\n width 0ms,\n height 0ms,\n opacity 250ms;\n }\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules: skip link\n// ----------------------------------------------------------------------------\n\n// Skip link\n.md-skip {\n position: fixed;\n // Hack: if we don't set the negative z-index, the skip link will induce the\n // creation of new layers when code blocks are near the header on scrolling\n z-index: -1;\n margin: px2rem(10px);\n padding: px2rem(6px) px2rem(10px);\n color: var(--md-default-bg-color);\n font-size: ms(-1);\n background-color: var(--md-default-fg-color);\n border-radius: px2rem(2px);\n transform: translateY(px2rem(8px));\n opacity: 0;\n\n // Show skip link on focus\n &:focus {\n z-index: 10;\n transform: translateY(0);\n opacity: 1;\n transition:\n transform 250ms cubic-bezier(0.4, 0, 0.2, 1),\n opacity 175ms 75ms;\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules: print styles\n// ----------------------------------------------------------------------------\n\n// Add margins to page\n@page {\n margin: 25mm;\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Announcement bar\n.md-announce {\n overflow: auto;\n background-color: var(--md-default-fg-color);\n\n // Actual content\n &__inner {\n margin: px2rem(12px) auto;\n padding: 0 px2rem(16px);\n color: var(--md-default-bg-color);\n font-size: px2rem(14px);\n }\n\n // Hide for print\n @media print {\n display: none;\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Button\n .md-button {\n display: inline-block;\n padding: px2em(10px, 16px) px2em(32px, 16px);\n color: var(--md-primary-fg-color);\n font-weight: 700;\n border: px2rem(2px) solid currentColor;\n border-radius: px2rem(2px);\n transition:\n color 125ms,\n background-color 125ms,\n border-color 125ms;\n\n // Primary button\n &--primary {\n color: var(--md-primary-bg-color);\n background-color: var(--md-primary-fg-color);\n border-color: var(--md-primary-fg-color);\n }\n\n // Focused or hovered button\n &:focus,\n &:hover {\n color: var(--md-accent-bg-color);\n background-color: var(--md-accent-fg-color);\n border-color: var(--md-accent-fg-color);\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Copy to clipboard\n.md-clipboard {\n position: absolute;\n top: px2rem(8px);\n right: px2em(8px, 16px);\n z-index: 1;\n width: px2em(24px, 16px);\n height: px2em(24px, 16px);\n color: var(--md-default-fg-color--lightest);\n border-radius: px2rem(2px);\n cursor: pointer;\n transition: color 125ms;\n\n // Hide for print\n @media print {\n display: none;\n }\n\n // Slightly smaller icon\n svg {\n width: px2em(18px, 16px);\n height: px2em(18px, 16px);\n }\n\n // Show on container hover\n pre:hover & {\n color: var(--md-default-fg-color--light);\n }\n\n // Focused or hovered icon\n pre &:focus,\n pre &:hover {\n color: var(--md-accent-fg-color);\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Content container\n.md-content {\n flex: 1;\n max-width: 100%;\n\n // [tablet landscape]: Decrease horizontal width\n @include break-at-device(tablet landscape) {\n max-width: calc(100% - #{px2rem(242px)});\n }\n\n // [screen +]: Decrease horizontal width\n @include break-from-device(screen) {\n max-width: calc(100% - #{px2rem(242px)} * 2);\n }\n\n // Define spacing\n &__inner {\n margin: 0 px2rem(16px) px2rem(24px);\n padding-top: px2rem(12px);\n\n // [screen +]: Increase horizontal spacing\n @include break-from-device(screen) {\n margin-right: px2rem(24px);\n margin-left: px2rem(24px);\n }\n\n // Hack: add pseudo element for spacing, as the overflow of the content\n // container may not be hidden due to an imminent offset error on targets\n &::before {\n display: block;\n height: px2rem(8px);\n content: \"\";\n }\n\n // Hack: remove bottom spacing of last element, due to margin collapse\n > :last-child {\n margin-bottom: 0;\n }\n }\n\n // Button next to the title\n &__button {\n float: right;\n margin: px2rem(8px) 0;\n margin-left: px2rem(8px);\n padding: 0;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n float: left;\n margin-right: px2rem(8px);\n margin-left: initial;\n\n // Flip icon vertically\n svg {\n transform: scaleX(-1);\n }\n }\n\n // Override default link color for icons\n .md-typeset & {\n color: var(--md-default-fg-color--lighter);\n }\n\n // Align text with icon\n svg {\n display: inline;\n vertical-align: top;\n }\n\n // Hide for print\n @media print {\n display: none;\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Dialog rendered as snackbar\n.md-dialog {\n @include z-depth(2);\n\n position: fixed;\n right: px2rem(16px);\n bottom: px2rem(16px);\n left: initial;\n z-index: 2;\n display: block;\n min-width: px2rem(222px);\n padding: px2rem(8px) px2rem(12px);\n color: var(--md-default-bg-color);\n font-size: px2rem(14px);\n background: var(--md-default-fg-color);\n border: none;\n border-radius: px2rem(2px);\n transform: translateY(100%);\n opacity: 0;\n transition:\n transform 0ms 400ms,\n opacity 400ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: initial;\n left: px2rem(16px);\n }\n\n // Show open dialog\n &[data-md-state=\"open\"] {\n transform: translateY(0);\n opacity: 1;\n transition:\n transform 400ms cubic-bezier(0.075, 0.85, 0.175, 1),\n opacity 400ms;\n }\n\n // Hide for print\n @media print {\n display: none;\n }\n}\n","//\n// Name: Material Shadows\n// Description: Mixins for Material Design Shadows.\n// Version: 3.0.1\n//\n// Author: Denis Malinochkin\n// Git: https://github.com/mrmlnc/material-shadows\n//\n// twitter: @mrmlnc\n//\n// ------------------------------------\n\n\n// Mixins\n// ------------------------------------\n\n@mixin z-depth-transition() {\n transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);\n}\n\n@mixin z-depth-focus() {\n box-shadow: 0 0 8px rgba(0, 0, 0, .18), 0 8px 16px rgba(0, 0, 0, .36);\n}\n\n@mixin z-depth-2dp() {\n box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14),\n 0 1px 5px 0 rgba(0, 0, 0, .12),\n 0 3px 1px -2px rgba(0, 0, 0, .2);\n}\n\n@mixin z-depth-3dp() {\n box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .14),\n 0 1px 8px 0 rgba(0, 0, 0, .12),\n 0 3px 3px -2px rgba(0, 0, 0, .4);\n}\n\n@mixin z-depth-4dp() {\n box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14),\n 0 1px 10px 0 rgba(0, 0, 0, .12),\n 0 2px 4px -1px rgba(0, 0, 0, .4);\n}\n\n@mixin z-depth-6dp() {\n box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .14),\n 0 1px 18px 0 rgba(0, 0, 0, .12),\n 0 3px 5px -1px rgba(0, 0, 0, .4);\n}\n\n@mixin z-depth-8dp() {\n box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14),\n 0 3px 14px 2px rgba(0, 0, 0, .12),\n 0 5px 5px -3px rgba(0, 0, 0, .4);\n}\n\n@mixin z-depth-16dp() {\n box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14),\n 0 6px 30px 5px rgba(0, 0, 0, .12),\n 0 8px 10px -5px rgba(0, 0, 0, .4);\n}\n\n@mixin z-depth-24dp() {\n box-shadow: 0 9px 46px 8px rgba(0, 0, 0, .14),\n 0 24px 38px 3px rgba(0, 0, 0, .12),\n 0 11px 15px -7px rgba(0, 0, 0, .4);\n}\n\n@mixin z-depth($dp: 2) {\n @if $dp == 2 {\n @include z-depth-2dp();\n } @else if $dp == 3 {\n @include z-depth-3dp();\n } @else if $dp == 4 {\n @include z-depth-4dp();\n } @else if $dp == 6 {\n @include z-depth-6dp();\n } @else if $dp == 8 {\n @include z-depth-8dp();\n } @else if $dp == 16 {\n @include z-depth-16dp();\n } @else if $dp == 24 {\n @include z-depth-24dp();\n }\n}\n\n\n// Class generator\n// ------------------------------------\n\n@mixin z-depth-classes($transition: false, $focus: false) {\n @if $transition == true {\n &-transition {\n @include z-depth-transition();\n }\n }\n\n @if $focus == true {\n &-focus {\n @include z-depth-focus();\n }\n }\n\n // The available values for the shadow depth\n @each $depth in 2, 3, 4, 6, 8, 16, 24 {\n &-#{$depth}dp {\n @include z-depth($depth);\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Application header (stays always on top)\n.md-header {\n position: sticky;\n top: 0;\n right: 0;\n left: 0;\n z-index: 2;\n height: px2rem(48px);\n color: var(--md-primary-bg-color);\n background-color: var(--md-primary-fg-color);\n // Hack: reduce jitter by adding a transparent box shadow of the same size\n // so the size of the layer doesn't change during animation\n box-shadow:\n 0 0 px2rem(4px) rgba(0, 0, 0, 0),\n 0 px2rem(4px) px2rem(8px) rgba(0, 0, 0, 0);\n transition:\n color 250ms,\n background-color 250ms;\n\n // Always hide shadow, in case JavaScript is not available\n .no-js & {\n box-shadow: none;\n transition: none;\n }\n\n // Show and animate shadow\n &[data-md-state=\"shadow\"] {\n box-shadow:\n 0 0 px2rem(4px) rgba(0, 0, 0, 0.1),\n 0 px2rem(4px) px2rem(8px) rgba(0, 0, 0, 0.2);\n transition:\n color 250ms,\n background-color 250ms,\n box-shadow 250ms;\n }\n\n // Hide for print\n @media print {\n display: none;\n }\n}\n\n// Navigation within header\n.md-header-nav {\n display: flex;\n padding: 0 px2rem(4px);\n\n // Icon buttons\n &__button {\n position: relative;\n z-index: 1;\n margin: px2rem(4px);\n padding: px2rem(8px);\n cursor: pointer;\n transition: opacity 250ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n\n // Flip icon vertically\n svg {\n transform: scaleX(-1);\n }\n }\n\n // Focused or hovered icon\n &:focus,\n &:hover {\n opacity: 0.7;\n }\n\n // Logo\n &.md-logo {\n margin: px2rem(4px);\n padding: px2rem(8px);\n\n // Image or icon\n img,\n svg {\n display: block;\n width: px2rem(24px);\n height: px2rem(24px);\n fill: currentColor;\n }\n }\n\n // Hide search icon, if JavaScript is not available.\n .no-js &[for=\"__search\"] {\n display: none;\n }\n\n // [tablet landscape +]: Hide the search button\n @include break-from-device(tablet landscape) {\n\n // Search button\n &[for=\"__search\"] {\n display: none;\n }\n }\n\n // [tablet -]: Hide the logo\n @include break-to-device(tablet) {\n\n // Logo\n &.md-logo {\n display: none;\n }\n }\n\n // [screen +]: Hide the menu button\n @include break-from-device(screen) {\n\n // Menu button\n &[for=\"__drawer\"] {\n display: none;\n }\n }\n }\n\n // Header topics\n &__topic {\n position: absolute;\n width: 100%;\n transition:\n transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),\n opacity 150ms;\n\n // Page title\n & + & {\n z-index: -1;\n transform: translateX(px2rem(25px));\n opacity: 0;\n transition:\n transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),\n opacity 150ms;\n pointer-events: none;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n transform: translateX(px2rem(-25px));\n }\n }\n\n // Induce ellipsis, if no JavaScript is available\n .no-js & {\n position: initial;\n }\n\n // Hide page title as it is invisible anyway and will overflow the header\n .no-js & + & {\n display: none;\n }\n }\n\n // Header title - set line height to match icon for correct alignment\n &__title {\n flex-grow: 1;\n padding: 0 px2rem(20px);\n font-size: px2rem(18px);\n line-height: px2rem(48px);\n\n // Show page title\n &[data-md-state=\"active\"] .md-header-nav__topic {\n z-index: -1;\n transform: translateX(px2rem(-25px));\n opacity: 0;\n transition:\n transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),\n opacity 150ms;\n pointer-events: none;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n transform: translateX(px2rem(25px));\n }\n\n // Page title\n & + .md-header-nav__topic {\n z-index: 0;\n transform: translateX(0);\n opacity: 1;\n transition:\n transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),\n opacity 150ms;\n pointer-events: initial;\n }\n }\n\n // Patch ellipsis\n > .md-header-nav__ellipsis {\n position: relative;\n width: 100%;\n height: 100%;\n }\n }\n\n // Repository containing source\n &__source {\n display: none;\n\n // [tablet landscape +]: Show the reposistory from tablet\n @include break-from-device(tablet landscape) {\n display: block;\n width: px2rem(234px);\n max-width: px2rem(234px);\n margin-left: px2rem(20px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2rem(20px);\n margin-left: initial;\n }\n }\n\n // [screen +]: Increase spacing of search bar\n @include break-from-device(screen) {\n margin-left: px2rem(28px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2rem(28px);\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Hero teaser\n.md-hero {\n overflow: hidden;\n color: var(--md-primary-bg-color);\n font-size: ms(1);\n background-color: var(--md-primary-fg-color);\n transition: background 250ms;\n\n // Inner wrapper\n &__inner {\n margin-top: px2rem(20px);\n padding: px2rem(16px) px2rem(16px) px2rem(8px);\n transition:\n transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),\n opacity 250ms;\n transition-delay: 100ms;\n\n // [tablet -]: Compensate for missing tabs\n @include break-to-device(tablet) {\n margin-top: px2rem(48px);\n margin-bottom: px2rem(24px);\n }\n\n // Fade-out tabs background upon scrolling\n [data-md-state=\"hidden\"] & {\n transform: translateY(px2rem(12.5px));\n opacity: 0;\n transition:\n transform 0ms 400ms,\n opacity 100ms 0ms;\n pointer-events: none;\n }\n\n // Adjust bottom spacing if there are no tabs\n .md-hero--expand & {\n margin-bottom: px2rem(24px);\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Application footer\n.md-footer {\n color: var(--md-default-bg-color);\n background-color: var(--md-default-fg-color);\n\n // Hide for print\n @media print {\n display: none;\n }\n}\n\n// Navigation within footer\n.md-footer-nav {\n\n // Set spacing\n &__inner {\n padding: px2rem(4px);\n overflow: auto;\n }\n\n // Links to previous and next page\n &__link {\n display: flex;\n padding-top: px2rem(28px);\n padding-bottom: px2rem(8px);\n transition: opacity 250ms;\n\n // [tablet +]: Set proportional width\n @include break-from-device(tablet) {\n width: 50%;\n }\n\n // Focused or hovered links\n &:focus,\n &:hover {\n opacity: 0.7;\n }\n\n // Link to previous page\n &--prev {\n float: left;\n width: 25%;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n float: right;\n\n // Flip icon vertically\n svg {\n transform: scaleX(-1);\n }\n }\n\n // Title\n .md-footer-nav__title {\n\n // [mobile -]: Hide title for previous page\n @include break-to-device(mobile) {\n display: none;\n }\n }\n }\n\n // Link to next page\n &--next {\n float: right;\n width: 75%;\n text-align: right;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n float: left;\n text-align: left;\n\n // Flip icon vertically\n svg {\n transform: scaleX(-1);\n }\n }\n }\n }\n\n // Link title - set line height to match icon for correct alignment\n &__title {\n position: relative;\n flex-grow: 1;\n max-width: calc(100% - #{px2rem(48px)});\n padding: 0 px2rem(20px);\n font-size: px2rem(18px);\n line-height: px2rem(48px);\n }\n\n // Link button\n &__button {\n margin: px2rem(4px);\n padding: px2rem(8px);\n }\n\n // Link direction\n &__direction {\n position: absolute;\n right: 0;\n left: 0;\n margin-top: px2rem(-20px);\n padding: 0 px2rem(20px);\n color: var(--md-default-bg-color--light);\n font-size: ms(-1);\n }\n}\n\n// Non-navigational information\n.md-footer-meta {\n background-color: var(--md-default-fg-color--lighter);\n\n // Set spacing\n &__inner {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n padding: px2rem(4px);\n }\n\n // Use a decent color for non-hovered links and ensure specificity\n html &.md-typeset a {\n color: var(--md-default-bg-color--light);\n\n // Focused or hovered link\n &:focus,\n &:hover {\n color: var(--md-default-bg-color);\n }\n }\n}\n\n// Copyright and theme information\n.md-footer-copyright {\n width: 100%;\n margin: auto px2rem(12px);\n padding: px2rem(8px) 0;\n color: var(--md-default-bg-color--lighter);\n font-size: ms(-1);\n\n // [tablet portrait +]: Show next to social media links\n @include break-from-device(tablet portrait) {\n width: auto;\n }\n\n // Highlight copyright information\n &__highlight {\n color: var(--md-default-bg-color--light);\n }\n}\n\n// Social links\n.md-footer-social {\n margin: 0 px2rem(8px);\n padding: px2rem(4px) 0 px2rem(12px);\n\n // [tablet portrait +]: Show next to copyright information\n @include break-from-device(tablet portrait) {\n padding: px2rem(12px) 0;\n }\n\n // Link with icon\n &__link {\n display: inline-block;\n width: px2rem(32px);\n height: px2rem(32px);\n text-align: center;\n\n // Adjust line-height to match height for correct alignment\n &::before {\n line-height: 1.9;\n }\n\n // Social icon\n svg {\n max-height: px2rem(16px);\n vertical-align: -25%;\n fill: currentColor;\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Navigation container\n.md-nav {\n font-size: px2rem(14px);\n line-height: 1.3;\n\n // List title\n &__title {\n display: block;\n padding: 0 px2rem(12px);\n overflow: hidden;\n font-weight: 700;\n text-overflow: ellipsis;\n\n // Hide buttons by default\n .md-nav__button {\n display: none;\n\n // Stretch images\n img {\n width: 100%;\n height: auto;\n }\n\n // Logo\n &.md-logo {\n\n // Image or icon\n img,\n svg {\n display: block;\n width: px2rem(48px);\n height: px2rem(48px);\n }\n\n // Icon\n svg {\n fill: currentColor;\n }\n }\n }\n }\n\n // List of items\n &__list {\n margin: 0;\n padding: 0;\n list-style: none;\n }\n\n // List item\n &__item {\n padding: 0 px2rem(12px);\n\n // Add bottom spacing to last item\n &:last-child {\n padding-bottom: px2rem(12px);\n }\n\n // 2nd+ level items\n & & {\n padding-right: 0;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(12px);\n padding-left: 0;\n }\n\n // Remove bottom spacing for nested items\n &:last-child {\n padding-bottom: 0;\n }\n }\n }\n\n // Link inside item\n &__link {\n display: block;\n margin-top: 0.625em;\n overflow: hidden;\n text-overflow: ellipsis;\n cursor: pointer;\n transition: color 125ms;\n scroll-snap-align: start;\n\n // Hide link to table of contents by default - this will only match the\n // table of contents inside the drawer below and including tablet portrait\n html &[for=\"__toc\"] {\n display: none;\n\n // Hide table of contents by default\n & ~ .md-nav {\n display: none;\n }\n }\n\n // Blurred link\n &[data-md-state=\"blur\"] {\n color: var(--md-default-fg-color--light);\n }\n\n // Active link\n .md-nav__item &--active {\n color: var(--md-primary-fg-color);\n }\n\n // Reset active color for nested list titles\n .md-nav__item--nested > & {\n color: inherit;\n }\n\n // Focused or hovered link\n &:focus,\n &:hover {\n color: var(--md-accent-fg-color);\n }\n }\n\n // Repository containing source\n &__source {\n display: none;\n }\n\n // [tablet -]: Layered navigation\n @include break-to-device(tablet) {\n background-color: var(--md-default-bg-color);\n\n // Stretch primary navigation to drawer\n &--primary,\n &--primary .md-nav {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n display: flex;\n flex-direction: column;\n height: 100%;\n }\n\n // Adjust styles for primary navigation\n &--primary {\n\n // List title and item\n .md-nav__title,\n .md-nav__item {\n font-size: px2rem(16px);\n line-height: 1.5;\n }\n\n // List title\n .md-nav__title {\n position: relative;\n height: px2rem(112px);\n padding: px2rem(60px) px2rem(16px) px2rem(4px);\n color: var(--md-default-fg-color--light);\n font-weight: 400;\n line-height: px2rem(48px);\n white-space: nowrap;\n background-color: var(--md-default-fg-color--lightest);\n cursor: pointer;\n\n // Icon\n .md-nav__icon {\n position: absolute;\n top: px2rem(8px);\n left: px2rem(8px);\n display: block;\n width: px2rem(24px);\n height: px2rem(24px);\n margin: px2rem(4px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: px2rem(8px);\n left: initial;\n }\n }\n\n // Main lists\n ~ .md-nav__list {\n overflow-y: auto;\n background-color: var(--md-default-bg-color);\n box-shadow:\n inset 0 px2rem(1px) 0 var(--md-default-fg-color--lightest);\n scroll-snap-type: y mandatory;\n touch-action: pan-y;\n\n // Remove border for first list item\n > .md-nav__item:first-child {\n border-top: 0;\n }\n }\n\n // Site title in main navigation\n &[for=\"__drawer\"] {\n position: relative;\n color: var(--md-primary-bg-color);\n background-color: var(--md-primary-fg-color);\n\n // Site logo\n .md-nav__button {\n position: absolute;\n top: px2rem(4px);\n left: px2rem(4px);\n display: block;\n margin: px2rem(4px);\n padding: px2rem(8px);\n font-size: px2rem(48px);\n }\n }\n }\n\n // Adjust for right-to-left languages\n html [dir=\"rtl\"] & .md-nav__title {\n\n // Site title in main navigation\n &[for=\"__drawer\"] .md-nav__button {\n right: px2rem(4px);\n left: initial;\n }\n }\n\n // List of items\n .md-nav__list {\n flex: 1;\n }\n\n // List item\n .md-nav__item {\n padding: 0;\n border-top: px2rem(1px) solid var(--md-default-fg-color--lightest);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding: 0;\n }\n\n // Increase spacing to account for icon\n &--nested > .md-nav__link {\n padding-right: px2rem(48px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(16px);\n padding-left: px2rem(48px);\n }\n }\n\n // Active parent item\n &--active > .md-nav__link {\n color: var(--md-primary-fg-color);\n\n // Focused or hovered linl\n &:focus,\n &:hover {\n color: var(--md-accent-fg-color);\n }\n }\n }\n\n // Link inside item\n .md-nav__link {\n position: relative;\n margin-top: 0;\n padding: px2rem(12px) px2rem(16px);\n\n // Icon\n .md-nav__icon {\n position: absolute;\n top: 50%;\n right: px2rem(12px);\n margin-top: px2rem(-12px);\n color: inherit;\n font-size: px2rem(24px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: initial;\n left: px2rem(12px);\n }\n }\n }\n\n // Icon\n .md-nav__icon {\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n\n // Flip icon vertically\n svg {\n transform: scale(-1);\n }\n }\n }\n\n // Table of contents inside navigation\n .md-nav--secondary {\n\n // Set links to static to avoid unnecessary layering\n .md-nav__link {\n position: static;\n }\n\n // Set nested navigation for table of contents to static\n .md-nav {\n position: static;\n background-color: transparent;\n\n // 3rd level link\n .md-nav__link {\n padding-left: px2rem(28px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(28px);\n padding-left: initial;\n }\n }\n\n // 4th level link\n .md-nav .md-nav__link {\n padding-left: px2rem(40px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(40px);\n padding-left: initial;\n }\n }\n\n // 5th level link\n .md-nav .md-nav .md-nav__link {\n padding-left: px2rem(52px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(52px);\n padding-left: initial;\n }\n }\n\n // 6th level link\n .md-nav .md-nav .md-nav .md-nav__link {\n padding-left: px2rem(64px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(64px);\n padding-left: initial;\n }\n }\n }\n }\n }\n\n // Hide nested navigation by default\n .md-nav__toggle ~ & {\n display: flex;\n transform: translateX(100%);\n opacity: 0;\n transition:\n transform 250ms cubic-bezier(0.8, 0, 0.6, 1),\n opacity 125ms 50ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n transform: translateX(-100%);\n }\n }\n\n // Expand nested navigation, if toggle is checked\n .md-nav__toggle:checked ~ & {\n transform: translateX(0);\n opacity: 1;\n transition:\n transform 250ms cubic-bezier(0.4, 0, 0.2, 1),\n opacity 125ms 125ms;\n\n // Hack: reduce jitter\n > .md-nav__list {\n backface-visibility: hidden;\n }\n }\n }\n\n // [tablet portrait -]: Show table of contents in drawer\n @include break-to-device(tablet portrait) {\n\n // Show link to table of contents - higher specificity is necessary to\n // display the table of contents inside the drawer\n html &__link[for=\"__toc\"] {\n display: block;\n padding-right: px2rem(48px);\n\n // Hide link to current item\n + .md-nav__link {\n display: none;\n }\n\n // Show table of contents\n & ~ .md-nav {\n display: flex;\n }\n }\n\n // Adjust for right-to-left languages\n html [dir=\"rtl\"] &__link {\n padding-right: px2rem(16px);\n padding-left: px2rem(48px);\n }\n\n // Repository containing source\n &__source {\n display: block;\n padding: 0 px2rem(4px);\n color: var(--md-primary-bg-color);\n background-color: var(--md-primary-fg-color--dark);\n }\n }\n\n // [tablet landscape +]: Tree-like navigation\n @include break-from-device(tablet landscape) {\n\n // List title\n &--secondary .md-nav__title {\n\n // Snap to table of contents title\n &[for=\"__toc\"] {\n scroll-snap-align: start;\n }\n\n // Hide icon\n .md-nav__icon {\n display: none;\n }\n }\n }\n\n // [screen +]: Tree-like navigation\n @include break-from-device(screen) {\n transition: max-height 250ms cubic-bezier(0.86, 0, 0.07, 1);\n\n // List title\n &--primary .md-nav__title {\n\n // Snap to site title\n &[for=\"__drawer\"] {\n scroll-snap-align: start;\n }\n\n // Hide icon\n .md-nav__icon {\n display: none;\n }\n }\n\n // Hide nested navigation by default\n .md-nav__toggle ~ & {\n display: none;\n }\n\n // Show nested navigation, if toggle is checked\n .md-nav__toggle:checked ~ & {\n display: block;\n }\n\n // Hide titles for nested navigation\n &__item--nested > .md-nav > &__title {\n display: none;\n }\n\n // Icon\n &__icon {\n float: right;\n height: px2rem(18px);\n transition: transform 250ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n float: left;\n transform: rotate(180deg);\n }\n\n // Inline icon and adjust to match font size\n svg {\n display: inline-block;\n width: px2rem(18px);\n height: px2rem(18px);\n vertical-align: px2rem(-2px);\n }\n\n // Rotate icon for expanded lists\n .md-nav__item--nested .md-nav__toggle:checked ~ .md-nav__link & {\n transform: rotate(90deg);\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Variables\n// ----------------------------------------------------------------------------\n\n// Active (toggled) search\n$md-toggle__search--checked:\n \"[data-md-toggle=\\\"search\\\"]:checked ~ .md-header\";\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Search container\n.md-search {\n position: relative;\n\n // Hide search, if JavaScript is not available.\n .no-js & {\n display: none;\n }\n\n // [tablet landscape +]: Header-embedded search\n @include break-from-device(tablet landscape) {\n padding: px2rem(4px) 0;\n }\n\n // Search modal overlay\n &__overlay {\n z-index: 1;\n opacity: 0;\n\n // [tablet portrait -]: Full-screen search bar\n @include break-to-device(tablet portrait) {\n position: absolute;\n top: px2rem(4px);\n left: px2rem(-44px);\n width: px2rem(40px);\n height: px2rem(40px);\n overflow: hidden;\n background-color: var(--md-default-bg-color);\n border-radius: px2rem(20px);\n transform-origin: center;\n transition:\n transform 300ms 100ms,\n opacity 200ms 200ms;\n pointer-events: none;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: px2rem(-44px);\n left: initial;\n }\n\n // Expanded overlay\n #{$md-toggle__search--checked} & {\n opacity: 1;\n transition:\n transform 400ms,\n opacity 100ms;\n }\n }\n\n // Set scale factors\n #{$md-toggle__search--checked} & {\n\n // [mobile portrait -]: Scale up 45 times\n @include break-to-device(mobile portrait) {\n transform: scale(45);\n }\n\n // [mobile landscape]: Scale up 60 times\n @include break-at-device(mobile landscape) {\n transform: scale(60);\n }\n\n // [tablet portrait]: Scale up 75 times\n @include break-at-device(tablet portrait) {\n transform: scale(75);\n }\n }\n\n // [tablet landscape +]: Overlay for better focus on search\n @include break-from-device(tablet landscape) {\n position: fixed;\n top: 0;\n left: 0;\n width: 0;\n height: 0;\n background-color: var(--md-default-fg-color--light);\n cursor: pointer;\n transition:\n width 0ms 250ms,\n height 0ms 250ms,\n opacity 250ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: 0;\n left: initial;\n }\n\n // Expanded overlay\n #{$md-toggle__search--checked} & {\n width: 100%;\n height: 100%;\n opacity: 1;\n transition:\n width 0ms,\n height 0ms,\n opacity 250ms;\n }\n }\n }\n\n // Search modal wrapper\n &__inner {\n // Hack: reduce jitter\n backface-visibility: hidden;\n\n // [tablet portrait -]: Put search modal off-canvas by default\n @include break-to-device(tablet portrait) {\n position: fixed;\n top: 0;\n left: 100%;\n z-index: 2;\n width: 100%;\n height: 100%;\n transform: translateX(5%);\n opacity: 0;\n transition:\n right 0ms 300ms,\n left 0ms 300ms,\n transform 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1),\n opacity 150ms 150ms;\n\n // Active search modal\n #{$md-toggle__search--checked} & {\n left: 0;\n transform: translateX(0);\n opacity: 1;\n transition:\n right 0ms 0ms,\n left 0ms 0ms,\n transform 150ms 150ms cubic-bezier(0.1, 0.7, 0.1, 1),\n opacity 150ms 150ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: 0;\n left: initial;\n }\n }\n\n // Adjust for right-to-left languages\n html [dir=\"rtl\"] & {\n right: 100%;\n left: initial;\n transform: translateX(-5%);\n }\n }\n\n // [tablet landscape +]: Header-embedded search\n @include break-from-device(tablet landscape) {\n position: relative;\n float: right;\n width: px2rem(234px);\n padding: px2rem(2px) 0;\n transition: width 250ms cubic-bezier(0.1, 0.7, 0.1, 1);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n float: left;\n }\n }\n\n // Set maximum width\n #{$md-toggle__search--checked} & {\n\n // [tablet landscape]: Do not overlay title\n @include break-at-device(tablet landscape) {\n width: px2rem(468px);\n }\n\n // [screen +]: Match content width\n @include break-from-device(screen) {\n width: px2rem(688px);\n }\n }\n }\n\n // Search form\n &__form {\n position: relative;\n\n // [tablet landscape +]: Header-embedded search\n @include break-from-device(tablet landscape) {\n border-radius: px2rem(2px);\n }\n }\n\n // Search input\n &__input {\n position: relative;\n z-index: 2;\n padding: 0 px2rem(44px) 0 px2rem(72px);\n text-overflow: ellipsis;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding: 0 px2rem(72px) 0 px2rem(44px);\n }\n\n // Transition on placeholder\n &::placeholder {\n transition: color 250ms;\n }\n\n // Placeholder and icon color in active state\n ~ .md-search__icon,\n &::placeholder {\n color: var(--md-default-fg-color--light);\n }\n\n // Remove the \"x\" rendered by Internet Explorer\n &::-ms-clear {\n display: none;\n }\n\n // [tablet portrait -]: Full-screen search bar\n @include break-to-device(tablet portrait) {\n width: 100%;\n height: px2rem(48px);\n font-size: px2rem(18px);\n }\n\n // [tablet landscape +]: Header-embedded search\n @include break-from-device(tablet landscape) {\n width: 100%;\n height: px2rem(36px);\n padding-left: px2rem(44px);\n color: inherit;\n font-size: ms(0);\n background-color: var(--md-default-fg-color--lighter);\n border-radius: px2rem(2px);\n transition:\n color 250ms,\n background-color 250ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(44px);\n }\n\n // Icon color\n + .md-search__icon {\n color: var(--md-primary-bg-color);\n }\n\n // Placeholder color\n &::placeholder {\n color: var(--md-primary-bg-color--light);\n }\n\n // Hovered search field\n &:hover {\n background-color: var(--md-default-bg-color--lightest);\n }\n\n // Set light background on active search field\n #{$md-toggle__search--checked} & {\n color: var(--md-default-fg-color);\n text-overflow: clip;\n background-color: var(--md-default-bg-color);\n border-radius: px2rem(2px) px2rem(2px) 0 0;\n\n // Icon and placeholder color in active state\n + .md-search__icon,\n &::placeholder {\n color: var(--md-default-fg-color--light);\n }\n }\n }\n }\n\n // Icon\n &__icon {\n position: absolute;\n z-index: 2;\n width: px2rem(24px);\n height: px2rem(24px);\n cursor: pointer;\n transition:\n color 250ms,\n opacity 250ms;\n\n // Hovered icon\n &:hover {\n opacity: 0.7;\n }\n\n // Search icon\n &[for=\"__search\"] {\n top: px2rem(6px);\n left: px2rem(10px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: px2rem(10px);\n left: initial;\n\n // Flip icon vertically\n svg {\n transform: scaleX(-1);\n }\n }\n\n // [tablet portrait -]: Full-screen search bar\n @include break-to-device(tablet portrait) {\n top: px2rem(12px);\n left: px2rem(16px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: px2rem(16px);\n left: initial;\n }\n\n // Hide the magnifying glass (1st icon)\n svg:first-child {\n display: none;\n }\n }\n\n // [tablet landscape +]: Header-embedded search\n @include break-from-device(tablet landscape) {\n pointer-events: none;\n\n // Hide the arrow (2nd icon)\n svg:last-child {\n display: none;\n }\n }\n }\n\n // Reset button\n &[type=\"reset\"] {\n top: px2rem(6px);\n right: px2rem(10px);\n transform: scale(0.75);\n opacity: 0;\n transition:\n transform 150ms cubic-bezier(0.1, 0.7, 0.1, 1),\n opacity 150ms;\n pointer-events: none;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: initial;\n left: px2rem(10px);\n }\n\n // [tablet portrait -]: Full-screen search bar\n @include break-to-device(tablet portrait) {\n top: px2rem(12px);\n right: px2rem(16px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: initial;\n left: px2rem(16px);\n }\n }\n\n // Show reset button if search is active and input non-empty\n #{$md-toggle__search--checked}\n .md-search__input:not(:placeholder-shown) ~ & {\n transform: scale(1);\n opacity: 1;\n pointer-events: initial;\n\n // Hovered icon\n &:hover {\n opacity: 0.7;\n }\n }\n }\n }\n\n // Search output container\n &__output {\n position: absolute;\n z-index: 1;\n width: 100%;\n overflow: hidden;\n border-radius: 0 0 px2rem(2px) px2rem(2px);\n\n // [tablet portrait -]: Full-screen search bar\n @include break-to-device(tablet portrait) {\n top: px2rem(48px);\n bottom: 0;\n }\n\n // [tablet landscape +]: Header-embedded search\n @include break-from-device(tablet landscape) {\n top: px2rem(38px);\n opacity: 0;\n transition: opacity 400ms;\n\n // Show search output in active state\n #{$md-toggle__search--checked} & {\n @include z-depth(6);\n\n opacity: 1;\n }\n }\n }\n\n // Wrapper for scrolling on overflow\n &__scrollwrap {\n height: 100%;\n overflow-y: auto;\n background-color: var(--md-default-bg-color);\n box-shadow: inset 0 px2rem(1px) 0 var(--md-default-fg-color--lightest);\n // Hack: reduce jitter\n backface-visibility: hidden;\n scroll-snap-type: y mandatory;\n touch-action: pan-y;\n\n // Mitigiate excessive repaints on non-retina devices\n @media (max-resolution: 1dppx) {\n transform: translateZ(0);\n }\n\n // [tablet landscape]: Set absolute width to omit unnecessary reflow\n @include break-at-device(tablet landscape) {\n width: px2rem(468px);\n }\n\n // [screen +]: Set absolute width to omit unnecessary reflow\n @include break-from-device(screen) {\n width: px2rem(688px);\n }\n\n // [tablet landscape +]: Limit height to viewport\n @include break-from-device(tablet landscape) {\n max-height: 0;\n\n // Expand in active state\n #{$md-toggle__search--checked} & {\n max-height: 75vh;\n }\n\n // Override native scrollbar styles\n &::-webkit-scrollbar {\n width: px2rem(4px);\n height: px2rem(4px);\n }\n\n // Scrollbar thumb\n &::-webkit-scrollbar-thumb {\n background-color: var(--md-default-fg-color--lighter);\n\n // Hovered scrollbar thumb\n &:hover {\n background-color: var(--md-accent-fg-color);\n }\n }\n }\n }\n}\n\n// Search result\n.md-search-result {\n color: var(--md-default-fg-color);\n word-break: break-word;\n\n // Search metadata\n &__meta {\n padding: 0 px2rem(16px);\n color: var(--md-default-fg-color--light);\n font-size: ms(-1);\n line-height: px2rem(36px);\n background-color: var(--md-default-fg-color--lightest);\n scroll-snap-align: start;\n\n // [tablet landscape +]: Increase left indent\n @include break-from-device(tablet landscape) {\n padding-left: px2rem(44px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(44px);\n padding-left: initial;\n }\n }\n }\n\n // List of items\n &__list {\n margin: 0;\n padding: 0;\n list-style: none;\n border-top: px2rem(1px) solid var(--md-default-fg-color--lightest);\n }\n\n // List item\n &__item {\n box-shadow: 0 px2rem(-1px) 0 var(--md-default-fg-color--lightest);\n }\n\n // Link inside item\n &__link {\n display: block;\n outline: 0;\n transition: background 250ms;\n scroll-snap-align: start;\n\n // Focused or hovered link\n &:focus,\n &:hover {\n background-color: var(--md-accent-fg-color--transparent);\n\n // Slightly transparent icon\n .md-search-result__article::before {\n opacity: 0.7;\n }\n }\n\n // Add a little spacing on the teaser of the last link\n &:last-child .md-search-result__teaser {\n margin-bottom: px2rem(12px);\n }\n }\n\n // Article - document or section\n &__article {\n position: relative;\n padding: 0 px2rem(16px);\n overflow: hidden;\n\n // [tablet landscape +]: Increase left indent\n @include break-from-device(tablet landscape) {\n padding-left: px2rem(44px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding-right: px2rem(44px);\n padding-left: px2rem(16px);\n }\n }\n\n // Document\n &--document {\n\n // Title\n .md-search-result__title {\n margin: px2rem(11px) 0;\n font-weight: 400;\n font-size: ms(0);\n line-height: 1.4;\n }\n }\n }\n\n // Icon\n &__icon {\n position: absolute;\n left: 0;\n margin: px2rem(2px);\n padding: px2rem(8px);\n color: var(--md-default-fg-color--light);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: 0;\n left: initial;\n\n // Flip icon vertically\n svg {\n transform: scaleX(-1);\n }\n }\n\n // [tablet portrait -]: Hide page icon\n @include break-to-device(tablet portrait) {\n display: none;\n }\n }\n\n // Title\n &__title {\n margin: 0.5em 0;\n font-weight: 700;\n font-size: ms(-1);\n line-height: 1.4;\n }\n\n // stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix\n\n // Teaser\n &__teaser {\n display: -webkit-box;\n max-height: px2rem(33px);\n margin: 0.5em 0;\n overflow: hidden;\n color: var(--md-default-fg-color--light);\n font-size: ms(-1);\n line-height: 1.4;\n text-overflow: ellipsis;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n\n // [mobile -]: Increase number of lines\n @include break-to-device(mobile) {\n max-height: px2rem(50px);\n -webkit-line-clamp: 3;\n }\n\n // [tablet landscape]: Increase number of lines\n @include break-at-device(tablet landscape) {\n max-height: px2rem(50px);\n -webkit-line-clamp: 3;\n }\n }\n\n // stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix\n\n // Search term highlighting\n em {\n font-weight: 700;\n font-style: normal;\n text-decoration: underline;\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Variables\n// ----------------------------------------------------------------------------\n\n// Active (toggled) drawer\n$md-toggle__drawer--checked:\n \"[data-md-toggle=\\\"drawer\\\"]:checked ~ .md-container\";\n\n// ----------------------------------------------------------------------------\n// Keyframes\n// ----------------------------------------------------------------------------\n\n// Activate scroll snapping with delay\n@keyframes md-sidebar__scrollwrap--hack {\n 0%, 99% {\n scroll-snap-type: none;\n }\n\n 100% {\n scroll-snap-type: y mandatory;\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Sidebar container\n.md-sidebar {\n position: sticky;\n top: px2rem(48px);\n align-self: flex-start;\n width: px2rem(242px);\n padding: px2rem(24px) 0;\n overflow: hidden;\n\n // Hide for print\n @media print {\n display: none;\n }\n\n // [tablet -]: Convert navigation to drawer\n @include break-to-device(tablet) {\n\n // Render primary sidebar as a slideout container\n &--primary {\n position: fixed;\n top: 0;\n left: px2rem(-242px);\n z-index: 3;\n width: px2rem(242px);\n height: 100%;\n background-color: var(--md-default-bg-color);\n transform: translateX(0);\n transition:\n transform 250ms cubic-bezier(0.4, 0, 0.2, 1),\n box-shadow 250ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: px2rem(-242px);\n left: initial;\n }\n\n // Expanded drawer\n #{$md-toggle__drawer--checked} & {\n @include z-depth(8);\n\n transform: translateX(px2rem(242px));\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n transform: translateX(px2rem(-242px));\n }\n }\n\n // Hide overflow for nested navigation\n .md-sidebar__scrollwrap {\n overflow: hidden;\n }\n }\n }\n\n // Secondary sidebar with table of contents\n &--secondary {\n display: none;\n order: 2;\n\n // [tablet landscape +]: Show table of contents next to body copy\n @include break-from-device(tablet landscape) {\n display: block;\n\n // Ensure smooth scrolling on iOS\n .md-sidebar__scrollwrap {\n touch-action: pan-y;\n }\n }\n }\n\n // Wrapper for scrolling on overflow\n &__scrollwrap {\n max-height: 100%;\n margin: 0 px2rem(4px);\n overflow-y: auto;\n // Hack: reduce jitter\n backface-visibility: hidden;\n\n // Hack: Chrome 81+ exhibits a strange bug, where it scrolls the container\n // to the bottom if `scroll-snap-type` is set on the initial render. For\n // this reason, we use an animation to set scroll snaping with a slight\n // delay, which seems to fix the issue (#1667).\n .js & {\n animation: md-sidebar__scrollwrap--hack 400ms forwards;\n }\n\n // [tablet -]: Adjust margins\n @include break-to-device(tablet) {\n\n // Stretch scrollwrap for primary sidebar\n .md-sidebar--primary & {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n margin: 0;\n scroll-snap-type: none;\n }\n }\n\n // Override native scrollbar styles\n &::-webkit-scrollbar {\n width: px2rem(4px);\n height: px2rem(4px);\n }\n\n // Scrollbar thumb\n &::-webkit-scrollbar-thumb {\n background-color: var(--md-default-fg-color--lighter);\n\n // Hovered scrollbar thumb\n &:hover {\n background-color: var(--md-accent-fg-color);\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Keyframes\n// ----------------------------------------------------------------------------\n\n// Show source facts\n@keyframes md-source__facts--done {\n 0% {\n height: 0;\n }\n\n 100% {\n height: px2rem(13px);\n }\n}\n\n// Show source fact\n@keyframes md-source__fact--done {\n 0% {\n transform: translateY(100%);\n opacity: 0;\n }\n\n 50% {\n opacity: 0;\n }\n\n 100% {\n transform: translateY(0%);\n opacity: 1;\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Source container\n.md-source {\n display: block;\n font-size: px2rem(13px);\n line-height: 1.2;\n white-space: nowrap;\n // Hack: reduce jitter\n backface-visibility: hidden;\n transition: opacity 250ms;\n\n // Hovered source container\n &:hover {\n opacity: 0.7;\n }\n\n // Repository platform icon\n &__icon {\n display: inline-block;\n width: px2rem(48px);\n height: px2rem(48px);\n vertical-align: middle;\n\n // Align with margin only (as opposed to normal button alignment)\n svg {\n margin-top: px2rem(12px);\n margin-left: px2rem(12px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2rem(12px);\n margin-left: initial;\n }\n }\n\n // Correct alignment, if icon is present\n + .md-source__repository {\n margin-left: px2rem(-40px);\n padding-left: px2rem(40px);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2rem(-40px);\n margin-left: initial;\n padding-right: px2rem(40px);\n padding-left: initial;\n }\n }\n }\n\n // Repository name\n &__repository {\n display: inline-block;\n max-width: calc(100% - #{px2rem(24px)});\n margin-left: px2rem(12px);\n overflow: hidden;\n font-weight: 700;\n text-overflow: ellipsis;\n vertical-align: middle;\n }\n\n // Source facts (statistics etc.)\n &__facts {\n margin: 0;\n padding: 0;\n overflow: hidden;\n font-weight: 700;\n font-size: px2rem(11px);\n list-style-type: none;\n opacity: 0.75;\n\n // Show after the data was loaded\n [data-md-state=\"done\"] & {\n animation: md-source__facts--done 250ms ease-in;\n }\n }\n\n // Fact\n &__fact {\n float: left;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n float: right;\n }\n\n // Show after the data was loaded\n [data-md-state=\"done\"] & {\n animation: md-source__fact--done 400ms ease-out;\n }\n\n // Middle dot before fact\n &::before {\n margin: 0 px2rem(2px);\n content: \"\\00B7\";\n }\n\n // Remove middle dot on first fact\n &:first-child::before {\n display: none;\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Tabs with outline\n.md-tabs {\n width: 100%;\n overflow: auto;\n color: var(--md-primary-bg-color);\n background-color: var(--md-primary-fg-color);\n transition: background 250ms;\n\n // Omit transitions, in case JavaScript is not available\n .no-js & {\n transition: none;\n }\n\n // [tablet -]: Hide tabs for tablet and below, as they don't make any sense\n @include break-to-device(tablet) {\n display: none;\n }\n\n // Hide for print\n @media print {\n display: none;\n }\n\n // List of items\n &__list {\n margin: 0;\n margin-left: px2rem(4px);\n padding: 0;\n white-space: nowrap;\n list-style: none;\n contain: content;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n margin-right: px2rem(4px);\n margin-left: initial;\n }\n }\n\n // List item\n &__item {\n display: inline-block;\n height: px2rem(48px);\n padding-right: px2rem(12px);\n padding-left: px2rem(12px);\n }\n\n // Link inside item - could be defined as block elements and aligned via\n // line height, but this would imply more repaints when scrolling\n &__link {\n display: block;\n margin-top: px2rem(16px);\n font-size: px2rem(14px);\n opacity: 0.7;\n transition:\n transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),\n opacity 250ms;\n\n // Omit transitions, in case JavaScript is not available\n .no-js & {\n transition: none;\n }\n\n // Active or hovered link\n &--active,\n &:hover {\n color: inherit;\n opacity: 1;\n }\n\n // Delay transitions by a small amount\n @for $i from 2 through 16 {\n .md-tabs__item:nth-child(#{$i}) & {\n transition-delay: 20ms * ($i - 1);\n }\n }\n }\n\n // Fade-out tabs background upon scrolling\n &[data-md-state=\"hidden\"] {\n pointer-events: none;\n\n // Hide tabs upon scrolling - disable transition to minimizes repaints\n // while scrolling down, while scrolling up seems to be okay\n .md-tabs__link {\n transform: translateY(50%);\n opacity: 0;\n transition:\n color 250ms,\n transform 0ms 400ms,\n opacity 100ms;\n }\n }\n\n // [screen +]: Adjust main navigation styles\n @include break-from-device(screen) {\n\n // Hide 1st level nested items, as they are listed in the tabs\n ~ .md-main .md-nav--primary > .md-nav__list > .md-nav__item--nested {\n display: none;\n }\n\n // Active tab\n &--active ~ .md-main {\n\n // Adjust 1st level styles\n .md-nav--primary {\n\n // Show title and remove spacing\n .md-nav__title {\n display: block;\n padding: 0 px2rem(12px);\n pointer-events: none;\n scroll-snap-align: start;\n\n // Hide site title\n &[for=\"__drawer\"] {\n display: none;\n }\n }\n\n // Hide 1st level items\n > .md-nav__list > .md-nav__item {\n display: none;\n\n // Show 1st level active nested items\n &--active {\n display: block;\n padding: 0;\n\n // Hide nested links\n > .md-nav__link {\n display: none;\n }\n }\n }\n }\n\n // Always expand nested navigation on 2nd level\n .md-nav[data-md-level=\"1\"] {\n // Hack: Always show active navigation tab on breakpoint screen, despite\n // of checkbox being checked or not. Fixes #1655.\n display: block;\n\n // Remove spacing on 2nd level items\n > .md-nav__list > .md-nav__item {\n padding: 0 px2rem(12px);\n }\n\n // Hide titles from 2nd level on\n .md-nav .md-nav__title {\n display: none;\n }\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Variables\n// ----------------------------------------------------------------------------\n\n///\n/// Admonition flavours\n///\n$admonitions: (\n note: pencil $clr-blue-a200,\n abstract summary tldr: text-subject $clr-light-blue-a400,\n info todo: information $clr-cyan-a700,\n tip hint important: fire $clr-teal-a700,\n success check done: check-circle $clr-green-a700,\n question help faq: help-circle $clr-light-green-a700,\n warning caution attention: alert $clr-orange-a400,\n failure fail missing: close-circle $clr-red-a200,\n danger error: flash-circle $clr-red-a400,\n bug: bug $clr-pink-a400,\n example: format-list-numbered $clr-deep-purple-a400,\n quote cite: format-quote-close $clr-grey\n) !default;\n\n// ----------------------------------------------------------------------------\n// Rules: layout\n// ----------------------------------------------------------------------------\n\n// Icon definitions\n:root {\n @each $names, $props in $admonitions {\n $name: nth($names, 1);\n $icon: nth($props, 1);\n\n // Inline icon through string-replace-loader in webpack\n --md-admonition-icon--#{$name}: svg-load(\"@mdi/svg/svg/#{$icon}.svg\");\n }\n}\n\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Admonition extension\n .admonition {\n margin: 1.5625em 0;\n padding: 0 px2rem(12px);\n overflow: hidden;\n font-size: ms(-1);\n page-break-inside: avoid;\n border-left: px2rem(4px) solid $clr-blue-a200;\n border-radius: px2rem(2px);\n box-shadow:\n 0 px2rem(4px) px2rem(10px) hsla(0, 0%, 0%, 0.05),\n 0 0 px2rem(1px) hsla(0, 0%, 0%, 0.1);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n border-right: px2rem(4px) solid $clr-blue-a200;\n border-left: none;\n }\n\n // Hack: omit rendering errors for print\n @media print {\n box-shadow: none;\n }\n\n // Adjust spacing on last element\n html & > :last-child {\n margin-bottom: px2rem(12px);\n }\n\n // Adjust margin for nested admonition blocks\n .admonition {\n margin: 1em 0;\n }\n\n // Wrapper for scrolling on overflow\n .md-typeset__scrollwrap {\n margin: 1em px2rem(-12px);\n }\n\n // Data table wrapper, in case JavaScript is available\n .md-typeset__table {\n padding: 0 px2rem(12px);\n }\n }\n\n // Admonition title\n .admonition-title {\n position: relative;\n margin: 0 px2rem(-12px);\n padding: px2rem(8px) px2rem(12px) px2rem(8px) px2rem(40px);\n font-weight: 700;\n background-color: transparentize($clr-blue-a200, 0.9);\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding: px2rem(8px) px2rem(40px) px2rem(8px) px2rem(12px);\n }\n\n // Reset spacing, if title is the only element\n html &:last-child {\n margin-bottom: 0;\n }\n\n // Icon\n &::before {\n position: absolute;\n left: px2rem(12px);\n width: px2rem(20px);\n height: px2rem(20px);\n background-color: $clr-blue-a200;\n mask-image: var(--md-admonition-icon--note);\n content: \"\";\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: px2rem(12px);\n left: initial;\n }\n }\n\n // Reset code inside Admonition titles\n code {\n margin: initial;\n padding: initial;\n color: currentColor;\n background-color: transparent;\n border-radius: initial;\n box-shadow: none;\n }\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules: flavours\n// ----------------------------------------------------------------------------\n\n@each $names, $props in $admonitions {\n $name: nth($names, 1);\n $tint: nth($props, 2);\n\n // Define base class\n .md-typeset .admonition.#{$name} {\n border-color: $tint;\n }\n\n // Define base class\n .md-typeset .#{$name} > .admonition-title {\n background-color: transparentize($tint, 0.9);\n\n // Icon\n &::before {\n background-color: $tint;\n mask-image: var(--md-admonition-icon--#{$name});\n }\n }\n\n // Define synonyms for base class\n @if length($names) > 1 {\n @for $n from 2 through length($names) {\n .#{nth($names, $n)} {\n @extend .#{$name};\n }\n }\n }\n}\n","// ==========================================================================\n//\n// Name: UI Color Palette\n// Description: The color palette of material design.\n// Version: 2.3.1\n//\n// Author: Denis Malinochkin\n// Git: https://github.com/mrmlnc/material-color\n//\n// twitter: @mrmlnc\n//\n// ==========================================================================\n\n\n//\n// List of base colors\n//\n\n// $clr-red\n// $clr-pink\n// $clr-purple\n// $clr-deep-purple\n// $clr-indigo\n// $clr-blue\n// $clr-light-blue\n// $clr-cyan\n// $clr-teal\n// $clr-green\n// $clr-light-green\n// $clr-lime\n// $clr-yellow\n// $clr-amber\n// $clr-orange\n// $clr-deep-orange\n// $clr-brown\n// $clr-grey\n// $clr-blue-grey\n// $clr-black\n// $clr-white\n\n\n//\n// Red\n//\n\n$clr-red-list: (\n \"base\": #f44336,\n \"50\": #ffebee,\n \"100\": #ffcdd2,\n \"200\": #ef9a9a,\n \"300\": #e57373,\n \"400\": #ef5350,\n \"500\": #f44336,\n \"600\": #e53935,\n \"700\": #d32f2f,\n \"800\": #c62828,\n \"900\": #b71c1c,\n \"a100\": #ff8a80,\n \"a200\": #ff5252,\n \"a400\": #ff1744,\n \"a700\": #d50000\n);\n\n$clr-red: map-get($clr-red-list, \"base\");\n\n$clr-red-50: map-get($clr-red-list, \"50\");\n$clr-red-100: map-get($clr-red-list, \"100\");\n$clr-red-200: map-get($clr-red-list, \"200\");\n$clr-red-300: map-get($clr-red-list, \"300\");\n$clr-red-400: map-get($clr-red-list, \"400\");\n$clr-red-500: map-get($clr-red-list, \"500\");\n$clr-red-600: map-get($clr-red-list, \"600\");\n$clr-red-700: map-get($clr-red-list, \"700\");\n$clr-red-800: map-get($clr-red-list, \"800\");\n$clr-red-900: map-get($clr-red-list, \"900\");\n$clr-red-a100: map-get($clr-red-list, \"a100\");\n$clr-red-a200: map-get($clr-red-list, \"a200\");\n$clr-red-a400: map-get($clr-red-list, \"a400\");\n$clr-red-a700: map-get($clr-red-list, \"a700\");\n\n\n//\n// Pink\n//\n\n$clr-pink-list: (\n \"base\": #e91e63,\n \"50\": #fce4ec,\n \"100\": #f8bbd0,\n \"200\": #f48fb1,\n \"300\": #f06292,\n \"400\": #ec407a,\n \"500\": #e91e63,\n \"600\": #d81b60,\n \"700\": #c2185b,\n \"800\": #ad1457,\n \"900\": #880e4f,\n \"a100\": #ff80ab,\n \"a200\": #ff4081,\n \"a400\": #f50057,\n \"a700\": #c51162\n);\n\n$clr-pink: map-get($clr-pink-list, \"base\");\n\n$clr-pink-50: map-get($clr-pink-list, \"50\");\n$clr-pink-100: map-get($clr-pink-list, \"100\");\n$clr-pink-200: map-get($clr-pink-list, \"200\");\n$clr-pink-300: map-get($clr-pink-list, \"300\");\n$clr-pink-400: map-get($clr-pink-list, \"400\");\n$clr-pink-500: map-get($clr-pink-list, \"500\");\n$clr-pink-600: map-get($clr-pink-list, \"600\");\n$clr-pink-700: map-get($clr-pink-list, \"700\");\n$clr-pink-800: map-get($clr-pink-list, \"800\");\n$clr-pink-900: map-get($clr-pink-list, \"900\");\n$clr-pink-a100: map-get($clr-pink-list, \"a100\");\n$clr-pink-a200: map-get($clr-pink-list, \"a200\");\n$clr-pink-a400: map-get($clr-pink-list, \"a400\");\n$clr-pink-a700: map-get($clr-pink-list, \"a700\");\n\n\n//\n// Purple\n//\n\n$clr-purple-list: (\n \"base\": #9c27b0,\n \"50\": #f3e5f5,\n \"100\": #e1bee7,\n \"200\": #ce93d8,\n \"300\": #ba68c8,\n \"400\": #ab47bc,\n \"500\": #9c27b0,\n \"600\": #8e24aa,\n \"700\": #7b1fa2,\n \"800\": #6a1b9a,\n \"900\": #4a148c,\n \"a100\": #ea80fc,\n \"a200\": #e040fb,\n \"a400\": #d500f9,\n \"a700\": #aa00ff\n);\n\n$clr-purple: map-get($clr-purple-list, \"base\");\n\n$clr-purple-50: map-get($clr-purple-list, \"50\");\n$clr-purple-100: map-get($clr-purple-list, \"100\");\n$clr-purple-200: map-get($clr-purple-list, \"200\");\n$clr-purple-300: map-get($clr-purple-list, \"300\");\n$clr-purple-400: map-get($clr-purple-list, \"400\");\n$clr-purple-500: map-get($clr-purple-list, \"500\");\n$clr-purple-600: map-get($clr-purple-list, \"600\");\n$clr-purple-700: map-get($clr-purple-list, \"700\");\n$clr-purple-800: map-get($clr-purple-list, \"800\");\n$clr-purple-900: map-get($clr-purple-list, \"900\");\n$clr-purple-a100: map-get($clr-purple-list, \"a100\");\n$clr-purple-a200: map-get($clr-purple-list, \"a200\");\n$clr-purple-a400: map-get($clr-purple-list, \"a400\");\n$clr-purple-a700: map-get($clr-purple-list, \"a700\");\n\n\n//\n// Deep purple\n//\n\n$clr-deep-purple-list: (\n \"base\": #673ab7,\n \"50\": #ede7f6,\n \"100\": #d1c4e9,\n \"200\": #b39ddb,\n \"300\": #9575cd,\n \"400\": #7e57c2,\n \"500\": #673ab7,\n \"600\": #5e35b1,\n \"700\": #512da8,\n \"800\": #4527a0,\n \"900\": #311b92,\n \"a100\": #b388ff,\n \"a200\": #7c4dff,\n \"a400\": #651fff,\n \"a700\": #6200ea\n);\n\n$clr-deep-purple: map-get($clr-deep-purple-list, \"base\");\n\n$clr-deep-purple-50: map-get($clr-deep-purple-list, \"50\");\n$clr-deep-purple-100: map-get($clr-deep-purple-list, \"100\");\n$clr-deep-purple-200: map-get($clr-deep-purple-list, \"200\");\n$clr-deep-purple-300: map-get($clr-deep-purple-list, \"300\");\n$clr-deep-purple-400: map-get($clr-deep-purple-list, \"400\");\n$clr-deep-purple-500: map-get($clr-deep-purple-list, \"500\");\n$clr-deep-purple-600: map-get($clr-deep-purple-list, \"600\");\n$clr-deep-purple-700: map-get($clr-deep-purple-list, \"700\");\n$clr-deep-purple-800: map-get($clr-deep-purple-list, \"800\");\n$clr-deep-purple-900: map-get($clr-deep-purple-list, \"900\");\n$clr-deep-purple-a100: map-get($clr-deep-purple-list, \"a100\");\n$clr-deep-purple-a200: map-get($clr-deep-purple-list, \"a200\");\n$clr-deep-purple-a400: map-get($clr-deep-purple-list, \"a400\");\n$clr-deep-purple-a700: map-get($clr-deep-purple-list, \"a700\");\n\n\n//\n// Indigo\n//\n\n$clr-indigo-list: (\n \"base\": #3f51b5,\n \"50\": #e8eaf6,\n \"100\": #c5cae9,\n \"200\": #9fa8da,\n \"300\": #7986cb,\n \"400\": #5c6bc0,\n \"500\": #3f51b5,\n \"600\": #3949ab,\n \"700\": #303f9f,\n \"800\": #283593,\n \"900\": #1a237e,\n \"a100\": #8c9eff,\n \"a200\": #536dfe,\n \"a400\": #3d5afe,\n \"a700\": #304ffe\n);\n\n$clr-indigo: map-get($clr-indigo-list, \"base\");\n\n$clr-indigo-50: map-get($clr-indigo-list, \"50\");\n$clr-indigo-100: map-get($clr-indigo-list, \"100\");\n$clr-indigo-200: map-get($clr-indigo-list, \"200\");\n$clr-indigo-300: map-get($clr-indigo-list, \"300\");\n$clr-indigo-400: map-get($clr-indigo-list, \"400\");\n$clr-indigo-500: map-get($clr-indigo-list, \"500\");\n$clr-indigo-600: map-get($clr-indigo-list, \"600\");\n$clr-indigo-700: map-get($clr-indigo-list, \"700\");\n$clr-indigo-800: map-get($clr-indigo-list, \"800\");\n$clr-indigo-900: map-get($clr-indigo-list, \"900\");\n$clr-indigo-a100: map-get($clr-indigo-list, \"a100\");\n$clr-indigo-a200: map-get($clr-indigo-list, \"a200\");\n$clr-indigo-a400: map-get($clr-indigo-list, \"a400\");\n$clr-indigo-a700: map-get($clr-indigo-list, \"a700\");\n\n\n//\n// Blue\n//\n\n$clr-blue-list: (\n \"base\": #2196f3,\n \"50\": #e3f2fd,\n \"100\": #bbdefb,\n \"200\": #90caf9,\n \"300\": #64b5f6,\n \"400\": #42a5f5,\n \"500\": #2196f3,\n \"600\": #1e88e5,\n \"700\": #1976d2,\n \"800\": #1565c0,\n \"900\": #0d47a1,\n \"a100\": #82b1ff,\n \"a200\": #448aff,\n \"a400\": #2979ff,\n \"a700\": #2962ff\n);\n\n$clr-blue: map-get($clr-blue-list, \"base\");\n\n$clr-blue-50: map-get($clr-blue-list, \"50\");\n$clr-blue-100: map-get($clr-blue-list, \"100\");\n$clr-blue-200: map-get($clr-blue-list, \"200\");\n$clr-blue-300: map-get($clr-blue-list, \"300\");\n$clr-blue-400: map-get($clr-blue-list, \"400\");\n$clr-blue-500: map-get($clr-blue-list, \"500\");\n$clr-blue-600: map-get($clr-blue-list, \"600\");\n$clr-blue-700: map-get($clr-blue-list, \"700\");\n$clr-blue-800: map-get($clr-blue-list, \"800\");\n$clr-blue-900: map-get($clr-blue-list, \"900\");\n$clr-blue-a100: map-get($clr-blue-list, \"a100\");\n$clr-blue-a200: map-get($clr-blue-list, \"a200\");\n$clr-blue-a400: map-get($clr-blue-list, \"a400\");\n$clr-blue-a700: map-get($clr-blue-list, \"a700\");\n\n\n//\n// Light Blue\n//\n\n$clr-light-blue-list: (\n \"base\": #03a9f4,\n \"50\": #e1f5fe,\n \"100\": #b3e5fc,\n \"200\": #81d4fa,\n \"300\": #4fc3f7,\n \"400\": #29b6f6,\n \"500\": #03a9f4,\n \"600\": #039be5,\n \"700\": #0288d1,\n \"800\": #0277bd,\n \"900\": #01579b,\n \"a100\": #80d8ff,\n \"a200\": #40c4ff,\n \"a400\": #00b0ff,\n \"a700\": #0091ea\n);\n\n$clr-light-blue: map-get($clr-light-blue-list, \"base\");\n\n$clr-light-blue-50: map-get($clr-light-blue-list, \"50\");\n$clr-light-blue-100: map-get($clr-light-blue-list, \"100\");\n$clr-light-blue-200: map-get($clr-light-blue-list, \"200\");\n$clr-light-blue-300: map-get($clr-light-blue-list, \"300\");\n$clr-light-blue-400: map-get($clr-light-blue-list, \"400\");\n$clr-light-blue-500: map-get($clr-light-blue-list, \"500\");\n$clr-light-blue-600: map-get($clr-light-blue-list, \"600\");\n$clr-light-blue-700: map-get($clr-light-blue-list, \"700\");\n$clr-light-blue-800: map-get($clr-light-blue-list, \"800\");\n$clr-light-blue-900: map-get($clr-light-blue-list, \"900\");\n$clr-light-blue-a100: map-get($clr-light-blue-list, \"a100\");\n$clr-light-blue-a200: map-get($clr-light-blue-list, \"a200\");\n$clr-light-blue-a400: map-get($clr-light-blue-list, \"a400\");\n$clr-light-blue-a700: map-get($clr-light-blue-list, \"a700\");\n\n\n//\n// Cyan\n//\n\n$clr-cyan-list: (\n \"base\": #00bcd4,\n \"50\": #e0f7fa,\n \"100\": #b2ebf2,\n \"200\": #80deea,\n \"300\": #4dd0e1,\n \"400\": #26c6da,\n \"500\": #00bcd4,\n \"600\": #00acc1,\n \"700\": #0097a7,\n \"800\": #00838f,\n \"900\": #006064,\n \"a100\": #84ffff,\n \"a200\": #18ffff,\n \"a400\": #00e5ff,\n \"a700\": #00b8d4\n);\n\n$clr-cyan: map-get($clr-cyan-list, \"base\");\n\n$clr-cyan-50: map-get($clr-cyan-list, \"50\");\n$clr-cyan-100: map-get($clr-cyan-list, \"100\");\n$clr-cyan-200: map-get($clr-cyan-list, \"200\");\n$clr-cyan-300: map-get($clr-cyan-list, \"300\");\n$clr-cyan-400: map-get($clr-cyan-list, \"400\");\n$clr-cyan-500: map-get($clr-cyan-list, \"500\");\n$clr-cyan-600: map-get($clr-cyan-list, \"600\");\n$clr-cyan-700: map-get($clr-cyan-list, \"700\");\n$clr-cyan-800: map-get($clr-cyan-list, \"800\");\n$clr-cyan-900: map-get($clr-cyan-list, \"900\");\n$clr-cyan-a100: map-get($clr-cyan-list, \"a100\");\n$clr-cyan-a200: map-get($clr-cyan-list, \"a200\");\n$clr-cyan-a400: map-get($clr-cyan-list, \"a400\");\n$clr-cyan-a700: map-get($clr-cyan-list, \"a700\");\n\n\n//\n// Teal\n//\n\n$clr-teal-list: (\n \"base\": #009688,\n \"50\": #e0f2f1,\n \"100\": #b2dfdb,\n \"200\": #80cbc4,\n \"300\": #4db6ac,\n \"400\": #26a69a,\n \"500\": #009688,\n \"600\": #00897b,\n \"700\": #00796b,\n \"800\": #00695c,\n \"900\": #004d40,\n \"a100\": #a7ffeb,\n \"a200\": #64ffda,\n \"a400\": #1de9b6,\n \"a700\": #00bfa5\n);\n\n$clr-teal: map-get($clr-teal-list, \"base\");\n\n$clr-teal-50: map-get($clr-teal-list, \"50\");\n$clr-teal-100: map-get($clr-teal-list, \"100\");\n$clr-teal-200: map-get($clr-teal-list, \"200\");\n$clr-teal-300: map-get($clr-teal-list, \"300\");\n$clr-teal-400: map-get($clr-teal-list, \"400\");\n$clr-teal-500: map-get($clr-teal-list, \"500\");\n$clr-teal-600: map-get($clr-teal-list, \"600\");\n$clr-teal-700: map-get($clr-teal-list, \"700\");\n$clr-teal-800: map-get($clr-teal-list, \"800\");\n$clr-teal-900: map-get($clr-teal-list, \"900\");\n$clr-teal-a100: map-get($clr-teal-list, \"a100\");\n$clr-teal-a200: map-get($clr-teal-list, \"a200\");\n$clr-teal-a400: map-get($clr-teal-list, \"a400\");\n$clr-teal-a700: map-get($clr-teal-list, \"a700\");\n\n\n//\n// Green\n//\n\n$clr-green-list: (\n \"base\": #4caf50,\n \"50\": #e8f5e9,\n \"100\": #c8e6c9,\n \"200\": #a5d6a7,\n \"300\": #81c784,\n \"400\": #66bb6a,\n \"500\": #4caf50,\n \"600\": #43a047,\n \"700\": #388e3c,\n \"800\": #2e7d32,\n \"900\": #1b5e20,\n \"a100\": #b9f6ca,\n \"a200\": #69f0ae,\n \"a400\": #00e676,\n \"a700\": #00c853\n);\n\n$clr-green: map-get($clr-green-list, \"base\");\n\n$clr-green-50: map-get($clr-green-list, \"50\");\n$clr-green-100: map-get($clr-green-list, \"100\");\n$clr-green-200: map-get($clr-green-list, \"200\");\n$clr-green-300: map-get($clr-green-list, \"300\");\n$clr-green-400: map-get($clr-green-list, \"400\");\n$clr-green-500: map-get($clr-green-list, \"500\");\n$clr-green-600: map-get($clr-green-list, \"600\");\n$clr-green-700: map-get($clr-green-list, \"700\");\n$clr-green-800: map-get($clr-green-list, \"800\");\n$clr-green-900: map-get($clr-green-list, \"900\");\n$clr-green-a100: map-get($clr-green-list, \"a100\");\n$clr-green-a200: map-get($clr-green-list, \"a200\");\n$clr-green-a400: map-get($clr-green-list, \"a400\");\n$clr-green-a700: map-get($clr-green-list, \"a700\");\n\n\n//\n// Light green\n//\n\n$clr-light-green-list: (\n \"base\": #8bc34a,\n \"50\": #f1f8e9,\n \"100\": #dcedc8,\n \"200\": #c5e1a5,\n \"300\": #aed581,\n \"400\": #9ccc65,\n \"500\": #8bc34a,\n \"600\": #7cb342,\n \"700\": #689f38,\n \"800\": #558b2f,\n \"900\": #33691e,\n \"a100\": #ccff90,\n \"a200\": #b2ff59,\n \"a400\": #76ff03,\n \"a700\": #64dd17\n);\n\n$clr-light-green: map-get($clr-light-green-list, \"base\");\n\n$clr-light-green-50: map-get($clr-light-green-list, \"50\");\n$clr-light-green-100: map-get($clr-light-green-list, \"100\");\n$clr-light-green-200: map-get($clr-light-green-list, \"200\");\n$clr-light-green-300: map-get($clr-light-green-list, \"300\");\n$clr-light-green-400: map-get($clr-light-green-list, \"400\");\n$clr-light-green-500: map-get($clr-light-green-list, \"500\");\n$clr-light-green-600: map-get($clr-light-green-list, \"600\");\n$clr-light-green-700: map-get($clr-light-green-list, \"700\");\n$clr-light-green-800: map-get($clr-light-green-list, \"800\");\n$clr-light-green-900: map-get($clr-light-green-list, \"900\");\n$clr-light-green-a100: map-get($clr-light-green-list, \"a100\");\n$clr-light-green-a200: map-get($clr-light-green-list, \"a200\");\n$clr-light-green-a400: map-get($clr-light-green-list, \"a400\");\n$clr-light-green-a700: map-get($clr-light-green-list, \"a700\");\n\n\n//\n// Lime\n//\n\n$clr-lime-list: (\n \"base\": #cddc39,\n \"50\": #f9fbe7,\n \"100\": #f0f4c3,\n \"200\": #e6ee9c,\n \"300\": #dce775,\n \"400\": #d4e157,\n \"500\": #cddc39,\n \"600\": #c0ca33,\n \"700\": #afb42b,\n \"800\": #9e9d24,\n \"900\": #827717,\n \"a100\": #f4ff81,\n \"a200\": #eeff41,\n \"a400\": #c6ff00,\n \"a700\": #aeea00\n);\n\n$clr-lime: map-get($clr-lime-list, \"base\");\n\n$clr-lime-50: map-get($clr-lime-list, \"50\");\n$clr-lime-100: map-get($clr-lime-list, \"100\");\n$clr-lime-200: map-get($clr-lime-list, \"200\");\n$clr-lime-300: map-get($clr-lime-list, \"300\");\n$clr-lime-400: map-get($clr-lime-list, \"400\");\n$clr-lime-500: map-get($clr-lime-list, \"500\");\n$clr-lime-600: map-get($clr-lime-list, \"600\");\n$clr-lime-700: map-get($clr-lime-list, \"700\");\n$clr-lime-800: map-get($clr-lime-list, \"800\");\n$clr-lime-900: map-get($clr-lime-list, \"900\");\n$clr-lime-a100: map-get($clr-lime-list, \"a100\");\n$clr-lime-a200: map-get($clr-lime-list, \"a200\");\n$clr-lime-a400: map-get($clr-lime-list, \"a400\");\n$clr-lime-a700: map-get($clr-lime-list, \"a700\");\n\n\n//\n// Yellow\n//\n\n$clr-yellow-list: (\n \"base\": #ffeb3b,\n \"50\": #fffde7,\n \"100\": #fff9c4,\n \"200\": #fff59d,\n \"300\": #fff176,\n \"400\": #ffee58,\n \"500\": #ffeb3b,\n \"600\": #fdd835,\n \"700\": #fbc02d,\n \"800\": #f9a825,\n \"900\": #f57f17,\n \"a100\": #ffff8d,\n \"a200\": #ffff00,\n \"a400\": #ffea00,\n \"a700\": #ffd600\n);\n\n$clr-yellow: map-get($clr-yellow-list, \"base\");\n\n$clr-yellow-50: map-get($clr-yellow-list, \"50\");\n$clr-yellow-100: map-get($clr-yellow-list, \"100\");\n$clr-yellow-200: map-get($clr-yellow-list, \"200\");\n$clr-yellow-300: map-get($clr-yellow-list, \"300\");\n$clr-yellow-400: map-get($clr-yellow-list, \"400\");\n$clr-yellow-500: map-get($clr-yellow-list, \"500\");\n$clr-yellow-600: map-get($clr-yellow-list, \"600\");\n$clr-yellow-700: map-get($clr-yellow-list, \"700\");\n$clr-yellow-800: map-get($clr-yellow-list, \"800\");\n$clr-yellow-900: map-get($clr-yellow-list, \"900\");\n$clr-yellow-a100: map-get($clr-yellow-list, \"a100\");\n$clr-yellow-a200: map-get($clr-yellow-list, \"a200\");\n$clr-yellow-a400: map-get($clr-yellow-list, \"a400\");\n$clr-yellow-a700: map-get($clr-yellow-list, \"a700\");\n\n\n//\n// amber\n//\n\n$clr-amber-list: (\n \"base\": #ffc107,\n \"50\": #fff8e1,\n \"100\": #ffecb3,\n \"200\": #ffe082,\n \"300\": #ffd54f,\n \"400\": #ffca28,\n \"500\": #ffc107,\n \"600\": #ffb300,\n \"700\": #ffa000,\n \"800\": #ff8f00,\n \"900\": #ff6f00,\n \"a100\": #ffe57f,\n \"a200\": #ffd740,\n \"a400\": #ffc400,\n \"a700\": #ffab00\n);\n\n$clr-amber: map-get($clr-amber-list, \"base\");\n\n$clr-amber-50: map-get($clr-amber-list, \"50\");\n$clr-amber-100: map-get($clr-amber-list, \"100\");\n$clr-amber-200: map-get($clr-amber-list, \"200\");\n$clr-amber-300: map-get($clr-amber-list, \"300\");\n$clr-amber-400: map-get($clr-amber-list, \"400\");\n$clr-amber-500: map-get($clr-amber-list, \"500\");\n$clr-amber-600: map-get($clr-amber-list, \"600\");\n$clr-amber-700: map-get($clr-amber-list, \"700\");\n$clr-amber-800: map-get($clr-amber-list, \"800\");\n$clr-amber-900: map-get($clr-amber-list, \"900\");\n$clr-amber-a100: map-get($clr-amber-list, \"a100\");\n$clr-amber-a200: map-get($clr-amber-list, \"a200\");\n$clr-amber-a400: map-get($clr-amber-list, \"a400\");\n$clr-amber-a700: map-get($clr-amber-list, \"a700\");\n\n\n//\n// Orange\n//\n\n$clr-orange-list: (\n \"base\": #ff9800,\n \"50\": #fff3e0,\n \"100\": #ffe0b2,\n \"200\": #ffcc80,\n \"300\": #ffb74d,\n \"400\": #ffa726,\n \"500\": #ff9800,\n \"600\": #fb8c00,\n \"700\": #f57c00,\n \"800\": #ef6c00,\n \"900\": #e65100,\n \"a100\": #ffd180,\n \"a200\": #ffab40,\n \"a400\": #ff9100,\n \"a700\": #ff6d00\n);\n\n$clr-orange: map-get($clr-orange-list, \"base\");\n\n$clr-orange-50: map-get($clr-orange-list, \"50\");\n$clr-orange-100: map-get($clr-orange-list, \"100\");\n$clr-orange-200: map-get($clr-orange-list, \"200\");\n$clr-orange-300: map-get($clr-orange-list, \"300\");\n$clr-orange-400: map-get($clr-orange-list, \"400\");\n$clr-orange-500: map-get($clr-orange-list, \"500\");\n$clr-orange-600: map-get($clr-orange-list, \"600\");\n$clr-orange-700: map-get($clr-orange-list, \"700\");\n$clr-orange-800: map-get($clr-orange-list, \"800\");\n$clr-orange-900: map-get($clr-orange-list, \"900\");\n$clr-orange-a100: map-get($clr-orange-list, \"a100\");\n$clr-orange-a200: map-get($clr-orange-list, \"a200\");\n$clr-orange-a400: map-get($clr-orange-list, \"a400\");\n$clr-orange-a700: map-get($clr-orange-list, \"a700\");\n\n\n//\n// Deep orange\n//\n\n$clr-deep-orange-list: (\n \"base\": #ff5722,\n \"50\": #fbe9e7,\n \"100\": #ffccbc,\n \"200\": #ffab91,\n \"300\": #ff8a65,\n \"400\": #ff7043,\n \"500\": #ff5722,\n \"600\": #f4511e,\n \"700\": #e64a19,\n \"800\": #d84315,\n \"900\": #bf360c,\n \"a100\": #ff9e80,\n \"a200\": #ff6e40,\n \"a400\": #ff3d00,\n \"a700\": #dd2c00\n);\n\n$clr-deep-orange: map-get($clr-deep-orange-list, \"base\");\n\n$clr-deep-orange-50: map-get($clr-deep-orange-list, \"50\");\n$clr-deep-orange-100: map-get($clr-deep-orange-list, \"100\");\n$clr-deep-orange-200: map-get($clr-deep-orange-list, \"200\");\n$clr-deep-orange-300: map-get($clr-deep-orange-list, \"300\");\n$clr-deep-orange-400: map-get($clr-deep-orange-list, \"400\");\n$clr-deep-orange-500: map-get($clr-deep-orange-list, \"500\");\n$clr-deep-orange-600: map-get($clr-deep-orange-list, \"600\");\n$clr-deep-orange-700: map-get($clr-deep-orange-list, \"700\");\n$clr-deep-orange-800: map-get($clr-deep-orange-list, \"800\");\n$clr-deep-orange-900: map-get($clr-deep-orange-list, \"900\");\n$clr-deep-orange-a100: map-get($clr-deep-orange-list, \"a100\");\n$clr-deep-orange-a200: map-get($clr-deep-orange-list, \"a200\");\n$clr-deep-orange-a400: map-get($clr-deep-orange-list, \"a400\");\n$clr-deep-orange-a700: map-get($clr-deep-orange-list, \"a700\");\n\n\n//\n// Brown\n//\n\n$clr-brown-list: (\n \"base\": #795548,\n \"50\": #efebe9,\n \"100\": #d7ccc8,\n \"200\": #bcaaa4,\n \"300\": #a1887f,\n \"400\": #8d6e63,\n \"500\": #795548,\n \"600\": #6d4c41,\n \"700\": #5d4037,\n \"800\": #4e342e,\n \"900\": #3e2723,\n);\n\n$clr-brown: map-get($clr-brown-list, \"base\");\n\n$clr-brown-50: map-get($clr-brown-list, \"50\");\n$clr-brown-100: map-get($clr-brown-list, \"100\");\n$clr-brown-200: map-get($clr-brown-list, \"200\");\n$clr-brown-300: map-get($clr-brown-list, \"300\");\n$clr-brown-400: map-get($clr-brown-list, \"400\");\n$clr-brown-500: map-get($clr-brown-list, \"500\");\n$clr-brown-600: map-get($clr-brown-list, \"600\");\n$clr-brown-700: map-get($clr-brown-list, \"700\");\n$clr-brown-800: map-get($clr-brown-list, \"800\");\n$clr-brown-900: map-get($clr-brown-list, \"900\");\n\n\n//\n// Grey\n//\n\n$clr-grey-list: (\n \"base\": #9e9e9e,\n \"50\": #fafafa,\n \"100\": #f5f5f5,\n \"200\": #eeeeee,\n \"300\": #e0e0e0,\n \"400\": #bdbdbd,\n \"500\": #9e9e9e,\n \"600\": #757575,\n \"700\": #616161,\n \"800\": #424242,\n \"900\": #212121,\n);\n\n$clr-grey: map-get($clr-grey-list, \"base\");\n\n$clr-grey-50: map-get($clr-grey-list, \"50\");\n$clr-grey-100: map-get($clr-grey-list, \"100\");\n$clr-grey-200: map-get($clr-grey-list, \"200\");\n$clr-grey-300: map-get($clr-grey-list, \"300\");\n$clr-grey-400: map-get($clr-grey-list, \"400\");\n$clr-grey-500: map-get($clr-grey-list, \"500\");\n$clr-grey-600: map-get($clr-grey-list, \"600\");\n$clr-grey-700: map-get($clr-grey-list, \"700\");\n$clr-grey-800: map-get($clr-grey-list, \"800\");\n$clr-grey-900: map-get($clr-grey-list, \"900\");\n\n\n//\n// Blue grey\n//\n\n$clr-blue-grey-list: (\n \"base\": #607d8b,\n \"50\": #eceff1,\n \"100\": #cfd8dc,\n \"200\": #b0bec5,\n \"300\": #90a4ae,\n \"400\": #78909c,\n \"500\": #607d8b,\n \"600\": #546e7a,\n \"700\": #455a64,\n \"800\": #37474f,\n \"900\": #263238,\n);\n\n$clr-blue-grey: map-get($clr-blue-grey-list, \"base\");\n\n$clr-blue-grey-50: map-get($clr-blue-grey-list, \"50\");\n$clr-blue-grey-100: map-get($clr-blue-grey-list, \"100\");\n$clr-blue-grey-200: map-get($clr-blue-grey-list, \"200\");\n$clr-blue-grey-300: map-get($clr-blue-grey-list, \"300\");\n$clr-blue-grey-400: map-get($clr-blue-grey-list, \"400\");\n$clr-blue-grey-500: map-get($clr-blue-grey-list, \"500\");\n$clr-blue-grey-600: map-get($clr-blue-grey-list, \"600\");\n$clr-blue-grey-700: map-get($clr-blue-grey-list, \"700\");\n$clr-blue-grey-800: map-get($clr-blue-grey-list, \"800\");\n$clr-blue-grey-900: map-get($clr-blue-grey-list, \"900\");\n\n\n//\n// Black\n//\n\n$clr-black-list: (\n \"base\": #000\n);\n\n$clr-black: map-get($clr-black-list, \"base\");\n\n\n//\n// White\n//\n\n$clr-white-list: (\n \"base\": #fff\n);\n\n$clr-white: map-get($clr-white-list, \"base\");\n\n\n//\n// List for all Colors for looping\n//\n\n$clr-list-all: (\n \"red\": $clr-red-list,\n \"pink\": $clr-pink-list,\n \"purple\": $clr-purple-list,\n \"deep-purple\": $clr-deep-purple-list,\n \"indigo\": $clr-indigo-list,\n \"blue\": $clr-blue-list,\n \"light-blue\": $clr-light-blue-list,\n \"cyan\": $clr-cyan-list,\n \"teal\": $clr-teal-list,\n \"green\": $clr-green-list,\n \"light-green\": $clr-light-green-list,\n \"lime\": $clr-lime-list,\n \"yellow\": $clr-yellow-list,\n \"amber\": $clr-amber-list,\n \"orange\": $clr-orange-list,\n \"deep-orange\": $clr-deep-orange-list,\n \"brown\": $clr-brown-list,\n \"grey\": $clr-grey-list,\n \"blue-grey\": $clr-blue-grey-list,\n \"black\": $clr-black-list,\n \"white\": $clr-white-list\n);\n\n\n//\n// Typography\n//\n\n$clr-ui-display-4: $clr-grey-600;\n$clr-ui-display-3: $clr-grey-600;\n$clr-ui-display-2: $clr-grey-600;\n$clr-ui-display-1: $clr-grey-600;\n$clr-ui-headline: $clr-grey-900;\n$clr-ui-title: $clr-grey-900;\n$clr-ui-subhead-1: $clr-grey-900;\n$clr-ui-body-2: $clr-grey-900;\n$clr-ui-body-1: $clr-grey-900;\n$clr-ui-caption: $clr-grey-600;\n$clr-ui-menu: $clr-grey-900;\n$clr-ui-button: $clr-grey-900;\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Variables\n// ----------------------------------------------------------------------------\n\n// Operators\n$codehilite-operator: inherit;\n$codehilite-operator-word: inherit;\n\n// Generics\n$codehilite-generic-emph: #000000;\n$codehilite-generic-error: #AA0000;\n$codehilite-generic-heading: #999999;\n$codehilite-generic-output: #888888;\n$codehilite-generic-prompt: #555555;\n$codehilite-generic-strong: inherit;\n$codehilite-generic-subheading: #AAAAAA;\n$codehilite-generic-traceback: #AA0000;\n\n// Diffs\n$codehilite-diff-deleted: #FFDDDD;\n$codehilite-diff-inserted: #DDFFDD;\n\n// Keywords\n$codehilite-keyword: #3B78E7;\n$codehilite-keyword-constant: #A71D5D;\n$codehilite-keyword-declaration: #3B78E7;\n$codehilite-keyword-namespace: #3B78E7;\n$codehilite-keyword-pseudo: #A71D5D;\n$codehilite-keyword-reserved: #3E61A2;\n$codehilite-keyword-type: #3E61A2;\n\n// Comments\n$codehilite-comment: #999999;\n$codehilite-comment-multiline: #999999;\n$codehilite-comment-preproc: #666666;\n$codehilite-comment-single: #999999;\n$codehilite-comment-shebang: #999999;\n$codehilite-comment-special: #999999;\n\n// Names\n$codehilite-name-attribute: #C2185B;\n$codehilite-name-builtin: #C2185B;\n$codehilite-name-builtin-pseudo: #3E61A2;\n$codehilite-name-class: #C2185B;\n$codehilite-name-constant: #3E61A2;\n$codehilite-name-decorator: #666666;\n$codehilite-name-entity: #666666;\n$codehilite-name-exception: #C2185B;\n$codehilite-name-function: #C2185B;\n$codehilite-name-label: #3B5179;\n$codehilite-name-namespace: #EC407A;\n$codehilite-name-tag: #3B78E7;\n$codehilite-name-variable: #3E61A2;\n$codehilite-name-variable-class: #3E61A2;\n$codehilite-name-variable-instance: #3E61A2;\n$codehilite-name-variable-global: #3E61A2;\n$codehilite-name-extension: #EC407A;\n\n// Numbers\n$codehilite-literal-number: #E74C3C;\n$codehilite-literal-number-float: #E74C3C;\n$codehilite-literal-number-hex: #E74C3C;\n$codehilite-literal-number-integer: #E74C3C;\n$codehilite-literal-number-integer-long: #E74C3C;\n$codehilite-literal-number-oct: #E74C3C;\n\n// Strings\n$codehilite-literal-string: #0D904F;\n$codehilite-literal-string-backticks: #0D904F;\n$codehilite-literal-string-char: #0D904F;\n$codehilite-literal-string-doc: #999999;\n$codehilite-literal-string-double: #0D904F;\n$codehilite-literal-string-escape: #183691;\n$codehilite-literal-string-heredoc: #183691;\n$codehilite-literal-string-interpol: #183691;\n$codehilite-literal-string-other: #183691;\n$codehilite-literal-string-regex: #009926;\n$codehilite-literal-string-single: #0D904F;\n$codehilite-literal-string-symbol: #0D904F;\n\n// Miscellaneous\n$codehilite-error: #A61717;\n$codehilite-whitespace: transparent;\n\n// ----------------------------------------------------------------------------\n// Rules: syntax highlighting\n// ----------------------------------------------------------------------------\n\n// Codehilite extension\n.codehilite {\n\n // Operators\n .o { color: $codehilite-operator; }\n .ow { color: $codehilite-operator-word; }\n\n // Generics\n .ge { color: $codehilite-generic-emph; }\n .gr { color: $codehilite-generic-error; }\n .gh { color: $codehilite-generic-heading; }\n .go { color: $codehilite-generic-output; }\n .gp { color: $codehilite-generic-prompt; }\n .gs { color: $codehilite-generic-strong; }\n .gu { color: $codehilite-generic-subheading; }\n .gt { color: $codehilite-generic-traceback; }\n\n // Diffs\n .gd { background-color: $codehilite-diff-deleted; }\n .gi { background-color: $codehilite-diff-inserted; }\n\n // Keywords\n .k { color: $codehilite-keyword; }\n .kc { color: $codehilite-keyword-constant; }\n .kd { color: $codehilite-keyword-declaration; }\n .kn { color: $codehilite-keyword-namespace; }\n .kp { color: $codehilite-keyword-pseudo; }\n .kr { color: $codehilite-keyword-reserved; }\n .kt { color: $codehilite-keyword-type; }\n\n // Comments\n .c { color: $codehilite-comment; }\n .cm { color: $codehilite-comment-multiline; }\n .cp { color: $codehilite-comment-preproc; }\n .c1 { color: $codehilite-comment-single; }\n .ch { color: $codehilite-comment-shebang; }\n .cs { color: $codehilite-comment-special; }\n\n // Names\n .na { color: $codehilite-name-attribute; }\n .nb { color: $codehilite-name-builtin; }\n .bp { color: $codehilite-name-builtin-pseudo; }\n .nc { color: $codehilite-name-class; }\n .no { color: $codehilite-name-constant; }\n .nd { color: $codehilite-name-entity; }\n .ni { color: $codehilite-name-entity; }\n .ne { color: $codehilite-name-exception; }\n .nf { color: $codehilite-name-function; }\n .nl { color: $codehilite-name-label; }\n .nn { color: $codehilite-name-namespace; }\n .nt { color: $codehilite-name-tag; }\n .nv { color: $codehilite-name-variable; }\n .vc { color: $codehilite-name-variable-class; }\n .vg { color: $codehilite-name-variable-global; }\n .vi { color: $codehilite-name-variable-instance; }\n .nx { color: $codehilite-name-extension; }\n\n // Numbers\n .m { color: $codehilite-literal-number; }\n .mf { color: $codehilite-literal-number-float; }\n .mh { color: $codehilite-literal-number-hex; }\n .mi { color: $codehilite-literal-number-integer; }\n .il { color: $codehilite-literal-number-integer-long; }\n .mo { color: $codehilite-literal-number-oct; }\n\n // Strings\n .s { color: $codehilite-literal-string; }\n .sb { color: $codehilite-literal-string-backticks; }\n .sc { color: $codehilite-literal-string-char; }\n .sd { color: $codehilite-literal-string-doc; }\n .s2 { color: $codehilite-literal-string-double; }\n .se { color: $codehilite-literal-string-escape; }\n .sh { color: $codehilite-literal-string-heredoc; }\n .si { color: $codehilite-literal-string-interpol; }\n .sx { color: $codehilite-literal-string-other; }\n .sr { color: $codehilite-literal-string-regex; }\n .s1 { color: $codehilite-literal-string-single; }\n .ss { color: $codehilite-literal-string-symbol; }\n\n // Miscellaneous\n .err { color: $codehilite-error; }\n .w { color: $codehilite-whitespace; }\n\n // Highlighted lines\n .hll {\n display: block;\n margin: 0 px2em(-16px, 13.6px);\n padding: 0 px2em(16px, 13.6px);\n background-color: transparentize($clr-yellow-500, 0.5);\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules: layout\n// ----------------------------------------------------------------------------\n\n// Block with line numbers\n.codehilitetable {\n display: block;\n overflow: hidden;\n\n // Set table elements to block layout, because otherwise the whole flexbox\n // hacking won't work correctly\n tbody,\n td {\n display: block;\n padding: 0;\n }\n\n // We need to use flexbox layout, because otherwise it's not possible to\n // make the code container scroll while keeping the line numbers static\n tr {\n display: flex;\n }\n\n // The pre tags are nested inside a table, so we need to remove the\n // margin because it collapses below all the overflows\n pre {\n margin: 0;\n }\n\n // Disable user selection, so code can be easily copied without\n // accidentally also copying the line numbers\n .linenos {\n padding: px2rem(10.5px) px2em(16px, 13.6px);\n padding-right: 0;\n font-size: px2em(13.6px);\n background-color: var(--md-code-bg-color);\n user-select: none;\n }\n\n // Add spacing to line number container\n .linenodiv {\n padding-right: px2em(8px, 13.6px);\n box-shadow: inset px2rem(-1px) 0 var(--md-default-fg-color--lightest);\n\n // Reset spacings\n pre {\n color: var(--md-default-fg-color--lighter);\n text-align: right;\n }\n }\n\n // The table cell containing the code container wrapper and code should\n // stretch horizontally to the remaining space\n .code {\n flex: 1;\n overflow: hidden;\n }\n}\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Block with line numbers\n .codehilitetable {\n margin: 1em 0;\n direction: ltr;\n border-radius: px2rem(2px);\n\n // Remove rounded borders\n code {\n border-radius: 0;\n }\n }\n\n // [mobile -]: Stretch to whole width\n @include break-to-device(mobile) {\n\n // Full-width container\n > .codehilite {\n margin: 1em px2rem(-16px);\n\n // Stretch highlighted lines\n .hll {\n margin: 0 px2rem(-16px);\n padding: 0 px2rem(16px);\n }\n\n // Remove rounded borders\n code {\n border-radius: 0;\n }\n }\n\n // Full-width container on top-level\n > .codehilitetable {\n margin: 1em px2rem(-16px);\n border-radius: 0;\n\n // Stretch highlighted lines\n .hll {\n margin: 0 px2rem(-16px);\n padding: 0 px2rem(16px);\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Icon definitions\n:root {\n --md-footnotes-icon: svg-load(\"@mdi/svg/svg/keyboard-return.svg\");\n}\n\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // All footnote references\n [id^=\"fnref:\"] {\n display: inline-block;\n\n // Targeted anchor\n &:target {\n margin-top: -1 * px2rem(48px + 12px + 16px);\n padding-top: px2rem(48px + 12px + 16px);\n pointer-events: none;\n }\n }\n\n // All footnote back references\n [id^=\"fn:\"] {\n\n // Add spacing to anchor for offset\n &::before {\n display: none;\n height: 0;\n content: \"\";\n }\n\n // Targeted anchor\n &:target::before {\n display: block;\n margin-top: -1 * px2rem(48px + 12px + 10px);\n padding-top: px2rem(48px + 12px + 10px);\n pointer-events: none;\n }\n }\n\n // Footnotes extension\n .footnote {\n color: var(--md-default-fg-color--light);\n font-size: ms(-1);\n\n // Remove additional spacing on footnotes\n ol {\n margin-left: 0;\n }\n\n // Footnote\n li {\n transition: color 125ms;\n\n // Darken color for targeted footnote\n &:target {\n color: var(--md-default-fg-color);\n }\n\n // Remove spacing on first element\n :first-child {\n margin-top: 0;\n }\n\n // Make back references visible on container hover\n &:hover .footnote-backref,\n &:target .footnote-backref {\n transform: translateX(0);\n opacity: 1;\n }\n\n // Hovered back reference\n &:hover .footnote-backref:hover {\n color: var(--md-accent-fg-color);\n }\n }\n }\n\n // Footnote reference\n .footnote-ref {\n display: inline-block;\n pointer-events: initial;\n }\n\n // Footnote back reference\n .footnote-backref {\n display: inline-block;\n color: var(--md-primary-fg-color);\n // Hack: remove Unicode arrow for icon\n font-size: 0;\n vertical-align: text-bottom;\n transform: translateX(px2rem(5px));\n opacity: 0;\n transition:\n color 250ms,\n transform 250ms 250ms,\n opacity 125ms 250ms;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n transform: translateX(px2rem(-5px));\n }\n\n // Back reference icon\n &::before {\n display: inline-block;\n width: px2rem(16px);\n height: px2rem(16px);\n background-color: currentColor;\n mask-image: var(--md-footnotes-icon);\n content: \"\";\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n\n // Flip icon vertically\n svg {\n transform: scaleX(-1)\n }\n }\n }\n\n // Always show for print\n @media print {\n color: var(--md-primary-fg-color);\n transform: translateX(0);\n opacity: 1;\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Permalinks extension\n .headerlink {\n display: inline-block;\n margin-left: px2rem(10px);\n // Hack: if we don't set visibility hidden, the text content of the node\n // will include the headerlink character, which is why Google indexes them.\n visibility: hidden;\n opacity: 0;\n transition:\n color 250ms,\n visibility 0ms 500ms,\n opacity 125ms;\n\n // Adjust for RTL languages\n [dir=\"rtl\"] & {\n margin-right: px2rem(10px);\n margin-left: initial;\n }\n\n // Higher specificity for color due to palettes integration\n html body & {\n color: var(--md-default-fg-color--lighter);\n }\n\n // Hide for print\n @media print {\n display: none;\n }\n }\n\n // Make permalink visible on hover\n :hover > .headerlink,\n :target > .headerlink,\n .headerlink:focus {\n visibility: visible;\n opacity: 1;\n transition:\n color 250ms,\n visibility 0ms,\n opacity 125ms;\n }\n\n // Active or targeted permalink\n :target > .headerlink,\n .headerlink:focus,\n .headerlink:hover {\n color: var(--md-accent-fg-color);\n }\n\n // General scroll margin offset for anything that can be targeted. Browser\n // support is pretty decent by now, and if we wait until Edge 79+ has more\n // adoption, we can get rid of all anchor-correction hacks.\n :target {\n scroll-margin-top: px2rem(48px + 24px);\n }\n\n // Correct anchor offset for link blurring\n @each $level, $delta in (\n h1 h2 h3: 8px,\n h4: 9px,\n h5 h6: 12px,\n ) {\n %#{nth($level, 1)} {\n\n // Reset, as we use the anchor-correction hack here.\n &:target {\n scroll-margin-top: initial;\n }\n\n // Un-targeted anchor\n &::before {\n display: block;\n margin-top: -1 * px2rem($delta);\n padding-top: px2rem($delta);\n content: \"\";\n }\n\n // Targeted anchor (48px from header, 12px from sidebar offset)\n &:target::before {\n margin-top: -1 * px2rem(48px + 12px + $delta);\n padding-top: px2rem(48px + 12px + $delta);\n }\n }\n\n // Define levels\n @for $n from 1 through length($level) {\n #{nth($level, $n)}[id] {\n @extend %#{nth($level, 1)};\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// stylelint-disable selector-class-pattern\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // MathJax integration - add padding to omit vertical scrollbar\n .MJXc-display {\n margin: 0.75em 0;\n padding: 0.75em 0;\n overflow: auto;\n touch-action: auto;\n }\n\n // Stretch top-level containers\n > p > .MJXc-display {\n\n // [mobile -]: Stretch to whole width\n @include break-to-device(mobile) {\n margin: 0.75em px2rem(-16px);\n padding: 0.25em px2rem(16px);\n }\n }\n\n // Remove outline on tab index\n .MathJax_CHTML {\n outline: 0;\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Deletions, additions and comments\n del.critic,\n ins.critic,\n .critic.comment {\n padding: 0 px2em(4px, 16px);\n border-radius: px2rem(2px);\n box-decoration-break: clone;\n }\n\n // Deletion\n del.critic {\n background-color: $codehilite-diff-deleted;\n }\n\n // Addition\n ins.critic {\n background-color: $codehilite-diff-inserted;\n }\n\n // Comment\n .critic.comment {\n color: $codehilite-comment;\n\n // Comment opening mark\n &::before {\n content: \"/* \";\n }\n\n // Comment closing mark\n &::after {\n content: \" */\";\n }\n }\n\n // Block\n .critic.block {\n display: block;\n margin: 1em 0;\n padding-right: px2rem(16px);\n padding-left: px2rem(16px);\n overflow: auto;\n box-shadow: none;\n\n // Decrease spacing on first element\n :first-child {\n margin-top: 0.5em;\n }\n\n // Decrease spacing on last element\n :last-child {\n margin-bottom: 0.5em;\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Icon definitions\n:root {\n --md-details-icon: svg-load(\"@mdi/svg/svg/chevron-right.svg\");\n}\n\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Details extension\n details {\n @extend .admonition;\n\n display: block;\n padding-top: 0;\n overflow: visible;\n\n\n // Rotate title icon\n &[open] > summary::after {\n transform: rotate(90deg);\n }\n\n // Remove bottom spacing for closed details\n &:not([open]) {\n padding-bottom: 0;\n\n // We cannot set overflow: hidden, as the outline would not be visible,\n // so we need to correct the border radius\n > summary {\n border-bottom-right-radius: px2rem(2px);\n }\n }\n\n // Hack: omit margin collapse\n &::after {\n display: table;\n content: \"\";\n }\n }\n\n // Details title\n summary {\n @extend .admonition-title;\n\n display: block;\n min-height: px2rem(20px);\n padding: px2rem(8px) px2rem(36px) px2rem(8px) px2rem(40px);\n border-top-right-radius: px2rem(2px);\n cursor: pointer;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n padding: px2rem(8px) px2rem(40px) px2rem(8px) px2rem(36px);\n }\n\n // Remove default details marker\n &::-webkit-details-marker {\n display: none;\n }\n\n // Details marker\n &::after {\n position: absolute;\n top: px2rem(8px);\n right: px2rem(8px);\n width: px2rem(20px);\n height: px2rem(20px);\n background-color: currentColor;\n mask-image: var(--md-details-icon);\n transform: rotate(0deg);\n transition: transform 250ms;\n content: \"\";\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: initial;\n left: px2rem(8px);\n transform: rotate(180deg);\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Emojis\n img.emojione,\n img.twemoji,\n img.gemoji {\n width: px2em(18px);\n vertical-align: -15%;\n }\n\n // Inlined SVG icons via mkdocs-material-extensions\n span.twemoji {\n display: inline-block;\n height: px2em(18px);\n vertical-align: text-top;\n\n // Icon\n svg {\n width: px2em(18px);\n fill: currentColor;\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// When pymdownx.superfences is enabled but codehilite is disabled,\n// pymdownx.highlight will be used. When this happens, the outer container\n// and tables get this class names by default\n.highlight {\n @extend .codehilite;\n\n // Inline line numbers\n [data-linenos]::before {\n position: sticky;\n left: px2em(-16px, 13.6px);\n float: left;\n margin-right: px2em(16px, 13.6px);\n margin-left: px2em(-16px, 13.6px);\n padding-left: px2em(16px, 13.6px);\n color: var(--md-default-fg-color--lighter);\n background-color: var(--md-code-bg-color);\n box-shadow: inset px2rem(-1px) 0 var(--md-default-fg-color--lightest);\n content: attr(data-linenos);\n user-select: none;\n }\n}\n\n// Same as above, but for code blocks with line numbers enabled\n.highlighttable {\n @extend .codehilitetable;\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Tabbed block content\n .tabbed-content {\n display: none;\n order: 99;\n width: 100%;\n box-shadow: 0 px2rem(-1px) var(--md-default-fg-color--lightest);\n\n // Mirror old superfences behavior, if there's only a single code block.\n > .codehilite:only-child pre,\n > .codehilitetable:only-child,\n > .highlight:only-child pre,\n > .highlighttable:only-child {\n margin: 0;\n\n // Remove rounded borders at the top\n > code {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n }\n\n // Nested tabs\n > .tabbed-set {\n margin: 0;\n }\n }\n\n // Tabbed block container\n .tabbed-set {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n margin: 1em 0;\n border-radius: px2rem(2px);\n\n // Hide radio buttons\n > input {\n display: none;\n\n // Active tab label\n &:checked + label {\n color: var(--md-accent-fg-color);\n border-color: var(--md-accent-fg-color);\n\n // Show tabbed block content\n & + .tabbed-content {\n display: block;\n }\n }\n }\n\n // Tab label\n > label {\n z-index: 1;\n width: auto;\n padding: px2rem(12px) 1.25em px2rem(10px);\n color: var(--md-default-fg-color--light);\n font-weight: 700;\n font-size: ms(-1);\n border-bottom: px2rem(2px) solid transparent;\n cursor: pointer;\n transition: color 125ms;\n\n // Hovered tab label\n html &:hover {\n color: var(--md-accent-fg-color);\n }\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Rules\n// ----------------------------------------------------------------------------\n\n// Icon definitions\n:root {\n --md-tasklist-icon: svg-load(\"@mdi/svg/svg/checkbox-blank-circle.svg\");\n --md-tasklist-icon--checked: svg-load(\"@mdi/svg/svg/check-circle.svg\");\n}\n\n// ----------------------------------------------------------------------------\n\n// Scoped in typesetted content to match specificity of regular content\n.md-typeset {\n\n // Remove list icon on task items\n .task-list-item {\n position: relative;\n list-style-type: none;\n\n // Make checkbox items align with normal list items, but position\n // everything in ems for correct layout at smaller font sizes\n [type=\"checkbox\"] {\n position: absolute;\n top: 0.45em;\n left: -2em;\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: -2em;\n left: initial;\n }\n }\n }\n\n // Wrapper for list controls, in case custom checkboxes are enabled\n .task-list-control {\n\n // Checkbox icon in unchecked state\n .task-list-indicator::before {\n position: absolute;\n top: 0.15em;\n left: px2em(-24px);\n width: px2em(20px);\n height: px2em(20px);\n background-color: var(--md-default-fg-color--lightest);\n mask-image: var(--md-tasklist-icon);\n content: \"\";\n\n // Adjust for right-to-left languages\n [dir=\"rtl\"] & {\n right: px2em(-24px);\n left: initial;\n }\n }\n\n // Checkbox icon in checked state\n [type=\"checkbox\"]:checked + .task-list-indicator::before {\n background-color: $clr-green-a400;\n mask-image: var(--md-tasklist-icon--checked);\n }\n\n // Hide original checkbox behind icon\n [type=\"checkbox\"] {\n z-index: -1;\n opacity: 0;\n }\n }\n}\n"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/material/assets/stylesheets/palette.c929de0b.min.css b/docs/material/assets/stylesheets/palette.c929de0b.min.css new file mode 100644 index 000000000..69cbcea65 --- /dev/null +++ b/docs/material/assets/stylesheets/palette.c929de0b.min.css @@ -0,0 +1,3 @@ +[data-md-color-primary=red]{--md-primary-fg-color: hsla(1deg, 83%, 63%, 1);--md-primary-fg-color--light: hsla(0deg, 73%, 77%, 1);--md-primary-fg-color--dark: hsla(1deg, 77%, 55%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=pink]{--md-primary-fg-color: hsla(340deg, 82%, 52%, 1);--md-primary-fg-color--light: hsla(340deg, 82%, 76%, 1);--md-primary-fg-color--dark: hsla(336deg, 78%, 43%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=purple]{--md-primary-fg-color: hsla(291deg, 47%, 51%, 1);--md-primary-fg-color--light: hsla(291deg, 47%, 71%, 1);--md-primary-fg-color--dark: hsla(287deg, 65%, 40%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=deep-purple]{--md-primary-fg-color: hsla(262deg, 47%, 55%, 1);--md-primary-fg-color--light: hsla(261deg, 46%, 74%, 1);--md-primary-fg-color--dark: hsla(262deg, 52%, 47%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=indigo]{--md-primary-fg-color: hsla(231deg, 48%, 48%, 1);--md-primary-fg-color--light: hsla(231deg, 44%, 74%, 1);--md-primary-fg-color--dark: hsla(232deg, 54%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=blue]{--md-primary-fg-color: hsla(207deg, 90%, 54%, 1);--md-primary-fg-color--light: hsla(207deg, 90%, 77%, 1);--md-primary-fg-color--dark: hsla(210deg, 79%, 46%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=light-blue]{--md-primary-fg-color: hsla(199deg, 98%, 48%, 1);--md-primary-fg-color--light: hsla(199deg, 92%, 74%, 1);--md-primary-fg-color--dark: hsla(201deg, 98%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=cyan]{--md-primary-fg-color: hsla(187deg, 100%, 42%, 1);--md-primary-fg-color--light: hsla(187deg, 72%, 71%, 1);--md-primary-fg-color--dark: hsla(186deg, 100%, 33%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=teal]{--md-primary-fg-color: hsla(174deg, 100%, 29%, 1);--md-primary-fg-color--light: hsla(174deg, 42%, 65%, 1);--md-primary-fg-color--dark: hsla(173deg, 100%, 24%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=green]{--md-primary-fg-color: hsla(122deg, 39%, 49%, 1);--md-primary-fg-color--light: hsla(122deg, 37%, 74%, 1);--md-primary-fg-color--dark: hsla(123deg, 43%, 39%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=light-green]{--md-primary-fg-color: hsla(88deg, 50%, 53%, 1);--md-primary-fg-color--light: hsla(88deg, 50%, 76%, 1);--md-primary-fg-color--dark: hsla(92deg, 48%, 42%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=lime]{--md-primary-fg-color: hsla(66deg, 70%, 54%, 1);--md-primary-fg-color--light: hsla(66deg, 71%, 77%, 1);--md-primary-fg-color--dark: hsla(62deg, 61%, 44%, 1);--md-primary-bg-color: var(--md-default-fg-color);--md-primary-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-primary=yellow]{--md-primary-fg-color: hsla(54deg, 100%, 62%, 1);--md-primary-fg-color--light: hsla(54deg, 100%, 81%, 1);--md-primary-fg-color--dark: hsla(43deg, 96%, 58%, 1);--md-primary-bg-color: var(--md-default-fg-color);--md-primary-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-primary=amber]{--md-primary-fg-color: hsla(45deg, 100%, 51%, 1);--md-primary-fg-color--light: hsla(45deg, 100%, 75%, 1);--md-primary-fg-color--dark: hsla(38deg, 100%, 50%, 1);--md-primary-bg-color: var(--md-default-fg-color);--md-primary-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-primary=orange]{--md-primary-fg-color: hsla(36deg, 100%, 57%, 1);--md-primary-fg-color--light: hsla(36deg, 100%, 75%, 1);--md-primary-fg-color--dark: hsla(33deg, 100%, 49%, 1);--md-primary-bg-color: var(--md-default-fg-color);--md-primary-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-primary=deep-orange]{--md-primary-fg-color: hsla(14deg, 100%, 63%, 1);--md-primary-fg-color--light: hsla(14deg, 100%, 78%, 1);--md-primary-fg-color--dark: hsla(14deg, 91%, 54%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=brown]{--md-primary-fg-color: hsla(16deg, 25%, 38%, 1);--md-primary-fg-color--light: hsla(15deg, 15%, 69%, 1);--md-primary-fg-color--dark: hsla(14deg, 26%, 29%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=grey]{--md-primary-fg-color: hsla(0deg, 0%, 46%, 1);--md-primary-fg-color--light: hsla(0deg, 0%, 93%, 1);--md-primary-fg-color--dark: hsla(0deg, 0%, 38%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=blue-grey]{--md-primary-fg-color: hsla(199deg, 18%, 40%, 1);--md-primary-fg-color--light: hsla(200deg, 15%, 73%, 1);--md-primary-fg-color--dark: hsla(199deg, 18%, 33%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=white]{--md-primary-fg-color: hsla(231deg, 48%, 48%, 1);--md-primary-fg-color--light: hsla(230deg, 44%, 64%, 1);--md-primary-fg-color--dark: hsla(232deg, 54%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=white] .md-header{color:var(--md-default-fg-color);background-color:var(--md-default-bg-color)}[data-md-color-primary=white] .md-hero{color:var(--md-default-fg-color);background-color:var(--md-default-bg-color)}[data-md-color-primary=white] .md-hero--expand{border-bottom:.05rem solid var(--md-default-fg-color--lightest)}@media screen and (max-width: 59.9375em){[data-md-color-primary=white] .md-nav__source{color:var(--md-default-fg-color);background-color:var(--md-default-fg-color--lightest)}}@media screen and (min-width: 60em){[data-md-color-primary=white] .md-search__input{background-color:var(--md-default-fg-color--lightest)}[data-md-color-primary=white] .md-search__input+.md-search__icon{color:var(--md-default-fg-color)}[data-md-color-primary=white] .md-search__input::-webkit-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-color-primary=white] .md-search__input::-moz-placeholder{color:var(--md-default-fg-color--light)}[data-md-color-primary=white] .md-search__input::-ms-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-color-primary=white] .md-search__input::placeholder{color:var(--md-default-fg-color--light)}[data-md-color-primary=white] .md-search__input:hover{background-color:var(--md-default-fg-color--lighter)}}@media screen and (max-width: 76.1875em){html [data-md-color-primary=white] .md-nav--primary .md-nav__title[for=__drawer]{color:var(--md-default-fg-color);background-color:var(--md-default-bg-color)}[data-md-color-primary=white] .md-hero{border-bottom:.05rem solid var(--md-default-fg-color--lightest)}}@media screen and (min-width: 76.25em){[data-md-color-primary=white] .md-tabs{color:var(--md-default-fg-color);background-color:var(--md-default-bg-color);border-bottom:.05rem solid var(--md-default-fg-color--lightest)}}[data-md-color-primary=black]{--md-primary-fg-color: hsla(231deg, 48%, 48%, 1);--md-primary-fg-color--light: hsla(230deg, 44%, 64%, 1);--md-primary-fg-color--dark: hsla(232deg, 54%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-primary=black] .md-header{background-color:#000}[data-md-color-primary=black] .md-hero{background-color:#000}@media screen and (max-width: 59.9375em){[data-md-color-primary=black] .md-nav__source{background-color:var(--md-default-fg-color)}}@media screen and (min-width: 60em){[data-md-color-primary=black] .md-search__input{background-color:var(--md-default-bg-color--lighter)}[data-md-color-primary=black] .md-search__input:hover{background-color:var(--md-default-bg-color--lightest)}}@media screen and (max-width: 76.1875em){html [data-md-color-primary=black] .md-nav--primary .md-nav__title[for=__drawer]{background-color:#000}}@media screen and (min-width: 76.25em){[data-md-color-primary=black] .md-tabs{background-color:#000}}[data-md-color-accent=red]{--md-accent-fg-color: hsla(348deg, 100%, 55%, 1);--md-accent-fg-color--transparent: hsla(348deg, 100%, 55%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=pink]{--md-accent-fg-color: hsla(339deg, 100%, 48%, 1);--md-accent-fg-color--transparent: hsla(339deg, 100%, 48%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=purple]{--md-accent-fg-color: hsla(291deg, 96%, 62%, 1);--md-accent-fg-color--transparent: hsla(291deg, 96%, 62%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=deep-purple]{--md-accent-fg-color: hsla(256deg, 100%, 65%, 1);--md-accent-fg-color--transparent: hsla(256deg, 100%, 65%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=indigo]{--md-accent-fg-color: hsla(231deg, 99%, 66%, 1);--md-accent-fg-color--transparent: hsla(231deg, 99%, 66%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=blue]{--md-accent-fg-color: hsla(218deg, 100%, 63%, 1);--md-accent-fg-color--transparent: hsla(218deg, 100%, 63%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=light-blue]{--md-accent-fg-color: hsla(203deg, 100%, 46%, 1);--md-accent-fg-color--transparent: hsla(203deg, 100%, 46%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=cyan]{--md-accent-fg-color: hsla(188deg, 100%, 42%, 1);--md-accent-fg-color--transparent: hsla(188deg, 100%, 42%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=teal]{--md-accent-fg-color: hsla(172deg, 100%, 37%, 1);--md-accent-fg-color--transparent: hsla(172deg, 100%, 37%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=green]{--md-accent-fg-color: hsla(145deg, 100%, 39%, 1);--md-accent-fg-color--transparent: hsla(145deg, 100%, 39%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=light-green]{--md-accent-fg-color: hsla(97deg, 81%, 48%, 1);--md-accent-fg-color--transparent: hsla(97deg, 81%, 48%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)}[data-md-color-accent=lime]{--md-accent-fg-color: hsla(75deg, 100%, 46%, 1);--md-accent-fg-color--transparent: hsla(75deg, 100%, 46%, 0.1);--md-accent-bg-color: var(--md-default-fg-color);--md-accent-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-accent=yellow]{--md-accent-fg-color: hsla(50deg, 100%, 50%, 1);--md-accent-fg-color--transparent: hsla(50deg, 100%, 50%, 0.1);--md-accent-bg-color: var(--md-default-fg-color);--md-accent-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-accent=amber]{--md-accent-fg-color: hsla(40deg, 100%, 50%, 1);--md-accent-fg-color--transparent: hsla(40deg, 100%, 50%, 0.1);--md-accent-bg-color: var(--md-default-fg-color);--md-accent-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-accent=orange]{--md-accent-fg-color: hsla(34deg, 100%, 50%, 1);--md-accent-fg-color--transparent: hsla(34deg, 100%, 50%, 0.1);--md-accent-bg-color: var(--md-default-fg-color);--md-accent-bg-color--light: var(--md-default-fg-color--light)}[data-md-color-accent=deep-orange]{--md-accent-fg-color: hsla(14deg, 100%, 63%, 1);--md-accent-fg-color--transparent: hsla(14deg, 100%, 63%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light)} + +/*# sourceMappingURL=palette.c929de0b.min.css.map*/ \ No newline at end of file diff --git a/docs/material/assets/stylesheets/palette.c929de0b.min.css.map b/docs/material/assets/stylesheets/palette.c929de0b.min.css.map new file mode 100644 index 000000000..dec02648e --- /dev/null +++ b/docs/material/assets/stylesheets/palette.c929de0b.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["webpack:///./src/assets/stylesheets/palette.scss","webpack:///./src/assets/stylesheets/utilities/_break.scss"],"names":[],"mappings":"AAiEE,4BACE,+CACA,sDACA,qDAOE,kDACA,gEAXJ,6BACE,iDACA,wDACA,uDAOE,kDACA,gEAXJ,+BACE,iDACA,wDACA,uDAOE,kDACA,gEAXJ,oCACE,iDACA,wDACA,uDAOE,kDACA,gEAXJ,+BACE,iDACA,wDACA,uDAOE,kDACA,gEAXJ,6BACE,iDACA,wDACA,uDAOE,kDACA,gEAXJ,mCACE,iDACA,wDACA,uDAOE,kDACA,gEAXJ,6BACE,kDACA,wDACA,wDAOE,kDACA,gEAXJ,6BACE,kDACA,wDACA,wDAOE,kDACA,gEAXJ,8BACE,iDACA,wDACA,uDAOE,kDACA,gEAXJ,oCACE,gDACA,uDACA,sDAOE,kDACA,gEAXJ,6BACE,gDACA,uDACA,sDAIE,kDACA,gEARJ,+BACE,iDACA,wDACA,sDAIE,kDACA,gEARJ,8BACE,iDACA,wDACA,uDAIE,kDACA,gEARJ,+BACE,iDACA,wDACA,uDAIE,kDACA,gEARJ,oCACE,iDACA,wDACA,sDAOE,kDACA,gEAXJ,8BACE,gDACA,uDACA,sDAOE,kDACA,gEAXJ,6BACE,8CACA,qDACA,oDAOE,kDACA,gEAXJ,kCACE,iDACA,wDACA,uDAOE,kDACA,gEAUN,8BACE,iDACA,wDACA,uDACA,kDACA,gEAGA,yCACE,iCACA,4CAIF,uCACE,iCACA,4CAGA,+CACE,gECmGF,yCD3FA,8CACE,iCACA,uDCuEF,oCD/DA,gDACE,sDAGA,iEACE,iCAIF,2EACE,wCADF,kEACE,wCADF,uEACE,wCADF,6DACE,wCAIF,sDACE,sDCkEJ,yCDzDA,iFACE,iCACA,4CAIF,uCACE,iECgCF,uCDxBA,uCACE,iCACA,4CACA,iEAUN,8BACE,iDACA,wDACA,uDACA,kDACA,gEAGA,yCACE,sBAIF,uCACE,sBCeA,yCDRA,8CACE,6CCXF,oCDmBA,gDACE,qDAGA,sDACE,uDCNJ,yCDeA,iFACE,uBClCF,uCD0CA,uCACE,uBA6BJ,2BACE,iDACA,gEAOE,iDACA,+DAVJ,4BACE,iDACA,gEAOE,iDACA,+DAVJ,8BACE,gDACA,+DAOE,iDACA,+DAVJ,mCACE,iDACA,gEAOE,iDACA,+DAVJ,8BACE,gDACA,+DAOE,iDACA,+DAVJ,4BACE,iDACA,gEAOE,iDACA,+DAVJ,kCACE,iDACA,gEAOE,iDACA,+DAVJ,4BACE,iDACA,gEAOE,iDACA,+DAVJ,4BACE,iDACA,gEAOE,iDACA,+DAVJ,6BACE,iDACA,gEAOE,iDACA,+DAVJ,mCACE,+CACA,8DAOE,iDACA,+DAVJ,4BACE,gDACA,+DAIE,iDACA,+DAPJ,8BACE,gDACA,+DAIE,iDACA,+DAPJ,6BACE,gDACA,+DAIE,iDACA,+DAPJ,8BACE,gDACA,+DAIE,iDACA,+DAPJ,mCACE,gDACA,+DAOE,iDACA,+D","file":"assets/stylesheets/palette.c929de0b.min.css","sourcesContent":["////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Dependencies\n// ----------------------------------------------------------------------------\n\n@import \"modularscale\";\n@import \"material-color\";\n\n// ----------------------------------------------------------------------------\n// Local imports\n// ----------------------------------------------------------------------------\n\n@import \"utilities/break\";\n@import \"utilities/convert\";\n\n@import \"config\";\n\n// ----------------------------------------------------------------------------\n// Rules: primary colors\n// ----------------------------------------------------------------------------\n\n@each $name, $colors in (\n \"red\": $clr-red-400 $clr-red-200 $clr-red-600,\n \"pink\": $clr-pink-500 $clr-pink-200 $clr-pink-700,\n \"purple\": $clr-purple-400 $clr-purple-200 $clr-purple-600,\n \"deep-purple\": $clr-deep-purple-400 $clr-deep-purple-200 $clr-deep-purple-500,\n \"indigo\": $clr-indigo-500 $clr-indigo-200 $clr-indigo-700,\n \"blue\": $clr-blue-500 $clr-blue-200 $clr-blue-700,\n \"light-blue\": $clr-light-blue-500 $clr-light-blue-200 $clr-light-blue-700,\n \"cyan\": $clr-cyan-500 $clr-cyan-200 $clr-cyan-700,\n \"teal\": $clr-teal-500 $clr-teal-200 $clr-teal-700,\n \"green\": $clr-green-500 $clr-green-200 $clr-green-700,\n \"light-green\": $clr-light-green-500 $clr-light-green-200 $clr-light-green-700,\n \"lime\": $clr-lime-500 $clr-lime-200 $clr-lime-700,\n \"yellow\": $clr-yellow-500 $clr-yellow-200 $clr-yellow-700,\n \"amber\": $clr-amber-500 $clr-amber-200 $clr-amber-700,\n \"orange\": $clr-orange-400 $clr-orange-200 $clr-orange-600,\n \"deep-orange\": $clr-deep-orange-400 $clr-deep-orange-200 $clr-deep-orange-600,\n \"brown\": $clr-brown-500 $clr-brown-200 $clr-brown-700,\n \"grey\": $clr-grey-600 $clr-grey-200 $clr-grey-700,\n \"blue-grey\": $clr-blue-grey-600 $clr-blue-grey-200 $clr-blue-grey-700\n) {\n\n // Color palette\n [data-md-color-primary=\"#{$name}\"] {\n --md-primary-fg-color: hsla(#{hex2hsl(nth($colors, 1))}, 1);\n --md-primary-fg-color--light: hsla(#{hex2hsl(nth($colors, 2))}, 1);\n --md-primary-fg-color--dark: hsla(#{hex2hsl(nth($colors, 3))}, 1);\n\n // Inverted text for lighter shades\n @if index(\"lime\" \"yellow\" \"amber\" \"orange\", $name) {\n --md-primary-bg-color: var(--md-default-fg-color);\n --md-primary-bg-color--light: var(--md-default-fg-color--light);\n } @else {\n --md-primary-bg-color: var(--md-default-bg-color);\n --md-primary-bg-color--light: var(--md-default-bg-color--light);\n }\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules: white\n// ----------------------------------------------------------------------------\n\n// Color palette\n[data-md-color-primary=\"white\"] {\n --md-primary-fg-color: hsla(#{hex2hsl($clr-indigo-500)}, 1);\n --md-primary-fg-color--light: hsla(#{hex2hsl($clr-indigo-300)}, 1);\n --md-primary-fg-color--dark: hsla(#{hex2hsl($clr-indigo-700)}, 1);\n --md-primary-bg-color: var(--md-default-bg-color);\n --md-primary-bg-color--light: var(--md-default-bg-color--light);\n\n // Application header (stays always on top)\n .md-header {\n color: var(--md-default-fg-color);\n background-color: var(--md-default-bg-color);\n }\n\n // Hero teaser\n .md-hero {\n color: var(--md-default-fg-color);\n background-color: var(--md-default-bg-color);\n\n // Add a border if there are no tabs\n &--expand {\n border-bottom: px2rem(1px) solid var(--md-default-fg-color--lightest);\n }\n }\n\n // [tablet portrait -]: Layered navigation\n @include break-to-device(tablet portrait) {\n\n // Repository containing source\n .md-nav__source {\n color: var(--md-default-fg-color);\n background-color: var(--md-default-fg-color--lightest);\n }\n }\n\n // [tablet portrait +]: Change color of search input\n @include break-from-device(tablet landscape) {\n\n // Search input\n .md-search__input {\n background-color: var(--md-default-fg-color--lightest);\n\n // Icon color\n + .md-search__icon {\n color: var(--md-default-fg-color);\n }\n\n // Placeholder color\n &::placeholder {\n color: var(--md-default-fg-color--light);\n }\n\n // Hovered search field\n &:hover {\n background-color: var(--md-default-fg-color--lighter);\n }\n }\n }\n\n // [tablet -]: Layered navigation\n @include break-to-device(tablet) {\n\n // Site title in main navigation\n html & .md-nav--primary .md-nav__title[for=\"__drawer\"] {\n color: var(--md-default-fg-color);\n background-color: var(--md-default-bg-color);\n }\n\n // Hero teaser\n .md-hero {\n border-bottom: px2rem(1px) solid var(--md-default-fg-color--lightest);\n }\n }\n\n // [screen +]: Set background color for tabs\n @include break-from-device(screen) {\n\n // Tabs with outline\n .md-tabs {\n color: var(--md-default-fg-color);\n background-color: var(--md-default-bg-color);\n border-bottom: px2rem(1px) solid var(--md-default-fg-color--lightest);\n }\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules: black\n// ----------------------------------------------------------------------------\n\n// Color palette\n[data-md-color-primary=\"black\"] {\n --md-primary-fg-color: hsla(#{hex2hsl($clr-indigo-500)}, 1);\n --md-primary-fg-color--light: hsla(#{hex2hsl($clr-indigo-300)}, 1);\n --md-primary-fg-color--dark: hsla(#{hex2hsl($clr-indigo-700)}, 1);\n --md-primary-bg-color: var(--md-default-bg-color);\n --md-primary-bg-color--light: var(--md-default-bg-color--light);\n\n // Application header (stays always on top)\n .md-header {\n background-color: hsla(0, 0%, 0%, 1);\n }\n\n // Hero teaser\n .md-hero {\n background-color: hsla(0, 0%, 0%, 1);\n }\n\n // [tablet portrait -]: Layered navigation\n @include break-to-device(tablet portrait) {\n\n // Repository containing source\n .md-nav__source {\n background-color: var(--md-default-fg-color);\n }\n }\n\n // [tablet landscape +]: Header-embedded search\n @include break-from-device(tablet landscape) {\n\n // Search input\n .md-search__input {\n background-color: var(--md-default-bg-color--lighter);\n\n // Hovered search field\n &:hover {\n background-color: var(--md-default-bg-color--lightest);\n }\n }\n }\n\n // [tablet -]: Layered navigation\n @include break-to-device(tablet) {\n\n // Site title in main navigation\n html & .md-nav--primary .md-nav__title[for=\"__drawer\"] {\n background-color: hsla(0, 0%, 0%, 1);\n }\n }\n\n // [screen +]: Set background color for tabs\n @include break-from-device(screen) {\n\n // Tabs with outline\n .md-tabs {\n background-color: hsla(0, 0%, 0%, 1);\n }\n }\n}\n\n// ----------------------------------------------------------------------------\n// Rules: accent colors\n// ----------------------------------------------------------------------------\n\n@each $name, $color in (\n \"red\": $clr-red-a400,\n \"pink\": $clr-pink-a400,\n \"purple\": $clr-purple-a200,\n \"deep-purple\": $clr-deep-purple-a200,\n \"indigo\": $clr-indigo-a200,\n \"blue\": $clr-blue-a200,\n \"light-blue\": $clr-light-blue-a700,\n \"cyan\": $clr-cyan-a700,\n \"teal\": $clr-teal-a700,\n \"green\": $clr-green-a700,\n \"light-green\": $clr-light-green-a700,\n \"lime\": $clr-lime-a700,\n \"yellow\": $clr-yellow-a700,\n \"amber\": $clr-amber-a700,\n \"orange\": $clr-orange-a400,\n \"deep-orange\": $clr-deep-orange-a200\n) {\n\n // Color palette\n [data-md-color-accent=\"#{$name}\"] {\n --md-accent-fg-color: hsla(#{hex2hsl($color)}, 1);\n --md-accent-fg-color--transparent: hsla(#{hex2hsl($color)}, 0.1);\n\n // Inverted text for lighter shades\n @if index(\"lime\" \"yellow\" \"amber\" \"orange\", $name) {\n --md-accent-bg-color: var(--md-default-fg-color);\n --md-accent-bg-color--light: var(--md-default-fg-color--light);\n } @else {\n --md-accent-bg-color: var(--md-default-bg-color);\n --md-accent-bg-color--light: var(--md-default-bg-color--light);\n }\n }\n}\n","////\n/// Copyright (c) 2016-2020 Martin Donath \n///\n/// Permission is hereby granted, free of charge, to any person obtaining a\n/// copy of this software and associated documentation files (the \"Software\"),\n/// to deal in the Software without restriction, including without limitation\n/// the rights to use, copy, modify, merge, publish, distribute, sublicense,\n/// and/or sell copies of the Software, and to permit persons to whom the\n/// Software is furnished to do so, subject to the following conditions:\n///\n/// The above copyright notice and this permission notice shall be included in\n/// all copies or substantial portions of the Software.\n///\n/// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n/// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL\n/// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n/// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n/// DEALINGS\n////\n\n// ----------------------------------------------------------------------------\n// Variables\n// ----------------------------------------------------------------------------\n\n///\n/// Device-specific breakpoints\n///\n/// @example\n/// $break-devices: (\n/// mobile: (\n/// portrait: 220px 479px,\n/// landscape: 480px 719px\n/// ),\n/// tablet: (\n/// portrait: 720px 959px,\n/// landscape: 960px 1219px\n/// ),\n/// screen: (\n/// small: 1220px 1599px,\n/// medium: 1600px 1999px,\n/// large: 2000px\n/// )\n/// );\n///\n$break-devices: () !default;\n\n// ----------------------------------------------------------------------------\n// Helpers\n// ----------------------------------------------------------------------------\n\n///\n/// Choose minimum and maximum device widths\n///\n@function break-select-min-max($devices) {\n $min: 1000000;\n $max: 0;\n @each $key, $value in $devices {\n @while type-of($value) == map {\n $value: break-select-min-max($value);\n }\n @if type-of($value) == list {\n @each $number in $value {\n @if type-of($number) == number {\n $min: min($number, $min);\n @if $max != null {\n $max: max($number, $max);\n }\n } @else {\n @error \"Invalid number: #{$number}\";\n }\n }\n } @else if type-of($value) == number {\n $min: min($value, $min);\n $max: null;\n } @else {\n @error \"Invalid value: #{$value}\";\n }\n }\n @return $min, $max;\n}\n\n///\n/// Select minimum and maximum widths for a device breakpoint\n///\n@function break-select-device($device) {\n $current: $break-devices;\n @for $n from 1 through length($device) {\n @if type-of($current) == map {\n $current: map-get($current, nth($device, $n));\n } @else {\n @error \"Invalid device map: #{$devices}\";\n }\n }\n @if type-of($current) == list or type-of($current) == number {\n $current: (default: $current);\n }\n @return break-select-min-max($current);\n}\n\n// ----------------------------------------------------------------------------\n// Mixins\n// ----------------------------------------------------------------------------\n\n///\n/// A minimum-maximum media query breakpoint\n///\n@mixin break-at($breakpoint) {\n @if type-of($breakpoint) == number {\n @media screen and (min-width: $breakpoint) {\n @content;\n }\n } @else if type-of($breakpoint) == list {\n $min: nth($breakpoint, 1);\n $max: nth($breakpoint, 2);\n @if type-of($min) == number and type-of($max) == number {\n @media screen and (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n}\n\n///\n/// An orientation media query breakpoint\n///\n@mixin break-at-orientation($breakpoint) {\n @if type-of($breakpoint) == string {\n @media screen and (orientation: $breakpoint) {\n @content;\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n}\n\n///\n/// A maximum-aspect-ratio media query breakpoint\n///\n@mixin break-at-ratio($breakpoint) {\n @if type-of($breakpoint) == number {\n @media screen and (max-aspect-ratio: $breakpoint) {\n @content;\n }\n } @else {\n @error \"Invalid breakpoint: #{$breakpoint}\";\n }\n}\n\n///\n/// A minimum-maximum media query device breakpoint\n///\n@mixin break-at-device($device) {\n @if type-of($device) == string {\n $device: $device,;\n }\n @if type-of($device) == list {\n $breakpoint: break-select-device($device);\n @if nth($breakpoint, 2) != null {\n $min: nth($breakpoint, 1);\n $max: nth($breakpoint, 2);\n @media screen and (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n}\n\n///\n/// A minimum media query device breakpoint\n///\n@mixin break-from-device($device) {\n @if type-of($device) == string {\n $device: $device,;\n }\n @if type-of($device) == list {\n $breakpoint: break-select-device($device);\n $min: nth($breakpoint, 1);\n @media screen and (min-width: $min) {\n @content;\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n}\n\n///\n/// A maximum media query device breakpoint\n///\n@mixin break-to-device($device) {\n @if type-of($device) == string {\n $device: $device,;\n }\n @if type-of($device) == list {\n $breakpoint: break-select-device($device);\n $max: nth($breakpoint, 2);\n @media screen and (max-width: $max) {\n @content;\n }\n } @else {\n @error \"Invalid device: #{$device}\";\n }\n}\n"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/material/base.html b/docs/material/base.html new file mode 100644 index 000000000..976821032 --- /dev/null +++ b/docs/material/base.html @@ -0,0 +1,213 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} +{% set palette = config.theme.palette %} +{% set font = config.theme.font %} + + + + {% block site_meta %} + + + {% if page and page.meta and page.meta.description %} + + {% elif config.site_description %} + + {% endif %} + {% if page and page.meta and page.meta.redirect %} + + + + + {% elif page.canonical_url %} + + {% endif %} + {% if page and page.meta and page.meta.author %} + + {% elif config.site_author %} + + {% endif %} + + + {% endblock %} + {% block htmltitle %} + {% if page and page.title and not page.is_homepage %} + {{ page.title | striptags }} - {{ config.site_name }} + {% else %} + {{ config.site_name }} + {% endif %} + {% endblock %} + {% block styles %} + + {% if palette.primary or palette.accent %} + + {% endif %} + {% if palette.primary %} + {% import "partials/palette.html" as map %} + {% set primary = map.primary( + palette.primary | replace(" ", "-") | lower + ) %} + + {% endif %} + {% endblock %} + {% block libs %}{% endblock %} + {% block fonts %} + {% if font != false %} + + + + {% endif %} + {% endblock %} + {% if config.extra.manifest %} + + {% endif %} + {% for path in config["extra_css"] %} + + {% endfor %} + {% block analytics %} + {% if config.google_analytics %} + {% include "partials/integrations/analytics.html" %} + {% endif %} + {% endblock %} + {% block extrahead %}{% endblock %} + + {% set direction = config.theme.direction or lang.t('direction') %} + {% if palette.primary or palette.accent %} + {% set primary = palette.primary | replace(" ", "-") | lower %} + {% set accent = palette.accent | replace(" ", "-") | lower %} + + {% else %} + + {% endif %} + + + +
    + {% if page.toc | first is defined %} + {% set skip = page.toc | first %} + + {{ lang.t('skip.link.title') }} + + {% endif %} +
    +
    + {% if self.announce() %} + + {% endif %} +
    + {% block header %} + {% include "partials/header.html" %} + {% endblock %} +
    + {% block hero %} + {% if page and page.meta and page.meta.hero %} + {% include "partials/hero.html" with context %} + {% endif %} + {% endblock %} + {% block tabs %} + {% if "tabs" in config.theme.features %} + {% include "partials/tabs.html" %} + {% endif %} + {% endblock %} +
    +
    + {% block site_nav %} + {% if nav %} +
    +
    +
    + {% include "partials/nav.html" %} +
    +
    +
    + {% endif %} + {% if page.toc %} +
    +
    +
    + {% include "partials/toc.html" %} +
    +
    +
    + {% endif %} + {% endblock %} +
    +
    + {% block content %} + {% if page.edit_url %} + + {% include ".icons/material/pencil.svg" %} + + {% endif %} + {% block source %} + {% if page and page.meta and page.meta.source %} + {% include "partials/source-link.html" %} + {% endif %} + {% endblock %} + {% if not "\x3ch1" in page.content %} +

    {{ page.title | default(config.site_name, true)}}

    + {% endif %} + {{ page.content }} + {% if page and page.meta %} + {% if page.meta.git_revision_date_localized or + page.meta.revision_date + %} + {% include "partials/source-date.html" %} + {% endif %} + {% endif %} + {% endblock %} + {% block disqus %} + {% include "partials/integrations/disqus.html" %} + {% endblock %} +
    +
    +
    +
    + {% block footer %} + {% include "partials/footer.html" %} + {% endblock %} +
    + {% block scripts %} + + + {%- set translations = {} -%} + {%- for key in [ + "clipboard.copy", + "clipboard.copied", + "search.config.lang", + "search.config.pipeline", + "search.config.separator", + "search.result.placeholder", + "search.result.none", + "search.result.one", + "search.result.other" + ] -%} + {%- set _ = translations.update({ key: lang.t(key) }) -%} + {%- endfor -%} + + {% block config %}{% endblock %} + + {% for path in config["extra_javascript"] %} + + {% endfor %} + {% endblock %} + + diff --git a/docs/material/base.html.bak b/docs/material/base.html.bak new file mode 100644 index 000000000..873349e66 --- /dev/null +++ b/docs/material/base.html.bak @@ -0,0 +1,215 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} +{% set palette = config.theme.palette %} +{% set font = config.theme.font %} + + + + {% block site_meta %} + + + {% if page and page.meta and page.meta.description %} + + {% elif config.site_description %} + + {% endif %} + {% if page and page.meta and page.meta.redirect %} + + + + + {% elif page.canonical_url %} + + {% endif %} + {% if page and page.meta and page.meta.author %} + + {% elif config.site_author %} + + {% endif %} + + + {% endblock %} + {% block htmltitle %} + {% if page and page.meta and page.meta.title %} + {{ page.meta.title }} + {% elif page and page.title and not page.is_homepage %} + {{ page.title | striptags }} - {{ config.site_name }} + {% else %} + {{ config.site_name }} + {% endif %} + {% endblock %} + {% block styles %} + + {% if palette.primary or palette.accent %} + + {% endif %} + {% if palette.primary %} + {% import "partials/palette.html" as map %} + {% set primary = map.primary( + palette.primary | replace(" ", "-") | lower + ) %} + + {% endif %} + {% endblock %} + {% block libs %}{% endblock %} + {% block fonts %} + {% if font != false %} + + + + {% endif %} + {% endblock %} + {% if config.extra.manifest %} + + {% endif %} + {% for path in config["extra_css"] %} + + {% endfor %} + {% block analytics %} + {% if config.google_analytics %} + {% include "partials/integrations/analytics.html" %} + {% endif %} + {% endblock %} + {% block extrahead %}{% endblock %} + + {% set direction = config.theme.direction or lang.t('direction') %} + {% if palette.primary or palette.accent %} + {% set primary = palette.primary | replace(" ", "-") | lower %} + {% set accent = palette.accent | replace(" ", "-") | lower %} + + {% else %} + + {% endif %} + + + +
    + {% if page.toc | first is defined %} + {% set skip = page.toc | first %} + + {{ lang.t('skip.link.title') }} + + {% endif %} +
    +
    + {% if self.announce() %} + + {% endif %} +
    + {% block header %} + {% include "partials/header.html" %} + {% endblock %} +
    + {% block hero %} + {% if page and page.meta and page.meta.hero %} + {% include "partials/hero.html" with context %} + {% endif %} + {% endblock %} + {% block tabs %} + {% if "tabs" in config.theme.features %} + {% include "partials/tabs.html" %} + {% endif %} + {% endblock %} +
    +
    + {% block site_nav %} + {% if nav %} +
    +
    +
    + {% include "partials/nav.html" %} +
    +
    +
    + {% endif %} + {% if page.toc %} +
    +
    +
    + {% include "partials/toc.html" %} +
    +
    +
    + {% endif %} + {% endblock %} +
    +
    + {% block content %} + {% if page.edit_url %} + + {% include ".icons/material/pencil.svg" %} + + {% endif %} + {% block source %} + {% if page and page.meta and page.meta.source %} + {% include "partials/source-link.html" %} + {% endif %} + {% endblock %} + {% if not "\x3ch1" in page.content %} +

    {{ page.title | default(config.site_name, true)}}

    + {% endif %} + {{ page.content }} + {% if page and page.meta %} + {% if page.meta.git_revision_date_localized or + page.meta.revision_date + %} + {% include "partials/source-date.html" %} + {% endif %} + {% endif %} + {% endblock %} + {% block disqus %} + {% include "partials/integrations/disqus.html" %} + {% endblock %} +
    +
    +
    +
    + {% block footer %} + {% include "partials/footer.html" %} + {% endblock %} +
    + {% block scripts %} + + + {%- set translations = {} -%} + {%- for key in [ + "clipboard.copy", + "clipboard.copied", + "search.config.lang", + "search.config.pipeline", + "search.config.separator", + "search.result.placeholder", + "search.result.none", + "search.result.one", + "search.result.other" + ] -%} + {%- set _ = translations.update({ key: lang.t(key) }) -%} + {%- endfor -%} + + {% block config %}{% endblock %} + + {% for path in config["extra_javascript"] %} + + {% endfor %} + {% endblock %} + + diff --git a/docs/material/main.html b/docs/material/main.html new file mode 100644 index 000000000..094a197b0 --- /dev/null +++ b/docs/material/main.html @@ -0,0 +1,4 @@ +{#- + This file was automatically generated - do not edit +-#} +{% extends "base.html" %} diff --git a/docs/material/mkdocs_theme.yml b/docs/material/mkdocs_theme.yml new file mode 100644 index 000000000..c60c657bd --- /dev/null +++ b/docs/material/mkdocs_theme.yml @@ -0,0 +1,68 @@ +# Copyright (c) 2016-2020 Martin Donath + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +# Language for theme localization +language: en + +# Text direction (can be ltr or rtl), default: ltr +direction: + +# Feature flags for functionality that alters behavior significantly, and thus +# may be a matter of taste +features: [] + +# Sets the primary and accent color palettes as defined in the Material Design +# documentation - possible values can be looked up in the getting started guide +palette: + + # Primary color used for header, sidebar and links, default: indigo + primary: + + # Accent color for highlighting user interaction, default: indigo + accent: + +# Fonts used by Material, automatically loaded from Google Fonts - see the site +# for a list of available fonts +font: + + # Default font for text + text: Roboto + + # Fixed-width font for code listings + code: Roboto Mono + +# From Material 5.x on, icons are inlined into the HTML and CSS as SVGs. Some +# icons that are part of the HTML can be configured and replaced +icon: + +# Favicon to be rendered +favicon: assets/images/favicon.png + +# Material includes the search in the header as a partial, not as a separate +# template, so it's correct that search.html is missing +include_search_page: false + +# Material doesn't use MkDocs search functionality but provides its own. For +# this reason, only the search index needs to be built +search_index_only: true + +# Static pages to build +static_templates: + - 404.html diff --git a/docs/material/overrides/home.html b/docs/material/overrides/home.html new file mode 100644 index 000000000..6a6f2b48c --- /dev/null +++ b/docs/material/overrides/home.html @@ -0,0 +1,66 @@ +{#- + This file was automatically generated - do not edit +-#} +{% extends "overrides/main.html" %} +{% block tabs %} + {{ super() }} + +
    +
    +
    +
    +

    BFE

    +

    {{ config.site_description }}

    + + Get started + + + Go to GitHub + +
    +
    +
    + + +
    +
    +
    +
    +

    Flexible plugin framework

    +

    BFE has a builtin plugin framework that makes it possible to develop new features rapidly by writing plugins.

    +
    +
    +

    Multi-tenancy architecture

    +

    BFE is designed to provide every tenant a dedicated share of the instance. Each tenant’s configuration is isolated and remains invisible to other tenants.

    +
    +
    +

    Multiple protocols

    +

    BFE supports HTTP, HTTPS, SPDY, HTTP2, WebSocket, TLS, etc. Future support is planned for gRPC and HTTP/3.

    +
    +
    +

    Content based routing

    +

    BFE provides an [advanced domain-specific language](../condition/condition_grammar.md) to describe routing rules which are easy to understand and maintain.

    +
    +
    +
    +
    +

    Advanced load balancing

    +

    BFE supports global load balancing and distributed load balancing for zone aware balancing, zone level failure resilience, overload protection etc.

    +
    +
    +

    Many builtin plugins

    +

    BFE provides a rich set of plugins for traffic management, security, observability, etc.

    +
    +
    +

    Best-in-class observability

    +

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs(server log/access log/TLS key log) for trouble shooting, data analysis and visualization. BFE also supports distributed tracing.

    +
    +
    +

    Easily integrated

    +

    BFE is easily integrated with mainstream layer 4 load balancing solution, and other ecosystem projects(e.g. Kubernetes、Prometheus、Jaeger、Fluentd etc).

    +
    +
    +
    +{% endblock %} +{% block content %}{% endblock %} +{% block footer %}{% endblock %} diff --git a/docs/material/overrides/main.html b/docs/material/overrides/main.html new file mode 100644 index 000000000..570496f4c --- /dev/null +++ b/docs/material/overrides/main.html @@ -0,0 +1,25 @@ +{#- + This file was automatically generated - do not edit +-#} +{% extends "base.html" %} +{% block extrahead %} + {% set title = "BFE" %} + {% if page and page.title and not page.is_homepage %} + {% set title = config.site_name ~ " - " ~ page.title | striptags %} + {% endif %} + {% set image = config.site_url ~ 'assets/images/banner.png' %} + + + + + + + + + + + + + + +{% endblock %} diff --git a/docs/material/partials/footer.html b/docs/material/partials/footer.html new file mode 100644 index 000000000..728ccec9b --- /dev/null +++ b/docs/material/partials/footer.html @@ -0,0 +1,58 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} + diff --git a/docs/material/partials/header.html b/docs/material/partials/header.html new file mode 100644 index 000000000..cbf782e47 --- /dev/null +++ b/docs/material/partials/header.html @@ -0,0 +1,44 @@ +{#- + This file was automatically generated - do not edit +-#} +
    + +
    diff --git a/docs/material/partials/hero.html b/docs/material/partials/hero.html new file mode 100644 index 000000000..2c244e18b --- /dev/null +++ b/docs/material/partials/hero.html @@ -0,0 +1,12 @@ +{#- + This file was automatically generated - do not edit +-#} +{% set class = "md-hero" %} +{% if "tabs" not in config.theme.features %} + {% set class = "md-hero md-hero--expand" %} +{% endif %} +
    +
    + {{ page.meta.hero }} +
    +
    diff --git a/docs/material/partials/integrations/analytics.html b/docs/material/partials/integrations/analytics.html new file mode 100644 index 000000000..93104538b --- /dev/null +++ b/docs/material/partials/integrations/analytics.html @@ -0,0 +1,7 @@ +{#- + This file was automatically generated - do not edit +-#} +{% set analytics = config.google_analytics %} + + + diff --git a/docs/material/partials/integrations/disqus.html b/docs/material/partials/integrations/disqus.html new file mode 100644 index 000000000..b6460de5a --- /dev/null +++ b/docs/material/partials/integrations/disqus.html @@ -0,0 +1,12 @@ +{#- + This file was automatically generated - do not edit +-#} +{% set disqus = config.extra.disqus %} +{% if page and page.meta and page.meta.disqus is string %} + {% set disqus = page.meta.disqus %} +{% endif %} +{% if not page.is_homepage and disqus %} +

    {{ lang.t("meta.comments") }}

    +
    + +{% endif %} diff --git a/docs/material/partials/language.html b/docs/material/partials/language.html new file mode 100644 index 000000000..7366121f9 --- /dev/null +++ b/docs/material/partials/language.html @@ -0,0 +1,6 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language/" + config.theme.language + ".html" as lang %} +{% import "partials/language/en.html" as fallback %} +{% macro t(key) %}{{ lang.t(key) or fallback.t(key) }}{% endmacro %} diff --git a/docs/material/partials/language/af.html b/docs/material/partials/language/af.html new file mode 100644 index 000000000..a625cd4b7 --- /dev/null +++ b/docs/material/partials/language/af.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "af", + "clipboard.copy": "Kopieer na knipbord", + "clipboard.copied": "gekopieer na knipbord", + "edit.link.title": "Wysig hierdie bladsy", + "footer.previous": "Vorige", + "footer.next": "Volgende", + "meta.comments": "Kommentaar", + "meta.source": "Bron", + "search.config.lang": "nl", + "search.placeholder": "Soek", + "search.result.placeholder": "Tik om te begin soek", + "search.result.none": "Geen ooreenstemmende dokumente", + "search.result.one": "1 ooreenstemmende dokument", + "search.result.other": "# ooreenstemmende dokumente", + "skip.link.title": "Slaan oor na inhoud", + "source.link.title": "Slaan oor na inhoud", + "source.revision.date": "Laaste opdatering", + "toc.title": "Inhoudsopgawe" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/ar.html b/docs/material/partials/language/ar.html new file mode 100644 index 000000000..777c82dad --- /dev/null +++ b/docs/material/partials/language/ar.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "ar", + "direction": "rtl", + "clipboard.copy": "نسخ إلى الحافظة", + "clipboard.copied": "تم النسخ الى الحافظة", + "edit.link.title": "عدل الصفحة", + "footer.previous": "السابقة", + "footer.next": "التالية", + "meta.comments": "التعليقات", + "meta.source": "المصدر", + "search.config.pipeline": "", + "search.placeholder": "بحث", + "search.result.placeholder": "اكتب لبدء البحث", + "search.result.none": "لا توجد نتائج", + "search.result.one": "نتائج البحث مستند واحد", + "search.result.other": "نتائج البحث # مستندات", + "skip.link.title": "انتقل إلى المحتوى", + "source.link.title": "اذهب إلى المصدر", + "source.revision.date": "اخر تحديث", + "toc.title": "جدول المحتويات" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/ca.html b/docs/material/partials/language/ca.html new file mode 100644 index 000000000..d0ed166e6 --- /dev/null +++ b/docs/material/partials/language/ca.html @@ -0,0 +1,22 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "ca", + "clipboard.copy": "Còpia al porta-retalls", + "clipboard.copied": "Copiat al porta-retalls", + "edit.link.title": "Edita aquesta pàgina", + "footer.previous": "Anterior", + "footer.next": "Següent", + "meta.comments": "Comentaris", + "meta.source": "Codi font", + "search.placeholder": "Cerca", + "search.result.placeholder": "Escriu per a començar a cercar", + "search.result.none": "Cap document coincideix", + "search.result.one": "1 document coincident", + "search.result.other": "# documents coincidents", + "skip.link.title": "Salta el contingut", + "source.link.title": "Ves al repositori", + "source.revision.date": "Darrera actualització", + "toc.title": "Taula de continguts" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/cs.html b/docs/material/partials/language/cs.html new file mode 100644 index 000000000..013b40627 --- /dev/null +++ b/docs/material/partials/language/cs.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "cs", + "clipboard.copy": "Kopírovat do schránky", + "clipboard.copied": "Zkopírováno do schránky", + "edit.link.title": "Upravit tuto stránku", + "footer.previous": "Předchozí", + "footer.next": "Další", + "meta.comments": "Komentáře", + "meta.source": "Zdroj", + "search.config.lang": "ro", + "search.placeholder": "Hledat", + "search.result.placeholder": "Pište co se má vyhledat", + "search.result.none": "Nenalezeny žádné dokumenty", + "search.result.one": "Nalezený dokument: 1", + "search.result.other": "Nalezené dokumenty: #", + "skip.link.title": "Přeskočit obsah", + "source.link.title": "Přejít do repozitáře", + "source.revision.date": "Poslední aktualizace", + "toc.title": "Obsah" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/da.html b/docs/material/partials/language/da.html new file mode 100644 index 000000000..d98ff5530 --- /dev/null +++ b/docs/material/partials/language/da.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "da", + "clipboard.copy": "Kopiér til udklipsholderen", + "clipboard.copied": "Kopieret til udklipsholderen", + "edit.link.title": "Redigér denne side", + "footer.previous": "Forrige", + "footer.next": "Næste", + "meta.comments": "Kommentarer", + "meta.source": "Kilde", + "search.config.lang": "da", + "search.placeholder": "Søg", + "search.result.placeholder": "Indtast søgeord", + "search.result.none": "Ingen resultater fundet", + "search.result.one": "1 resultat", + "search.result.other": "# resultater", + "skip.link.title": "Gå til indholdet", + "source.link.title": "Åbn arkiv", + "source.revision.date": "Sidste ændring", + "toc.title": "Indholdsfortegnelse" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/de.html b/docs/material/partials/language/de.html new file mode 100644 index 000000000..8c4590b14 --- /dev/null +++ b/docs/material/partials/language/de.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "de", + "clipboard.copy": "In Zwischenablage kopieren", + "clipboard.copied": "In Zwischenablage kopiert", + "edit.link.title": "Seite editieren", + "footer.previous": "Zurück", + "footer.next": "Weiter", + "meta.comments": "Kommentare", + "meta.source": "Quellcode", + "search.config.lang": "de", + "search.placeholder": "Suche", + "search.result.initializer": "Suche wird initialisiert", + "search.result.placeholder": "Suchbegriff eingeben", + "search.result.none": "Keine Suchergebnisse", + "search.result.one": "1 Suchergebnis", + "search.result.other": "# Suchergebnisse", + "skip.link.title": "Zum Inhalt", + "source.link.title": "Quellcode", + "source.revision.date": "Letztes Update", + "toc.title": "Inhaltsverzeichnis" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/en.html b/docs/material/partials/language/en.html new file mode 100644 index 000000000..2c2958088 --- /dev/null +++ b/docs/material/partials/language/en.html @@ -0,0 +1,32 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "en", + "direction": "ltr", + "clipboard.copy": "Copy to clipboard", + "clipboard.copied": "Copied to clipboard", + "edit.link.title": "Edit this page", + "footer.previous": "Previous", + "footer.next": "Next", + "footer.title": "Footer", + "header.title": "Header", + "meta.comments": "Comments", + "meta.source": "Source", + "nav.title": "Navigation", + "search.config.lang": "en", + "search.config.pipeline": "trimmer, stopWordFilter", + "search.config.separator": "[\s\-]+", + "search.placeholder": "Search", + "search.reset": "Clear", + "search.result.initializer": "Initializing search", + "search.result.placeholder": "Type to start searching", + "search.result.none": "No matching documents", + "search.result.one": "1 matching document", + "search.result.other": "# matching documents", + "skip.link.title": "Skip to content", + "source.link.title": "Go to repository", + "source.revision.date": "Last update", + "tabs.title": "Tabs", + "toc.title": "Table of contents" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/es.html b/docs/material/partials/language/es.html new file mode 100644 index 000000000..11734226e --- /dev/null +++ b/docs/material/partials/language/es.html @@ -0,0 +1,28 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "es", + "clipboard.copy": "Copiar al portapapeles", + "clipboard.copied": "Copiado al portapapeles", + "edit.link.title": "Editar esta página", + "footer.previous": "Anterior", + "footer.next": "Siguiente", + "footer.title": "Pie", + "header.title": "Cabecera", + "meta.comments": "Comentarios", + "meta.source": "Fuente", + "nav.title": "Navegación", + "search.config.lang": "es", + "search.placeholder": "Búsqueda", + "search.reset": "Limpiar", + "search.result.placeholder": "Teclee para comenzar búsqueda", + "search.result.none": "No se encontraron documentos", + "search.result.one": "1 documento encontrado", + "search.result.other": "# documentos encontrados", + "skip.link.title": "Saltar a contenido", + "source.link.title": "Ir al repositorio", + "source.revision.date": "Última actualización", + "tabs.title": "Pestañas", + "toc.title": "Tabla de contenidos" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/et.html b/docs/material/partials/language/et.html new file mode 100644 index 000000000..47a1b218d --- /dev/null +++ b/docs/material/partials/language/et.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "et", + "clipboard.copy": "Kopeeri lõikelauale", + "clipboard.copied": "Kopeeritud", + "edit.link.title": "Muuda seda lehte", + "footer.previous": "Eelmine", + "footer.next": "Järgmine", + "meta.comments": "Kommentaarid", + "meta.source": "Lähtekood", + "search.config.pipeline": "", + "search.placeholder": "Otsi", + "search.result.placeholder": "Otsimiseks kirjuta siia", + "search.result.none": "Otsingule ei leitud ühtegi vastet", + "search.result.one": "Leiti üks tulemus", + "search.result.other": "Leiti # tulemust", + "skip.link.title": "Keri sisuni", + "source.link.title": "Ava repositooriumis", + "source.revision.date": "Viimane uuendus", + "toc.title": "Sisukord" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/fa.html b/docs/material/partials/language/fa.html new file mode 100644 index 000000000..d5e988c2b --- /dev/null +++ b/docs/material/partials/language/fa.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "fa", + "direction": "rtl", + "clipboard.copy": "کپی کردن", + "clipboard.copied": "کپی شد", + "edit.link.title": "این صفحه را ویرایش کنید", + "footer.previous": "قبلی", + "footer.next": "بعدی", + "meta.comments": "نظرات", + "meta.source": "منبع", + "search.config.pipeline": "", + "search.placeholder": "جستجو", + "search.result.placeholder": "برای شروع جستجو تایپ کنید", + "search.result.none": "سندی یافت نشد", + "search.result.one": "1 سند یافت شد", + "search.result.other": "# سند یافت شد", + "skip.link.title": "پرش به محتویات", + "source.link.title": "رفتن به مخزن", + "source.revision.date": "اخرین بروزرسانی", + "toc.title": "فهرست موضوعات" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/fi.html b/docs/material/partials/language/fi.html new file mode 100644 index 000000000..b2b93e223 --- /dev/null +++ b/docs/material/partials/language/fi.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "fi", + "clipboard.copy": "Kopioi leikepöydälle", + "clipboard.copied": "Kopioitu leikepöydälle", + "edit.link.title": "Muokkaa tätä sivua", + "footer.previous": "Edellinen", + "footer.next": "Seuraava", + "meta.comments": "Kommentit", + "meta.source": "Lähdekodi", + "search.config.lang": "fi", + "search.placeholder": "Hae", + "search.result.placeholder": "Kirjoita aloittaaksesi haun", + "search.result.none": "Ei täsmääviä dokumentteja", + "search.result.one": "1 täsmäävä dokumentti", + "search.result.other": "# täsmäävää dokumenttia", + "skip.link.title": "Hyppää sisältöön", + "source.link.title": "Mene repositoryyn", + "source.revision.date": "Viimeisin päivitys", + "toc.title": "Sisällysluettelo" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/fr.html b/docs/material/partials/language/fr.html new file mode 100644 index 000000000..221cad969 --- /dev/null +++ b/docs/material/partials/language/fr.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "fr", + "clipboard.copy": "Copier dans le presse-papier", + "clipboard.copied": "Copié dans le presse-papier", + "edit.link.title": "Editer cette page", + "footer.previous": "Précédent", + "footer.next": "Suivant", + "meta.comments": "Commentaires", + "meta.source": "Source", + "search.config.lang": "fr", + "search.placeholder": "Rechercher", + "search.result.placeholder": "Taper pour démarrer la recherche", + "search.result.none": "Aucun document trouvé", + "search.result.one": "1 document trouvé", + "search.result.other": "# documents trouvés", + "skip.link.title": "Aller au contenu", + "source.link.title": "Aller au dépôt", + "source.revision.date": "Dernière mise à jour", + "toc.title": "Table des matières" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/gl.html b/docs/material/partials/language/gl.html new file mode 100644 index 000000000..2c3c0d6a4 --- /dev/null +++ b/docs/material/partials/language/gl.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "gl", + "clipboard.copy": "Copiar no cortapapeis", + "clipboard.copied": "Copiado no cortapapeis", + "edit.link.title": "Editar esta páxina", + "footer.previous": "Anterior", + "footer.next": "Seguinte", + "meta.comments": "Comentarios", + "meta.source": "Fonte", + "search.config.lang": "es", + "search.placeholder": "Busca", + "search.result.placeholder": "Insira un termo", + "search.result.none": "Sen resultados", + "search.result.one": "1 resultado atopado", + "search.result.other": "# resultados atopados", + "skip.link.title": "Ir ao contido", + "source.link.title": "Ir ao repositorio", + "source.revision.date": "Última actualización", + "toc.title": "Táboa de contidos" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/gr.html b/docs/material/partials/language/gr.html new file mode 100644 index 000000000..26e49928e --- /dev/null +++ b/docs/material/partials/language/gr.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "gr", + "clipboard.copy": "Αντιγραφή", + "clipboard.copied": "Αντιγράφηκε", + "edit.link.title": "Επεξεργασία αυτής της σελίδας", + "footer.previous": "Επόμενη", + "footer.next": "Προηγούμενη", + "meta.comments": "Σχόλια", + "meta.source": "Πηγή", + "search.config.pipeline": "", + "search.placeholder": "Αναζήτηση", + "search.result.placeholder": "Πληκτρολογήστε για να αρχίσει η αναζήτηση", + "search.result.none": "Δε βρέθηκαν αντίστοιχα αρχεία", + "search.result.one": "1 αντίστοιχο αρχείο", + "search.result.other": "# αντίστοιχα αρχεία", + "skip.link.title": "Μετάβαση στο περιεχόμενο", + "source.link.title": "Μετάβαση στο αποθετήριο", + "source.revision.date": "τελευταία ενημέρωση", + "toc.title": "Πίνακας περιεχομένων" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/he.html b/docs/material/partials/language/he.html new file mode 100644 index 000000000..ed2d735b4 --- /dev/null +++ b/docs/material/partials/language/he.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "he", + "direction": "rtl", + "clipboard.copy": "העתק ללוח", + "clipboard.copied": "הועתק ללוח", + "edit.link.title": "ערוך דף זה", + "footer.previous": "קודם", + "footer.next": "הַבָּא", + "meta.comments": "הערות", + "meta.source": "מָקוֹר", + "search.config.pipeline": "", + "search.placeholder": "לחפש", + "search.result.placeholder": "הקלד כדי להתחיל לחפש", + "search.result.none": "אין מסמכים תואמים", + "search.result.one": "1 מסמך תואם", + "search.result.other": "# מסמך תואם", + "skip.link.title": "דלג לתוכן", + "source.link.title": "עבור אל מאגר", + "source.revision.date": "העדכון אחרון", + "toc.title": "תוכן העניינים" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/hi.html b/docs/material/partials/language/hi.html new file mode 100644 index 000000000..85377f8b1 --- /dev/null +++ b/docs/material/partials/language/hi.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "hi", + "clipboard.copy": "क्लिपबोर्ड पर कॉपी करें", + "clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया", + "edit.link.title": "इस पृष्ठ को संपादित करें", + "footer.previous": "पिछला", + "footer.next": "आगामी", + "meta.comments": "टिप्पणियाँ", + "meta.source": "स्रोत", + "search.config.pipeline": "", + "search.placeholder": "खोज", + "search.result.placeholder": "खोज शुरू करने के लिए टाइप करें", + "search.result.none": "कोई मिलान डॉक्यूमेंट नहीं", + "search.result.one": "1 मिलान डॉक्यूमेंट", + "search.result.other": "# मिलान डाक्यूमेंट्स", + "skip.link.title": "विषय पर बढ़ें", + "source.link.title": "रिपॉजिटरी पर जाएं", + "source.revision.date": "आखिरी अपडेट", + "toc.title": "विषय - सूची" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/hr.html b/docs/material/partials/language/hr.html new file mode 100644 index 000000000..a52aeff5f --- /dev/null +++ b/docs/material/partials/language/hr.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "hr", + "clipboard.copy": "Kopirajte u međuspremnik", + "clipboard.copied": "Kopirano u međuspremnik", + "edit.link.title": "Uredi stranicu", + "footer.previous": "Prethodno", + "footer.next": "Sljedeće", + "meta.comments": "Komentari", + "meta.source": "Izvor", + "search.config.pipeline": "", + "search.placeholder": "Pretraživanje", + "search.result.placeholder": "Unesite pojam pretraživanja", + "search.result.none": "Ništa nije pronađeno", + "search.result.one": "1 rezultat pretraživanja", + "search.result.other": "# rezultata pretraživanja", + "skip.link.title": "Preskočite na sadržaj", + "source.link.title": "Idite u repozitorij", + "source.revision.date": "Zadnje ažuriranje", + "toc.title": "Sadržaj" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/hu.html b/docs/material/partials/language/hu.html new file mode 100644 index 000000000..c2230cabd --- /dev/null +++ b/docs/material/partials/language/hu.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "hu", + "clipboard.copy": "Másolás vágólapra", + "clipboard.copied": "Vágólapra másolva", + "edit.link.title": "Oldal szerkesztése", + "footer.previous": "Előző", + "footer.next": "Következő", + "meta.comments": "Hozzászólások", + "meta.source": "Forrás", + "search.config.lang": "hu", + "search.placeholder": "Keresés", + "search.result.placeholder": "Kereséshez írj ide valamit", + "search.result.none": "Nincs találat", + "search.result.one": "1 egyező dokumentum", + "search.result.other": "# egyező dokumentum", + "skip.link.title": "Kihagyás", + "source.link.title": "Főoldalra ugrás", + "source.revision.date": "Utolsó frissítés", + "toc.title": "Tartalomjegyzék" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/id.html b/docs/material/partials/language/id.html new file mode 100644 index 000000000..b846e5072 --- /dev/null +++ b/docs/material/partials/language/id.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "id", + "clipboard.copy": "Salin ke memori", + "clipboard.copied": "Tersalin ke memori", + "edit.link.title": "Ubah halaman ini", + "footer.previous": "Sebelumnya", + "footer.next": "Selanjutnya", + "meta.comments": "Komentar", + "meta.source": "Sumber", + "search.config.pipeline": "", + "search.placeholder": "Cari", + "search.result.placeholder": "Ketik untuk mulai pencarian", + "search.result.none": "Tidak ada dokumen yang sesuai", + "search.result.one": "1 dokumen ditemukan", + "search.result.other": "# dokumen ditemukan", + "skip.link.title": "Lewati ke isi", + "source.link.title": "Menuju repositori", + "source.revision.date": "Pembaharuan Terakhir", + "toc.title": "Daftar isi" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/it.html b/docs/material/partials/language/it.html new file mode 100644 index 000000000..3aa0730c5 --- /dev/null +++ b/docs/material/partials/language/it.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "it", + "clipboard.copy": "Copia", + "clipboard.copied": "Copiato", + "edit.link.title": "Modifica", + "footer.previous": "Precedente", + "footer.next": "Prossimo", + "meta.comments": "Commenti", + "meta.source": "Sorgente", + "search.config.lang": "it", + "search.placeholder": "Cerca", + "search.result.placeholder": "Scrivi per iniziare a cercare", + "search.result.none": "Nessun documento trovato", + "search.result.one": "1 documento trovato", + "search.result.other": "# documenti trovati", + "skip.link.title": "Vai al contenuto", + "source.link.title": "Apri repository", + "source.revision.date": "Ultimo aggiornamento", + "toc.title": "Indice" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/ja.html b/docs/material/partials/language/ja.html new file mode 100644 index 000000000..ee49cc027 --- /dev/null +++ b/docs/material/partials/language/ja.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "ja", + "clipboard.copy": "クリップボードへコピー", + "clipboard.copied": "コピーしました", + "edit.link.title": "編集", + "footer.previous": "前", + "footer.next": "次", + "meta.comments": "コメント", + "meta.source": "ソース", + "search.config.lang": "ja", + "search.config.separator": "[\s\- 、。,.]+", + "search.placeholder": "検索", + "search.result.placeholder": "検索キーワードを入力してください", + "search.result.none": "何も見つかりませんでした", + "search.result.one": "1件見つかりました", + "search.result.other": "#件見つかりました", + "skip.link.title": "コンテンツにスキップ", + "source.link.title": "リポジトリへ", + "source.revision.date": "最終更新日", + "toc.title": "目次" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/kr.html b/docs/material/partials/language/kr.html new file mode 100644 index 000000000..f1b863fd7 --- /dev/null +++ b/docs/material/partials/language/kr.html @@ -0,0 +1,22 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "kr", + "clipboard.copy": "클립보드로 복사", + "clipboard.copied": "클립보드에 복사됨", + "edit.link.title": "이 페이지를 편집", + "footer.previous": "이전", + "footer.next": "다음", + "meta.comments": "댓글", + "meta.source": "출처", + "search.config.lang": "ja", + "search.placeholder": "검색", + "search.result.placeholder": "검색어를 입력하세요", + "search.result.none": "검색어와 일치하는 문서가 없습니다", + "search.result.one": "1개의 일치하는 문서", + "search.result.other": "#개의 일치하는 문서", + "source.link.title": "저장소로 이동", + "source.revision.date": "마지막 업데이트", + "toc.title": "목차" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/my.html b/docs/material/partials/language/my.html new file mode 100644 index 000000000..5a82ba37b --- /dev/null +++ b/docs/material/partials/language/my.html @@ -0,0 +1,27 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "my", + "clipboard.copy": "ကလစ်ဘုတ် သို့ ကူးယူရန်", + "clipboard.copied": "ကလစ်ဘုတ် သို့ ကူယူပြီး", + "edit.link.title": "ဤ စာမျက်နှာကို ပြင်ရန်", + "footer.previous": "နောက်သို့", + "footer.next": "ရှေ့သို့", + "footer.title": "အောက်ခြေ", + "header.title": "ခေါင်းပိုင်း", + "meta.comments": "မှတ်ချက်များ", + "meta.source": "ရင်းမြစ်", + "nav.title": "လမ်းညွှန်", + "search.placeholder": "ရှာရန်", + "search.reset": "ရှင်းလင်း", + "search.result.placeholder": "ရှာဖွေခြင်းစရန် စာရိုက်ပါ", + "search.result.none": "တူညီသော စာရွက်စာတမ်းများ မရှိပါ", + "search.result.one": "စာရွက်စာတမ်း ၁ ခု တူညီသည်", + "search.result.other": "စာရွက်စာတမ်း # ခု တူညီသည်", + "skip.link.title": "မာတိကာ သို့ သွားရန်", + "source.link.title": "repository သို့ သွားရန်", + "source.revision.date": "နောက်ဆုံး ထုတ်ပြန်ချက်", + "tabs.title": "တက်များ", + "toc.title": "ပါဝင်အကြောင်းအရာများ" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/nl.html b/docs/material/partials/language/nl.html new file mode 100644 index 000000000..1f28d8f70 --- /dev/null +++ b/docs/material/partials/language/nl.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "nl", + "clipboard.copy": "Kopiëren naar klembord", + "clipboard.copied": "Gekopieerd naar klembord", + "edit.link.title": "Wijzig deze pagina", + "footer.previous": "Vorige", + "footer.next": "Volgende", + "meta.comments": "Reacties", + "meta.source": "Bron", + "search.config.lang": "nl", + "search.placeholder": "Zoeken", + "search.result.placeholder": "Typ om te beginnen met zoeken", + "search.result.none": "Geen overeenkomende documenten", + "search.result.one": "1 overeenkomende document", + "search.result.other": "# overeenkomende documenten", + "skip.link.title": "Ga naar inhoud", + "source.link.title": "Ga naar repository", + "source.revision.date": "Laatst geüpdatet op", + "toc.title": "Inhoudsopgave" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/nn.html b/docs/material/partials/language/nn.html new file mode 100644 index 000000000..a961724f8 --- /dev/null +++ b/docs/material/partials/language/nn.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "nn", + "clipboard.copy": "Kopier til utklippstavla", + "clipboard.copied": "Kopiert til utklippstavla", + "edit.link.title": "Rediger denne sida", + "footer.previous": "Førre", + "footer.next": "Neste", + "meta.comments": "Kommentarar", + "meta.source": "Kjelde", + "search.config.lang": "no", + "search.placeholder": "Søk", + "search.result.placeholder": "Skriv søkeord", + "search.result.none": "Ingen treff", + "search.result.one": "1 treff", + "search.result.other": "# treff", + "skip.link.title": "Gå til innhald", + "source.link.title": "Gå til kjelde", + "source.revision.date": "Siste oppdatering", + "toc.title": "Innhaldsliste" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/no.html b/docs/material/partials/language/no.html new file mode 100644 index 000000000..2a5ed6e8e --- /dev/null +++ b/docs/material/partials/language/no.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "no", + "clipboard.copy": "Kopier til utklippstavlen", + "clipboard.copied": "Kopiert til utklippstavlen", + "edit.link.title": "Rediger denne siden", + "footer.previous": "Forrige", + "footer.next": "Neste", + "meta.comments": "Kommentarer", + "meta.source": "Kilde", + "search.config.lang": "no", + "search.placeholder": "Søk", + "search.result.placeholder": "Skriv søkeord", + "search.result.none": "Ingen treff", + "search.result.one": "1 treff", + "search.result.other": "# treff", + "skip.link.title": "Gå til innhold", + "source.link.title": "Gå til kilde", + "source.revision.date": "Siste oppdatering", + "toc.title": "Innholdsfortegnelse" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/pl.html b/docs/material/partials/language/pl.html new file mode 100644 index 000000000..a94e22b74 --- /dev/null +++ b/docs/material/partials/language/pl.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "pl", + "clipboard.copy": "Kopiuj do schowka", + "clipboard.copied": "Skopiowane", + "edit.link.title": "Edytuj tę stronę", + "footer.previous": "Poprzednia strona", + "footer.next": "Następna strona", + "meta.comments": "Komentarze", + "meta.source": "Kod źródłowy", + "search.config.pipeline": "", + "search.placeholder": "Szukaj", + "search.result.placeholder": "Zacznij pisać, aby szukać", + "search.result.none": "Brak wyników wyszukiwania", + "search.result.one": "Wyniki wyszukiwania: 1", + "search.result.other": "Wyniki wyszukiwania: #", + "skip.link.title": "Przejdź do treści", + "source.link.title": "Idź do repozytorium", + "source.revision.date": "Ostatnia aktualizacja", + "toc.title": "Spis treści" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/pt.html b/docs/material/partials/language/pt.html new file mode 100644 index 000000000..061ac210c --- /dev/null +++ b/docs/material/partials/language/pt.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "pt", + "clipboard.copy": "Copiar para área de transferência", + "clipboard.copied": "Copiado para área de transferência", + "edit.link.title": "Editar esta página", + "footer.previous": "Anterior", + "footer.next": "Próximo", + "meta.comments": "Comentários", + "meta.source": "Fonte", + "search.config.lang": "pt", + "search.placeholder": "Buscar", + "search.result.placeholder": "Digite para iniciar a busca", + "search.result.none": "Nenhum resultado encontrado", + "search.result.one": "1 resultado encontrado", + "search.result.other": "# resultados encontrados", + "skip.link.title": "Ir para o conteúdo", + "source.link.title": "Ir ao repositório", + "source.revision.date": "Última atualização", + "toc.title": "Índice" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/ro.html b/docs/material/partials/language/ro.html new file mode 100644 index 000000000..5891c7913 --- /dev/null +++ b/docs/material/partials/language/ro.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "ro", + "clipboard.copy": "Copiază în clipboard", + "clipboard.copied": "Copiat în clipboard", + "edit.link.title": "Editeaza această pagină", + "footer.previous": "Anterior", + "footer.next": "Următor", + "meta.comments": "Comentarii", + "meta.source": "Sursă", + "search.config.lang": "ro", + "search.placeholder": "Căutare", + "search.result.placeholder": "Tastează pentru a începe căutarea", + "search.result.none": "Nu a fost găsit niciun document", + "search.result.one": "1 document găsit", + "search.result.other": "# documente găsite", + "skip.link.title": "Sari la conținut", + "source.link.title": "Accesează repository-ul", + "source.revision.date": "Ultima actualizare", + "toc.title": "Cuprins" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/ru.html b/docs/material/partials/language/ru.html new file mode 100644 index 000000000..84d204820 --- /dev/null +++ b/docs/material/partials/language/ru.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "ru", + "clipboard.copy": "Копировать в буфер", + "clipboard.copied": "Скопировано в буфер", + "edit.link.title": "Редактировать страницу", + "footer.previous": "Назад", + "footer.next": "Вперед", + "meta.comments": "Комментарии", + "meta.source": "Исходный код", + "search.config.lang": "ru", + "search.placeholder": "Поиск", + "search.result.placeholder": "Начните печатать для поиска", + "search.result.none": "Совпадений не найдено", + "search.result.one": "Найдено 1 совпадение", + "search.result.other": "Найдено # совпадений", + "skip.link.title": "Перейти к содержанию", + "source.link.title": "Перейти к репозиторию", + "source.revision.date": "Последнее обновление", + "toc.title": "Содержание" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/sh.html b/docs/material/partials/language/sh.html new file mode 100644 index 000000000..f0972497c --- /dev/null +++ b/docs/material/partials/language/sh.html @@ -0,0 +1,22 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "sh", + "clipboard.copy": "Kopiraj u klipbord", + "clipboard.copied": "Iskopirano u klipbord", + "edit.link.title": "Uredi stranicu", + "footer.previous": "Prethodno", + "footer.next": "Sledeće", + "meta.comments": "Komentari", + "meta.source": "Izvor", + "search.config.lang": "ro", + "search.placeholder": "Pretraga", + "search.result.placeholder": "Unesite pojam pretrage", + "search.result.none": "Ništa nije pronađeno", + "search.result.one": "1 rezultat pretrage", + "search.result.other": "# rezultata pretrage", + "skip.link.title": "Idi na tekst", + "source.link.title": "Idi u repozitorijum", + "toc.title": "Sadržaj" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/si.html b/docs/material/partials/language/si.html new file mode 100644 index 000000000..aa258b9c0 --- /dev/null +++ b/docs/material/partials/language/si.html @@ -0,0 +1,22 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "si", + "clipboard.copy": "Kopiraj v odložišče", + "clipboard.copied": "Kopirano v odložišče", + "edit.link.title": "Uredi stran", + "footer.previous": "Prejšnja stran", + "footer.next": "Naslednja stran", + "meta.comments": "Komentarji", + "meta.source": "Izvorna koda", + "search.placeholder": "Išči", + "search.result.placeholder": "Vpiši iskalni niz", + "search.result.none": "Ni zadetkov", + "search.result.one": "1 zadetek", + "search.result.other": "# zadetkov", + "skip.link.title": "Skoči na vsebino", + "source.link.title": "Pojdi na repozitorij", + "source.revision.date": "Zadnja posodobitev", + "toc.title": "Kazalo" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/sk.html b/docs/material/partials/language/sk.html new file mode 100644 index 000000000..66bd7dcf4 --- /dev/null +++ b/docs/material/partials/language/sk.html @@ -0,0 +1,22 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "sk", + "clipboard.copy": "Kopírovať do schránky", + "clipboard.copied": "Skopírované do schránky", + "edit.link.title": "Upraviť túto stránku", + "footer.previous": "Späť", + "footer.next": "Ďalej", + "meta.comments": "Komentáre", + "meta.source": "Zdroj", + "search.placeholder": "Hľadať", + "search.result.placeholder": "Pre vyhľadávanie začni písať", + "search.result.none": "Žiadne vyhovujúce dokumenty", + "search.result.one": "Vyhovujúci dokument: 1", + "search.result.other": "Vyhovujúce dokumenty: #", + "skip.link.title": "Preskočiť na obsah", + "source.link.title": "Zobraziť repozitár", + "source.revision.date": "Posledná aktualizácia", + "toc.title": "Obsah" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/sr.html b/docs/material/partials/language/sr.html new file mode 100644 index 000000000..695a08b73 --- /dev/null +++ b/docs/material/partials/language/sr.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "sr", + "clipboard.copy": "Копирај у клипборд", + "clipboard.copied": "Ископирано у клипборд", + "edit.link.title": "Уреди страницу", + "footer.previous": "Претходно", + "footer.next": "Следеће", + "meta.comments": "Коментари", + "meta.source": "Извор", + "search.config.pipeline": "", + "search.placeholder": "Претрага", + "search.result.placeholder": "Унесите појам претраге", + "search.result.none": "Нису пронађени документи", + "search.result.one": "1 резултат претраге", + "search.result.other": "# резултата претраге", + "skip.link.title": "Иди на текст", + "source.link.title": "Иди у репозиторијум", + "source.revision.date": "Последња исправка", + "toc.title": "Садржај" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/sv.html b/docs/material/partials/language/sv.html new file mode 100644 index 000000000..872436663 --- /dev/null +++ b/docs/material/partials/language/sv.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "sv", + "clipboard.copy": "Kopiera till urklipp", + "clipboard.copied": "Kopierat till urklipp", + "edit.link.title": "Redigera sidan", + "footer.previous": "Föregående", + "footer.next": "Nästa", + "meta.comments": "Kommentarer", + "meta.source": "Källa", + "search.config.lang": "sv", + "search.placeholder": "Sök", + "search.result.placeholder": "Skriv sökord", + "search.result.none": "Inga sökresultat", + "search.result.one": "1 sökresultat", + "search.result.other": "# sökresultat", + "skip.link.title": "Gå till innehållet", + "source.link.title": "Gå till datakatalog", + "source.revision.date": "Senaste uppdateringen", + "toc.title": "Innehållsförteckning" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/th.html b/docs/material/partials/language/th.html new file mode 100644 index 000000000..dacadfe86 --- /dev/null +++ b/docs/material/partials/language/th.html @@ -0,0 +1,21 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "th", + "clipboard.copy": "คัดลอก", + "clipboard.copied": "คัดลอกแล้ว", + "edit.link.title": "แก้ไขหน้านี้", + "footer.previous": "ก่อนหน้า", + "footer.next": "ต่อไป", + "meta.comments": "ความคิดเห็น", + "meta.source": "แหล่งที่มา", + "search.placeholder": "ค้นหา", + "search.result.placeholder": "พิมพ์เพื่อเริ่มค้นหา", + "search.result.none": "ไม่พบเอกสารที่ตรงกัน", + "search.result.one": "พบเอกสารที่ตรงกัน", + "search.result.other": "พบ # เอกสารที่ตรงกัน", + "skip.link.title": "ข้ามไปที่เนื้อหา", + "source.link.title": "ไปที่ Repository", + "toc.title": "สารบัญ" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/tr.html b/docs/material/partials/language/tr.html new file mode 100644 index 000000000..b34f99d22 --- /dev/null +++ b/docs/material/partials/language/tr.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "tr", + "clipboard.copy": "Kopyala", + "clipboard.copied": "Kopyalandı", + "edit.link.title": "Düzenle", + "footer.previous": "Önceki", + "footer.next": "Sonraki", + "meta.comments": "Yorumlar", + "meta.source": "Kaynak", + "search.config.lang": "tr", + "search.placeholder": "Ara", + "search.result.placeholder": "Aramaya başlamak için yazın", + "search.result.none": "Eşleşen doküman bulunamadı", + "search.result.one": "1 doküman bulundu", + "search.result.other": "# doküman bulundu", + "skip.link.title": "Ana içeriğe geç", + "source.link.title": "Depoya git", + "source.revision.date": "Son Güncelleme", + "toc.title": "İçindekiler" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/uk.html b/docs/material/partials/language/uk.html new file mode 100644 index 000000000..39a17c5ef --- /dev/null +++ b/docs/material/partials/language/uk.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "uk", + "clipboard.copy": "Скопіювати в буфер", + "clipboard.copied": "Скопійовано в буфер", + "edit.link.title": "Редагувати сторінку", + "footer.previous": "Назад", + "footer.next": "Вперед", + "meta.comments": "Коментарі", + "meta.source": "Вихідний код", + "search.config.lang": "ru", + "search.placeholder": "Пошук", + "search.result.placeholder": "Розпочніть писати для пошуку", + "search.result.none": "Збігів не знайдено", + "search.result.one": "Знайдено 1 збіг", + "search.result.other": "Знайдено # збігів", + "skip.link.title": "Перейти до змісту", + "source.link.title": "Перейти до репозиторію", + "source.revision.date": "Останнє оновлення", + "toc.title": "Зміст" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/vi.html b/docs/material/partials/language/vi.html new file mode 100644 index 000000000..26cc93af0 --- /dev/null +++ b/docs/material/partials/language/vi.html @@ -0,0 +1,22 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "vi", + "clipboard.copy": "Sao chép vào bộ nhớ", + "clipboard.copied": "Sao chép xong", + "edit.link.title": "Chỉnh sửa", + "footer.previous": "Trước", + "footer.next": "Sau", + "meta.comments": "Bình luận", + "meta.source": "Mã nguồn", + "search.placeholder": "Tìm kiếm", + "search.result.placeholder": "Nhập để bắt đầu tìm kiếm", + "search.result.none": "Không tìm thấy tài liệu liên quan", + "search.result.one": "1 tài liệu liên quan", + "search.result.other": "# tài liệu liên quan", + "skip.link.title": "Vào thẳng nội dung", + "source.link.title": "Đến kho lưu trữ mã nguồn", + "source.revision.date": "Cập nhật cuối cùng", + "toc.title": "Mục lục" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/zh-Hant.html b/docs/material/partials/language/zh-Hant.html new file mode 100644 index 000000000..6bfc89423 --- /dev/null +++ b/docs/material/partials/language/zh-Hant.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "zh-Hant", + "clipboard.copy": "拷貝", + "clipboard.copied": "已拷貝", + "edit.link.title": "編輯此頁", + "footer.previous": "上一頁", + "footer.next": "下一頁", + "meta.comments": "評論", + "meta.source": "來源", + "search.config.lang": "ja", + "search.config.separator": "[\,\。]+", + "search.placeholder": "搜尋", + "search.result.placeholder": "鍵入以開始檢索", + "search.result.none": "沒有找到符合條件的結果", + "search.result.one": "找到 1 个符合條件的結果", + "search.result.other": "# 個符合條件的結果", + "skip.link.title": "跳轉至", + "source.link.title": "前往 GitHub 倉庫", + "source.revision.date": "最後更新", + "toc.title": "目錄" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/zh-TW.html b/docs/material/partials/language/zh-TW.html new file mode 100644 index 000000000..95d9e44dc --- /dev/null +++ b/docs/material/partials/language/zh-TW.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "zh-Hant", + "clipboard.copy": "複製", + "clipboard.copied": "已複製", + "edit.link.title": "編輯此頁", + "footer.previous": "上一頁", + "footer.next": "下一頁", + "meta.comments": "留言", + "meta.source": "來源", + "search.config.lang": "ja", + "search.config.separator": "[\s\- 、。,.?;]+", + "search.placeholder": "搜尋", + "search.result.placeholder": "打字進行搜尋", + "search.result.none": "沒有符合的項目", + "search.result.one": "找到 1 個符合的項目", + "search.result.other": "找到 # 個符合的項目", + "skip.link.title": "跳轉到", + "source.link.title": "前往倉庫", + "source.revision.date": "最後更新", + "toc.title": "目錄" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/language/zh.html b/docs/material/partials/language/zh.html new file mode 100644 index 000000000..dd90cb570 --- /dev/null +++ b/docs/material/partials/language/zh.html @@ -0,0 +1,24 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro t(key) %}{{ { + "language": "zh", + "clipboard.copy": "复制", + "clipboard.copied": "已复制", + "edit.link.title": "编辑此页", + "footer.previous": "上一页", + "footer.next": "下一页", + "meta.comments": "评论", + "meta.source": "来源", + "search.config.lang": "ja", + "search.config.separator": "[\,\。]+", + "search.placeholder": "搜索", + "search.result.placeholder": "键入以开始搜索", + "search.result.none": "没有找到符合条件的结果", + "search.result.one": "找到 1 个符合条件的结果", + "search.result.other": "# 个符合条件的结果", + "skip.link.title": "跳转至", + "source.link.title": "前往 GitHub 仓库", + "source.revision.date": "最后更新", + "toc.title": "目录" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/logo.html b/docs/material/partials/logo.html new file mode 100644 index 000000000..6d80f2ce7 --- /dev/null +++ b/docs/material/partials/logo.html @@ -0,0 +1,9 @@ +{#- + This file was automatically generated - do not edit +-#} +{% if config.theme.logo %} + logo +{% else %} + {% set icon = config.theme.icon.logo or "material/library" %} + {% include ".icons/" ~ icon ~ ".svg" %} +{% endif %} diff --git a/docs/material/partials/nav-item.html b/docs/material/partials/nav-item.html new file mode 100644 index 000000000..21bc7097e --- /dev/null +++ b/docs/material/partials/nav-item.html @@ -0,0 +1,66 @@ +{#- + This file was automatically generated - do not edit +-#} +{% set class = "md-nav__item" %} +{% if nav_item.active %} + {% set class = "md-nav__item md-nav__item--active" %} +{% endif %} +{% if nav_item.children %} +
  • + {% if nav_item.active %} + + {% else %} + + {% endif %} + + +
  • +{% elif nav_item == page %} +
  • + {% set toc = page.toc %} + + {% if toc | first is defined and "\x3ch1 id=" in page.content %} + {% set toc = (toc | first).children %} + {% endif %} + {% if toc | first is defined %} + + {% endif %} + + {{ nav_item.title }} + + {% if toc | first is defined %} + {% include "partials/toc.html" %} + {% endif %} +
  • +{% else %} +
  • + + {{ nav_item.title }} + +
  • +{% endif %} diff --git a/docs/material/partials/nav.html b/docs/material/partials/nav.html new file mode 100644 index 000000000..ca050757e --- /dev/null +++ b/docs/material/partials/nav.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} + diff --git a/docs/material/partials/palette.html b/docs/material/partials/palette.html new file mode 100644 index 000000000..c8fe8f7ab --- /dev/null +++ b/docs/material/partials/palette.html @@ -0,0 +1,42 @@ +{#- + This file was automatically generated - do not edit +-#} +{% macro primary(key) %}{{ { + "red": "#ef5350", + "pink": "#e91e63", + "purple": "#ab47bc", + "deep-purple": "#7e57c2", + "indigo": "#3f51b5", + "blue": "#2196f3", + "light-blue": "#03a9f4", + "cyan": "#00bcd4", + "teal": "#009688", + "green": "#4caf50", + "light-green": "#8bc34a", + "lime": "#cddc39", + "yellow": "#ffee58", + "amber": "#ffc107", + "orange": "#ffa726", + "deep-orange": "#ff7043", + "brown": "#795548", + "grey": "#757575", + "blue-grey": "#546e7a" +}[key] }}{% endmacro %} +{% macro accent(key) %}{{ { + "red": "#ff1744", + "pink": "#f50057", + "purple": "#e040fb", + "deep-purple": "#7c4dff", + "indigo": "#536dfe", + "blue": "#448aff", + "light-blue": "#0091ea", + "cyan": "#00b8d4", + "teal": "#00bfa5", + "green": "#00c853", + "light-green": "#64dd17", + "lime": "#aeea00", + "yellow": "#ffd600", + "amber": "#ffab00", + "orange": "#ff9100", + "deep-orange": "#ff6e40" +}[key] }}{% endmacro %} diff --git a/docs/material/partials/search.html b/docs/material/partials/search.html new file mode 100644 index 000000000..05469ae1e --- /dev/null +++ b/docs/material/partials/search.html @@ -0,0 +1,29 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} + diff --git a/docs/material/partials/social.html b/docs/material/partials/social.html new file mode 100644 index 000000000..80d650a8b --- /dev/null +++ b/docs/material/partials/social.html @@ -0,0 +1,17 @@ +{#- + This file was automatically generated - do not edit +-#} +{% if config.extra.social %} + +{% endif %} diff --git a/docs/material/partials/source-date.html b/docs/material/partials/source-date.html new file mode 100644 index 000000000..9c72b8bc8 --- /dev/null +++ b/docs/material/partials/source-date.html @@ -0,0 +1,15 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} +{% set label = lang.t("source.revision.date") %} +
    +
    + + {% if page.meta.git_revision_date_localized %} + {{ label }}: {{ page.meta.git_revision_date_localized }} + {% elif page.meta.revision_date %} + {{ label }}: {{ page.meta.revision_date }} + {% endif %} + +
    diff --git a/docs/material/partials/source-link.html b/docs/material/partials/source-link.html new file mode 100644 index 000000000..237efe74c --- /dev/null +++ b/docs/material/partials/source-link.html @@ -0,0 +1,14 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} +{% set repo = config.repo_url %} +{% if repo | last == "/" %} + {% set repo = repo[:-1] %} +{% endif %} +{% set path = page.meta.path | default([""]) %} + + {{ lang.t("meta.source") }} + {% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %} + {% include ".icons/" ~ icon ~ ".svg" %} + diff --git a/docs/material/partials/source.html b/docs/material/partials/source.html new file mode 100644 index 000000000..095b49a20 --- /dev/null +++ b/docs/material/partials/source.html @@ -0,0 +1,13 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} + +
    + {% set icon = config.theme.icon.repo or "fontawesome/brands/git-alt" %} + {% include ".icons/" ~ icon ~ ".svg" %} +
    +
    + {{ config.repo_name }} +
    +
    diff --git a/docs/material/partials/tabs-item.html b/docs/material/partials/tabs-item.html new file mode 100644 index 000000000..64ced43bd --- /dev/null +++ b/docs/material/partials/tabs-item.html @@ -0,0 +1,34 @@ +{#- + This file was automatically generated - do not edit +-#} +{% if nav_item.is_homepage or nav_item.url == "index.html" %} +
  • + {% if not page.ancestors | length and nav | selectattr("url", page.url) %} + + {{ nav_item.title }} + + {% else %} + + {{ nav_item.title }} + + {% endif %} +
  • +{% elif nav_item.children and nav_item.children | length > 0 %} + {% set title = title | default(nav_item.title) %} + {% if (nav_item.children | first).children %} + {% set nav_item = nav_item.children | first %} + {% include "partials/tabs-item.html" %} + {% else %} +
  • + {% if nav_item.active %} + + {{ title }} + + {% else %} + + {{ title }} + + {% endif %} +
  • + {% endif %} +{% endif %} diff --git a/docs/material/partials/tabs.html b/docs/material/partials/tabs.html new file mode 100644 index 000000000..d8e00a05a --- /dev/null +++ b/docs/material/partials/tabs.html @@ -0,0 +1,16 @@ +{#- + This file was automatically generated - do not edit +-#} +{% set class = "md-tabs" %} +{% if page.ancestors | length > 0 %} + {% set class = "md-tabs md-tabs--active" %} +{% endif %} + diff --git a/docs/material/partials/toc-item.html b/docs/material/partials/toc-item.html new file mode 100644 index 000000000..3f0ffe463 --- /dev/null +++ b/docs/material/partials/toc-item.html @@ -0,0 +1,17 @@ +{#- + This file was automatically generated - do not edit +-#} +
  • + + {{ toc_item.title }} + + {% if toc_item.children %} + + {% endif %} +
  • diff --git a/docs/material/partials/toc.html b/docs/material/partials/toc.html new file mode 100644 index 000000000..3a372bf05 --- /dev/null +++ b/docs/material/partials/toc.html @@ -0,0 +1,23 @@ +{#- + This file was automatically generated - do not edit +-#} +{% import "partials/language.html" as lang with context %} + diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 814a5919b..8070f0886 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -5,10 +5,24 @@ repo_name: 'Github' repo_url: https://github.com/baidu/bfe docs_dir: 'en_us' edit_uri: edit/develop/docs/en_us/ +site_description: >- + An modern layer 7 load balancer derived from proprietary Baidu Front End. theme: - name: material + name: null + custom_dir: material language: en + features: + - tabs + palette: + primary: indigo + accent: indigo + font: + text: Roboto + code: Roboto Mono + icon: + logo: logo + favicon: assets/favicon.png copyright: 'Copyright © 2019-2020 BFE 中文 | English' @@ -30,132 +44,133 @@ extra: link: mailto:bfe-osc@baidu.com nav: - - 'About': 'README.md' - - 'Introduction': - - 'Overview': 'introduction/overview.md' - - 'Comparsion to similar systems': 'introduction/comparison.md' - - 'Design overview': - - 'Terminology': 'introduction/terminology.md' - - 'Traffic fowarding model': 'introduction/forward_model.md' - - 'Traffic routing': 'introduction/route.md' - - 'Traffic balancing': 'introduction/balance.md' - - 'Getting help': 'introduction/getting_help.md' - - 'Version history': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' - - 'Getting started': - - 'Install BFE': 'installation/install_from_source.md' - - 'User guides': - - 'Overview': 'example/guide.md' - - 'Traffic forwarding': 'example/route.md' - - 'Traffic blocking': 'example/block.md' - - 'Request redirect': 'example/redirect.md' - - 'Request rewrite': 'example/rewrite.md' - - 'TLS mutual authentication': 'example/client_auth.md' - - 'Installation': - - 'Overview': 'installation/install.md' - - 'Install from source': 'installation/install_from_source.md' - - 'Install using binaries': 'installation/install_using_binaries.md' - - 'Install using go': 'installation/install_using_go.md' - - 'Install using snap': 'installation/install_using_snap.md' - - 'Configuration': - - 'Overview': 'configuration/config.md' - - 'Core': 'configuration/bfe.conf.md' - - 'Protocol': - - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' - - 'Certificate': 'configuration/tls_conf/server_cert_conf.data.md' - - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' - - 'Routing': - - 'Host rule': 'configuration/server_data_conf/host_rule.data.md' - - 'VIP rule': 'configuration/server_data_conf/vip_rule.data.md' - - 'Route rule': 'configuration/server_data_conf/route_rule.data.md' - - 'Backend cluster': 'configuration/server_data_conf/cluster_conf.data.md' - - 'Load balancing': - - 'Sub-clusters balancing': 'configuration/cluster_conf/gslb.data.md' - - 'Instances balancing': 'configuration/cluster_conf/cluster_table.data.md' - - 'Name service': - - 'Naming': 'configuration/server_data_conf/name_conf.data.md' - - 'Modules': - - 'mod_access': 'modules/mod_access/mod_access.md' - - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' - - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' - - 'mod_block': 'modules/mod_block/mod_block.md' - - 'mod_compress': 'modules/mod_compress/mod_compress.md' - - 'mod_doh': 'modules/mod_doh/mod_doh.md' - - 'mod_errors': 'modules/mod_errors/mod_errors.md' - - 'mod_geo': 'modules/mod_geo/mod_geo.md' - - 'mod_header': 'modules/mod_header/mod_header.md' - - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' - - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' - - 'mod_logid': 'modules/mod_logid/mod_logid.md' - - 'mod_prison': 'modules/mod_prison/mod_prison.md' - - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' - - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' - - 'mod_static': 'modules/mod_static/mod_static.md' - - 'mod_tag': 'modules/mod_tag/mod_tag.md' - - 'mod_trace': 'modules/mod_trace/mod_trace.md' - - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' - - 'mod_userid': 'modules/mod_userid/mod_userid.md' - - 'Operations': - - 'Command line pptions': 'operation/command.md' - - 'Environment variables': 'operation/env_var.md' - - 'System signals': 'operation/signal.md' - - 'Configuration reload': 'operation/reload.md' - - 'System metrics': 'operation/monitor.md' - - 'Log rotation': 'operation/log_rotation.md' - - 'Traffic tapping': 'operation/capture_packet.md' - - 'Performance': 'operation/performance.md' - - 'How to contribute': - - 'Contribute codes': - - 'Local development': 'development/local_dev_guide.md' - - 'Sumbit PR': 'development/submit_pr_guide.md' - - 'Contribute documents': 'development/write_doc_guide.md' - - 'Releasing process': 'development/release_regulation.md' - - 'Development guides': - - 'Source code layout': 'development/source_code_layout.md' - - 'BFE module development': - - 'Overview': 'development/module/overview.md' - - 'BFE callback introduction': 'development/module/bfe_callback.md' - - 'How to write a module': 'development/module/how_to_write_module.md' - - 'FAQ': - - 'Installation': 'faq/installation.md' - - 'Configuration': 'faq/configuration.md' - - 'Performance': 'faq/performance.md' - - 'Development': 'faq/development.md' - - 'Monitor reference': - - 'Protocol': - - 'SSL/TLS': 'monitor/tls_state.md' - - 'HTTP': 'monitor/http_state.md' - - 'HTTP2': 'monitor/http2_state.md' - - 'SPDY': 'monitor/spdy_state.md' - - 'WebSocket': 'monitor/websocket_state.md' - - 'Stream': 'monitor/stream_state.md' - - 'Routing': - - 'Host table': 'monitor/host_table_status.md' - - 'Load balancing': - - 'Balance details': 'monitor/bal_table_status.md' - - 'Balance error': 'monitor/bal_state.md' - - 'Proxy': - - 'Proxy state': 'monitor/proxy_state.md' - - 'Modules': 'monitor/module_status.md' - - 'Lentency': - - 'Lentency histogram': 'monitor/proxy_XXX_delay.md' - - 'Condition reference': - - 'Concept and grammar': 'condition/condition_grammar.md' - - 'Naming convention': 'condition/condition_naming_convention.md' - - 'Primitives index': 'condition/condition_primitive_index.md' - - 'Request related primitives': - - 'Method': 'condition/request/method.md' - - 'URI': 'condition/request/uri.md' - - 'Protocol': 'condition/request/protocol.md' - - 'Header': 'condition/request/header.md' - - 'Cookie': 'condition/request/cookie.md' - - 'Tag': 'condition/request/tag.md' - - 'IP': 'condition/request/ip.md' - - 'Response related primitives': - - 'Code': 'condition/response/code.md' - - 'Header': 'condition/response/header.md' - - 'Session related primitives': - - 'IP': 'condition/session/ip.md' - - 'TLS': 'condition/session/tls.md' - - 'System related primitives': - - 'Time': 'condition/system/time.md' + - 'Home': 'index.md' + - 'doc': + - 'Introduction': + - 'Overview': 'introduction/overview.md' + - 'Comparsion to similar systems': 'introduction/comparison.md' + - 'Design overview': + - 'Terminology': 'introduction/terminology.md' + - 'Traffic fowarding model': 'introduction/forward_model.md' + - 'Traffic routing': 'introduction/route.md' + - 'Traffic balancing': 'introduction/balance.md' + - 'Getting help': 'introduction/getting_help.md' + - 'Version history': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' + - 'Getting started': + - 'Install BFE': 'installation/install_from_source.md' + - 'User guides': + - 'Overview': 'example/guide.md' + - 'Traffic forwarding': 'example/route.md' + - 'Traffic blocking': 'example/block.md' + - 'Request redirect': 'example/redirect.md' + - 'Request rewrite': 'example/rewrite.md' + - 'TLS mutual authentication': 'example/client_auth.md' + - 'Installation': + - 'Overview': 'installation/install.md' + - 'Install from source': 'installation/install_from_source.md' + - 'Install using binaries': 'installation/install_using_binaries.md' + - 'Install using go': 'installation/install_using_go.md' + - 'Install using snap': 'installation/install_using_snap.md' + - 'Configuration': + - 'Overview': 'configuration/config.md' + - 'Core': 'configuration/bfe.conf.md' + - 'Protocol': + - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' + - 'Certificate': 'configuration/tls_conf/server_cert_conf.data.md' + - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' + - 'Routing': + - 'Host rule': 'configuration/server_data_conf/host_rule.data.md' + - 'VIP rule': 'configuration/server_data_conf/vip_rule.data.md' + - 'Route rule': 'configuration/server_data_conf/route_rule.data.md' + - 'Backend cluster': 'configuration/server_data_conf/cluster_conf.data.md' + - 'Load balancing': + - 'Sub-clusters balancing': 'configuration/cluster_conf/gslb.data.md' + - 'Instances balancing': 'configuration/cluster_conf/cluster_table.data.md' + - 'Name service': + - 'Naming': 'configuration/server_data_conf/name_conf.data.md' + - 'Modules': + - 'mod_access': 'modules/mod_access/mod_access.md' + - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' + - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' + - 'mod_block': 'modules/mod_block/mod_block.md' + - 'mod_compress': 'modules/mod_compress/mod_compress.md' + - 'mod_doh': 'modules/mod_doh/mod_doh.md' + - 'mod_errors': 'modules/mod_errors/mod_errors.md' + - 'mod_geo': 'modules/mod_geo/mod_geo.md' + - 'mod_header': 'modules/mod_header/mod_header.md' + - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' + - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' + - 'mod_logid': 'modules/mod_logid/mod_logid.md' + - 'mod_prison': 'modules/mod_prison/mod_prison.md' + - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' + - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' + - 'mod_static': 'modules/mod_static/mod_static.md' + - 'mod_tag': 'modules/mod_tag/mod_tag.md' + - 'mod_trace': 'modules/mod_trace/mod_trace.md' + - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' + - 'mod_userid': 'modules/mod_userid/mod_userid.md' + - 'Operations': + - 'Command line pptions': 'operation/command.md' + - 'Environment variables': 'operation/env_var.md' + - 'System signals': 'operation/signal.md' + - 'Configuration reload': 'operation/reload.md' + - 'System metrics': 'operation/monitor.md' + - 'Log rotation': 'operation/log_rotation.md' + - 'Traffic tapping': 'operation/capture_packet.md' + - 'Performance': 'operation/performance.md' + - 'How to contribute': + - 'Contribute codes': + - 'Local development': 'development/local_dev_guide.md' + - 'Sumbit PR': 'development/submit_pr_guide.md' + - 'Contribute documents': 'development/write_doc_guide.md' + - 'Releasing process': 'development/release_regulation.md' + - 'Development guides': + - 'Source code layout': 'development/source_code_layout.md' + - 'BFE module development': + - 'Overview': 'development/module/overview.md' + - 'BFE callback introduction': 'development/module/bfe_callback.md' + - 'How to write a module': 'development/module/how_to_write_module.md' + - 'FAQ': + - 'Installation': 'faq/installation.md' + - 'Configuration': 'faq/configuration.md' + - 'Performance': 'faq/performance.md' + - 'Development': 'faq/development.md' + - 'Monitor reference': + - 'Protocol': + - 'SSL/TLS': 'monitor/tls_state.md' + - 'HTTP': 'monitor/http_state.md' + - 'HTTP2': 'monitor/http2_state.md' + - 'SPDY': 'monitor/spdy_state.md' + - 'WebSocket': 'monitor/websocket_state.md' + - 'Stream': 'monitor/stream_state.md' + - 'Routing': + - 'Host table': 'monitor/host_table_status.md' + - 'Load balancing': + - 'Balance details': 'monitor/bal_table_status.md' + - 'Balance error': 'monitor/bal_state.md' + - 'Proxy': + - 'Proxy state': 'monitor/proxy_state.md' + - 'Modules': 'monitor/module_status.md' + - 'Lentency': + - 'Lentency histogram': 'monitor/proxy_XXX_delay.md' + - 'Condition reference': + - 'Concept and grammar': 'condition/condition_grammar.md' + - 'Naming convention': 'condition/condition_naming_convention.md' + - 'Primitives index': 'condition/condition_primitive_index.md' + - 'Request related primitives': + - 'Method': 'condition/request/method.md' + - 'URI': 'condition/request/uri.md' + - 'Protocol': 'condition/request/protocol.md' + - 'Header': 'condition/request/header.md' + - 'Cookie': 'condition/request/cookie.md' + - 'Tag': 'condition/request/tag.md' + - 'IP': 'condition/request/ip.md' + - 'Response related primitives': + - 'Code': 'condition/response/code.md' + - 'Header': 'condition/response/header.md' + - 'Session related primitives': + - 'IP': 'condition/session/ip.md' + - 'TLS': 'condition/session/tls.md' + - 'System related primitives': + - 'Time': 'condition/system/time.md' From 0ee8871bad6a3064957bf927f0ecd67f1f91d3f8 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Fri, 15 May 2020 19:43:36 +0800 Subject: [PATCH 082/111] docs: update operation/performance.md (#482) --- docs/en_us/operation/performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en_us/operation/performance.md b/docs/en_us/operation/performance.md index 067c2ed9d..d13f0a41c 100644 --- a/docs/en_us/operation/performance.md +++ b/docs/en_us/operation/performance.md @@ -36,4 +36,4 @@ $ ./flamegraph.pl bfe.flame > bfe.svg ``` * Open bfe.svg in browser - +![flame graph example](../../images/bfe.svg) From be27835247a89922062140f75e290bc0243dca9f Mon Sep 17 00:00:00 2001 From: yangsijie Date: Fri, 15 May 2020 17:51:32 +0800 Subject: [PATCH 083/111] docs: add an image for bfe architecture --- .../tls_conf/tls_rule_conf.data.md | 24 +++++++++--------- docs/en_us/operation/env_var.md | 2 +- docs/en_us/operation/performance.md | 9 ++++--- docs/en_us/operation/reload.md | 4 +-- docs/images/bfe-arch.png | Bin 0 -> 76466 bytes 5 files changed, 20 insertions(+), 19 deletions(-) create mode 100644 docs/images/bfe-arch.png diff --git a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md index 2334a9164..e7da66b4e 100644 --- a/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md +++ b/docs/en_us/configuration/tls_conf/tls_rule_conf.data.md @@ -10,18 +10,18 @@ tls_rule_conf.data records the tls protocol config | ----------------------- | ------------------------------------------------------------------------------ | | Version | String
    Version of configure file | | Config | Object
    TLS rule config. | -| Config.{k} | String
    Unique label | -| Config.{v} | Object
    TLS rule detail | -| Config.{v}.CertName | String
    Name of server certificate (Note: defined in server_cert_conf.data) | -| Config.{v}.NextProtos | Object
    TLS application layer protocol list
    - Default is ["http/1.1"] | -| Config.{v}.NextProtos[] | String
    TLS application layer protocol
    - Contains h2, spdy/3.1, http/1.1 | -| Config.{v}.Grade | String
    TLS Security grade, Contains A+, A, B, C | -| Config.{v}.ClientAuth | Bool
    Enable TLS Client Authentication | -| Config.{v}.ClientCAName | String
    Name of Client CA certificate | -| Config.{v}.VipConf | Object Array
    List of VIP addresses (Note: priority is given to TLS configuration based on VIP) | -| Config.{v}.VipConf[] | String Array
    VIP | -| Config.{v}.SniConf | Object Array
    List of hostnames (optional)
    - (Note: when TLS configuration cannot be determined according to VIP, SNI is used to determine TLS configuration) | -| Config.{v}.SniConf[] | String Array
    Hostname | +| Config{k} | String
    Unique label | +| Config{v} | Object
    TLS rule detail | +| Config{v}.CertName | String
    Name of server certificate (Note: defined in server_cert_conf.data) | +| Config{v}.NextProtos | Object
    TLS application layer protocol list
    - Default is ["http/1.1"] | +| Config{v}.NextProtos[] | String
    TLS application layer protocol
    - Contains h2, spdy/3.1, http/1.1 | +| Config{v}.Grade | String
    TLS Security grade, Contains A+, A, B, C | +| Config{v}.ClientAuth | Bool
    Enable TLS Client Authentication | +| Config{v}.ClientCAName | String
    Name of Client CA certificate | +| Config{v}.VipConf | Object Array
    List of VIP addresses (Note: priority is given to TLS configuration based on VIP) | +| Config{v}.VipConf[] | String Array
    VIP | +| Config{v}.SniConf | Object Array
    List of hostnames (optional)
    - (Note: when TLS configuration cannot be determined according to VIP, SNI is used to determine TLS configuration) | +| Config{v}.SniConf[] | String Array
    Hostname | | DefaultNextProtos | Object
    Default(Supported) application layer protocols over TLS | | DefaultNextProtos[] | String
    TLS application layer protocol
    - Contains h2, spdy/3.1, http/1.1 | diff --git a/docs/en_us/operation/env_var.md b/docs/en_us/operation/env_var.md index a97b30c3a..db91e22b2 100644 --- a/docs/en_us/operation/env_var.md +++ b/docs/en_us/operation/env_var.md @@ -1,4 +1,4 @@ -# Environment arguments +# Environment variables ## GODEBUG diff --git a/docs/en_us/operation/performance.md b/docs/en_us/operation/performance.md index d13f0a41c..37c49ef10 100644 --- a/docs/en_us/operation/performance.md +++ b/docs/en_us/operation/performance.md @@ -2,12 +2,13 @@ BFE has built-in CPU profile interfaces, which can be used in conjunction with the FlameGraph tool to locate and analyze performance problems. -## Configs +## Configure monitor port + +Set monitor port in the BFE core configuration file (conf/bfe.conf). -Use the same port as the monitor ``` -[server] -monitorPort = 8421 +[Server] +MonitorPort = 8421 ``` ## Tools diff --git a/docs/en_us/operation/reload.md b/docs/en_us/operation/reload.md index 41d5e3bd9..07ba2d8d4 100644 --- a/docs/en_us/operation/reload.md +++ b/docs/en_us/operation/reload.md @@ -1,6 +1,6 @@ -# Configuration Reload +# Configuration reload -BFE has built-in feature of configuration hot-reload. A new configuration file can be reload by sending a reload request. +BFE has a built-in feature of configuration hot-reload. A new configuration file can be reload by sending a reload request. ## Configure monitor port diff --git a/docs/images/bfe-arch.png b/docs/images/bfe-arch.png new file mode 100644 index 0000000000000000000000000000000000000000..0897a2e402eed080ce89bf111351ee0afde4d646 GIT binary patch literal 76466 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 literal 0 HcmV?d00001 From 06277869fe08a77a679ee38b77f32b27731817db Mon Sep 17 00:00:00 2001 From: yangsijie Date: Fri, 15 May 2020 19:54:00 +0800 Subject: [PATCH 084/111] docs: improve overview chapter --- docs/en_us/introduction/overview.md | 78 ++++++++++++++++++++++++++--- docs/zh_cn/introduction/overview.md | 78 ++++++++++++++++++++++++++--- 2 files changed, 141 insertions(+), 15 deletions(-) diff --git a/docs/en_us/introduction/overview.md b/docs/en_us/introduction/overview.md index df0074b58..a49e8044f 100644 --- a/docs/en_us/introduction/overview.md +++ b/docs/en_us/introduction/overview.md @@ -2,16 +2,80 @@ ## What is BFE -- BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front End. +BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front End. -## Advantages -- Multiple protocols supported, including HTTP,HTTPS, SPDY, HTTP2, WebSocket, TLS, etc. +## Features and Advantages -- Content based routing. Advanced domain-specific language is provided for describing user-defined routing rule. +* Written in Golang -- Multiple load balancing policies supported. +BFE is written in a memory safety language and immune to Buffer Overflow vulnerability; BFE recovers from the runtime panics and handles them appropriately without killing the BFE process; BFE runs on Linux, Windows, Mac OS and almost anything to which Go compiles. -- Flexible plugin framework to extend functionality. Developer can add new features rapidly by writing plugins. +* Flexible plugin framework + +BFE has a builtin plugin framework that makes it possible to develop new features rapidly by writing plugins. + +* Multi-tenancy architecture + +BFE is designed to provide every tenant a dedicated share of the instance. Each tenant’s configuration is isolated and remains invisible to other tenants. + +* Multiple protocols supported + +BFE supports HTTP, HTTPS, SPDY, HTTP2, WebSocket, TLS, etc. Future support is planned for gRPC and HTTP/3. + +* Content based routing + +BFE provides an [advanced domain-specific language](../condition/condition_grammar.md) to describe routing rules which are easy to understand and maintain. + +* Advanced load balancing + +BFE supports global load balancing and distributed load balancing for zone aware balancing, zone level failure resilience, overload protection etc. + +* A rich set of builtin plugins + +BFE provides a rich set of plugins for traffic management, security, observability, etc. + +* Best-in-class observability + +BFE includes detailed built-in metrics for all subsystems. BFE writes various logs(server log/access log/TLS key log) for trouble shooting, data analysis and visualization. BFE also supports distributed tracing. + +* Easily integrated with ecosystem projects + +BFE is easily integrated with mainstream layer 4 load balancing solution, and other ecosystem projects(e.g. Kubernetes、Prometheus、Jaeger、Fluentd etc). + + +## Components + +The BFE ecosystem consists of multiple components, many of which are optional: + +* BFE-Server: The Layer 7 Load Balancer for data plane (open source) + +* BFE-Reader: The Log analyzer is deployed locally with BFE-Server and aggregates logs to reduce the data size of subsequent processing on BFE-Aggregator. + +* BFE-API Server: The API server is the front end for the BFE control plane. + +* BFE-Aggregator: The Log aggregator aggregates data from BFE-Reader in real time. + +* BFE-Scheduler: The GSLB scheduler automatically computes GSLB policies based on incoming traffic, backend capacity, network topology and quality. + +* BFE-Controller: BFE cluster controller for normal management tasks (e.g. anomaly detection and alerting). + +* BFE-Web UI: Web console for BFE. + +* Various support systems, eg. cache service, asymmetric cryptographic service etc. + + +## Architecture overview + +This diagram illustrates the architecture of BFE and some of its ecosystem components: + +![BFE Architecture](../../images/bfe-arch.png) + +### Data plane + +The incoming user traffic reaches the BFE server through the Layer 4 load balancing facilities. During the processing of user traffic, BFE may interact with various dependent services. BFE routes each HTTP request to a target cluster based on request content (URI, header, cookie, etc), and then choose the best backend instance from the target cluster based on the load balancing policy. For more details about traffic forwarding process, see [Traffic forwarding model](forward_model.md). + +### Control plane + +The control plane provides policies and configurations of data plane, which are maintained via BFE-Web UI or BFE-API by the administrator. The control plane also makes global decisions about the cluster (for example, scheduling), as well as cluster level management tasks (for example, detecting and responding to cluster abnormal events). -- Detailed built-in metrics available for monitoring service status. diff --git a/docs/zh_cn/introduction/overview.md b/docs/zh_cn/introduction/overview.md index 1d4fcdbd6..012fb9bb7 100644 --- a/docs/zh_cn/introduction/overview.md +++ b/docs/zh_cn/introduction/overview.md @@ -1,19 +1,81 @@ -# 介绍 +# 概览 ## BFE是什么 -- BFE是基于百度统一接入前端(Baidu FrontEnd)开源的七层流量接入系统 +BFE是基于百度统一接入前端(Baidu FrontEnd)开源的七层流量接入系统。 -## BFE的功能特性及优点 +## 功能特性及优点 -- 支持丰富的接入协议(HTTP/HTTPS/SPDY/HTTP2/WebSocket/TLS) +* 基于Golang构建 -- 基于请求内容路由,支持高级条件表达式灵活定制转发规则 +基于内存安全语言构建无缓冲区溢出安全漏洞隐患;具备异常捕获容错处理能力避免进程异常退出;兼容支持Linux/Windows/MacOS等多平台运行。 -- 多种负载均衡策略 +* 灵活的模块框架 -- 灵活的模块框架,支持高效率定制开发第三方扩展模块 +内置灵活的模块框架,支持高效率定制开发第三方扩展模块。 -- 内置丰富详尽的监控指标 +* 面向多租户架构 + +基于多租户架构设计,租户之间配置相互隔离。 + +* 支持丰富的接入协议 + +支持HTTP,HTTPS,SPDY,HTTP/2,WebSocket,TLS等。未来计划支持gRPC, HTTP/3。 + +* 基于请求内容路由 + +支持[高级条件表达式](../condition/condition_grammar.md)定制转发规则,转发规则易于理解及维护。 + +* 高级负载均衡 + +支持全局/分布式负载均衡,实现就近访问、跨可用区容灾及过载保护等。 + +* 丰富的扩展模块 + +提供丰富的流量管理、安全防攻击、可见性等相关扩展模块。 + +* 一流的可见性 + +提供丰富详尽的监控指标;提供各类日志(服务日志/访问日志/TLS Key日志)供问题诊断、数据分析及可视化;BFE还支持请求分布式Tracing。 + +* 兼容适配主流生态项目 + +兼容适配主流四层负载均衡方案,及其它生态项目如Kubernetes、Prometheus、Jaeger、Fluentd等。 + + +## 功能组件 + +BFE包含了多个组件,部分是可选的: + +* BFE Server: BFE数据平面核心转发模块(必选,已开源) + +* BFE-Reader: BFE日志分析模块,与BFE Server部署在一起,用于对BFE日志进行本地汇聚计算,降低后续计算处理的数据规模。 + +* BFE-API Server: BFE控制平面API Server,其它控制平面模块以BFE-API Server为核心协同工作。 + +* BFE-Aggregator: BFE日志数据实时聚合计算模块。 + +* BFE-Scheduler: BFE流量调度器,基于流量、容量、网络距离及质量,自动计算全局负载均衡(GSLB)策略。 + +* BFE-Controller: BFE集群控制器,执行常规控制任务,例如异常巡检及报警。 + +* BFE-Web UI: BFE Web控制台。 + +* 其它周边依赖系统, 例如缓存服务、非对称密码学算法计算服务等。 + + +## 架构介绍 + +下图展示了BFE的架构及BFE生态中的一些依赖系统。 + +![BFE架构](../../images/bfe-arch.png) + +### 数据平面 + +用户流量经四层负载均衡设施达到BFE Server。BFE Server在转发流量过程中,可能会访问多个依赖的服务。并经过内容路由、负载均衡,最终转发给合适的后端集群。关于流量接入转发的详细过程,可以进一步阅读[流量接入转发模型](forward_model.md) 。 + +### 控制平面 + +BFE租户通过BFE-Web UI或BFE-API管理流量接入及转发策略。此外,控制平面还负责执行全局性决策(例如全局负载均衡策略计算)及集群级别其它管理工作(例如集群级别异常巡检及处理等)。 From b094308d89cb9f51ebd50ce805d238d690e0ca7d Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Sat, 16 May 2020 10:00:05 +0800 Subject: [PATCH 085/111] docs: update operation/capture_packet.md (#484) --- docs/en_us/operation/capture_packet.md | 1 + docs/images/wireShark_decrypt_https.png | Bin 0 -> 528994 bytes docs/zh_cn/operation/capture_packet.md | 1 + 3 files changed, 2 insertions(+) create mode 100644 docs/images/wireShark_decrypt_https.png diff --git a/docs/en_us/operation/capture_packet.md b/docs/en_us/operation/capture_packet.md index 466191769..e433c068f 100644 --- a/docs/en_us/operation/capture_packet.md +++ b/docs/en_us/operation/capture_packet.md @@ -32,3 +32,4 @@ Modules = mod_key_log * Note:Edit→Preferences→Protocols→SSL→(Pre)-Master-Secret log filename * Step3: Use wireshark to open and decrypt the captured data +![WireShark decrypt https](../../images/wireShark_decrypt_https.png) diff --git a/docs/images/wireShark_decrypt_https.png b/docs/images/wireShark_decrypt_https.png new file mode 100644 index 0000000000000000000000000000000000000000..45164c7998b0375b4c2f15aa953f8e80d2fa6943 GIT binary patch literal 528994 zcmZs@V{|4#v^E+}FtKer6Wiv*wr$(i#I|iaZ)`hx(6NOlQ|L+FstRx`}Qagip_U{44 zK~mEh1OyZ1KQ2)7yoGdcf2Kt1R-G_zjF27`|N9T z$(WXZ;8MB^UT?c!Z&91iOl8~8WU#~q1qDH0+%zZ?p}`Vk!I7}DKN-(%&fK`ba^fK@ zVgw3;I669(2{ik!qqR%Ia^}dZsH+DX(=043$a~B1V!+RzJ8;HG9$pODv&QXSb2x^< zVH@eKex{~kc<>Um>oAr)?{iOkNpjlw-kT$S7WRP1YC?E`XzC0V@`2iu>$H!)@tgQLo&sPaV zX5k8{U^O*0<<-@qc6PPf1bH^fK32~0aV20z^XE;f$3|~mJMlpUGiPVHFRXlg__w#W zVd{@M&qcR0sm~*a6^-Kes$Or=L85`JcXv*QM@Km|(ocN1sDqn#vhZWkytFBo}>_%rpmVe{w|g{rs)e6e?y|JLb$ndjqGQSj#(AbFhhrZ6KAzfS`4fHCX2Tt|5$@U=+L2hbj)S->Hw64^apOgg z2;^#ok(ko?S9)DqIX=~?d)=JZ+|SK_s}We02KIL{jVIe0F7o(Z>JWQ+^Q-lrdHzF{ zKm{ns!n>RBJAt6pr ze1}kI*ldR|Ad*uk@&iZF{9;T5C73-?YW_fIK8wj-FeGy!5y{kZj)PbP20n5K-b$Fg zM9A!GS$H}nSsQP_1?hWpsSFP`A; zC#D{?<56D}Lrj_NiFf&Sk*%_Qho)S=op@tCVorSeYDSI*o~(UmZOF$TXUTy_(9HBV zwv-PwUhNug3pCYUJlMOltnJjfuJQ1p84TD_j6XEmLx}EyxL%BdZ%N(VP6O9=d+$;a zk*vh0L^VUV7Ot!JJQ>e8$PQFJSb&!22<*G{|Hr!iC$KSvK*zI_G)0mPsauqjWf6;i zmp&-26vz07S^6wZ@x5IZ!zobXh!Wg{oFPR~i{T|p#R}3&Z3j6guX)z=E5N>Zp_q|j z-in4?L+K7)>-&Y-RSAs@gHTCKoIhi}KJip8j?K^ny z74=^yi$J4roJRGFC?a7}co+=X^0ogQMU@}SklP#PHK-1qn2)%rzVl(#Aufzz(Sc5^Fb96hWpVaDaRg&PwhmhP)6ICB_pXA2FQf8`_F=- zV@Lu@w6Z4ZZ4mUlu@qdR9U*0PKq)wJ_uwgSdIAhG$2lYg%MH%DH2h0b`ro(*sbesM zIaAm!#0r%mq{t;*25153;~Rq2QvF~5v2*{|F8Pm5<)8%-4$N@>FgGUxJvnxE8F zHtR|Y1S8RnbuJaaI3gel$?;~wz+`}9kBy3IK|>#S?21?%kXJ!uSVK%R%Q+yw3^PLx z(42{0;5*%LF#*wbsRoy8GI=QmFWjKr_{{_%1h3P`;$WfPwMi|FaJNTxt+n zf(}8dE2c335?}JR{kN`OX-iP^VsmO8h$*d%@Od$$wcodb*nSrQcrjOt%X`rg)g3W-v>;CdM0+iM zpI-MwmA*VIsR2eOMe2nJg=h-TkO_ses_|6y7u7vVI?D>PGb!=FZ0uxp^F3GQYjL4! zU@mR%W`%f5aNdy5lrRfhDB3bHn^^gvQp6I^U%V38N z7%6Bsu$YqrfwL@8BU7xQcLK0fHLygaEbXLoud#-t;2BNl3ndNXlQS9m?PA4@pP`$RJ#Klk{W(A$1)?M}Mo1gpT$j+s)@ zGDgUU)wb5|y!b%5b;DjRDWaC0smTR!~$qLaHZkFidAQ()a^~P3*KZG)xYAf@EZ5 z>F;IoIfF6SEK}Ioow=-*C_eo9@17all*%X06Fj$v<9{}VG){PD-0`RNK@=>re=3SC zD*EJ1R(Q}HbO7^8wP2FkhZD$X6Pa4nR<7uMwY)n`P}Zb1k`uFH&ii~wwK9F7S>F^r z3t@9#unytNyiGohOYMT{CI)Ge2^b`f=WJXi3%02j1?ta;P`1uEJ?r88>^7_(x$4~) z5qk52Q2v3Z4|jwO-GZ(zjFJcZwPT%P+G3>GenFlAl<%kgqzhw^z~`amg-WUt-|9VR2{kW$F=qD*Dr#v0e{1r_I-_y z3D}2o0X$>CLx11rg<}l%w{rJgR|nQ-$9W>kVgRK-7p?&QyFf&2k=qR60HNOB*Fbsw4T3~*!JSiVvnu84fZK+DkO^rLZZ_nMc z?jmk9PoeK%{tiTdz$5gZ7iV``JbLi|&)-+uw zPl>*0D|9m@)C)tu;qtsA%k{qET3T5ttgM9feR~)fjznd)UZJDYY93p1JDJI$qNQcg z>S56BG#F1J7pJ8FDSg(~(n|RACs?n?OE;;aD8SIFvU%mqwxAkev=Up7agQax`gkZ{Ai z&~nFGa@`N@d*`#VSU4@1sQ-{e$AfVFcAfPnZF47_dh60$Q&x%%%f!f}MyXEp{GrDJ zjUEd1TX$U;NqicY&15_LVQ{K1BhV4m+t9Xvu*~XdF?k`>QNIUcJnjdb=c6uKHl46M zA!a3>9G2UzsH~iVIPZYG4c#>AIE}mSH^Pf_ri0IkP;p5av1I*INuDpfrRTPz(IN(! zmof5Ccd?xf)3nLFTD5Aqgv(rxrJWjVIoCF%Whsw77rX zEDvNL*QxkIR;J5%G|q4!2(t9_u9xA4OfEGDjbmQGxo9z5FdonK)J8fd_Uv}90xB?$ z)eTG?Ov03i)?uf5LvyS zLu5pTSUN&9Gg=lR>lcF8k)Jm$`n&Po{%%le^g0sFc!EFiwL)MB%(i}^`i4ITg`4?~ zY#Fo}E~@!_`uB$0^S#-^VQrv}#$8KDJyQETSNH?e{chDG6dp;C?ubidXnLQ!2o2|k zK{-9!(MsNtL2)Xs;N=D80&-YN)o6QJ?l;hu{_LCo) z4(Mw{migVlnfbg^a2jX96~+$(3atC+SUarG+J{2LH@dlX5H2)(u)EYRi|0$AmIq*o z^sXe7EP7$cJo%vCeJzM+8wkI(ytJaUmCViylkyz3=A0;muWJc zR11OwrJ&8d*v}^R`hAE|NT3T${F4!b=jT5AK*GU-z}H2F_3~E-lw6si!ECA7Pb7OC{+m71W(!t~P zn6qew7&iGz6Jn7DtsNW`rqkM;6qNS=%~a+-g9!l_>q!BcS38TY!oY>* z`LZ7l&xH2!Hp1v+_REQx$)nVJlzAlzEsMM7a>jGh>BnP-j zWl2pTl662y0VrNlHRp)dH@WRo(D^vB*nO|)I*gDZ1vcFtCFPL2TZ`monZ>#c@4L*a z{?HwHKXaTDYrC=Q^nFH(c-fM3c@XMX5^^>6q?Z}JW0I%km|I?E&j*^2=je=~^G=ia z#)@yRPdp1fUye&*TU1v;RT^nBU`|-!BqYkZ--+H5cS_k1jb*(ro+PZ%LOp*Cts-NV z1H!~;=hD3U_}@ck5A?6!3F7S5LlY0)_S5{oC8pk1z|&c6e+61{W!K0q{s~~(o|#lO z4(tD$NP>336(_OdpBN4I_)>=38$Tz-{ZWokm`Ow%diAD|Qz<5`g#!F2W;=5<*cKXg zogP6Xc&Frj9K)mYGiI^;E3DM!^KlwU2y{mjnDy4ajV)+%Ud77sS{wKu9^=33dWn3& zbRuDS+Q!DlshtY)NsIz@J^KR>A$HI&KUmPzSS z>z&qKD1WttJ?!s^(dN0QUy?X~$~!KCj`2Nj1rv*e&EeQ2fC^5W7zN2fx7lun+55k5 znjx-DGWNyfeSe%Jq{{T4%u5iCOl7ddY69#09%+59y?2Km&K7^`>BZ&pdE?Z#x?O4& zQCnMC{W6fxm-i2bLgc^Jqfb%Dqz`PJlJ!d9g@Q(vGsWO?yU^&q8T?7H^ZC4MKT*bK zX&&~(XHb|DaR&4&!U`%^3!)8V+2&YFz}B*o0Al@h(9+$aKZZA2O}g|r&NDYYiHmLj zDqsZm2f?q^8)5?Fa6tW|2}d~yhmkYCM<~6ZEy93^yYFmXPv>#?P>2V0_kDqfhoT=> z_WlDbb$=Zzdoxc{c2o~rLfuMlAyindb3#G*SpI&1T$!Sv0}=;&-@c|hEswHeCO#o z5EcBt)39DTs3ol|hfxLmz!n8KU~qSLLwLT$757OC<@!V?G1H1el*zDX7 zXT*8_3rhc;RAV4MSgScVRY}&jO}7c4KhuyOAf;7&)%aix3#&2nFH_3rUJV z|4>*Bg~5v-kl(P_ZE?Q2zhL{_3=w8>g2}+c!A-rziPZS|V>4}H*MKvQD{CVKL86fj^9-E|#YvU$&wlA`W*nj799^*?M6I5UDss&R7zOUekNw2aFE8eGUu;8mcz@@J+=77Y^sJvhn zoE7n|+y{+ml`Q+_$Os;l<~p+&NZK7KEC-h6NnWLdY3PG&?(PmmAj4&FfflSGO}G(C zq}gdgFQpc>r{`k3g0xgY_K3rY=~Vsfq) zph1{Tw@1+6*Wp0!fmB^ysx%#)oI4e^(Yg&Ghk)X<_mC(leVZQ&r_t_0X$6B;ro)2} zD-~P5u8d$W&h2$LYe~fSB)9i5IE3X zAN*hZ>i>W#FgibgRm0Bf8(|?lC@v)PEH{jPlHK^cmi`prt1l6cp@b@C{cEBkGExcx z?hKGPB7(>#y3axo-`9kQ-fR$kqJsn&6SRVJP|kS`13dw00dz~*;fq{|#{$=sG^UdnV#!@_M! zp$Kvm9gJeE!A2&E-ai8H;;-1uvB{kuf|13!*Psr%prp=hyD49b$e|Qbmj==75rG`| zqq^v0)XeKkkIDg0^YnK#u@t-;(5gZ$VSK$#Gk%|-r#HVWfw4cljPZ2V`Lu}rMtD3r z9+?JDI?5MStKMisC;9Wc0FW;HEgf%`{DHZLZ7iRQz)(gMb!iSqiCCZNX@bY*Ram!E zf{4?LYAh|+d5@nXL2<9Jl9|cs1a>`MeE;B$uVPVE`)T_B=Ewf=GI(eS)wqRtIHea- zDd521@pNEDgrFD*?P_&MU1;sbS@+OR=&ldBRBGID+VwLj0}GtD%GUuj&soKP%33ybL?(LvDjwyjeGR`75RB;yDX2& zV8ONZyO@u6nw% zT#OVm%bGl0D*v08|4*mu&xMAhaXS~1Fw+tH?xA1}CO!fu7RIw^bA~MHpxEWCWuRl} zF*pp${XR)fm+z|&p(;Ls34PG=YRMEk)oQ_`M1EjIU z5;=-8AO;}FU>8(#i#4De^M%G0SMScZzo~KV-Xms|TBs-}i}_9#6{t!bqfcwUiq|og z;zi9iw(AzJY^2b>IJxj(sfPLxnd1P~6!_21))RPY=1vQ9qphaWiI7>IEj!Mv7SKx( zBs1~MDm$5$7d`VIPIWD489MV!o5RO5~q{V=XrDd`Xn3AofCP?+A`AKJn z`VioOnUQfdfSYm}Y}2y;$+)w_NFR96I-nc(=`83S+Pj^=d zv-mRi)`w6EiC3DL6slvH^!x__cAQ*Ix6fWGFD>60m#%2P@S2fkcux(CNA2^35tcg} zdv$=#fiJqQZ&%JUV{+MeNa9qq?JlO*iSTUQ3hU;k>VpxvY|&|^fXeaHiS6o1_2@|V zklRV01JTv6f{!~T40Q2xw_J!qIp18W zyh;g#SNr@6mGkE;>Mtj>o%yX{(zG0>go1uJ4~GW9l;GHsNQFjG$r}F$ku{(bpD`N%x#@{L@>hzl0Vm{r4xzsG)F>hpoS%VN$5rGjT z!uv?goCR$)B*ySq8O+Xh!#vl-G}r1jjQ?s>sR=dSmvW@obbA6sMxSU)H*+_T7Yp0}Y zYF%PX$T8iLqf-pqUUNWd1XfH-*$?s_vzcx(7Hkct9V+jk!K{?#Qie%gt2mLZElz+F z!hJd*#$2ldsJ9)mLF58=ng~R^kG2cpk7fVyA-1b-^$Vv#jVXr}SAB<|bW}D2k%Py% zn8kL&Mwdd@Zn>0{D5DsPi(hNh-+`8WRFd*1UE6R}okHl0uSQ=@*-G1E_rXra?CeG@ zopA_ltNbzHej-(4``mgm3dB@UenlTZL(9lvs3rUNh=UD6<5Xcdc08N^S$tp1r%veK z{4(kJ-=%S0+21>%I~{ZPO-IfJ?*9O)=Eb~FvUItabbOSb_ID$LUEMmYN7v?Y(E9lk|Z&E)mb#7}bq+|2)IANV(`@EVF5M;s4(b-;r^ zcU)afE2g=YOKmgBaAfh#`Cf~pYhz9%;plF7V09^~@$S!Yf(T}Y(41g`@K5H_9`daT z8%@R>@)Jb0gyW`tfAl%d9O3_xL;?Hj<{F**K3~t z9g9K?sy2u1puOKa6~FiAV>zcM-YnlU9ffQ*2#4?KsNyNhQ#P;3nguf_@sEF;tMEt} zmn3aI_y!PI4xjHmVV>)U^8I{z;Bh;mUY`gxPd)+`t!~#JLtQ9>$Cv5=bYI-=rtI91 z4x|N$?5Cf=DLOdJJ@zKrNR}uVCuB`yb&@S>LKWl_B7Tn!dDvd@PU$y86p6=(r%geu z=za(e2nZX_<%EC;3E`cQ2r0WH$S4=8-(No6WD4>N56t3Ds`@X;S8WP`sgHY1~%<`Y#}a*MSdXvnHNLI`^gj@bSOmtc1nB- zgqn!E9_=L^IZfS$kN-Gc#bWkiRa#ttXFT_T^~8%Z_MucrN~`y-EJor%ydfHT5aoRu zyY{SnH}OCPrl74Ft>r=(I65vpaKhlRGAKqrrC|tz!9W-^I6Cs4Zil+>=mz9{kNO*p z7lu;N3xqZpOE~L9kOrS?M1kl)n9ASz(U~^|1qq{}8Y6b26ZN{0As=q~%LiIDx2{ zRSPbzfiw zi~Zn4%H&*)HO7kVZgkH(;-2;Mb~OEFoAG@s{Xc5u2fu(dckaihF{hG866+UiSj?WG zx6XXqkeFfsk?gVEuf8NIO(iGT@0(9Tl0=PDp50f3A8>zX@8584->T{iPZJ7WfS7#| zn0h(Ee7wwGEF3!___R9%-6iMKz`^9mqBH51iHG|MWm7C3LlU#;^f>dp7gDyK>6Z<4 zf_`9|-iY)4&Je2qhkZ&S`X(955)*}>SnJgJ&V zeJgDzn85s(;aifa?ysLORhxCApNM{_;80IR=If6)6lTB~p0b0;vb>}H1e-djzBmcL zXROvst^jrYH`0~b-Tom;4&x8D1BVk`ccU3=d*jEyY*;MEI9tBY+a7-_%IdwJ?WVf- z#bXHB;NV->4nZt)UdA2YWpTeO2;=-FqxK;XD`Vs)4S9a?V@f|=Y{Z%CrAJ@!bpivS z2!@-S%@1DYjU}aHhTOluyy<4SgWfqj=1dVN6tbcOzGm(BpG$%Iy^cI9b=u)cLB?2I zK5$o^_XrH!Fd+>_IjnA_4utz6X2CR7e=F|Pvn$EUYX<+O$T0iAQgGtP@6XinhDi87 zL&GC>A(waD9B-{Q_$>d>VcEyo@*M3k8wjrwq=2`MzmuR!_^kXNf}k5=-}}i%-b_g6`?ccb(VkF5Mv{`-`Wpt`l=JoLwVGbbj8o4Z zPhm!0m{(z3URpN4UMqT9+s)`bRSsZ7l>wzGz@V_WY+`f{pqrZT8rE7K5KWsmFG&>R18@!rzydl!=^C( zpue>yi#i`O!9CSz>m`ym_Jd5VyA4nOZ6Qt3qZ-LsKQEX*i=CuTf&c3sv+q#I1BK+< zr~PE2war6$sWAplcS)EWKw0?R58D1(irZkfE&h>t`OE0x-|5*KuE+ECYw0cmE;kxz z<{HA^ym)2^t?f=z!^_MRDhBSbWowST9q+5buIuh#U=oUnsR;=&H7H}x4NVw4VSqJ2 zUPxY^1J!;WNWRu|4RY1`yKc_v9M1gm(#x{ zQgc%<1gX(rgNU>}*B|1spDk(i1nvDe>J#_$nFw=Kh^oa>YomYmD=JR=;ys-yk9uU<}v>?rG%|N{yg${8y5iXblHjg-v52E zp&pS~1Tg#vv6PI97fHyh*tGA1ch>jDUuOMwwsPES47bQslPj@}j=neAu2hYPR2a+$ zebuPH;fv`t|xRlXoHz0Pq+7hu%f4blJUwpq#5850CXl?P24*P+~ z=8N2yvc7McuYbjFdb0X<3+i(xKoDr8#MC|q& z!P8l7#H6H9e4WptTGC9irl;lB%zi*DxG@Dl?{+vgIqKN)9 zl_#5LogKO=?NMQ4Yq8jG9B)T9E{B{14ob5FO4Z&`sDbqZCGGP+O(UI(H@EvY2^NW;NsVrHgM zaiKuCubdWhU7dZu``3P#$KANOqPlXpwPjqgkleWY_da2Tp(i$njsWVk9Q;cf;b#Qx zf=qi|2(HE$a&Ia{3?3gC?rPl#qW{C}OPc>Hb*bJnHtaJp8Ybp=IK=a)MQCTvUSTu- zj1cG~X+^l2UNQE7y0bGrTjFUhaE2(z8N~p0{{|delNrKZd4#r7vjw*XhUI=6eCN{$I{7E4#e?keNaN z&qR=hCri0Ql3_-_C;ONEctXHUBI$gWHBBm`SJn)xlA_lIk>A7j7bH)GW#@hL^ZwyH z-^b_oP0qC+B557=(5C|JO%dTIlAk`y+w9tQ&xu$oFq8;WP3u=NsoRY3drx;~(9~T?vZtza3^YdJ=`8Q(v1jz6a7d||f zP7|S>s(UTKGPKtIcLsP+5>V7zLXIM1o2q7Y4sLkpB31g__amEEH8xkLV!O#*Kz+@c z$!rTEL>t#JD0j*07_pSrSgtqk3jSrIerIVbAo-9LydTe{ZF>nxRL+>xOEK%;aFFW~6|x%R)FM9#kZ(e^m9Ie$$PJk_EB{Dppi^8OCPQ8;xt-@-%ZB z+!bDKY)ZCBT?+G=CS`xGpa{z@+r1cg6WBw=?HMI}N>x19t$a0YOMLbrM-kZ8P!SpA z0M|1+-@Uvp423XymQ#;$Tf84Z92^TCckGopVYeB1#dkl)(Z_+$hbL|+#XOBNN=m;I zivJ$J03(6PZD?`qH-dKO4&Bp;qUcqbj=<%$*MG(5;JtmClpB75$M|&3BTSSkB#0px zpH0B&RhUj;8O~(0Wiq@-EeV;!{cwRY*^m#bx$Sh8C_lHyNI5o{->f-4KE8AghQ2g7 z7Y%8dAv}g&_@kX**_9|?DkSYEqITP**w0O;!BayA$jk=!T}PM8EW{U__EBrbHw63v z{^ZckM&q@KRvab^CNH_=<6O{V66YH#jkA2;03xxt zP!;z5lBhc)JT5g^gDXJ=D`Dp@_n}Ps^Tfo2$gkk{f(H}k&clbGzDlI4VUsD(SJ$F~ zonC9qQr{+KpF8HlbposXYs<5@EepAzFzI(dk zlQq`;Ppe@+r97xaPaiW%QIGDD7sM6>5-W8fBE!Kx9o6c@0|R-TN9Ni#ZyLGmA4>hT zSdH3d8E-dN1qT$x8H6yG71eYK7XUn;F2VU0E~iUB4qw{*PfaE=j(Hv1Wdc|jY*`vX zOIn80ka)9nM>KJ;2M|mVuTzIkqBG+eX=PC<{=C6CSvg6%=}nyth*{GoNx12465i1W zjd6*~i0H?pHdarzWDLciw&=&zR0bo>FA9kSMw75JV!7;x)YGy(N)|clo?=bZoQK|J zhQfOM83|AU(D*ozxi4W(tiPsR?t~T4;YT2Lr*;Oz?pOtm^o>S`UKU!{yZd=(RVrAmF4!k%p zL@2_3t>KvTF$Wf=?}^X4wGc0o?j5;l67y;cIy+Q+G1oW4e-1D7Z8#7&nZmSQ)LQXB zTNcLix^=9w7dm1WTJq#=Z-XYxw&oUt3nz}vw7GRzHIF<>_;HBKpN1WHe|lv=jdK1H zORxkWErog#3>-h=HW(hbf!&~O`MhtBtq&&DWw;<1LpJIhCq3uyInjVpiPQ+(^% z)O#FmWus6CylR25`pcT|eI5$kao;=NWezcc=R`W-CGmLWe3CO}%P&x;Hp3(c1Q!>{ zga1iY6e^AJuh`#G;eY-UpQWa*AjN-`x%sLK2gy(8@3Z#IX;iO4=sVZWTcHCNIzuq3 z1TK2+=wIOqTkJ8#iJZW>4)wrlK)-Bk!eT+u{SRu|w z3v>CAspjFzRFSnykCxh_Lsl~Iodjm`YnbrTG)bkH zXI?l%pQh7JV_SS7m}?Yp(Q@vQhKyC+jQ;Et?q&{a<+VT|Sr^aDdoN?A016X+oM+HB zbI>qzl$dpigjlQAQJDMYQkbZAhQ5fGFyW;!D~fn|p@^hP2V(Ync!*W~|s3Sx)sD+S2Z}b|*hzmNh#p?==Ce`^k|+IM@AcUDn1Jw%zbfH$6PYdrokh zovlFn&sq4!1QH3NhqkW8VFP-DR!pSgSeYV2ue!E|Ib+NGloj40v{l2Rwt}e=*VMsN zt9AUUxX0pxRdExWi8g!Ql6rGpL}R7I604#hB@j3Wx89e?uyb&FseDipcj*xRY3p*r zwi%!pVLQwmLL@9=M;qASs=*?JTnE2K^a-DC;1ess&BQ-Alnbvpb#jIlkt%bLwNtk7 z=lV=LCzE&B9#cpj`qrnmk;VQlu-`KR1EgWg{P;mpWEyLl|H(g9F5DBUo$BaVXzy5- zp|mDAk=|T(g}-J|=5|1T{;Q(X0z&asl{sbMjmaJQZfpohd0Zg|nxaW@Eq~V={S(g5 z9Bi`qe&K;)*4VfM!bBG=NIJ-J0y$}-^v$|Jn0O+t`&S>lLd*7r0i!a``70#9YThYc zVOw&gm@}>K{buL5`3hfEZ?{?4%6+S~FSUTOnezbRh+;jk5-jJQSuB1>kxs9zZy>yL z1-G-#0=9JOja`AQwjAM2MN#`SD(?~|18U{{7+GMd$s%gS`TP&!hW+`V=%M-hbgTE2 zM7+ml@{o?iwHUQ&%1C#Wi5!a83KzYy679Ks9*y@2w`TkX3+roUVFQwymF)wYSmRX# zRMu+YQ49rPNwjM2sqTu%c$JHf0mEz6ead6<^9Ha*l}fts6kLpDAUViU4yTmr?Nm}T zvD&M3zL>t&GyeCq_vQTSq>hCBjVY=`g-gg{QNmY@@lk<2pDH#Qcgc|cyhrD$MvQ%Q z6=SdUj-n`J71K%!zZ}?GBT%z}8>n?sN#kB>L|$ySL{RuF$IHJ;YTP<|&a`MZne)6^ zTjVG!OJ0PVgA$|GNe@*ePk~A6xWnO@Zr@w=ZR=W}bQt^8?1?S6BWmjnfRK%&U<91u z=?kFCs-*68&wf1G@|`_cZZEMwR^h1exlWGdm4X~MT-_+3?Q`h=l_jL@vq13CmdeVD zvi{PJY!;hOyNd{8ht+i4Jhd!rMXxQIu7)VQmD5a@)NY(V)ZpbeAs=*75m`352Mh)w*gi=T9ZB0p{Hn<^pD)J;C$NI==$uMY^cE-1#2#I6 z5eLiQQjaxdjvbtWu+Kq@(aQKS!l-y1l0cgXhW*S}-i;#Y!ML}lsRJP}-^dh5i!?@s zGDF>6{;kL;oC#wgjRdq$S-nAFl-z_qGluwXO*&1~k<9wl_(6uao0ghlJ1pQzS2KLy zimqTg^Z?&PGqecC_Jd3<-OK~j%5V#!|Cg`n4P-XK{QLt48?3f+k#Gopz?yirCg!^38;OAXrOy z1+BkC@V@7AmMz7PSPR572usRoT=L>@vUKGH@|==O6&{(YQX)Z2{14f#+gz#m*E!A@ zCtq41G}GWxWd(kwc>A@q!Fqe-$#n!zoEF1hdQ$orT*Iz$ZJIM#t1eY_0DCl- zSv^J#&&I{Xk~Wv#8Se~L2LPe90i)3e;z~>20eLPQ=A~E_HEaB{TMRz>WJB5Dx2ygK zp!@@s7xi1?KsY4Ya3R97LD(1$MpCX8SfwCyFvdHTUgR?F9X6Ye(PDbsTM!CtJMs99 zDK4leV3>1y_2Oq@N&roRW>G<1V6^T%!{&WPL>@azofJr+^-_muBC>E`-8C{C#ztWL8p8xqgT6yso|O6I_q6J0)zMTcdg+8pebg5Wn3585(X$o1>Lh`-#D%$qq)5d6(sftp7{+R_0X z6_+Ybx-9;wGQQ$@G(WYA=o!!B0H&Ia>Ae=m8UO=Nm)`u;(3l^Ym$P_qv2x5Ay~ikv z9Pr;2eO0!2bc}49Hs2uh3|q8yug^?Sl{Zp{I@r0f zv4ab z2^}O+nCI}(*3P}=X8s(XR@;nNZBZ-{KpBk5nbQB9lzLsnK8C}s;)=WPbHMxX)$rUoafq1%4#CMtHH7LOrA2nd2W9L((#=X(cfm zdS}s{Z_Z7%mBDl~ROn58j-I)fRiwD4Qs#e6{{lvB2a@QAiKSDo&s3jAk*2GS(&PQw z66~VPp9=rz{e|*6+-oQD%)ktTn%0osVTL>`gTe7vQDQKo5hY3HJFTXfnIsr)7>F^& zIhO@hd6W5Bisz%L?c|~Y8$GU{bg4=)uDh~!$uAFu;{T7X`T2@p^QA_>yD^L~?F;6@ zosgXm6E7=TT4@aw8sZIMO${%D<+MOsFsLJz*UG_i<92MLNB{)_4a3XYEw05zMpA!@ z=@nwd0YN4-He(zC2I|?9Ua)sl9)2!Vu2&E1D_QvDnZ)?GRTCyjV%AYkW-}MD^N*sgZbWu9-==Zf^9+K~vMX@Dnp1Q-e zfsz&Xg3{vJ^+&nA1<^K6!qi)_Q+zmxqMU6_WLDyK%6m3vq~pywUJMs06c=GuRh(t< zg6Kk#P++hzHewGv607^=gs)^Vlr~^1df%_28IBu^D0W@ra=hZwBv*CdKG}ygbZUG; z2v6==i)$>e5IkB9!D-v`>o*(}97bG)YxidE7^RQl4?K*zRE7bzvr-3^(vVpU>6@bz zHpw!U^kI)XXi9y^-(o_+rbJkRo?_?{QizS~Za7q*^szQ&+{VE4oaIpWv8pXhO}SB8 zsV&sx+?m#*MTA8WPKPLxzt%W!pxqJn~wB$=>rotX;u!dVN?ps4KvN7 z==aJmh(y#olYJg44TwuC9K?K0v`JJF>>SHQfwtrdsZvt64vtfbw2&PrdyQrqA_uhE zwTx6y|Mf3`&3oiWpIL?;l|lv5=cU$vHInl};==utvW zne05d;PRZ5Bq*huflj3=Rv5$omsZcoU}M#r@skmF&|jMrPb7ITPU%wb$sr$Fye*fsd;J_qgyM zc`*O4RId9d^vT4e+}JZ^3de{h08&{9jTu9MK3K+7`eggAVrf;z+5ZJbK)Ju^G=;Us z_h^|+!8(0}H7_s)BMhn$&2RNy(#XuGH5_BZZDWq+U1>JezbWX5KiIZz&dIUdN9iWr zT6|i_i6f6Vc;rbL7c~>nB{kW!lf)(?f|5-w;J|{2W!r+%^SAm@QKfyEG05(c%``d3 zvsfkc+#AcIX0kFe47jUpXe7Th(%iNS(h_Lm&2iLEfwrow1c@o>+-IA_5^BGv(yQkF z%Pfv*nj6$-JA%aC2F~eD9!HVL#TW6M0IO)q$o#Vks9(Age`pL9a8;w5FYAek?xH$c z^J`UI6SA|j*@k?}2(RKfQk6gD2&vicLP|UV0n5|a8bLBm!yOc)OUf$=G+fBaOr?zB zWV{egkw?|8X-;5=2u z{zI7{t4k(%m(~-kMOk?TT$*>uj}h{;;V05Sbz`Z?OHMR2HldR3l9HUnzhpzD0OK}r z3`|O(pvt*i9lME6flA7&xgR|V+4Oi?$9WBKr@W9GG@Yq7WWK z9u-&-ms(9o`I3t#4Xn2u&?T}{OJ)?nQ4};~IG)iTt0yy}_p{%i-tQ znHiZGY$q?%CO5DhWx_2WX7b=`x@QIUDW-Gq@DZlxK(F4tc=o3y!0WzfuAu0Wb*tpv z)*qlJ>MVE-XmjH@&u-N=gzj1033LfY$wzg5_3u`skXJ-&_4QJEj*Ta61QrC^YwPMM z+cwdWR|fa%bF5|I>ezNwHTCQR*?gC2aIC4K+|b(SLwZg(nt*fuVrk0Adorod%C_#Q zjFQucLy<*~yKVxW7|O6Uq7SL zp^^NT!M2M_rIilbR{cqfpXyK6;w4K=fNj#F++i&^sL!%BnZCvi(M@#JSS8{|IQJ$c zccFLanFN}W-4%lo6p3kHYLL8DSAU9gRUF$~`>`EpBCU#wir9DkbZD2sqk+1?b^GnN z|4eA?)BUG`i2@)8z|GsYW66q@93-kK^9Rr?FPDA6g^J25JoVgcWOVILAv=pi<$%e0 zTPp_~Ab1^11iZiC7~WpA42O>uqJdzpZ|`2DJ=b;&;^&~sc-kwqY}qmtm6l-r_MPb3 zqdVeaJ$U8yc{s`q?|Tj&LB9b5kVJ;p{*YJSeiwTW9lYMXXLgxqDcJD$eL0%R?i-)Tis;BnrUD5U;zi~XK z;M9P(=D&l*@2^E(uRiF(eIdoACo%WUw{f(ngpOJ&(ZBxyGOVU%GAhgE;Ez^+6W--} zCrZn(ZrdK?kuM`9k!KDqq+^d_tlzO4UAlHN#~LhLxB$f`%dlnl0iHe92T5M73R~@A z>c~Oo$dMz=^DXQ-bdZO@4x^Kg7_3^o4jVRa!LgDewnHU`@)&^Ct5;zi&tKYo@E~1P zr=uGIg$B?lt=yd8OX#(7`KtGEjI`a&^Q{IB8bWV@MRUEwFeFsp#OkD+_R=W z(WxA4_h>qw)OVCFD(l?&izpg6F{oc}@{td7-h2lKj~4SF>_h0=ryr6uF>-)Yo2b0n z6ZZc5tFU|TKI~zf8V<1i2Mol<4eO0N`YD?bk9R~3dRC(TX*lp%Wo~fFditKM1fpDO?7Z^!uzCXexZEb zq^&%Lu3WtuTleh7wtaheHdQ$n9q6p0vKsF$Sj>s4mg7$)x@KkKg;(aFq_P%UHg7Nj zVs7_b*3;4k%5YZ#j)a2?<@?c|pO3H4_w3TkCBECi@omShoj7>B1S{8X!pI@{6i7~C z&Rg?Q#YF=NKz(}Uwe?lW1s(Z#I6-TCT)JWv$D1ndA=Q|iOCCOecNf1$@0~S_@8F_W z1{N-R4}~S<+pXITBnc?lX-^Sq+MeJ7xI8Qr~$GISetF+5kujM$u3fIsHk(d1LU_W?y?pr80 zb_`>9sP@Kxc*PRK!1HfyYk)?fXW8UhN?1&0e!Q|HH|$rBJF7;M9*?dRWzJ z`8x|2!^1_G+#cCDaOg1W0XhdGXd*pa1f3FYRSqqlMtMc6^8yi0j!goY8s~O#EEmA) z-=`1WS+KzH!OndLnYPaRjKiCpb4xk*tfj}-?mBuSIiCEo00#~nz|I2&$mM&|*}pQE z^E%sjKigpt9lgZzOb5vg(Y#~1M|S?=r5vr?bXr6wFq(5n(-_f#AkZnTCxtqJ673mR z8TDI>!Y&GU+QVyT!MbaYZ&h_Q=DhwUj&Te=!TE9^=UBJu#x%vJF`N?%$w$w;G#A5$ z4Z`8VLcIC*e0swjipB4(U_B4x_=yt+xMidy;pI2pCipDJk%9sPs51zvSs2q+s)JVk zYq*#uIc4pJjp)bxQn)ZoHbxV@8vp6p*&M6f^u*c^JK2vHFpo;gQ__<5?v=~Acn#KU z++^sRK+u%K`9i|0

    RX}DPa)*NpGcR&X9x!wmPEh8XOInQ@ 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

    9tp1p}+u&J$NsV z#sD;1yy6kG`pA)k^dgz4##$fAXy_ez*e_`=_ z(#{AAW50K^r)JNbN@T=3){;UnC{9rrE0*EmTD)Y5J*=tmP}TB72kqM<<-Sf=@T@Zw z$3d;D;MT)G!{B?}?6n&xZ;!|mYC^D2Mix^O-*{+|X04{}oxFDfvX?^18Vs(L>fj)QKp7a9Bob{`Vs! zXAFM*!7t1Jo}yEfS75IpvnF9|c!a~FtQ5KK(S6TFmm@;P#$y;qw6CX6pW*vIMAxBG z?#Yi}E_cAugY2(E?CHa-;pI!`DE86rQ8shuEWmIX?#5lgUGP_<@L(SW1xE4<3T-BG zw`9Cl=+v0}Jf{_PtcN`2Ev!=%4wI?S`24(lt3*B*&U&;D9{fbsy$fYFJ~5TKhM@3+ zX+M(_e-<9FU|Ap_Fo1pg%Bcp|h+DnIN{b3CiH*N$^ClK79L=}UEk<#8Oa|E8j_l%A z>?|#;elM6i!*(7zL7|DwxKPIv$`Nl3B%)qLi_aQUz{Zb2A*!;S`wsc$sI0Cfe`URm z9-d}JIiqaLrY~JME-Eat^w@A>Qe*7lgWJ~otz5DbY{&Mmt-7%dVpLBeVX39C_*)Jf zKv9e#N9JoAnLf&vE}iII$>0Cr0}sP0n=~^Br;$(~6wyD=_<-EHQ1jK-TRlF1*PeY? zCUNP{K*8L;o5bf0ST05r)0<8RNh8*~dni1~u52|n))SV1l|MDzHgH{8NwF1;&a4yvB)wXp%N&3zi_|Bqf|a zZLh6aVHeMzwu?9Jy6b!qIdqAHSu{3u<0-4K0$kq8_Zp8!sBmJ5MG>mku%*>zOr6A< z5WWl1uw-0@gUiv;V0a3YRL!qjdbtdAi!0?IH1P;hdR-*A(Fq+-hN6owj`0 z3b!mh1UDbM-Cshi>D&V+gL$ygWVAIesHqYlW;|V4#4ZW-BQ|_&#akI6Jua8#{j*B?jfA5U=Re>EmF`iMDxXhYcS!!6u9wZR3i{ z5RN6Vx3DK>JEJ{t_*;aOKmlGpj^YalRD&en$0uPUCnpEE!_?U)`Pn&G>=7!-|6w_X zu2I3HFEJKHpyX6mSJ}dqFIgtJY~u^Y*r((H_o7J5oI2G7-tzK87Lyd``CUJIX%5PG zyM26qkNwMU-p82NVI}Z}-8;9tVxf>Yl_O5Z@Fu}shK#`M6}(&jO5kYhXd_X+2f?Sw z^HLHqEIp{KwgropdUMeZ3{DZzG*u?YP4kP2B2152&7L`hA{}Qf4qQ{kw~JS<*_At$ zcs^!XG^&R}yoGcMK~&DpeR7Y-vQJ-K`=WK!-?v|Wx|iog+Tt10C@!*%{GJ#OZ&GB3 zLZI?dG8NUaf8RdKdE*s4of>DrPld}N7-}B+E@61r-hE!Vunk3Q%&1Iw!zct%Lhdoj zB)~I=;i+0YXR4h%dE7qw@O`_BVQ1dRQo_dO!B2^%2#aCgKnw6JG}cz3+~0*CeQs%Z ziV6vH^YA8=D=q?@;TUx86D~HKu=kfp3Td@}dH+K~p4)6DO5j&px7rAj?}q1;fRp1b z9;4m3Lh`;a=I!3K)82XW4Z_6cIDUwXDnF&V>VfUpxf2gpGsTa#*&C~0uwlGg9v2;f zvL0(A2nQdHw=1f(k`T55j9F&;4ji;gH!G~EJHo!+`HdCjrebI!f&+_xG?KpP;fiI; z+;ic4o;m2Za%pz%+(s^0vl}PhShWO2bv0predOUCATKD>O2>{PVxSZZ>a`C)+k{tY zGNG87-f@-@@>zyZ4|XKTY;eN)=nRNFn*z;j0Pt!QsCtg z0xQbZiY1F|B8HIdUv5D;C%h{z(O!IEffsxd)}n7XZx~x#Ycy>2|%9 z@Vx3tO-^4<^FGm{?5t6?5QX6~xr%*wffp@X>Ej4SikXCE77whht|rRopr>k7VH8@h zVvU_Wy35wS@S0627;fe9Np=$%Wy#Xnw&Bwq_TeX=ftq;qRxH54K*dgI(TXMW?VsNN z4QVOop^s%^3!p8y%S*bUebL|pfOLqmW*k74P~odCWPp8pV+jSH&+7s_ z4y}yuT;M7Pg#Zx`oj7#%IQgx2Fa}}hMxo3ePH1>S1ho*7?M_{nje#yi4s@U-j-ZIz zUX(2=o)U_yCu@IxKxi_kw!|6YX zLwio7UA-?_uq=8BV7yEt2Xl&=A(Sd-8HZ4riBiC>aw6c?Cox_vJiu3jJW-L#hBmBn zxJI!!DE@u`fvLHJq;9n6L_*#~IBJ`?21{TH*1-fqPNKP2W!9^(w52ID0|6|uw}a=Z z8cdHh^hUZu)=Cm^eY47`hT~GrB;=eDpCC^ggi4mN=%gqi2V4^IJ|;mV>L?rEjv|$eXD|&bvMix;9d}`wl8r5e@DAm1 zb#$~_Co#HGo+G%w6{~M2gh@TXRQ*iVZ~9O)Y8wc(i^p4;1~b5d*o_b&fhLCc#iMYj zBYh7E@UbwzdcuifA&ByDIh8e*NCoC3VMNC3ye%znwlBNNu! z$vM0=5M){E;}Nu!=g|u;lU`xTtWhk2&j4XK4Jcs>+ZrH2F&R$)X(v{V6}Fjm&ID(Z z@fJi7dQsCzf;I$rcviOOL&41*Um_#fPcblQaJwFXrv)o<3RR<2g{YtPYQ{?2(%I|Y zY*Fu?-)Zsk)M1(6L^+@2Z$(t1R&ZB!0S{@LM52xjRlKX zTRc>PBzWylU|)(Q_8}P6*R(<}nk{Yk7z9?7jXpw^X>!|2-tIs|GS+5H<)gcx+Z4_qCnX|G{D(FXw1CJ=%fR9qOZBrx@Eh7n zu1*@&F)1+3ctv@H528`QyCc}A6%@$XPj1g_gsTaK1s+<~K(s{y`#b~1EsC59Wk)ta z&$Q>1Ki32uj3;*@lDy;gR$8h=0(-2@|L?!NXJZjmmoA)3h-E8x$({|50+w(fr@aH@ zk;K8DB1w9$>Wa2Bwp$EqaKAyt4w?ypf-f?{9&$s{qI#{9{n*UDSMK9Jgc^%Wv(-!I z!8`Tr$A>7ZyfcOp*K|u8LxX1lubqw!e9Lg6;Mm~`zu@_#_)*o%@QG{4B-YRHO5Bn#R+zy%NrjinfY{wsWzh-4Egt1V%2Z2N6drK)U|T;5a0BB_ zv0;fZ6tID}vd5G=tl}8As3fRX7D3N4LBH2ZQQpIoQwdF`LM8kn5?;~M-)@cVitLgM z8->>{7H?WWFXAW`r;xr@JjMf2Nf@PL8SMZ$hZO6I!wV0M6Ys=_1O$T6(q`mQwdo)( znc^VG1bF{~Fjv7)GBwnppOED+>LYXjLu9}>=yV%$L=90l11OQh;q_9^lpiV&UmM=# zREpe05boR27im=(50a6Q$tgg7Cd80+A7Fphky@aT;dEdE$!AR+txRvKQf=DXy04NjBB0Ltl5G6eZWw{QTtYR%m z(3Vu>N`;|Up%-+c%nwT+2|g0d!2Xy$Zxyf+&I+3tj|4;Z;qQA$er{=Ie-VMy60iSs$fX2Fk1E7r;E|$0cZ^ zsd7%aFACHcV8h6=Bd868!9;zda87_>PC6V(9YJ-!;H5tZHo8|=aBzxlLY&n&lnbCW zLNky=r>FBg!QO9mX!>2;ADmbCo;(fu5uxdE!AnGDa6NfOAB0Fu?72NeM43+ngi!GC ztUJ~ulDVJ;`25BA6t}Nc3E-&Z&>VyH96&L0d}N(;oz|!y;RK+-)bRlDEa9dDQfs3B zzy<9eUg?L{oSXf#uY=&K@4UkIPOu0b{-lc@@23#HXifZf){Qmhqn;Ds2GgV%c!B>Y+N)Us0_`ZmeAO(CCsu|9%4l?I}wI9JfgJ1qkerZlm&r7%>jM8%JFZ!)> z5{I6|3r_#wkU}P0h!lNAdKfCJ z=%b#)V|;$v+W|cZy;E}uo}v3RQyqL{T>SHcBe+l3>bW{J{Lp=&{T?L32QX6D=V_{o z_C_bzWFi{EsQRdZ2FBCJa}D^e#`FF6>N&wc1a}>xck=idd`SGlP$V@F)FLlJA~<8W z^D)Z%_+y90>IZ+Cd-YxK^y_(&JeT3jLp(}glnfyG zOd;68p>=;euF!oNN9Y)OHz)L2<8|6Pcwgw8@JDdb_=N-Vo(WeZsLSvwV|?fceBmcppV0lfPWgkOJs_wB*9BJyO2J*hL_%{Az$6swEM4yS zSNlKk#sCRm@%TN#-U-1eSVI@0xktDWz)12$uwojE4&i~6Zb>vk?s_Ny06+jqL_t)c zeSsOxZ|z}jS_iGT3R`K+E|+mGiuq`rbdTWcTx^g>4)9EkB(&dsFEI|So#y7}d4DYM zyiid=IB^wv5W@f9I7^9Y$)>POKc4SEvEX4mF+e?kvOgmP!w`NuZt~orx%t@izCamP zK3Z@H4k3Kh8NrfYD0ckAV|86HUq1ML2%ag}1@e~w)UUit&gjSg^K%ZRq3b+MmFEqB z8+xLitNe3){^6eG9B>_!7R5QWGr>!()8M}2yYSI*L$K6yd=Kl{!4cq(-o(AaSzX69 zLvYbK{u3U{sgjg3oT|mEeaxX}=X8O^>3A-K>6uxkT{uX=-odGwVI@l9GSPBn^(sleTbiG?r2fz5A z_-6o1i9gQ&2|ZRwt}*GPe(-Ji-zBK%We@~@_e+8K-t&e!r*qdI?+CV+Zx-+*H0A() zPmW@68^Yi;Y|Tbi6t`+KClN@U6G0P9HFf_6;J!DIyo0a@%wXZ$;34-P514w<1* z`dvOxof=e~1rNVl&(XYf&;QTfSpZsDtn2^T0h{jFq;yJ$lqjKMpkRxMih&AZw}OEQ zf@bF|h8#Xn91dR-Z_$X70+{(dWM)VhT0*p8dU!s!;6Eb3hzN5$OAnJ^QkcMVzxf|v z=ns!m6yu&7*8jn9aTl|MFst0*00Y19?C`8`+`(`pn8b-HbK#vQtXZ#HVCquhFt)hU zZ_8uTkIm@_Z!lj2fpKWPe+KUyY-RN165OJ&4;=RL&y*K$ch;<-hle&T)DjUBu>}}# zmiyuQjr-@aKQh9~)${33J3AID~t>`5+4h&peR)`QoCK0rEV?=b+c6 zTMRq`Y7FcLm2z|8mae=oQPhE?p3 z@%8i$Q#?z-VZ59sq;;+CLj>zA$wHiA7M168(R|68#?Q8N9MX}(!DACZ?*2NC*RIP9 zZ$C$)MVzw{{Oz1!l{$G;OnCQqfB0aQ56PS3nzo_NIBjm&#~Sk&D>SoV`_^^b=BNDO z4OnuKVx_~$Khy(4+qi8bTa)1Hdwr6s4AOfu1$yo5B z4J(H4a2rKmTvF5*5P^XLFyovQbHoB?!d!^(Dh{=%z?#rJ?-$I#PT`q zL1a&Tu9GfUjy@V+cOx20GG%#o&Z9q=DUmsAc?i$UBd?7xD-BEF=-`+D7q5XZ`7(1J z{T=;FEsV|4Fo__R*kl7dOzem8hpP)*B4Rp*_bA_UG0J(cvT$$;V2i=iW%_{28qMG~ z2xJoDOjC~6vCDUMz5{e^LL8#qVzU-=G|ut-Honaa9;3`3fAkPb#oP{aoTSMdYC@fE zS1f?FBm8$TD)uIt`(7IEeT??to!c67sLmU2zJqw3Ox*P zGsZGe6zjc${$;4GG21&Sqg(DsIF%G1beu?rqllMI`SVW9@90Fx{x>|xD z2GuD3cRyXu!4R$QBjMCT(?vO=J{d-FkOo~f#I21p5WHY6At?5n;tboUylB6O*B_M^ z|7D=W%Z{gK;sjVB#1-a{^_K$B!Wuo8^N3I0GyE@BsNopKhTj2>ybClzyfYLM;7&S+ zc(n6}Jt>ss>OBT=`2VJ}vAopnbmaN(g=kd$8Cn(k1E<(hQ9IaeBt(( zxOkp`N&s%;XN&m~BMQv)a18-+F4J%@FllhOt#&#pGQ;R!8B9BFz&d#nMxvryIUk^1 zr(5?I1Hec}bhcoD;sI{Impi#};}h8gxEl5!xOw)%S!^gNs!*4JOz$v|`f)hr*z3`F{wJ>9055U-g$E>x^!P+h-;5O`A4g%05@H5*L(HnUw1`S$4KC^7tu1C&y)l z34h1~k$(u!c+Wy6x5gO=j*rLrclBPWZh>_wbyBQnC4JI_P=6Vfx#^+G=n)4zE!tdNU7Cj;A^l(h~0p!`_U3B-u+ z_A}e&b|H0*7>XCWVICnbwqM|8t2cYOIxbSkmJuPYDAP*ncD8JPaHue4jcFqmdoY zpmTe?SwMuEB(fOs2G6~`1+90^+%rec^EH~eq3?{#Mif%bZ7Yb(y3Hfo^45kOTa<{! z!9rMr@^~gPm)B#&#=4ER9-4vi7YDYe00lo=9A+nQ+(!B$1(D%qqw@Vj`p)gzz}zSd zY)v%T^S#G43@f?A3ZgN#%9cUhVb}7`KyY97d%f}A8)Sek^XcHK3o)dO+7l8+sY3q0 zHb#bs!+)<#K+2j%Y=!yfHoMflz~0vAtaD(U$IYyR0yu5A0>6FKIBj;6u&o?z=b;YH z7xn7z=v&qj50-qe7RNdKmA?PkJh5`UBNLp;IQ z797`az|1o`ka@89X;a}&ZA+mU=u=xPFw6iJ7KySrcuo#!>o7yTA047RtlJC@S%#%ug}C0G z>_6LgY}eQ^qgA|Y6}4{DmbJ-&CQ!`20rTpnYSOwX8_|ie5`R97CK-;jo@NCI@Eom4 z!^9zih2fYb#(m(wadL#aIW>iK9#0d?8SAU}8k=@EUNAO`R~1if!QCB*A6nO}NTH(O zC~yUN<1KQ!&?@5WGRFO|Mal@)5q^oal$5?%@If3QC+f5Kzb$5(IL*c(&&vL2$>KXM zFIl1*;_Yy&qu}@`*5ceW86!|zn0HwBM90K>hc?(1On_tgGBJSYk*bMQ}2VOCERu}Y-r1&u!ve0UrHetA1)#u z7xg3hG>s&5c(&|B=N7$oAJQ3kbh)BZo!@xQ`)pXxhBmK^=jwQ@N+^nVeJ1fX|TA$qhBrW>sz6K@)nLLgT*7M1MCDXhZEdvn* zy{8q_nJX_kQq*q)O*zq1MEx_$OB+D9;M+amon1k%Fd55<`?y8j0S&Sry{5v2Y}OoH zP5frNOi9eG!swTuB6a&L$A_KdXq@E#&NiHu&$Kjd?U9W+O0s|;=wGx zPoUXJmyV86&{bqyGv_jW@w4%b@jxW{&ojSMSSLBqhhD!CS1{x$0G(<&)*~D3g!Coz z$*`mx{^GlP^c;_izIjbxJ&-Dqd6JGO<0kaOvSB=>0J`tClxh)Q&r7>juokG>Z#r!Y z>&!;fa$p3+w1($fIJDXdqnTN>W-C6xETm{B@du2{m@oT)i96{7c@lbF$>61(z}vKN zKCHuHtth~JGx}e)u9_X=Y1zR2b~UsXV_b>QZaFZSpF(}R(6!vMV~>g#!bCmu(M$~Y zGYWAC_*eYd-ws)!;on)`$4kf>7vbQwYtk^7w+Q^f9CIFMnu80*<@~h}#4eTkhnYAL z_&VR4M1Va5;UPD-(7)YC|2f3JfA9H7?~fFhHUB^J{z!R<<9`YYejj3~>g^9c2uP%U z-Q#rSR4A5v`n;ReVJGwNF$pkpMD0#U%Z;Wi(^6KHI`UJlYRjVDV>u>I% z0^~u%SOZ?@r!|EADR9cy14U|I`OzV zda~bhm=B)M;U$}Hyyb4JC6x-E?JX*2@sWc>>3;>!Bf;yx%HvJ@KyZ#ba^!IR@XI*e zaaS)js9KQ;x=i;y-Cuh#VcNXyNxJm>3&H|2U)Dw;yit1b_I~O~{5h@E9+b>`+>!KdTAiY6F1-Na;scF%=OY!)aX?r1xJR`rmJfu8d+P~; zp*~HYF-!di4MMRuL*=Se)$KiQ(X1&`G;rt;Y_nvjYVEqZ@!GCInL7|>QRa|8di-bL z`OoBWZR87C`C!~5?%f`&Nq(hKSYB&=YDZmqK?fzmTVC_uDj4AC zjnIdJ$XD2FuMR_*{|Ee@Wa#X(I_ms$+UvEUqxH>?--3j9spGkq>XcTk^u)st<3|rG zl#J&MH+5Gn{FNj?1lTLRv4fq8{xI%m4W>LB`zTedw(jVDtu`!OsK=k_kMqX_Rjpo0 zH(h@-1h3ofyhbo=1>hCyU$15!-T6>YU3b&1YEio?{Y=t0=GluwhUw9V9#)B>9N@s^ zdm#YKk&HqB29NP?#~$hVNO4)y9_js&;{K~VU`jUIv}MaQ;H3fDi7_2q+y!TlozA}m z!Xld<@AES2I$g&yuPy@b-1l&AjCAA0x>C*$smgk780t7qRAv~I-;RjpA=cihrFShyTEdJH)EfEqMC9-l0o@H5Ch zOI|}EUboFne?ImTz475E5L<=t@z?;LGv{eKPJo|$eh_<9y4rW>s54r((WAY=FIWiU zWT9@i-HE}9(i-^kP<@T1uOdZD>Ym$f$DH~)J^Ad57=_uXlBG-N=3DN-xKOSzFGIDV zYWL0aHNyEG8{@XXm8CvueVG>r4aQH+ET;G#UDWwHaCdzUh{Eae`x=AgwZ|WR z45I{?iHE>=x?dj*CM4><`+DeoEOfp1(RUbm$brfF2D${(=g>A`Pm1e%c>hhL|I?>V z)uibQ)Zxr?*sw6xfa&ZT?!RAWb?BtiPd#2q>}4+xeM#SbKUoPFNxJsxE46sx90}&# zC1{)b%*fKR@!Z55nx82Od<72JG3L=qDay_d~oT*%*k^K$py)I!_}(P3o1y(%O$`73aj%`pHU8rw&xaJdaI}?J}`w8j0xe$CnSD&-d%6IkOgG z-Ep@ry6ifg+NQCFzdAx+e~(2>h^bE3bis8>L-w-+nlSDc^?T(NJ@M${D#; zCipUmg9zJZ(C1HqxK6U+2{##dY=@A|ZiX7~!|f4~*8JMJd95CVe%XQ{r(>Hm(RH1> z5KF$W88hCLIc@4Ry*_dzhG;Mbl9UUhBH7fn%T*dTVWPhL_Gb?JdvP+}UT1YYHOyr= zB35Ll&y)kPe*nWLIjK4w`0ax^z7``F!-u@AUD*n%Z|{eo1Kd9v=C3d@JiHltrcYlj z!bk-syL4^mZfen>mU{Q?qnV3WW0+&Fy5DxUDq?_T(6Bf0U-_M`yYV))gi&GZxsQ@} z7lvGNFz@evpeK9%Bn_tz8H{72rp{fa-q zd+&WrRgWpfIW|tO`CxKDY2d*Z2M)#>@H%bHuyK~0y6~JcaksNfpMLW-u+D+cuZ}wR zjJ9AHrUwJ-A!CWK#$e=gNTFF_`URT}tbr63qMfL7=7&Mfa$(%PuF1g<#)0+?9x_Ce zrcQ#9y+>DczD6e<-wbPlpXsf)MyT~^9o6OBj`$PXswew`M>nm%;Vqalc}OB$rM);Y6L!JQ(-$ z&+0eu6)Y$2*M*l~9jvK7@zgW8C|bjk-lwkJZd0>rmBM=c?7N>ahLcx!fTuI|tk=WO zyc{}RxkhDmzqUJ5iE~Nj8lY>TfBtrGU*jSE9RGHF{5k%eH4YFt1wbu~lkj9{)(8<3 z>w}Otv%ego8?dks@^NUp4;GeeWa-LHC%KJLRbB!AdqQX}9bo=x<;o?hg45#8S6{_V z0sdOjcWL0@zG}$?JGb=-AZ4thuz)Z#01|*OG@5~nLGHj+89HK+TAkEdN!wTG@fV&~ z>n4q{l!NaRCbG}{<_g(gME4#ysT3aG?|JZAeevxts#iKiOV=&a-S_lRr_R^w*p_W| zF;<(t#q;|&-+rN#3iVB6;;Uq-s@AHh%P+lxa#FN?-6oA5`=%c3^_;dXovuNn-c)Kn z6pyD*(SYY)(%U0m)X=xz)021Hh}eh^iZMj&k^L72aHiH_h0)fz_F=_q1ves1S@iF` zIYMPIGux<2dENYYFSTfWifUkm&!(k=o)?SVT;EO?cT(+&CH3^+;d=GW_tp3AuDbsE z>r}2}F+KR`BO3MISarSpLfv-TEh=9;k1oIS0sS~}iq2_`vp`G70Bf(cVaN5z4eJ2HEM{u-TkCSzR*+84Sz!~_2Q6c zP8fN-J(hZ@PR~`^qhikj&lvB@A-AZL43jT!v z{?kPpc^e)kFu+G}ftO?Ey?BXy`1M*I5bpGek8mM7?fPUquQzMO^* zAE6PLkAI@qeZU+%!JKm&%xx?UQoj4%yHzI70iA!#!I)Zd0*ofuhjiF-UNY~sGIJ*MlIW2t_x0S861M|-?ow) z+O6vOY;S%4$y*#Yhu|OOIkxDOak+E@L_q1%B_Xr_2=4f3{U;X%#9(bgu3SuoSKbG3|L5%i# z=w5tz<!$yCgcFpT6ZShjQKW3DcLACFKaw>@_@E?92r|-Z2Ql%?44u;`Yr!7#m zTF0vM73T*Fr2DybPiDSbtj>FJSSuXeJ@f4Z{g?{X!Ck3v=V21goT%B0=c>T>-|5u$ z$7{yV6Ey0JuQlMQ=P<4T2O0c3=^taXr+7_0`}}iSiRHP=ySK**Acs9n#{WEPcIaEg z$94@7j`3~Lg1Pg8lj-MPd6lgWD`lI20lVa)rAzeT=iew#{+v4N%yX5BmBO(<{Hl4g zrs$YbCGgYMQe}(h#6Oiy7f>EtlSH`Zixk}L}87aG?l&n0MZtryRmw?Z2&&IcjG!`6}K-rxIN5MNDG(D#Z^QB{V;wC zw^l1vy-C}!cdT2vLgQx7(vp?SR4%o&TAp$;^VbqA6bDfo#)>`f^po3x_bTY?U&iXy z5u-58e~dmFJ4QX9?xU46Cu!h_;cC*TA-6AU_11`2wQTcBtjg|HMGl!$7R}X1pS-JW zxym4kkgSi!yrUdgeZ2nccDnA?JJhK4NvaD2HtT-m1J>&0^OcMWiT7&X4Vam+dhH6m z_0d<#gLS{Q=Uk|w+_ZfC?L-)AD>(e*RGafUs0arF8=FW(S9KqTNNkn$laJp~2K3U6 zH(aNSyI-TG$G1_#YDhsb-yD2PQnh*&J^0|g8ZxAx4&*;ZSD$~Dc3|Od47aL}KQ~k* zfaMlkzRa1k0PBF8)S_-fd~_|tVe)!4sa0BUzx$PTuinfdyP@i|sE_N2n(BJlMe055 zQa#MIE#q zrg>7X-OTrO(0}M*h#yC-5 z$#}k^`|pRj{@p)xQsX*U4bHBO+<>jdB6ro$4Z|?%58DOS`cm01?$QsRjndZ(Ht6AQ zUBM;G_4KoS^)$?n0=TePj|ISNFf?W?p0BSz{Xqp%^XaV9I;arqZeiMDefSypjk(k2 zj1DSSB%h{FnW!`zS1+7CSq+;sSAAUW?DeUQ3FQ(5Y=8cZS z-ODnimdvBMxa9#|apRXm-MihWVx@}do?Z{I=08`%>pE-l%vt*6^Y^qTFXrHxKecOD zSMO#|YVWpHy7ZR&)ajh_@&7glH&0D;>e**9|FBR9QhjB}V0FBxla^z){)rb~RO45M zsPi>fsbtBLdiI5f_1?#yt7y`0efI6gy0>RPZYr?|3Zv}>81t2D9II|uoU2QFT&pQF z7piIP%Jj*z;_nZpH4{026;C||nlt5K1s*mJ-(L*g#+f*pHX9G>=c{$|MwoNogyTkhCw=^(+A~p3I;pL<(y$~t=nOLM;YP>t&})t6uV zq=F@i;(&DtzCNnyjki9~C6`{Ok0wnHjEEdu|Bn0e6V0A7L+vj(Tc_4*%3%;cB!#$+ z-Bpz9@-2u!Y!8k@3l~5vtWcqF@bE$We=2x8w(N7c@)gwWrf!eIv18MVeZ- zZ>BHU@JnD?dnJ~8YQnWRV9a9T1i~{H=6-8&2(~leb(p`cSiVZQ$+M2q^8*Ipb$qI> z>VCS4VKTiqW^uRU6D#?_TuZJeY;b&re-CLpV1rmb9K*E)^W|6 zf%revw3G}ru3w)UxgD5YE~M>TW3R=`e?qqPfwP&7jof>s7m;sL3L*;j)0AH|^ng2+keQI!i{oT*w^&Nh0iWMykawrNn&Y6y)K>N*U&6b>B-LAP_ZwwuvnX7RU$qHVu zXo>37sI8yA`&LB} z_dNQ^jS!%x3(>}W6b-}SO)=t5f)Fd1uMj4N5kJD!K`|V;r$Nx|+`3mMwmJcG&`J20 zDy8)cR+AR%NES=P@oP421DKuxzUH#U@tC9jBLW?9pB61ztW|6FL8LsSl9kKq4hWy) znzdm4exfOPGE}!tEyPnWwTwA!GjB2h5d%WD-1+p=H=pBB9Up+_U8IwnHRABTN}GQC zMgREZBc0swEOk8XWF>7&(13ycG=PUg1iGklQcX2ERPzDdL0dz)LnEA@|wGeiIKFjqeM} zHeP36aG}m<1HliY;z+?a6$wz^ff>vC`}(JG>T=nY;ZV16?RL$bJyGRq+o@}DZuZ12 z7l$SY(4ixTs0{0S&@02059S${1%Z(EoyXz9XDr{kcgj24VLLz5s+U7V%{rcN?NjPjY{Q5 z5+!-3h75mI)2GeTJ$E3Xo*g>r)DF7fjMG$Od3EN&)EMSFw71?{ z%9Savw59X(`k+2K?ezA+ok@`bxs|asr+)qQS8Yu!sN*2`X3U?aNBa*{_v^aowPC|m z3`fU5ee!{p;)Cq~gxVgc+l$UUS8a}O91cQj*KP%8B2GtFEpi;hYjLx%al>Zt@d0j- z-c;R&jkSHY#Uv5g;zr}OS4Se1bDqYGpB`?hmZU9Ht@$mjTdM}#qyW-G zg6j`gA;j9p+n!w;bnn9t>evP?A>h}lFY~^~#pmmxKF_F2mn-z;*pHP9Jd_((0`GnL z2{(heaW8{Ew7Siqkyfj5y@vXbeZ4f|KNe$H0RI_176KTdGBimRkMmIBr{BQnMF_aC`l(7H%!1+La4)pxC9-Rm-tnUQmys z_o;a`{H>vyVCJ{y-|qC?q0MVItqr#k8Qkh!ami(B*0?Sd5+Z@Cw~~d1+2vXTCYbQ(%Gk>U`m8y8FS0)UwsdxJ$si zI`gnb$-;Vj^n04IVv{aBqm8y8aqvu^r-T1i-#+euDRK!6@fLNe=xwB}-v9DjH8{R4 zX7H1A<27A0Y}jCE3GfRrcE2+=@7HtvpVPd#b9L)!=LR2M1GwGl(CH$5@!gDoC=BgXYUJw`ozHJ2U7M%-Hx=?UN}*O3gij2L=t+#E4eXCgqi!BML?VX z&Jfg>VmLl@)Xzp3e=&FuiFAyAi)*tM^&fEni#l{byAj1`*Y0$<8fR$k+*x}1xffNd zY6bLrcIkrlr>i24iXM5Yua0Yeyb8c=HMMWhnp11?#}m+^7%zbkFYM4>pK?8G9iv3B zskse4fb8cM%CgGYkdIFV8RW#z$6Ca-ESmV$SKq+pI!@=DdLp;)33_wbP$lInj+4eb zEQ(DaMZ_9uU(1tE*OGbjbnkP0b>eeP)wpgWJ#g=RTw`y6TagS=P=(vETyP?8M=5Z= zau%x_+V%qsKQbP_=$JMSD z%*^%6;Zp8UQOlaU zx_@`@;*Sk{f;pXx35;HxFzyM&e0UA4C;T!&IXLuQc)L z8L^7j7?)e`ejsexcHmfm!&Au;rQlj_4Z1klLF}*LG;$#ayC-kBi7|m|%;_~5gzej7 z!_Z~zM4tSCUXLLzahj^Yoo{yH$$IAbL0SsOcSYI?#DUmYX?ynU&f_-VL~_kaz53cP z-PrwheeupK!LP?JFemI}`>y-$3dH3)#b3^1(;ZMR0V>;zy}hKO_}ewhDgN>~J?P8@_$dn}&wBBxSevL(-6%KY03OB$V*Sn#~wh)&0wZ@vj}jIQhYwfg3VN$SIx)kPG>`Z$aj zxG*s|hPAJ#)H3B-%=0vdgUM4b3{q2=AB7>vjx-O#{tr-mHuVka6u8mn)@=b!U9V|~KkheY z2^`=xW&$t6c#eImSaJN~aH~K0*O_YDtd4DNgm9!f{K9%;si~#Z`_bO|?5nTT|LLdH z;&hmpH7jTZw|!}=;F7b)uHUdllYX70dUYG9OXu@7Z{ExRt5eT7RgIb>BE_P$q(ZUc zB^g&tNT(C$%^~!T^#Cq1ff67|+cUV;A3y0=H9w&hOrE)v{i{-QVMUC6`^KBPst6+M z2tsgJ{Z2nm_*q|$pT(hNILyfcY6CO1Aw>T^m~y^qFI2n?L_Ig6%qNQ^TA|-H`Ck+e zmFK~d5Z}D>rizp*i<9sfN-2V)|)v8Lr>S!ylHtxwtK*aromg;=TS===K6#PD& zb9M)9NImo^Avm7w<7=8ZTPx|!pZ`J#eryv{)s8;RT;buG+&Y$f+Ys#bv`u4~1 z>V>q&XFq+ySZ>$*6aN8iuv6uZ!N1$5Uo-d6$K@7tG~!*Sv^Y*pX}1lgQ2e2R2-6&f zql0z0R;*mEMKBCXSHeFN^K$EU9Czc#vr4U6sA62G#0@L8cEwtqe`<3Tf`Nu$EI04? zaVnUqH{P7BcVWb}Y2GY2ytWQgCdep1UXO<{NR+T|SZ^**z5?|3F@5;umm0u<{D<)~ zbkD61nr_x$q}yYM)aRVjky~T- zuS7Ntd`OjLPX?{((@($AciiMXjp|3S+}ZINT0l47e6KbwpQ)r{5Rqj7kp4tGkOsP7 z{%?flvOcBIRs{f zUl=6AF^nYZlXQL`<`@$)H*kFP(MR>!r(fumK`-csNi)>CURCIvbsUCQQV+V?&`i^3 z&BUK=E?s-g#mdIMjyp7TswjuU{>7JFu1=>l3nG{0%9aT_RK^RiX^|i*%b^B+Z4TF| z#bESrHmzxi8t+w6Tiqte)*!WzT09kIVs7U97LESkli(|?WU12Hvgtc*gia`27@w`^ z`;~-2o3>!3HbH}30E6k0OLJ)aPoE)n_>vkt@d#~8*U+Iu)#;)OHT=WRf>e%m-BQ8R z1<-F?yKcQof|!zFT;6}r%^LdBvl{X4r#kJFGxgxp+}_We%uVl_pr;py;eXQif6f7n ziQ~nS7sbB3xsf%_RwIb7*AEhLvH(_V+&?C%ZS7Ks zG%V1-%lfEKpT||VWgR8$%BI~o6&^i$I3Cg0YT~4sIH+uZGh^BWF^0SdobWxmwc9OP z2uF9;>>st}lgSwNU@<<@3!RD8`tr+nHGfm?K=9JU|B(<5qyQ83X^2J+RxDy$D-v?& zz8;^mekUB~Q}oU!W8n4|=9X%=`VDwN<*L@f3w$da?MWZK{}%G^E&m(QJ=m~DF@2%H}|*!TNo%VbI=_#_I)i$TdmH>S)0(|Ob7AL z!2@iSm^~#J%$Uq3eb@6Zs&@X|I-~OqIBrhh=5Vb#TznJUUbt%bvdWtS{fXJL^%f!u zmtTC9DwZscbIe^_pVw5|`Ze{-&C?(r7O4sx%Z3f==%hw<^uzU2ICv~WrW~iL-l>n4 z;KOgg+HAJmJS8wL8HnU?URR0K!f@agY0wi-YWS#ERJdd%^t7Zm#(tnhX`9fQxjb;o zmM@x#Ty(hUHsgFMY3f+;%RTvJs z#hw<=ovv3QC@;O_3RNnR%7J%>9)0>zRjXHD*IaR)_M)@V0MW;1`&7~9^{cdO!*V#3 zDEe{@H*DCe+MlzKF6YK~$F>ZWDN#~iz(t-qbEcN5h)U#a%&l`VjedOuqDYHjWPBG0 zA-j>J+edjY7V#f}wwjgWjV(Vo#Qy1)EMBb24QguJ77Qn_85QM*_5SJ}}p!I$<`j z57ew#gHrb)PPjm2mak?!Z57zu`e?j;Q@3>aGMx2pMt8NdW=yE8hhBU`#}qj=IAk65 z+N+2sEz~F9{{YUy@iP4z{mxsO%gyL79Ei?t&OU$+RSs1NjEZ0s1ReFzX*VQGFgW%Z z2eZ}}%%7tj=*~_>!Xqc^{|6W^CpE6DH9x(Bev%1sJDKGM01>YCXPm1V#d7GGXP;D! z>MyE?}00v_EfA0l=j1!7|D{yVNiKdQR=zWa$~;F~`(wEkT?vygI|SuE@LDIt_4gx+I*41|o~lxg zgXgYoy6sl>^|fhQJaN3<`e_CXz;qn_rfLMYU}=kOSmj$)FOJA4I-w&*j?yCL#!urW zz!1v|Q+K{PoqxW%cJHp%r{{?nSO+`8U>R57Y?%WF60)?5D2SNih(mY2{BjlN{IZS1 z#WutgZD0+*z)IfBcp+vrVbXZL|IwGx4Oqr@HL7>KigKH^c*6|(a=vc7{U$YOQ5a^D z;T2nqS?cy04aX+x+XYT5T)4RIyZKs;Kfbx{f9!cG%AuA>GYlB`ywYy0!aNI{Ac#y07m`YFWFYDpahhtFF2xh>E7*uWsJ# z$x4Tr&GN#jI6Dk$#5#^Sp=S$md(9%+<1O!A8_xL1ItLXS1lvwfdX`s!6$v|*F-!z2$( z+#><e4P+8s7Vn3PaQ<26Y0x`gKpZ@-hK-x6Op!cVvviH#eB%w}FIGV(wP>JU zC(qQY!-gU|TMCZc54!2*2UNFeDb=Y|O?~@5sa5NDsC&a&DpjD3E?`2=m^ne|Bj47^ zCpFd!92(ZZRb9iWzFwso5D`Twdz9v|(N9O#{Je{=#>!514IKCq9Gvxi1x+_lz-L8x%}*4w4J-Rsc*j*HGR%Ptr<8#`IEZ_`TyztU(&q~J&Z%o%Boo= zl>_M(z4zV+I{uUlKXd!`)~Bs#$`GaMQAJVFGogu4*&6uWQ&Od}}&v#Oqj;+6)pegB}Donp{18@fkAy z`BO18aJEVy`t$hXPcg?2sON(ZtIqK!>l8MvR;^EiYoD$Scig3m&;iND&Sia=qdhP( ztVticyf(8d2Md&u!ni_yoqO&DdhY3`^#h_9`OxV&_Y8DPNt2!Q<^lQY%Lh!aX)}OA zaDo3JAz0R9*KFOcy&igYu$IlA&h5!oHEvW_Gp5(lGfzCOV)?SeKq$@uykKCUnHb3$ zYz6Se0WU*LtkjwnOLc6uYN}AFoSHRjp=Td|RQX}d)T&WkySHx8EpV|*z#JGi=@*O{ zU8mX&>S@oY_jJo0y)*;m`RnhwTi<;7g+BlE8!WNr((KuDbpAzGLL?aYQN`w@=gO5w zZCbYq?(>(+Z7)`pb}10mb~^fLk;+OlDt z);#>;f><5*&D*IoTg5n zrY0wy9&U1q!4&L+4qx7E2UMwgZJls@3-q%d(Vh39&-l~NYH`9@y1L5^!2p2g^ggW3 zX2-JXq{-95!DQh=8@Es#m9u zdfs;*&S*;@p4^06_M$4Bzqoo_af!O!(oL_w@wTpnc-{wt$Q`l~kR)`drq7tE7Y04A zdFbLj3KQv$8*dC&NP|8Gz;*ZY6)pzMk3sUHo~CekuACYNDR9>CfCOUo7^blg73G}@YhwmdD9NdZwD0SGf z%o@bom`^>)W9gCk3l{*-I-!{-wrs8E2M*Dt-R?xkECJ(CmG#vJ->L5lFL8)iq}&{8 zxlC2+F%>bsvrTuf|6d8C@Xp)sU~QS6Ge+gMl0)WIS6v=-!(JZxiYjtbczq`fm%aRw z)?(Fq_RJ}|z2~EVG+hIpdrsq_8zw`*7s{Otr@F1w^RZ`i$Gy*J!sMyofesot1pPY> z&*`{ZN&$YA5$zm;mQ?v+C*0ay-r~*hz4S=D%mYeVy(`M_2+wW1?@@0a`!rgZ~ zq;-pzpeucf>Y?xT`k05+hP3~)PjFCK1TFf!@^#H$GxbjWJ6#547F_909FxW0<+VHl;ms}KI?INfT7ROSlZJr7*uz&mI@Zir#UmH zs!4<9Du6n`>!U_t6mG26rDxX=7`b(8*U~HWJr(-~KTn*j%Wmkdju?44yM22tU$#Ko z5luYjj1!^926ExB0S3tyXtbP+O9?&w_!B{AaKYTkI=_y}i6h?E?RP$c5%7sJ}TRtX^e7t*8Q+BbvVeSxwjn<;!KYAon-d z`ga${uH^$5wqb()%VLmTHm*-=gVb~S9h>EpIa5*6+^gEh*5~30^Yq|PEBPC|asLA5 z>)5RDbPO77=9a5r?K&V_HYX6o;^iw;pil`FfjhN3eV689WoqNr-6~tAf-00P5s?2z z#H*%pt?ffzD*6FnMJ9g&Mg?|qnA#A;URH1opT^-Zd(OP*?bJjM2hjnL@BGE{xK%5! z8gL6NHnMp6Vl7&Y!H)7ZRGP&Q-4aLRglgKqG?)mm;&nR6Z$5~`K6Jckm*D226ddfu z$n-Bquda5jI&4xX&a(k6f$-0PqI)W$HtbGXoVFBed+9+5I<;UiHiRO;Y?jt@rCpQ_ zs#^Kd+JUm{iZvVIqQTwd7P34C+9KR&tzNT+o2s3_wmbw6=1xJDOI9q0lMF`%v4ooC zj|rU9sWWB-<@oBy)`pwR#)_!MuhVBL1yk%+7*68K-QrIx*Q{2V(#XDJ4tN{Nw{z*! zcKTDZa&?u2YqWmDD&iJv7n^gfsx?&E1NV$)k48 zAvrJNlvT=>MJ!;gCPQRaEMHY+;Ibw$*V8!YZ$-ww9GfF_DwYQqYtv3l@WUO?32{`p ze0hw*EQiCm0{QJcs#&83EjplO%a&_rI)oZ)q)>q(?l9!i#{bmz|EOIS1ajf zh4K~Ikcy#ClBz0?002M$Nkl@t~g{@b!Ci56F(S(=(87vIG#h(1Pa^+HP#FsHg^Xb^?)zL9RBn{j& zmHgY`F4wJ9lbfWyY}$(Q%mSKcp zFQVQRxJfG-4pY%htJ{2Nh}u9;;`kuTWMpdqH*MAAxwDlocYf8XQUgOyK3KrjXI-oW zj}85wB5zW_annEJJ%cE|2Q7K zvf;YyvP)FCa)q!q3g*Y~5&OidwAF}Hmk2k_Q?Oi^0Bov*`*uQ{+Neg+f_XR?Y=`N$ z8PTO2da++`6)aU%*LS@EYk1%j+G>k*mM*ZBU&Czq^5v}c6&zAh!I4!0?%2I&nUe(m}V;CZ_vC>#zt%T_JJMF{R!;ObA|5V#XJDAmwQO#z8*!_EOW z$7ZcSyuDo6V`z7zOX-^{guB?gx3K>#3l<^wgXgQ3D+e=3r;A`-JDL5{&Dy(nFBa(5 zFn5bnZz2})mSSvS6_NmTRT%Mj9~!gP$+FO11te%7|p0q z4%Z@iv>K7oQp~xH>o+k!4se@L2>QoIfGBvaS@I-p`CQHACa6}Ox)`m=qeS*k>;7g9 z3EWt2g28PQ{`vD`!I5!ZwsIws7OT)}Vhz9`u^@2*@oCGKs35vo)@|}3bv6v>)*{*Yn;6(%fN-$b0^5O$WEqo&xB3SK#J*IX5v& zVHT9HT$%k2<_Ly)mN9nQ$!%ICwMcQ50hTM4EYZBB%T%^pImA3mBbvNci#b5Su4mm< zqs=K=%|1B?y0>7VGFVQo#QcT+f}UBpVu{L^h2ev>REzd*L05g+>>23#rm9x;$}s#B zm4=?yJPw{EOH=~hWy3*g!IJqwRU@5!woIwgj6wczQ*20jojLd>dOJ7S>AQC$6;LS5 z%4O`s3!q(d;v%LF^WDZ{cEfm?G;3e$Cn(*trosWCg@~_xF4oUYpq)a)Toev4R*T;lZ`?XKQnL+qSO3Ef9L3Me>LF zW2!pZ*P^{GJpV@=z+zDGlrt9(e9RJ#xRgn3>X3WfPjkz~*S4hnp3Cl1+`DvtK zpac;wI9)z*TkOlaPmZ%lS}-<2TK~2Tw&_p%KJZOi(D@*K9}_n6D-zY=!SH6C0Rpjz z2t@}OU|SaQt%1$;1_zTyI1tP>GjIJFo8k4%*M2ry8b^C$HNj1N-T)8IK2muM-&V?609?zE3pgI=)`qhYYy4*(l2}q6lC_KY@eAQXHJu zenzZ=7vN8!hEEs|>f$y(5J5mHAY$J-*w2bvX+p#g29e?BIQ#c7B1(k%gZ^PG4QsCL z`AhIvx_LA#(eVt<0on#l5G?$8^E+@$I}Jxb73JhUykQG!RyPn4k3b1JDs&$eUvWNRyXQs z4FP#Xjf?AK7#421brpjN=G_lDbhjnh|7JPxA zpJYPNKB5c=&ri==2e0dRFy0LFojFX_fHU_pXPw0O6mD6Vf5sE$$Y%qgc*8eJvL7br z_Wa)O^-gk|W)7Tt@;RMvoIEC;&-T5OIXB}CIMR2P_L(U2n({4<*P;6sjjW4`8fl$C z_soY4_s8qc<8S{s##eq9;W=047H0`wq{IaOJG`)885=?{PPA{X&_4hZl)Wj)@O7}? zzOXluF6cl31J@hjfjtn1kiEb=nfAL*<2tv)>(@}Q-mJj^{Rl@J-ntv*u|RY_pbrjN zY?a_u#NTqE>-*{mi2tf;)}&#$CG-KztqbiVAGBQZ@f(BHds2WSeQ{ST7MjGr`1CREbANf2 z85|e&hbZzH*lv3=mF~Cl^rtZ0cKf? zb1Ak?%VZ9WH;^^0b!W{wI5Y&jO{C|Y-`N$1=U3QMjQgk~SQPd8gn%|Y5|CB3Pf@22 zItw^(fgzxR{YfVBPvX17+$ZvRa&VjN zCA*)p66hy6LtFk8ABJgk0Lw|g><7$&HW-wFJ_!+j`oqKa|J4D^NZ1qCe-05^Vj%hF z31>epVNV38p17V*fu`lbc{72{8&6ipSl7U>{AaGF7q@lF9HKl?NzM`es3YRSg(RUZ z&Ko!qt}sim1*Fgh*TjRq_9>PMT!S1iq zxEDY+z&3)pyAvTP=c8BAxKLOGL#K@)4=+5Y2CmKX zu72<5FjINvx5vt&Qy!Wyf1?ozZHbqC@Y{LavUqUbtiPl9BSghB{QJL;&^R9`103AC zSQib?|35>R6k%>=&QAd0Tb=}O#-1O*$k6fZ3X{s;Swg^{hN$Pf|1rP7Fr;VQ#^CGK z8i%p*gkMB+Grm4ZKqXG+GMp{^#fAks@y~@LjCZn$O!CM3;nJh^k~#e0UBK~KYH?9s z$6?QMe%?jRabtKoq^?+kEcwG@JPnmQm;d6y&xWbn6X9)slRgl~E}l05d$NYT?>K!_ ze^m8;uVXSsk|Kt8l*eU-diV(Cvu_>X7CeeG5g6^chDSVv`l;LH`!C*S?=im#&d5MH zox2wm<8j|hoDZP1oB~6cu{7~ATy9u>&KC-Z`W$~B|90OG4P>O;%)Z559*&Qk>+qaW zjs66-jHka%Zy0xm)HDP#nfM4UP8lyHD~w`Q(uSyYVXQ(aCUBz}9#7+M&+j;n4|AS4 zNc6y5jHe6mHQe1jBIEG9CFk2{#0~=ydj(7S12j?|YKIDq_U8nX9nf2l$JnueJI2PIt__W|>LWqkt#8^F1 z&7p#j;^2oN9S?#2qeibiGcsJCVds_OdL2jU{Bpco_UD3I6>^cqZS#TGIL}4+U3}iV z9ut0Ux@l)G&#=awh~W0QZU@hg_zE;}y%?HBRq2posJ zH$!6k*0suy`Po8+E#c$Lzr6wDtoy$|xc{D9o~S0eJw>C55~fH1RP^NO6+z3NapWIh z?RZZf@*7YgFgrs!q7yl$J6%|7e1|2&Wb#0{Zig_*j0`-1_#Gy9c<;BdxLEz6JQA48 zXpT>qg5h97I#(JCevC>F-N<~7zyDW!yFX#+`A|dU-t63puyAQmfUv(I$fKnbYcOBt zK{|!s7#~Hg4@;P_Am!jGp}~Y?coT1VNc1}& zQ3+Z5=6a&o-^r309n})j2KX8udS0;$0zAXhelnv}F4ci==EYmbjM+J_b+2)M*b7VQ-~Wx7T!3bm%)gRqVI-VA2|I zdrkT;x)yb;WyI3v)|``8#qDZ?8co#Vd_PVG`c1$4yHUJ)}ohBtie zMF6kKJ$(OeneKNd{ zobx~80Os)w8wUXMVhAD|blBX2WaL8j7z-jVm2Bro4*X;)GQeKaCN@2*;H@zSlfhQI ziQP+qxwu;PRce?3K+qE+zAQYEcA*QFBPY(DiOr2zMmqji_M()Ul!6>H%B}~{g>jk6 zu^+SaNy@$#^P~*yKCWeb4R2*ui`*rf%R*aSj>pMz_}MY(C_ z0$LZ3i~Ar??u}*F9vo?+_Yk-_8NLbI7yN(ZK=%6peGPa$-aBJGQeU z0$ZFRJp&W8T&>&5_I}6x{b2p)O7x^NJYtB}h%pfn6Hmr{z%K!@hiu5?>_ho}_s;#w z%e=Apt4;1F;AuW=Xyi8}Ei$+ZD`yGJyA;eMT8ttY#JdwS(TO+?vW|ttZWG!0_n?E9 zj6b(zCNP$Y1G2WLfOjHztdzz4MNDN6f5~~cvQJOI5hyp2%;&AFnLN2tl!&;mH`cu# zKiZJMdVsAJxLiS`k=UJdB|GzK58OwKGz8I4M7f;a^+X8S$nfY40f&Gad;m=_7Zl55 zL9EjKA}*aiXJ>twfb^!Eg1pBz^m7iN{Atl+i|}R#W}d0u{LH}(ILzZi{664nu5fJl zk4_-OM#p0o$a-*u4I-q|SL=1|US0d7fN zx8yM)Z9EGk(0fY8pBA_S%UZ@kTQ_cEE^op}K?&t#uK702XnZd?c{k6-%M=iBSO$^| z=B7saPLB3I01g4ixy^e>l^Zdt-PE1P+7Fy?uNca6nfs|P+krhe1!o@aOJ-bgW6SG( z;PjxkMLuH;Gk*>+)*I2Y*okgWu>$ypqo$pR*{s{h#tx1vj;Z-{kdW;Hn*NSfW_(x; zKMHfj@ep74@!zrUCBcpkE@V(O>9vH1d zqOv9l&++zVeL;>xa~)Dd_z@*{>0xl`w_8Ivq@36fz7B6k))K>9I3!=zw*lm#Si{Ts zBWj)TY}V=`+!Ef#;^XiQS+ah_$IfwoP;YqY_W>9O6B<{?TP{iwq;$w9=o(Q)umMyc~C?`Jwgh#^RV81g<32(yNP(}n( zr#ocMlGkaXQlgp;t?$rZuIq0NZVxo!HjFtXp>LPj+pw5i_dgNX0}~Qb`TPC0|HmA_ zJa9Q7Aiw@HwC3JFZDko((gD!5|4%-ZrXVzy4Z-5^Uk($LQK_H>n~Uejog~ z%)_x}^?L2p^{NX3(VG(sK!b6JxpY&49=QGrz542FnmTVT3Xl-Km=(SEt~>SVn0GW0 zpBV_h>#WmHQ`-}oYTQphXcT@*nw)T&F2q`r<@!ya#W%=*Vmkc!EUY*?jNQ9yJ7!@= z>-!1cs9V>&F%VJ?!wKv3*z-@Kgt;9v#~pM!=I9elQN=h{mgTjn_hD7^MP=0ZBzy1bQEL{@0 z?+AgoL@OH4!lL4Umj?!Cxb^BcQr9k5<3)ZddJHdX2a3E+k2^kC4YZi#Q4tJ_u>NC6 zfI0ZnxbOAu+suvDXX?B&PEiibFF!rx6;1kiDnFVom#HU<#$Vwx$2$+^#e`C}e z`Wh3u7Oy<-g7dJDcB0;TeWbqn?rY+baTI$w7U~-6sV91)+GO<~`M&PG<#rsC+ftgvKaP@d_?^jMy$bt% zdU?o8Fl07zxJQPZwQ$aP=W6zZaafV-s5&U*TONKN7A6N`jc(e^xtK}LgQ?#uF;-F) z<_0igecN}Q$7v7#Yeu{=MiZt@(oHwst?I|5MtT{)(}trZ+Nv~ZX-oC&3j^s(l5$~u z=hm**YsKotdidoLI`?C0h56tg(MsuPr#7EN?ms8 z#oCW!XU=Wf&wSlSxd&hfa3n;p$OmTMFxWp}I`||(KYjbXg!$zYYE{!F4q-tQiZp>R zV!m!%wOj+<9i#5o+^lU_WPB6X7FTxZ8k`Q>>a-7%`(WDb;gI?6TO;)8)VX^4(Z^L2 zr|v89bu(x{KjAlB10Q)r`>jg_)5Oa2KFDEz0q!g7ls5ie$V7?1NpNVMLw`l^be637 z4^QLu8L!&(MrQiM62{9oEIL}>Q8qrKw;?Sb@wD;0@nnbpj>r2u{w`}X04T!%wm@Z!4@6Q0I$l9iO8S&bqbrHqJOEcbxdUY^wJfF*o(q;XOm-hSL&VMj( z)?Q`J6Du=bS*)hapIMXs!E>znq=?^F#S-pm|!@2nphh0LDDe*cLtim+~- z>ES;LrqTY_2ZP6#T-n&I7cN?auZYsR%T5awaPYr}PHtr|?ved_g8UyXWwxC-FM#7-T9o)KxYb4a-Cvdb~0 zSxomoa)-Y9`g?6ISwz#OOw%nl-=r(M-ibNZx;VeAt?3Yz@4oxC@|JI`JrHImpMIuJ zIAu4cX(#Blx87I5e7Q6WYhK4SZLXHbpNNII+#C+}Y2w6*+$wCx!p?loHm8O|pov$i z|Ca|Z&1|%F$%^$#Te4UySEXqs=0NM$z`6A3kyy(qjM?Evdg}4MYJg9cvIX)(Ktyc| zoD>?_wryKgu5p$64;rRn!{5|{w|CP;7hI%Nd;#@*s=r3PIYyUVa9SYxOO`FB?swm# zapR}yv^KyAOG)uyCC*8cf5q?APR&`kI9NFH)-vpsm(>13e0!CG$m{)#PHxl`Q_HXD zsvElMHO&9MF!WXR>3J_4>-Z7GL=HZ)iWb3dPj|S{xz(lXEtm#wt;$$cy7%_mx!J>% z?+v%9X^YmXRpFSRKpStzzwg_F9w7jae>x68CQqEiE!{57n?H}ac#5V^{8it6J6`wR z*F!gTyZF#(JLa-Y!`^sZzfAsFCw4f; zd zyjgQ?-?#z4QM0rhD|GqrU(~8)3oV^CMZ@2CRS6}JQToP{@n=(4xj9X8uOE<_*WC`x zIM2kqc@FlD?Hrb-Vr?~%8?lX>HtO@QzvV_bMQy-&Ik}C$;pUt5OSd~HW{X)p`!wC!Ek)C9&*hTxD@FYW=_Pe-QXT2>c%e{tp8G zLl7{Tl!9gG2KAd`%q166ET*~GMEn)!VEl!)Ski3^RuC;!6*iII$@|C0v){>dv_=OY z!d3hQ=ai2>(pz&dC!c|6R;ko7DpjNyJ_cs%3~ow%>t)d)2aEOjAZFsy+)JAzt$u7B ze0}{Itg&q1;9-S2#wP^JbLNJ4&zCQsKIG2m)@?CgoDI>r>>4v>3{GsH#!2ZKL>RN{ z)?05@>*h_!1LvHYgF+^a_$THqzCW5Q^(-I7~4Pr9t#)G!oNlf zjl(o@N)B!eSFML*0MQ6s3`a9^b7D5PNs}h{_bCysU-M&j+9H)jFn{~W*pF};jB{Fi zoA`ZWeDxGYR3{0lJa0an?Zp8dYi>FsaqZ7MQ`cU7m2x5u8IH|RMD;i*jQ{x;efH&- zI9sfNN!RuGqsWb)tQ2ipyF#lrZbY=sg}66SFqgS#(PF_T#(VE@D9)3c8_dGQ701K- zCcQuUonQjJP|;S6|gClv5s9GleiYn+qbda;dVKF=@KK{_=ZO#iVWS+&R^}Nej#t zLl7dfSP=g|@er57_f18G3Ki9;{;?>T=7ZCdEsXiLt=llSehlwQL8xZO$>oaw$KHFu zX;ozD|4(NcXmV~scaw9@N|vl*zyyLhj-!)wbR4r{&Jsivj0gyd5>!xB7#P zm5B9+>HvCU@_Q-+PSkHyJED2|J3J`p!|C>J0W5(5q*O^Jb#^(Gz|!l~y~T`+z%S4a z0AN?+BAh#9hJE_9upTN?Pwm@p=2DAg0xp{|8u12JOsr!KNa6q2zuct?)OgGB+?{TN z{xAAt1&1?}?M1kGYRF@n^64~XA(Yi?P@mN1+w|c_lT?mE)Md+*1dkImecGpb5-aEy zenUPDE7cp4=}5#>N_)`I#mm1__j4}@%9AFfp)Zz{6tQdr(};VAFURK|cjN^NztI=7 zW>N4{+O}n#?tAnx)DdiBZ&R){-FDoGw7>@vH$A$uYdWk?l=w4n?WIrMCruCbnkYK zo_Xpi_37SCFFuE>+|eV%mQage`6?={pHizv)H=ew(1F^%&jMHovEoY}mF}Y{Ao<#x z6V$F_Pt~bbg_wZ!;3g7Fypv;8%pUm2pnk*A!^fz}a569hS-B@EEc})B?l`W?FT9YN zCs`C3eouKtN>l5gCbd|OC_N)HxYQiRqVz2V{@QmsM<*y;al=*D=?OOB>bM#```puP z+6Xe152=3=vMKRcKRFzc#}|D2h2DwGLKT~3!ISaFnn7_7KuD)Qe*c4Uq#bUd=FJ=E zIPpW^Ej3$6NsJ`}Y@_d3(D*!I!Ux*8af2?s>_QJkS&aWEuArH;mqWY^nMDC-ww|T{ zWlFU=YTlv_Opxz|DW^Rj!B?C2Z2Ey(BDC+=m@F2?e&Rs(BQWPs291MbtPt5mMe{qEyJJX&oWokN8OJm3 zzmP&09JZy$e@@(Ux*bkAom{!Po`3X7-Ff}Bnmm1~zFf2n%ppGU1a*3L?`Cs@4p4*Z zvWqU)Gmj0ScyUt-jXnqMj-(^@y7S1q?gM^jr&CXm^@w&7(B`{?n-1_9m`1LKK5$LL z2KCgbbC-}h*#*nLUGf!m2ajWwJBk2>C4JRu*2)PrY|}}1-f^?eYEX+hT01F9+e$4P zHdOoO%_un96-_7_0Ui-Zy`Sli;CnnYrB>})LHQ8N=kK?FuXQLta&f`7*TBa08>s_C zd?a%dNh-j)b3bW-PeDnQOH824KP*Ifbj|hG>z+Gq$6YfH*UjBOQ=0I=GshVSoPod@ z2%LeyzZ3$FISw@2blabK`cL2gvCsdLj{jQ-VBV^|!P(8Ke8ptdua&B<9nT_hLmYwI z8Mq?m=;P^A)U0g>l|qm*L>&hc4nA9ZY70($JOy}R#N+t2Q@8Hg9g5o(RmPG1dUfPT zEnK-eY~-$uQjNHdyYK$3y7%p-8K2DwmEc#c`$mJVzMhz+-71gk&He*Nbr=C*EEwMKQ-tDB;Z=bWwM6!vtiLcEvi2N`Xrb{k7Puq7*+n0MbNfq`9eU}O<|V{q|_Mok_=p}~__Pi8M#MCJ6~>#+wP z(}p!0bqvAn5CtLIwQQ*peLPz4MR?)Y90KKX>MxZy^1>Cl|`7lh#WXkB*YC3^6Id$o2o zMNe_{oWE$E-W)eh4-I)#6_QJ{xN@~?^GZE8Y#4=C_lHC^Xb1Gvi_fYA&;H$SuL?<7 z+IQ@#Cmwl3=Mc|RqgHJ!6@^$=Ir?DYTbeX=CiQ8ei5)ylNxm3;IDQf?h)Xnm#xyNk zZ(*&Z#teH+8`o~YQu0Yy%XtWUfpI-uCgMNohlN}0zd;T#!S>--JJGqWOku_xO^%WT z;(i<|*||d(4SjxyZWwr(=FIv^6;RGpDU+yYMvPEpYAL0Z!5t4JM?Au={l_sRqW7RU z_O2b;LoxTA`}Ts%yL5np+V%*wRnp9V$Y>d!{%gF1ZHj^0%11HQ`gPQ@RTI@stD*fA z=A8W5EM0!_1$yGK`>~WJY9TJPRclnExNbF_)3r0MdRY`Hb{wgJ=S|N7OazX3#E4Za zT^#&drI^A9T80OLmoJTRJ*%kWz?NH4tRR;H5K64Z5vK_K%tb1$Tf4R{y!kJHA#OQyoPod@2%Ley83_CfAz<=rSs?Q6-QC~+cYptrZkx^jw>S(c z7tJ6PZaZFpcY*6JY)o?$gg8j~2REJ-tzg~G=V1k@3+nb_~0ARoKA(|b&PmjK6 z|EFsR+S%F-8mL^wQaZ3@y5pa!s^(no)#@ztM@0qPet&GnmlWkuD|gPHLXjv z`_$@s{mnPEar1Uve|
    D8N-Gl(5np!Bz#VjNRlIOCabr_7;p6GraVkddB&X=|bNjJVbAvnl3m;~0%vNTdIs#)j zM$1-h(y>vaR5Jbs_3G6Z*uJLco_$88N|aT-)Jn?2$~gSBVF-{U<$yWaiy-vyqYtWL zjrw|RiVW5-U?DwzB@vZ;N)b-NnWuA%qGj@2dt z{BvQF4(>aoRARy$Lvnf?p74T6k0gqjIPpV$@X1UaA?x9os@2rv?DlF{x1J_onOs3U z%Y6@A&K-IBl!P>2F5RFD`<{cU;n*kT}(v~e-^!T&Ss!8jPScc1J!o;b1ckDRzz2Gv0 zuBSBMvMYktfAZuh!M&?685El|tsjJm_er3l;x%+$pRQp|zVhNr#C^r+;rmahS%+@w z-lH3_f8BB2A`R?a`*ra}{esYKe77J|uvSlx`S|-@MCQlz!xqDt$jSrb8O)W{L~ zWNKL@Ar!Z6)mCH2y{iWGYikaPPtNIcX~=}yjkvsmqXI1X`yT$QzPo7qym|9* z0i3CL6ee5OZ_)2=y-lZ3U`=@MJ#E1%x^M43grZbE_UtPmOXRoTEmvc#PsPB&ynI7@ z7>i#x(y1?X`NbFNfkz+4x|D^h@G;$V^&llBmskCIjWvX1KQF#iSOYHZuNkxEY0At` zQJfvaopY*MwrHnupD)z=tz34=i-WMNiRZjAtQXma)rr02W3+x$$GNzfT&(AP36m0(wNb2lfR=R7UDv>YS2K0 zs|3}onMxv}r`7MGONfs=Tct{sCIe=y?tkb}-7&DgI-sl=1?`*nSu%>K7*(xYk@hW6 zpAIt_K!4`t33UNxV<@+rCICNN+9kc2e-E^JGLpUZevnH=kM%)^K>(M-jbb0TErGDAx7o6&VsQm z%7&eD@`#qNU9GaX*HkNC7PrCUT7u925dy#~rl!D9HBeD30-L_y90KlUjirSdHp+5fH55&(;!{=I?j!Re54aTDEA47S--7o3wxL zex<{xmMT_UjS(;cLqL0$(0|DzwC+GT+<%rWUj`F|y#r>rF8xogTvp$HyAqd~og}Mh zqmo67D;9=i@!AzCTB^KiRIW-2^J552-{}Y@fNTd!<(&_(J*Fpm0UJSo40JloiH1rqCTn3$(VO=A41b=#gP0Yo6Kdc8#g4O zNlu6Xiy~o3V-iV}D^XY(#Ba=+H($kwDRXiVr}sW^c(>MV`d;;FHB!l>MD5wLOW&EIHD^16F-b${kTf2cu1IL{^w`lYB zouOQVtrm@7q7#UdS@_KYnAB`FJ*z!J2XRpJW8H?8%8D(lx;4OmT)6^dSs2^5u2Vdj z@=Bw8h(+RcVefUDHmVAOU?S_zRuJ2&ZR0szkI3ARS&#Ly|Ilt7Mo36y4MdY>eGRUK zd-q|{#@#lawO+S=Lz0ZF)lSlsS4gg;7LA%Kk;Drb8OO9@^Cm1p#NffCXJ(z$(&bBo zm7Xb3jWn{49ykh}i`H$i(Bj^T0Af1)x6}=bZ+s5% zgx_oFcWYIqbXm1()|4!t;6x1Ws|cwF$;jFgn!A4E1|2+hkaZD{aF?idE$UO(<$x9~ zS%_sjNzEF!QdDfZemHnkjZ!P4NcvuJ#Y(FpagKS}C$(hldfZ>L)uwS1XbmQCI$}Kx z1p}}Qlk{ficGXA8mYI1}+qdmft(tXkD?hF|^OsP*AzKYtdsQnZ2P<9%=NIGlUXuRS zsaYd;-rD$Uziuh4ApfWhHQbWOxntJ);{XY#NuA#kTb`&u_NQ=_jeuV^e=ft>hCxn3zon@;qi8% z!m)}Np*Xa>h9~FgvtxT=(0tQ+zp1h*?+X92)4a@>(&1pgl{ ziovZnniF1UKJfVDu)8eRffFaV&z*|{d7>~T__7?d)AjH=i6qDYXPm~5F$7#=4aWrq3*$4`frV=d+S*}S5Y_-Ni(~926uAk; zch3voX)~7Z9=+$@I7tW-@Z_ibb2i+#hM2DkbckR6p0@qVVP;r>C#G*<`ssJBafffQ z&=GgumgQ_{Xe{)UB_0Hv2u>Lck#+YUW*udVam_J|29NR79)hF|MAia{XxH`Y3h`|I z2e|pg>jE#`Za?_s=HjfOq(43fbEABpd0-1&0xv*c{nZxh9j%-N_N+vheLk6Pv+?oMFbo+#~m} zwFbe3t6(x|^)pE{5q@mZ71P6Gx>p;W0C{k>t1qACh>Fbo8fQB zG5wwZI)!!9E%KTA!{LdZPhaPD{O4X2oTHV~_K3hAK*NAWUHIL2Aqd7c}(XjCxn28K1%Xj0x53*;6IrRGRVMTzgE*LU69}x@!%vft~Bhs3| zj@uo;&CRip5m_&u#Y`-rX2Q+h7R4xC@JSU=(5d#=|6^J`j$ z$Q)qE89y=nWx*29B?SVg_7vjGRYljPkJmt1%cd zp$?)6qObCO;bPiBsC5y0$H`@a$fljfLt7p5kk|q^U18b(EwG`Hh~m0D=(PnO3;wpe z<~ie4zy+X!G0#@^c_12;3rmS?k45V+VK9o%e_U)b@1j<1Nk^3LWO3zMG>z|7>wAbgow zGIwhj`dW5OzeWx-RD6nIBhMm;I}UT1zsDk3Wn%@4M?mrAS#Y%8@MB?0^1@_96XU_= zZ-#*lIEG@JW|4^8gJ>8{~lR@9p}R-81f&58pdR%J0c9jkO31P z7Khx7S(eB+nIXoTYcm*UM;_#)e3H5hlnuVfe-b zb1(u)m;-vv*ur>!yz?~rzlyHKOFu&A9oESV-xrM zWd7!I?u)eR^ZXvxL!0?VkFvvzq%LbnQo`=9^jP-m) zu_nkL%1O_idt%%{h!5Em`A*|TY0ri4_1g71bn*_bS-aM;92pP73-e}X{d91*%Lg=X zz$F48`bQu6o^7iLOnMwYWRr-&!iX9AL>TbQpe+E?p$h?jX~E0NjRe^J)Ntez=L;-D z9)12vppgF=n4LC90L0(-hRLIkRzBGj=#_3k5)AbxV@87K<0eFC*zt;z`oyY83#ER?hH5iHpAC~tUrZYnKOTg{1!+L zSA{jkIdmJ!1lRMdptC^b`)S{TWe~DyB%)Y@PJz3oHO7kqJaE^o#4-(y&^yyDlCFd? z<*#MhbX%c6ykbZT$#za~2T6Ll*UyLUBFtrwq$viWGl5Ox6u1>R53FLcgS&PDeRSVV zL;Z+C2&LAaSr9Z{WrajH`F#q5HdG_nA3;zwynlW$9=Dx84dEA3n=seT zoeHhDP#$iNwDHrev>%Y3H4Y3sJEldpJ{q181s*#j{q=8#RLBamB1%oSVO{_M+;EyS}E$=u;k~r_EXUIRq=Ob<9| z8f^Gx=Hs?;+0QNLN&byopHH{g3$g+Y_nr^jZN_%vJS2Dkxqr;3@ycx&HinT;d(J#6 zP z8nMDMvX2_V9uI3Z50{&N@Zb^LO*jBCzC4yM%mr}voQ4kkqwR5D7Hx@Sd=V%cuYjIm z=ZEDV1sq$!_y5P=SsKh_EQ{RZ3|e|7IJgU13NV5K7$+JCK=s6O*6Y^5@uufk8DuIp zFD4Z2q_v_Ectxhy05Z{bTH{>%cHwfBlVv};?BK4KVWhEZi`|WA-HX|7eAJ@lxe#sI z&xImtv#(4(in$NJ6we}Moo%>Sd|eyK7BtV3Q*hgc6KTus(w5gB_l5p|Z=NP^ zUUo;cHPkiaPC{3sVKRNa@BI-!`21@gW&lDlcW|_zQz0Xt`%6coaWiwa$rxPd;_wa4 zVJz;yw+NR~D9Gsd^YH}O{A^GKzj^cp$Im|(oI5?b zG#5eY0zTX7>cjK<_eX3#^WkV^*PP4d{ve>xuIY?jG))_fm%i5Lj)QuvcxVSOW}UO- z!ELTEfrT(_G07*naRDPr@9uem_>AGsm z$Z}exW=++uT#fTQ%x;g2&;o}0k-*x{0O7JA#sMdRgU6i*jf~^jwn82`d{pxmE>Ouz zRaL)Et+1Zlxd6+282H%<%uN<^Wh#3_UZg6}!jymC{5_afiRpZ8Pm|M8^u z%(RO*V>C@Rku)7N8{@TN#cV9&j7BNzJ=J*VBr$HI02aX#&-dWc&u<0a-M@mq`sxDZ zHP8&V7p#ZSR2WTUKHN#~7iO#hFZ0Cb01H}-Tx@_dKCWl-jQPfDKpXaW!_G9oxN6U7*{wET0z`Azgel_`Sm{Gn_UFnZt})kyKjdu1^n^j zLmie_5!xBx<7>R{Lmr4(j#Ik%FSp|{0beR)g#9p{0cJ4Xc*dK>v+{tk<9I$M9R>=1`VQie}pF*n3>S1rrND!}!eafp+i`MZZ0+2-bM5 z@tsTK^JR%#uBD4X>En_vjya9-+|!n?jbJqWq6Lq~?RcTOtNGt}_qPbVeD?34?wN|r z9b?X9jhOGsMJn=+piXA zxG69qQ7{v?-g>iU&G?J}^Hoe>ta^9vrj8w2Y23K6`eM#(m912nEQ`0OESdgdXwM7n zKQ5ifSpJ!>UM^mQQ)hpoS>G(y6<1%UhRMk~a_pF19zI+~D?Di4Y91t!n zXoydG#!AW8?PJ~7S7+?cUpa6zP-}J z;mtW$D=4@;_Tvvon$c0`cIk?CDpT){Cv)VSStK`Uq5)S9Rv~cRn`}fI?@d7Zh{EBY zfAIxGKS2WqT&cFLn`+VrlQi>-nQUx@H1NtnYSf^vUU=apt=_m%#VKBX6DjK}l`GE% z;YrCS==32Qf5gwH&d}V&%QSfKHDrWK)-g&hy!_fI?ccGT45BS{?KJ~*^!Q;t`|?m7 zKe$^LUvUlDD4YL{YnGXUbP^m48$Ohz2wOuOfkq?z$^UaLN&h0;F%v*2h6pXdCy)K@7$$5S0cNIPL$}ma;>{7cnoz%Zu zS3UXSFp_S>s2F(NZ@@s+POb(g=8eRw=QJAFKLe<2HXczfoAroSN9voUE7Yh-E8TwM zAgx%rLT|kFPGDkt_c>Qxx^#@x_zINxr-z%F`+n3 zHAu>F51n@s#BMKWY%m%>~XF>oAtTIee|(%$XfK9LBG)t zyVfZuv8>MT(n_P>dJ9IV6gB5MX#JX{T0Qd%3Sd9Z^I)=gh#4R=8^*s_H2fcaJcR=H zUm`3d>at7wt4*`U0Y_b*(d??3A=6e1C-D6tj?Mz8JxSb35PZm9>4ZUt4sF*PWNkf` zTTHiHH8{lGnK>yq=sI^;Z=FSv>!GSyx2gJc?WAaw6;5np1~-c5nh9P{?aYs-&e9+5 z`V&wCui&~O)*`oH#t&^g&;0a@&-MA71z4&I0iWi&q<0rGa&FSQACFg=inTQ8(hC`P zhTePc1AVn%iIPehH*QtciWEL)E&4Dccj)**O`7NQg0kt7h3`o0c!U`>I>R#1JN8F}<5k}+)%eMi)vA3r_3F|=`*-fp ztD{~INv@J8@p8j;*Q#jISiSlh>t*qB)vHsV{quTgA>;9Dp)cCiS~S*+LtoJ{vM-k*d+Cig z-K^x&rS%FKgSQ_%$V|rS%F8dO+)WQ(b+{wOX@ct;SGx=m>&+mo8m& z{(1fM`dee*d)6VWTYxREJ8rrb!Ee8YzWh4%H;?I(t8P?t_FYegEof%`t>B+LZJHL& zp9{SqyoJO<6-ZV!=<-YSCRv5I7>?yD>xP?dP&o?IJB}S4Gc?pf3vfibbsJXTv&^x^ z&?Yp@^wdJ1@jEEJBIs_E2Y2&y^w53{A2Cwj@7hgSlvH@zo8ZYZ_3WsT+O~O%8aHV} zrq@A)(HzppWa?hEZ3}DX_o`B&h?Xp0q_^Ig1WiAs?$r70)wLtpZ$HqSd0!wTC1~)~ zH#5#Ojhi$Hn0=|T zVGXfngTMp;|G~rcW#g)+sX^M6bT_hR*NZmmq2& z&fzV^8W9U&MG?TBe(^;WE?q{IDwNUaH{a8_Z1(Y{uHIby5RPmZt&$~6s%M{`n&#)B z35w1*q0!V_x&@~5;isQd{idx{hs}8XruBO0smF8_6@KrYJyZ%JTf276U|%`@^Q!7JY^q)mmy~LiweyGVdhwN)bmu+yX#MJCWJuegcCDLZj)w7tAh{d)T?zg9 zXTNx}a59rEWDor0qp@0w_O$_wQv*`YkACwVvbgP1+xD&XyC@mfCCYPgJjS&cPTN5u^+5 z^=5L4jq9-|9@X*{tJN2#sYKBPZP~I>4?pvy4xh->xxIUw<^ov3Xn-tunni%(+i$-^ zwo)<`VqNNXb~~+IwNS5&cpIkkT0Qr|Gpd|ghr-BJ*fWjW00Cri7M{I(_o~BL?Nx%c z{pxFP!MOIu^)*MGJDtU5T!@Y0U3Kr?L#K`%*SY8QB=h7NGTN=Cc2zr&{wK0#+;D;I z$uJV%tz4!?2+y_CD(NEx;^mZJ`0G7)K|Ehp^_orf+4T2y0!?p&x~UM)x7GLD^8%3! zqMS8<3@;l7xmd9x>f5)MKA$~XJ9ZyZ>*kG^tD@=+zI-%wijJJfQtM{*gXJ~21r&hg zG4WClBk*@e_2zZ*HMTGub=IxM)%yp`QN5b7N)S*Xjb)Xhl)$$c#95Zz9L-(rlIX!eC5;t5)`dZRkP92U5XTh(qJz+?X&+V~vhJ?@|^ zLfr-pNv$7GX4=x!r#!5g>{q+V%$r=fLJ+<-Z`n$A%f+FXy0zKGieRCD34}il?@q=t z<>QaFoQ$5|t>3JE%t@??@{b2hBVWz@@7%pjk3RLd_8dA6E$C(l*vn*^_84`~c{)5Tmm6%jQ7hQT0_?D`YiE$bW z&0Mo-H42?W>eu%iZQrt5Pe1>H?tADFeYbHrg3%A^)}aN=V}9r8Qx0@# z1qD}>j-NcKac{j&$&a;i9mg*1TWaUlE&AZYiQwpORi}PEnCjB{^s`Tb^7Z$3-KCTi zN*$Cbqb1+W*Q~i;XxWNY>ej6%Yp4jyhsPC1UA^n6L01|9p*ZyN=eQk3pAR3|tD&#H zu0Fl`LW9WX30}wIg|lnlF3mt8aDr^NRmjMB=l~gsw{Iu=>UYrN9I}m;LimS1)BgZl z`k#x?`j-dpQ@c)Gsdc(hUn0Er=-!Qxi-?P#A!ikF(V|6EvwDiAO#Mi0y7i%UUK`Dt zIbEx_{Ghw<`h!X!FqCJFY$21f>jEZFv~TOSZFmG^VKK_oS6_Vv-?T|3nezm)_13Rj z2flQ-PLN@?IT=tqsC?MaieS0$XRz%seRWA>HQ8(RkJp#nbszjFT>SR@}3t!Wsbt^p$ zf7G&d8`gXp!dea1Zl-2_{hhAqf3BW=TXQ)Yaw_MLjDXUDdhHEX6;ZCI;6-+h;ol1d^VmI9uM+W7q@1f8!C!s38isbGcM zx$6ggG4E>~q!@h#vUlfXp45&V+q51*YSo%`stoNZT-Z4bBI`ApwR!Y7j?U1(^ZT8v zDW6SaZRhI1_vn(1-?)wZ0f$1J&J*L+q5%(1@Axq>~jU@ z^WSTo(^HkIR|kJ%RfzTAK3O3i$^U?^Jof^9^afV2BS*ELx=<+< z%0{GD+PC(uD1{7C@7#-)aDa{-JEn4IH<~uDqn+#P>FsGt zOxe(m>>h$&LM<3J;f4nPbO3jq4S+iQb&OcwXzM4s)Bz;UV#5n8ZxsSX`IMjGy9Rjm^Fi-M6U z#^&HyGf&4)2b&-#y0Rz=V@b?DwH@Z2_Y7Q7nC;dr+bAjLuwEK7UPq3mt4MJyBtN@9 z0qfTrqu+t})?sH(H z0;+X0J`LGymM&Y0W^$p#wHeq!EdMy zq%}W;uT_i2b+mWuX6;6i^7}gGU~Ek3%kgUeEkhIYtll^Yo$_#BMoL?yH2n%S58gAeFaX6wH{FY zXWg*gt2)Cjy45Xh(MyT zqZGCug$1ZxvldFNl19tm>faslTly0zRV-Ty8V#e2&{81iN8D^|u?p%C zo`p3GMOr$=*sXkN*QSH2S16%lSQQ?C@h+EAo%H)VV3s%Q?6W&iZ}2|K3N+G(FFvim z-gzgC+79X|ZlaHNx6IZ#-FoTLOD@OK-dcA*{#Y2x-?JQ2*^>P zq*9u@WV!CRZh%IQ9L^pIEMT*uP*UEA5d84n_i6Z>qqOd1W?;zTY3mS*o7cyTQEQm> z`n6K~ zBh;_VN80el3(UOT84JGJrExdH?q43cUk#eJ)}&9S>862~>iFSE=bNzBqvDDNx5APz>^I(cy(%!)rQghf*2GZ$p%iPc znubtc^iOx*4$h;DWJ%Xdsj1ai@z#91N@dF@t7wS?tzW-J^B1qjx^_OE9@#t(g&`$z z7B5|dB^yO?qmBrltQ{=s6DCelojP@O(=`Jr2eVcU@sK)v^dL(Abk@u|U3kt}N=Nat zXz?NyN0DC~g?lo>W>S1rO`GzGx*@P8Kx?-ButQhhFhFBRzr-3oNcoO~s$8}_&w&Tx zcQYpCD^yZS)#56P#jp;7e#6>n2;yH;=Wv%c{_q2e&n7AZ?k!ug1cB~(wP@8+6DLo> zLVP#IglygOmp`jn`?GY6@*UNxR8tJ4Htx9nHq~s@gt~-fSTCovXwf2s0UY_@?UJbL zdgHa%A$Ve-fKMo0s+e+7C>`E+fEtu7*w<=dR4A@*S8vd51N*31!-l%{cQ*v%gn8+d z8kL~wd!W6Csij&G1w<^uY;7(5_G{{oZdTP)%Gt2LmqeM?x;b#$zDaLPo3Hw16S%jI znl?$p;+smzr#0%`q^7dwF4QtSB?=cSiUO{bGN6<5S8u`{dxerpl|*@8RQ*t@H)4!` zyyr1++*t0v0@`Vu`JWv@Fk)rJBosl2h1TZ5dz$WZJBI5>lRtlVvwlp$Ie#zs%sU`O zseO_*yl>dUh3}j6n?;pRAd z$vWNh;6P;`mo6K46M=})nl^R39(n3%J%Huw)WJQv@4*)t$2UqysuX6;fy17}znQ^; znfzzI`x(F}3#w-~l_(hYOq|_)Ixg$DKAiF?0%)>2w`hXt_hdM4O}ClR95!ADOy;3h z`4A2NLbMalJob3V>UR9_aV=l8SO@oPVX+rsV?r+C@5PsfQpc-|+O%pC+*|DG;t+yt znAzAIVrQ7E9XodEnHNUuN?b+CK-j8Rs-UNzd{~M2*`5OS-XQ2QNFNpIT(PHX#nJ^@ zfZNJ_xU4K0a&I7PA5Z>(wu`EHo94{PI<%~Izu-m>?le4tzyZ#98G98Q&mD^w3c|u@ z!H?lrovC$OH|fyHeHt|IIvqR;QZb(RXoBFmCj&r-AYq!=g24P7u0DgVyc$;zeBfcW zR>Op>W7DgHmD7heyBV|QqVfJ(k3arYaMz6k@w~A)Wq2-|R6MF(`(isTBi2G5&nr$b z-JNWp^JdIa4$6$82*BCdnVK+utQyp!h;U|U<|;kx)v-v@j>UlIrK@P(j!^q*(Gne? zMplX9#Vns`|KUSgxDcW2z)spOLa;RJGZ4jy7#2GFE5Dcq8`h4Ai~<(U0%%706xwbB z-^AR0`gz2U#34NIW9|R>zPoh@YvkYoS77yFX8FA!fc#e;&OhbxX6GFzV!J6UUju*&Yi^#r}V@3TQ%;}FZ96Ock8KVp4HKubX6-?Ne}(?euR*8 z4SD7nm4LzNeOB9$&66c$pd*yvN;`9|j>6EM#HI1=2_NdV-~3L!(RgPYIiU@ajXhS^ z;c63ypU=B*jnLz7yr-M{wt}fVu4`L#(C#%$^wNvZ>B(n?Xy1VY`fmP0{J#z>w?v|{ z4rl2wLBPL9tNhqgPf+kY8S6(It;Z6weEDLEN>>kB{2&`fI02r^Vl`I-Q{aR(j%dQ5 zrR)=XwGgj}fmi)mo7XSVVwlNnXtEN@aXpu_KC{`(ocL+a-Xki9mF6%CJqr?6G~sj@ z;OoZ}h+TG#@hB~zRY}1`^7h|p@|3B1|Bd15f79J+Q7%S{*R5B-#x2mc@6f#YtCU+P zGce*0Klmpdx^q946zMD&!0I&-P-qX7#!{BbGmQV%wiw{PuYnh7BDKlUG$In>17H>NOZZ zymhLoSf#ScG4E%$=tfP#dF(w81y{i$(7G(VAso@dtfI)X^*v5s&Y7p|2OMQstV|lSGSk$-n{n3Po=;1d$mcIRh?MH{76FrE+!8 z6C<%q6;+QOz2GT$9?CDrzZPLGTo%Q#<4#Osl3u2CH9h>-At({D^u%*dt7;_*azi8c zA@n?eRpgN;hTs*GqK=K~>o|;hG}k#)LE!g6+~FFWU0>aj3u(wp&ui36!&DZgxiIBL8Pw7Rv$f^GQFTZtjay+H%G9N5UbCD!b?u{P{(P$j-hPL+A3LJ% z9lLjt<>_@wH?$?b(F(meR0hh`iz5DC?74zU7tTxFb1SK8C#&YfW{(H6WSd=vw zqucMe4>!UD+@YUGi5rgvsW=Mg9oqjzj&8W@a_v2G!c(ek+jeRh`&I%pkdB0SsXe=X z&{yAW&=Z&6pseGW;6aQ=;a1tM=~>|aEahUs3rmD&d!2>^Wribsq~og{X9kHQ;>0$}g^4z6TC|PZdF^3VCfGZ;tZ42qR@sm)t9M)Zb=&J8mF4u?8zoLh8c4G-! zsXlePa}6iL4)L&TiYa zQ}bueQDOLUYm*&Lk;^jz(t&g4%`G_nqleMgV~D~X)%>f!8Mh+mc;$j{CjZ^-|NNZ4 z|NM8m$l6^y587=iZsSFuy}s~ghkyGwIj~}Z4An9Bp4GOouIPVpFvqUnvQ3N85DbA? zf9AD3oi^V9))=3v$&KrZ(LtZvGNozhMNVmYfWV^ zWB$T37PcQ?Y0Qa7wd}z87%W)!883uu#rjPfgHQPZ+)+xPB{Wg~@RN^mzgQ81pYi$x z<_q=Om^bvm!w<6P%0k%k*xcD{9=lstUp-i#eKtL4S>Ac~Ep32#y8n>}*bK-h$qHJs zXg4V(-V@B=9Huz)%P+jF4QQt(e(;etP#ky1j{O=jbf{K-yIfy71U2NdQhG zpecO>@9aY2vE|~L5d~8Lf3GrSDpG`bp)R@N3S2C3=d=3@G-TnD1)B8fXTd_?L?kDU z?bQR1KBPY2cAvf-LX2M=8`TXrU!&)qe+JFsLVVIQF#Uh0mq)&;dmp$TZGR=0g*@&3 zVXNL5Hvt!+gSgeOnX{1n#H5&784RbfNm?%$T=6hIKj(>i-O1uP09y%r&pYDHh)L?DlHcrL9t{r((_85@K~9eDDF*<_lW4 zW;Jftdtvgp&woB(LIPueus?13blrN#je2$1%g8jxV44?&Skw=RiCHjvmZnabf@|6m z9fLy|K5V$wqapnOi$y$cUT5Q0b`DzU=FOXH^VTikkg1!W;r1hsJBa0Y@18xuf_wst z*~ycqg2g`wK%N)YoiA?Hsu_DrBlW+auQqSnj;1_8RdJi{Mr_qN=XAl<=b%m^dDLrM z8#lhkh~@31Idi|p4Y86SY>c8I<^~YKEKBnLg~Spa%|0@t8ZW* zJYP>e@rX`xBFoyCu!}genVa_ah-TKpvK1j&&}myiMh$yLzyIBBnm+T(pfsse8HHPy zj<_;jslWd9573SiC}h|ZXrf3wu5D5An)BssP55ApM7oT@ zta)E+{Dcoetk$@3kt8J^sxc6Uz3wj0xQIA98kx`*j)?g+kNz1-Nh@>AQ zhTVtO|3>0tKM4X@Kn-9LfkqUcZ);|eQpJPIRH0?&Ig_H*`&$EDIG|!BNu`h!KuXC5q>ea0S4j!>sd*N&H z=d@rPa18Vp%UmM;!_^Nt6-9Lp{7a4CTK@YxexqxzA52VAI#y&{r4Zm9A7(F!sh@m` zOW23R34f^Z?~lh)b4he*QiMh@b> z`TOk@PcMmU^?Y4?d4Cjeh^Zhu%TC>~!VVkpq7t#he#ai?x%mRO=rWb6D5Y|lkVxbd z0^Z5vhj8^jPkRp>13p;u3_#Ysm;R5?3=78J%)p~qAynWuH(#yy-W-LiV=c{tpM^xI zF-7k?oZV6P-*=DB@6%ByPaIJqF!u_#Yp!F#vasrxPp-l|BebBc*s*=5CX8e4O!^4^ zc9N!JakMZsbM_1rFq1We&<(q_Hfr8hk3R4h6fO-^y+QL3#^E*TBsR`tkN^*H>Qts? zOq;F0Jn(0|@bZgVv2L@r!TTl^Eu`Q6_C`I0;%WYZ1@I0DdJb3Prp=nG8CG4pE!V^K z_NgI{LL2L1ZES&XSVU7l{fM~6i}l*ekE(K|V$jj~(4r}<>8mwr=n(kpDBAlr%x|Lc z8bpi3O)5fP49Ne@0pNjgMC=M5LnEFS|MK(qpMQ?r^`HH2=>IsAz_x%}2+f8U*n)qP z1H^G4;#+UOjg})vn_#p{VpXZ0N*oyPZ@e}_Me>fRRPo|WUL=c>0c`*orU3&Ca+m;P=m;lbZ@BXtY z;$|}qrhG@8Mwq}WLB!utN?HnT4^vrOeY6;h#}mY2^}F~|4S)R&_3YeLZR(~#6yDR^ zWoy-`Qx}LuG_e6_OVISz#E<*6(GxWA!t=Oy8L?q|H5XyFRnx{Qhr8RRwVToI+@-r7 z9D=#N8u3OKt2LUp>;s3i{k|RQ-J_eTl}uyWtKe+M_QX%TJyyB6IcV^wZy6*bZoy1FBpmn&yPKWVHVq^Y#@lyTe+>20@n%et-?)!N> z`?AZf2uyy)sZ(mxrlT4+ZGx4|`b*PVUSUWNA330xhQ6r^m6G)-INGttrK(anO_dO+ zpMQRs4*sx7_3Jm%N*McjGd@$rN@aot`Q|%1DYa;_?tOL`)|>O*fE}APVW3Ia9VtxMEOuah#9sT|{gG0OrW`WQ;C}{}u8P<;d)0y;k z?AWc5BS!$^hMGI?OVv(kL~K$ctnSg8J9D;*ql7D2h8WEzt@PlB&%$UztLM#CXqT+wPfDsN~_x< z2$NpB0Vtje6zj?5%A(9F1oPcauaA5_#L{fv{)47}Nyxx9l5%|bvHEnzihv~Icew=jgxnrA3SsXX*`;wMuyoqc|PcAP$`(@>?0#L%||N%QRHysZH@Ic_ak@EK8`Zx5IVYo`?;D%dU4O_R<*y&&38oNM;u|~CQ3|&H?%!3!P zmqAWCaa^p6tFFBgg@W_>fr}`U%9Sfdf{OM*sr1ayVI(*q1OQE6-YEd}Gko=vjmMcN zPwepnf2=7yZ!s378YtD)uiL8bB#amvqscq6|CnZ>7~Mxm zhV2I)QjN6QdSUqMxEPmGSLn&_ZvQ=4%lLRrL;zTV(7qH!yJO21&i____)~X;vMjyx z4spp?V2))?gdZ%YmAJVdOHaoY?f|qTgLwQpdgb|-@rsGk%P&5m5*4enF5~p*qeGOM zma6G9rm1$rRw!opocG=^V*!@Nm+{R2}s1ZJ(?gi&bC<-SNPkpcG~^gcprl>y?gIY-SwAy)tdO+apTA0D%e)F zQd2bh>qVi?;_lrC)Tv!_?T7bz|GhEVxOscv1#ca6xzfO`F{8)m%aU=yrJQhk*7VcF z_Ls+v_gm(sEDDu4O`r9Z((yd_diGphbImPyNSwqt@f9?mnAP~_Svn?Vsqw|l30A=VG52x^p9XB?|II7>fX7tk_fD> zi<{McgpW%vze2UJ#JN6J9F~e=Nkx^y29sPd8TX`26=P#++qx|TKcX2taq^@NAS5(v zhQP*#5(m*fh^BY*Tj;RjUc;q>vlD2*Z>Pj|DZK;GK4w^X^ooVD#Jao)W^xiN4hv#qbk6^8uu0A znz*<`gz!Y-n9@{*aRtt&02zJ(aQ@$$^nAl0!6cbj?gv*KWZWEI?h++S;b&b}jq5kY zrC^6Hx}cvLHp0yo4Q5${`j)NQ!N61v+U6w2Tpx3PA}Zk0SS4z(!T30M@Ce!4D(mXO zP8Lywd9Hxsg1O^!a>WV+hL=@Rks_+stc4oXuaD&)cU0zXFD?Sj*@P?OOP`DzS*zA) zuTXI8Wy3%J!U1a5xUOndt4&N`G5Q{@L1aNImY9gkVw7sssjcQMS_j560WI1I+-?pZ zKM8Jhz{=Sh_l;;Ygsia>8CVy(6Mt|H434*TT&4K!C-(IJ4&DD#3(N^>XPAU2VnYkF z&I$T2SvqJ$n?rYOF+O_e5D5($t9o)(B?p|V8ekB7{qvc#|5G1Mvztv;Ej(F>iULnk z*eFZE7#%opSOc#ZK!TX+(7F~n!Tg$0zV_;C0<-ND@t$8W{YN@y%VLwJO#=gHfnw00 zL9E+q;1e{OxUq6&%LTW$Vnvfwn6?T*uPXuPTHvqCHSC3cA#-WK6$90zZoNoKZ`1m4 z_}yu~ahZdMv>`kh0n64Smk)_ph&%|s!=T!da_GnrwDX-vKjMsYtv{P2gc6clX`{&`~tj zjT#gCTtSuTQ^lkrYS_3LmWl*uUjmuphM_4g9+Dcx;MU}{_)*4To@W8D5Y`pX$-aI2 zpr!S(_FV)`E(RTG5fUdMGO01KA9Z0otKyz_7&pt4xS?08(NJw0*1^Lg39WgON)n$D zi!gZN1aT1TtL@u$Chn(rP>9CSenA`>n=US2F~m2uLWx!uMNv`OO%8jF6E7Xdf}DjL zU(?2oLUNO2;;k!Ju7r0;qj0`3#bSC?r(e?=Lk@e$sHc$_Bnn}oy} zRVtMuInqG{wHR>wO4X@ZTa}^h$z>~P&;Fe-`U66?y$oP{6h^h(S!byv@h@qWQ^_dX zD!9-`BOqQq7+!~G1Wua1d)*k1?3$NcB^erATt$--NZL>l;kps=J597{>o(|mAvLLo z0+XacRjO83nUck^GFD_SP7R4Tin{MuL5j1_$3drCu(zH%aYAX;({$-YmjoUMtOb4k zmLi+UFOOGH)s(c5T*p@M!_fGnSblo;Jx{F(0dT348r9N>U23H!HS1B!E?4!z)dRZ^ z;!0Wx50}0H7K{c#rV6o=Rk$Zd^-$E6M0iUoZnzd>Y(+vgK67y{RP5NG5p?an1V=!b>FTs;h1w0Z9d7MOn!RMdiw{@6mP{=y%r16U4tA zVSTsMMHj=90ZeBIv`b{q9(~x8I)PV3*yEZ7H^hGDpRXp38`4&k4nyx9b3PdUu}*3# z%E}DrUwO4-zOV^miOR+8t|5YbeCYd?%zIILw6OjoYte$G`BH3%n6=BpKUJ+(1-UIg zBrWrLJAV8WarXU)r)z<$Z$;wutHTd%Ly=!5#C4}ut)?1v>*GSXjrk|J8F9CT;d>0j zisj3M^%sl9t~mR(lYJzi04oL@oxLwDwL18l5-ezy!Rc}cPP^f2vzec(ueyr4sHki_ zWe$ftm@O-6}np#!e+I7{zQzt?K6Vr4j@9`WTJam}2*EC%T?Jfp=IehRq%Jbdo z+q<{UZr2VzGmp5oeYky|0%ikMGbIIjT9?>2lm~l{>w1FdL)l!s80{TMSO1F# zLlaW*dO8j-n8~{6$XYE0K2-r1FfIRshrKP*Gbo>fhTBTH2o)}P^Gf>14!36mhVu{< zh6gYX7bq$CiFuB+8MS+t!|x(r{M-#2*CGIrtRf{fXbb&RbS94% zy8*<|UWg+jMj_`UqETEXsk1S8Mtb=RNhuVlocz@Dyu8p%+5n&_?#^a~Wi{F2NgJA~dDUq>7+n_%7Gf z@qGF4xpY4mZm1CMgwFPu!!`aPj{BIxfWn+1HjKJ15HI#D;7d_R=G07^6Oh`)!wNa~ zE0zg5QYc%+j0d=~WT5$V%J#e*{IcURn3DwVWj?(a*sxC5Bf^w=`~Zo`u!Yo&nPGd9 zZd+TQ$R^_T>p3`<&p;M2Qt^9c4r69RjDrF5DIaD^T?556N{~szVdX_0F*|nKp!uMA z%%Ht2HobTzAR0VHe}Eul31%8QSG5o^1NQfprgF@Ud#V(heu?(=K`69jF8M# z3^XqangK7)pBE@a>A@$a8DW*{!3`%2Fiu;ujiE5CcUyj)^dOOIEu7d|9g<1F@Wrv7 zW7%voxW{#A>?-Rb$#HRPqL87iSZE2%zT0BiN6y9YgM|(wX*eSA_m&U`q4GXpSH1s_ zz4L(6vO4zvuzi=_`@+&e5xan3!IFp#MUB0;l$#r4a!qn$M?^$G1x1wJL8?ecdhfk2 zb?JS9?YsZ)Z=UyMm(?Vi|1}|gII!>gyyrP}&YU@O=FFLiW-V|hqMAUSM0ZV)_J`V) z!##`~^h#r(Bhd(WL}GH&(82&4qEI;!dU8v_ieOG%l0lXQXgK|)ubBw8AV;hV2#81{ zx);Ssko@mw!xYQ?iqbHAnnM|!lu;#hY2!;f8MA2Sok*hQw(eJm znU4gP5j2`^K_mEMU6m>_a!Tva^DhFphaac2%_!vxZ9y@kg6hLN$=$%@R)OOI1Ni3Bf6&ozb- zjG=^VQfC#u$p4dkEXC1QmT~W^a4ws1kzYhDY?`*m)q9$yQ#s9BwI`1|Q&G(098Uc> zPUKW5){avb#pqzxVWEUHTUf&bI0X(D0Vm~;D!A9FcND0=S00Nx%Nv#hp>x1o+Bz~& zqqd8|6~Cg5e>^yt6(?U~&=wf@BG6y?t&*Cl9N^k%1P2rtAv&s}we0f2=<%S|EAXxH zq)zoqDg=3ymzk9TUFHOyJ}_NyYrvlxR0OIIaf*Y6t54aY;fz86j{wfH9!+y``Yn7{ z-^k0oc^q`|lpnNaMRFH0iv~w&z2LQcA!^v@B6EPYQ+zz*begMN5p2$)GGnl#b(F3upD-Ram08H zxSb%{0j)}>ZJO&*RH8A9WP_JW!&Gmk+DgGbUwM}W4o8Sc(P6C#dC(PK^BJ!g2!eRc zG;+!xxU1TMw;Ey1!wfNvv^`GxthAYFV?~&=?i&nYkWg2B$f6T504$GoWJ82S|H6E~ z$c*5sHA(8H@|)`w@FiiCPR$bNyV@=_dKoB+#s_J1Jp2G@w7#7NVTxzqBMI0{<9okZ4ynbU^C?k*FtwXOtz_=22D-?GXPW7qXBu{3OD|K&!Mr zIbZ+)KmbWZK~&DhF^Th_d%9ztAbe3jNtesG>&*6t2JwK$Q6VpiKq3lN;s5{?DC8G_ zeqc~}sV5I0Ac(ZGl#@C6w$XqG?Ge$0NRdlSfg^%EfK!)R@S_GHhyy~k2W?VM zf@g?{;G!n*Dgr8y!$QlHrW5%4~eOnKmb4hu=NV9&^A!Nf#DMU_Xji=kG{{v|w8 zt&SIJp=uG^r4&$pLN1FDS%b##LOH~2IevPIfA5E2Bd%OcbfZ4>MGHXyc(qpVG)LIf ziepgVS@Xy91~K`cK31d?K2mlbW30^_Kl0O@w@*PE^{GFf&j2Hs$AVALErCZT`J&SS za%Je`8764eu=q#m*d8UnXxteewIUdIvTJ zS&a?DL9yO;WeJ4<|H&t$Vd4Z*@_?R(Hw@~x+N<^}2u{K|hdFV<%qKgHjR%;0fgwDv zgUE9~y)E8OjbPB?0G7cUuZfQ{81gB?<)Q>QbCLF-1p%z|to{V#HON=67L}Xd2E7jl z#~OaERU0p`78;l{SbAr}dxbeCUk}KzR@y69B6~RKMe^Z0F<%HC%1i zS}Yptbn%>$!avlDU<3-4;t7KKcnsAO%!L4^0rDtW0qD{expq+or@@qd&M1IOVVDLr ztJeJSS7`-ks4t$EZ-4d?4B=IQTCq|y{&u4_HhoXMXNN<=2*BTq0E;Smn%52f(7C|M|J2wxOIj3yCZ z;hd@=Tt@&m<;w3v&@a-5+Uf1q`sxux3YN6j(*-X*zbB_Y*QlaMZ8)6{^48%>f?!nD zmf)GM04|iHRs?VSAr!B40d54bg+GHa6KwRS=BRA{9eVbDds`T7CEz8WXM>)VM}GxF zIGzk1tyXviDx5g|*4POjw6+IA#Zdj8B2=a$VE9>O1i3>op|bTWzg2>luaUG@!VGT< zAK^IBQ-y#}cP!>t&?bNJ13t7SXaknO^`!g_7$fDd%EycETcpZ6b>bgyz|Iw0eBaW~ z+jNc|08PUv1krF1oRBd<`r)e?@ft|I3k9WC9Em+=Kxmami>XQzGMt-7lTj9``0|BL z%wxb~kru{L#VMb+gv?5(XQ8YJu#O7!R!!2R@F;(;H2fl7Qe@3oy;Fq8`}2?ZL0dJU zRGZqXAY$bW3Yz1OVv4lc5?NQ@Jc!BQL6bzeMQnmiYfzrj1QSSaNkd}wO|bQcP&sF7 z4mz%EK|0UnImn|_l;VYiGLkM_l%ywGR21QGQ@?nUBTB`D)j7RjRdAjLhnE9LJ=0$R zFK6@sMF0i9L%`IeX07nx*}`L|7_tZO2Jbv?K(HK4zNm*`8>AH?gli3+Ku6^Z4;- zLDbn#r3u#>qz`IU+H>;ZjIFEqe`G`FFaJ2 z$9((4H}syI#41N0{P`NfQ@G#Z_NxTnw2&vLMZdiw9zrqR*8ILHPvH>c2tLDQpBqOG zic5%-H98d?PUSztHG2EbjR}6~Q#nE{<5&Ju@J^q>dZKsgXMXrL%)+nFZAE^Lf=>>G z0Qdo3gaLIaJ2R~?}YL0tjk7p%SE ztV&!E7LL)L>+khD=xTvBQjAv{f`K~czxfWgA=H%oFB0fo!S{O3Z$W<2;3+7xV7t_> z!oda4s-6Ghi1cu7vf!Qa1!Iw4LgBV}n$YXBb*Yb`g!ygBuOo;%x5l7f6m&Kp&l38C zgRhn0*UB5@_vF;4b}AGc=Wu(JQm;cvlq`hX=e8j~{@W1oOlLpx@gZEVm(54GMDJth zhx0^d^9B$3=?cBzXVA`Y3PpsU^T${9I(-cipY2;XWr)xP@%fSGR2D>^eVGpv>I)Tn zPFy&1n2-2YJHrWn$hZ2&-#KjwSN=oF`JQQiQX4QyprxxXRVim$;IpL)5Y3UT3;qBk z+Ejk*>5z`Mj-aCvr%Fvu$HzIS;N@_>8iy%VS+rA~;@e~yEsC>aZ2}`$;HCB@hFXM9 zh;dGH3isjv;J3;blcPIlF{rpmRS+!*+RQQzfOHvLebgzG)Tx5aR=8qXNh9UNQ718? zeM+MVDzzJxEr#4x*_19cR(hY6DZ-@`1%qH6Oh8REGy#AQa3r78L(0fP?2<0i!hMnBP>_a^6`?#&f@p^3csS_ERfnKOu0q4gr2BiY1ybRZdL88C@w3(83EQ>oDu*>C-2%>h=X@P`|XTDf_H$qk8zK ziL{a9zp~H!_JKjjwA%ISsz~(Ti`djT)3Cy|7DEXQxKy~yKI+j26R+dlcSx-|H7w)! z0qgQru=oY0#24X+v>q2Fu^dG!wbYAM`|*RA`Ap2oFSKE! z$8#yRx|J)5Nq)Skf6=R-jlxM|2`;Nvs#4K6lg@h3EHReZFd+Q~^szyM2jiSD8EZie z{e+}u5Z07>>MRpV;4n02YW}`8wd<66R~BmX0^e(e*7_U3%S%>9jjBN17^JdV6+X_{klz9P#lga-TGX76?0geah^VR zw)>N5g2P4U8~+s`Ezq{_{|FLkR}vce2vquZ@7`vEh7LogI@fB{sLFkaT&y)svF^S4 zx{-kT7`PB4??gm-=^(1onB1RkUwrz2Tc@ln2dfF^tTb&EKrMN6T zaNq#Ot{)CTu{>F?kvmEjjI?pnzd(+f?WXTXj2UTFt8!txWHEeS9kHJM24jACxb5e{ zxSTNNV#%xP7d`B2Oof-PSjj4KVO<-vpbVM@LZ_#vS?}JxZP@T(wt34IYt-l>zvuDU zXFV9V(U|<*L0m(>T&s3SJfdyf`4F_R-;W9KFM5Awa~IBs#w@d0z_)nucw4w=krgXi z%1UrqyomJSY4TSSCt}I7AMcj919w@T6rIp;Nie~l4ITSTo3~(&jlv34mBd<5$BwM~}nGM4ndBuuVxWHY~RxV$Gx%F-~Y3g*0EEIQ~J(G@w)h~M4;Nc^= zKas~J@!G)->uetZgbNM0pnY(keT=ovu~?9kYmoX48#q0Q=8k|iL+)dRGKA_9wzv>Z zgh<#*q~7a0oHmj%3xpBDhF4W8PWMRUuE7Vxi9+xgP5e7(~;^6c5N+HSr2eZi&cOlxy* zYwP^kXSNqpxS#a+gbShBIM;j}%XQ`PNpr-yvAMYG?z>#g^^4y9IpGL5^vCDKR1W4X|`o)4Je*QWuytP6dN*%Vl$U`jhS-*_We7 z+o>!ZV8Zkqpf6oN>}-=}eG?knLKzDd@^61;igMEE=tna%Gf!Lpfjw=?H(xu$AInA9 zZEP?Lgb5Elct5_0_FL~h{W#qTfS@xRVP7=6gl${5+Q7jB*iekJ6nw+Pb2{+# z*I!|7c8xvr)FU=z)R*ozZ}5nbwhgO@vc&Y}o9}R6gwp}qC433kTRvfs>(;GfPlEsJ zH?GIj{b*-uHNH)7 zXZ&TIw%+~w+s=I{_TQzlND=!<9$b<6y<+9Jf3@1hr8 zc+Q0is#BY*N?3z?`kAL}A10pV8%~R_Hf@_2=fz8wxnDeO&M$-u5V!z=3lO*ffqxGK zaxK^tzhqdGGt#2ou3*a0o}1< ztIeJ}&5B^kCR5G{IqquN`Yvm8ODo&8Wuu+I6S-8Pv}JHnVv)zZ7EYKXvO0|`n zHd!&O1$OU0z*@Ju-AZ#pAa$Jb_%@LRyELqMm99|MEgY@E@+3y7Y}%AbmK9T!Q!`AD zVmT!Z-A4EdD~%a&HxkBbo(-e+w}-Rf(Ejt!f=m|3STV7leezx>yRuUGn5lG2 zh4J~>&+f8c+}aW|u)A&Famt0UQ9A--A6U?0)7pR3aG3wv)~H@BE{Wz@F;4Zm4jN{y zTHV5_O$D_YypiPo{0*+-jHM%~6-E^)X0QL@ZF};b+ud4Q95}UU%_3`b<#kq)3r1wC{@;Ca31;C z!;jka&6?ZAoLtIjvhdAe%7gAIW-u2LYu2_8JAG_T>eu1qk#QnT`BDiMj~VQAEX0*5 z74Ig&*RNe+58wFdzUb_z+ zk%VwM9kaA)2pu#k*R{GChrP9J)~H_g*{H89zC@%A==G6}ow2|!!hG<@oj=B5X%Y;( zdJMe4ZN~!&lhFW__xJ;b!RvoNG?+uOE?coeqJ8*YS8IMzL$`7zgNN5$+rsX;?M}NM z)6?1Uk(R;2v~kTUiz`+RpPMQog+uq5|!*H`T~ufJhqz8Y(@7p`;_P~p7{21yk> zuE-h8o1egs(^ocS`gFH+mx}?8PMtg0u(4z8)BZiJ&+wsc^{XhR@Z*pc=zcH<*4n{Y zNd!`EozX4o=Go+lL+sU#oo&R(VfJSno}S@^RPGs~m`fMJ1qfV#zy%0gfWW^P0`L{F zaV2pqU4p;RcO1_N#e=wl-vysN{kPM_;EEs!e|wSsNo>FZ1`&&PF#pY(wyhR zE+)?-Fnf#nPFZOc$0O-$%H9+kHf(_H+IqmM$=M!0uC^xcvc*g1+f(=7OFh|as3v2U zH_vXq=~^~i>CSRitx>}kpr+IhRmE~J2JtW-2M-=(g)fDZ;F5SB?}*9bNQ)^^+6JS} zwP5}{tBH?=pverE8wF82e!QT%v^kA|@s%GD-Cv02rjhugGu-u=G-oOsfoQv->6I?M zm#R<^>3_1}@xvNz6lm(~ISXy}taaF!L)FB3N~pm;*=lS=TOotWBE-@z+txDwHXM*ZUs!S%@nIfy2L)Vme@2W6`!nEp z+&X^vk==XWJ(ygDxn({~LEU!Zq^~#ytLB>{xL#YdY_)wgVUj)Yi~Ah@F$ghYU{o0p z-)P6kq&>JHld)3u)Sa@b)e>#X_MO)2i#`Z5(s2S=oD;ir8$V&Jl_^unuDHA@NBYb$ z+7ZK@$0DKA2O02?@4n%~hr6R_oyI8~;Phzdu;I3I#}@pcRCU!wVP^QO)f1fuAG*VY z1%J%-VwI9jB=QDMbeI#4S;1!}zb|QWDgL8wvroHrwPzlC*k&zUYt653g>%rw_*pq( zD>m=IKh9Om1>F_mexEMo`NoS*2B6nZ5iTE77a)n4F-O9imVXa80{m1{qS!zSFLH24 z5g6N{MO=7I1vc$)%GnA(ZlUsx@j`J%lR@X3e!j_|(ebQe72JTHkH|mc8=I%lPZM z-nMUC!O7MUo3&!4Z+d4HQ0bjEbt>vBoX&aHbH_wJe!vhP zD``+nnmEOtd-i$j^j-%)1>Lo0udgqm{kA}GAzXmK1qfV#zy%2W3m~AiD-!n$HEPy{ zH?3z$Np<+EZ%MTp1mAl80e`hAqf(_RtY2C^{&x6DY{1k#brW9D9rND#^Be7VzkJa* zR0nVx_}**nt$t#4t5Tjv&<0p`ace6kK@eeiz^*I^s2%C0Se}By2j2#uoG=2n*CZ#)>z^R;kc17aHXc2cj zo_OLBJALe=mEg`=7Cv)k%$nAZ94A)ASzZ--b=7 zwv8EM^A|6)-6^}d=huz9fy-^`^x1AOluTY^Otg($vE;mEB%DM)uFvzaeYfRR;}4I;M*u6#(w+z7yRDi zvL#D#j(Zx$a;tUh(#?MNhyTIxa*}hw#}4jh^E$(ho=o+!wCR#jl?cpF$FTX9VU{uD zrr4c#-)VyecC#u~irM_xYdBHMvej&aAAa;PP9F|iappx9s-QDx&$6wYHfyt-2a!tR z-eZ@K-mzz&dD*|34V?9QLHEqByvX%YcVlolJB2rHmXujOJ^gS z#fBw=jdwbK+8^kYSQ`QM%Y=V3OhQ5|QDWf&yD<73_^Xp`%#PhYwD_{+?B!p*;Pl-Th8k0lj`c;Zs|Na9l69=G;8z$MQ)Dzq{Yhbk~ z^ZDnVM>upZMnQ7i5qwf&5_1G&N+R;w_^J&AK~{ds%9pQXzkKEyd;F0H8Pg~`eI^z4 z!YbCJ(ZzPl4L91WfBLg;z9e7}9gD(<40~xdmI#OZp9Dnuji0luC>)2D#J^btb0Ps% z=}g9xdVVr1vV-oz#{~#nfWQR^{6|1QR9ad=G6;o&Rq%(f?Cf(m?t6SAZ**a-gnat@ zTj4BA^S2WGr^Ks^Qf(SJYP4Gv+`Mrkr%NTR8b$@yaN)fqrzZ0!PUm9ul^D9fQX30& zE>is>_}EciNo!+ZT$^2SjV<4>#Rd-^gc?<47|AkrbjKe1NV^P_Yj7Uo@6Um%)-D# zd1rbx7FwUfjDddt7$Mkzfq3bsZ1}_(wvmmMj3^|QEoCj5HML!PXWK-K38cfUG^|+_ zwYOCJ(_j9?y}LW@%2)r#PH>;%fBx`Wt61k^Tf^PB9Hh$?%aymu6Q*0OdR1-w_^GIH zwy+f|*4yiEy(F^iKQsTo>3}W#Wn3X)pfz1^e@x?^%PyHg?AyZSCq?Zng9y zshpy0;||KTmUKreJIpED?zPM9VA^=Q`btjSq~CeI2OTX+c@6RU%ms^4v0Y{i)C zD64$gMQnD{Y{JB;wsGrj?g&n>O6AL0V%1tUZvJc=QLU_P-MZBtxV@r9TzQr4pR>|N zjvV0|_?p!!+UXOVX8hq-_Tb~cv%mcQIorA+*(Oi_#%k87V-vofYE7@b-nN2s-(Xmz zTJ1VEZQ5*b>khZPdA<&lXh;rTCFSH&(llXI1`bcZMrCc&h6*^{wmZ<9f@%4A@y)K{X5ZO0bV@G@i&ThBqlO|gUoWXziaW~X?>$_p0 zbkstd-FS=L)A~kE8YOx)zowr1RBf-HJ+3*Y> z_La51{U*Dz@g+72Rp704YO+wF#?9$Jn&2M7vr!9I1iR1Pefn6Dgi=;2GSe-5R;^jb zYOuLlivXnrhAwvRIcyhQjLM@HPyTfJ>vWQh&aF4zXpjHbEB4=ic@33tvx}QFv+;9! zTk5gn81y*IMmK>vs`}=QCBUuL>N^Ob2fn0Ut5V!z=3lR9%K_H;^`qWyc5TgIVk00gpCt(Fq;L@TS#fEDC zffQTI<}0RnaU`6-vYI7|+0H||Vd&S}RdpJ20sbL(Y#PC8A2_kq22AQAY&&r4eG!a- zE{$ig*gp6C6IQHv3DRd+#VXaU$yHZdB~;(U32w%a#P0oD*+{gupWk(()!_b2 zzOl?6Z2P2L*0=%U&Uh;yU(`xt#jH$~Bx_WomNjWy&ki0rX8ZRZw0j?U!Y;@7Kts}| z?Am3g(c^mT>1V8QwQ5LxYucivQBV%nGj+`_i}-KwNs#d*3TeE77-ErH!c6Ia1IPQ{Ezc`j3FS3R(?jj}`S!t;9 z)wN7u9S>vMuzo%6I3C1GrW6-Dl04U1xXP zc_;G_h8&t0ocx?8Lk8V&N3MLwa+*=5YE`SwiMFm47UdpWx=YkfF@TY55-#RM_NZ-1 z-f49jHMR%uy;pl`w+vY|sjl66T}wCCk;Q4(>J96yAt$^EY!DKwR<<&z?bU%+RIOUY zYGSx15xgzOrX|8v9l6Ph%Hoen6aF!@CFw(557oo<8#Y)?R50QgYn|?wDO${`)ToK8 z0xUez-x}Ntz3$Q`b`TnJ_~Z$Dic_V^7#|Ay0;Wo8$UmKo%7BL4)vw>S-O|{o-2dnk z(1kkIocz0Y?zGLjcUeW$4(lh@zzS}Zl|bzy5d$cYO771^V1*G&tyoF@*$p>yiXUT@ zE7h(YPUr2EQ0v8}~0RlfA2uRqM zo^b{tF}ez97J1MjF6L0=n6>SP{HeUmj8j})ihvhJP02TNfuK}ti{2{~*}pHBwJP`_ zb%`w)gouuaH7zvKRsYWloMH)pA%QTOPN-jTYJieI(J*kRsSy`k0t@%emwNA}Ljl0Z z;-HG~dmX?)Ruf}6i9w6beNf2{lhpAP*o(Penn<7+6Y`6sJ4>0IvH)I(yO;>pUss*e z{V|z9mYPZ?NitY;6&KH#ON$5I7)g4rGjqB}rGQ~N7z&+BsW`q}-N#@3h#!I4n(kC7 zs7kK2(FrUhs_#ULnabg~mgb{&1f#@nss8A`gzn7o)6I1WY ziV+puouSYeRF~j^IAJ3tlOPW6U%xf3Vyx1ULPtqG3w#y)Gx5ixc;R#m?cmUc`e5FO zP<`5*M>D3nBdB?#JTf010nFW(k1GF<3EZy(nS~p4!C{^TBFXO>XeB!q;2!s~*pRxf zG&;}K6~`O-_tLd1{ySXKKxn^8(7Nk5h~I?2LgX^!UHNK zFW_X{gS^pEM|T(1QTd7zU?QPlt?8x|gP%A@|H zS?Iqt9DxyQT`T>qt@_%6VUIE3KfV=Meo^J$!qFF&Ljt9Gj2 z>GWIe)?5{&gm>BWMOnTbLii3+aXnXZ1!$!1n1VB*GPO))Q>Lsi>Yi@45Gz!g#A~{{ z=&%(4`7NJq(lS&KUWvAf=8JAf7;v^F1^VjaNWZe6NuooVTN%)>DAX>(eG~l)eDKkA zCYs-4Rhz*F7amZD)ONisG&-7g30_*KL?b0!5Zt5=Uobdacp)KS@FpKpN~(=-FgJjw z3M>%3DE|;lXgG91>i4Qg>W*&Mhu^tO_`t}EG6%INP2u206^{JQ-`~zG>aURxN*8^` zgbhYkG$#L4_^!qjYP6S3I@Rfair~T3`3qDkOmsmk?eQY~IF^Kk?_7UJof;R<i+Iy4u~LJ5RV{S#Lc1$0@S`B=v#f_MWGPPDAn#Q@VDVyg_8dBKMTP? zZIt?K6oLogQ!c_LnFx|=8X3M)kP#>0rf^S^7;j;2F!m0=b6S(%({Qwx;+eo>!4+7C zF)5rT{Qa%|hR4Sfs1S|6+R0o4gj#b1YsY}#wWraC(kRMXq=G3+b6Imo?^KR_y~;3D z0G5DyD7}7b?37NlD_mzbX;qZ!R9=mx%2T&=e^g_yc4Y%Ez139^@qC5nw*1}(b&%N8 zk(nIKEdL$;_%?ilwutj}VG{|(zXmN)Z~t#XJ}#=faJj1G+z>$Q+&JfP1Ay{ExE{br zPP+yF06xmeT0oo(HVKA0RB_+C0y=N?CBt=sebnEH%Y(olJ$VG}IPSJ1-1fon4Vc<{ zE39EjOrC@YIWJz08YB>ASzv{4%{fBtE0!196Ns7pu10%~CqVrxiz z4Dyrtlcy~d=L1kUuF&s-NaBm82(K{1YbuyHgnSxM%`)DLcxYm1(yJUzI_cmbF!zb3 zI48jTE{w8d`?rK(BGW(W_eEb1-k$=^p>f_kCy?qX6PtdEC=?+s=)ESp2%t!S((tFE zc=EgjiaYyA0;N;<&NPMF5hVRdeyaa~&WWZvsKw4t4g7^BI>DKN?}C(IF5C+-sTvbt zC)nzAHOL_x4xThFK0b;Gk1fynAzTNkLSqo%M!1Af%I`TovhJ4)@zQ8(PN;6piNZnc zIzPg<8yCi6r!}-w8&b^y$Kdd|6rcs?M?b!2D+&Q#y;qdaU4Cd@J3TwwXT^v)QObXA z(3CZd3o0X5u+ySg7^e!gjYQv0%?n6>2Br8zJ-+vU{5WYL6QIMEQ@fD)^-uQ6#aDCz5g};5C zC`+L}6i)X;e;4Xp7*DhzP{*|y5lqAghvDq}5$z576s$9X?f0b%`N9E>i-Ph7kPm+U zuus8P;0yDE{`t=hiYKI+Sv()lnjqmxq}KuR zXmW(|`1jdT{nx+lBOeALmTI-S6_C(?pcZV4`s56RBr4uy<IMCAiJv1;fP=xD_CoTr{@b5|zJ_tin;!HwfDaMER!>DD z`Lzmy`fM>9#&~x7MDy)+6T~&J? zK2(mEMY(6eNX*&b1)cpBJg5yS|7^6<=l?nz{ko_)bhg)pb0}}P zE#H2pcBy+o(8IUWgx{W9&e=>M+zZ|Yq=uFOaHoBLv%LKLfh1e?3J*dp@kafbwGxeE6xC{^uKY2n}{dnSSU+dNu0UEyyf z7T!}DbHGbfd-<<*C%{GJ@i+eIal8w9BghM;0d8x9sV6Uj=P*77zt#6pN$M*v^m@N)8QYyKl|xG3jgv(c$RRndBNZWZB7|NOU4q@Z9yD+uZ#RfS*{R2;lfn;ecxpg@1Z?v z-xUP&XjFnS$n0~Fw#xyl;&rJ$G)&)>^}LL8l|59T1PiG>fi;d}QooYwpWLZw!y7<5 z+y%ysu`EJ9K`J{FSb?L$%{-}c5+~K!JmTU*Du@nm!H0i>TYd;&9myC7H&kCP++hTw zs3-;{mq=-Q$$*C{i)XH6Q(YFSwZh|IG0{{}t-&;r`mTab^RlF(1` z#rgI@Z@^!vZH9yTpy@9lNKI37oppuzB11pw5buDCkCU%_;hg_T-x@{c5$eLCfs#Vv z>4Etx`hfazxX-BRX`ExAjiLwYuEtWi1u?-#boTG5y9*cOxL9f;t|l9zIhwap=k_=; zD&UFYRAz?syQxF;MS*HvJy3Y*OqIv}un*PcYS3hpT4)}tx6~eE=�Cs)S-7qQPYe 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%0AG2rPiIN68 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⁢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

    {jbOK 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

  • uHqXXOXW)p$yTFTXNy25S@~KVBkqH|(@N6(Ujo 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 literal 0 HcmV?d00001 diff --git a/docs/zh_cn/operation/capture_packet.md b/docs/zh_cn/operation/capture_packet.md index e6dc57482..d4a491a13 100644 --- a/docs/zh_cn/operation/capture_packet.md +++ b/docs/zh_cn/operation/capture_packet.md @@ -32,3 +32,4 @@ Modules = mod_key_log * 注:配置路径Edit→Preferences→Protocols→SSL→(Pre)-Master-Secret log filename * Step3: 使用wireshark打开并解密抓包数据 +![WireShark解密https](../../images/wireShark_decrypt_https.png) From 368c1b524f293f03fa6832fdd037d73142ffc3df Mon Sep 17 00:00:00 2001 From: yangsijie Date: Sat, 16 May 2020 13:22:30 +0800 Subject: [PATCH 086/111] docs: update nav tab for website --- docs/en_us/{README.md => ABOUT.md} | 0 docs/en_us/COMMUNITY.md | 31 ++ docs/en_us/DOWNLOAD.md | 13 + docs/en_us/SUMMARY.md | 2 +- docs/en_us/index.md | 2 +- .../overrides/{home.html => home_en.html} | 10 +- docs/material/overrides/home_zh.html | 66 +++++ docs/mkdocs_en.yml | 12 +- docs/mkdocs_zh.yml | 278 ++++++++++-------- docs/zh_cn/{README.md => ABOUT.md} | 0 docs/zh_cn/COMMUNITY.md | 24 ++ docs/zh_cn/DOWNLOAD.md | 13 + docs/zh_cn/SUMMARY.md | 2 +- docs/zh_cn/index.md | 4 + 14 files changed, 316 insertions(+), 141 deletions(-) rename docs/en_us/{README.md => ABOUT.md} (100%) create mode 100644 docs/en_us/COMMUNITY.md create mode 100644 docs/en_us/DOWNLOAD.md rename docs/material/overrides/{home.html => home_en.html} (89%) create mode 100644 docs/material/overrides/home_zh.html rename docs/zh_cn/{README.md => ABOUT.md} (100%) create mode 100644 docs/zh_cn/COMMUNITY.md create mode 100644 docs/zh_cn/DOWNLOAD.md create mode 100644 docs/zh_cn/index.md diff --git a/docs/en_us/README.md b/docs/en_us/ABOUT.md similarity index 100% rename from docs/en_us/README.md rename to docs/en_us/ABOUT.md diff --git a/docs/en_us/COMMUNITY.md b/docs/en_us/COMMUNITY.md new file mode 100644 index 000000000..fc0fe79ef --- /dev/null +++ b/docs/en_us/COMMUNITY.md @@ -0,0 +1,31 @@ +We are very interested in building a community around BFE. If you are interested in using it or need help, please feel free to contact us. + +## COMMUNITY + +**BFE community on Slack**: [Sign up](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA) and join channels on topics that interest you. + +**WeChat developer group**: [Send a request mail](mailto:bfe-osc@baidu.com) with your WeChat ID and a contribution you have made to BFE(such as a PR/Issue). We will invite you right away. + +**Twitter**: [@BFE-Networks](https://twitter.com/BfeNetworks) + +**Issue tracker**: Use the [GitHub issue tracker](https://github.com/baidu/bfe/issues) to file bugs and features request. + + +## CONTRIBUTING + +We sincerely appreciate your contribution. Please visit the [BFE repository](https://github.com/baidu/bfe) and follow the [workflow](https://github.com/baidu/bfe/blob/develop/CONTRIBUTING.md). + + +## PROJECT GOVERNANCE +BFE is an independent open-source project. BFE community follow [the following rules](https://github.com/baidu/bfe/blob/develop/GOVERNANCE.md). + + +## CODE OF CONDUCT +To make BFE a welcoming and harassment-free experience for everyone, we follow the following [Code of Conduct](https://github.com/baidu/bfe/blob/develop/CODE_OF_CONDUCT.md). + + +## APPLICATION FOR SPECIAL COOPERATION + +Welcome to email us at bfe-osc@baidu.com + + diff --git a/docs/en_us/DOWNLOAD.md b/docs/en_us/DOWNLOAD.md new file mode 100644 index 000000000..c3e714014 --- /dev/null +++ b/docs/en_us/DOWNLOAD.md @@ -0,0 +1,13 @@ +We provide precompiled binaries for bfe components. [Download the latest release](https://github.com/baidu/bfe/releases) of BFE for your platform. + +## bfe v0.9.0 + +* 2020-04-16 [Release notes](https://github.com/baidu/bfe/releases/tag/v0.9.0) + +| File name | OS | Arch | Size | SHA256 Checksum | +| --------- | -- | ---- | ---- | --------------- | +| [bfe_0.9.0_darwin_amd64.tar.gz](https://github.com/baidu/bfe/releases/download/v0.9.0/bfe_0.9.0_darwin_amd64.tar.gz) | darwin | amd64 | 9.75 MB | 3bdbb80cc4946bc85b7295fc86ca86800e7811d20f37b36037aadfc7df718ad9 | +| [bfe_0.9.0_linux_amd64.tar.gz](https://github.com/baidu/bfe/releases/download/v0.9.0/bfe_0.9.0_linux_amd64.tar.gz) | linux | amd64 | 10.90 MB | 9b6aaac88651d88e86e67835b5ae0bdbe1c76076382b198f0aeb0b94b7572887 | +| [bfe_0.9.0_windows_amd64.tar.gz](https://github.com/baidu/bfe/releases/download/v0.9.0/bfe_0.9.0_windows_amd64.tar.gz) | windows | amd64 | 9.73 MB | 44221fe4c423ebe8d31c6da5bc28fe1ff9dbc84619094097871cb6e3e85ca4ef | + + diff --git a/docs/en_us/SUMMARY.md b/docs/en_us/SUMMARY.md index 2d6729c73..959d344e1 100644 --- a/docs/en_us/SUMMARY.md +++ b/docs/en_us/SUMMARY.md @@ -1,6 +1,6 @@ # Summary -* [About](README.md) +* [About](ABOUT.md) * Introduction * [Overview](introduction/overview.md) * [Comparsion to similar systems](introduction/comparison.md) diff --git a/docs/en_us/index.md b/docs/en_us/index.md index ad49ab437..1bc801442 100644 --- a/docs/en_us/index.md +++ b/docs/en_us/index.md @@ -1,4 +1,4 @@ --- -template: overrides/home.html +template: overrides/home_en.html title: Material for MkDocs --- diff --git a/docs/material/overrides/home.html b/docs/material/overrides/home_en.html similarity index 89% rename from docs/material/overrides/home.html rename to docs/material/overrides/home_en.html index 6a6f2b48c..4bce3744c 100644 --- a/docs/material/overrides/home.html +++ b/docs/material/overrides/home_en.html @@ -26,11 +26,11 @@

    BFE

    -

    Flexible plugin framework

    +

    Plugin framework

    BFE has a builtin plugin framework that makes it possible to develop new features rapidly by writing plugins.

    -

    Multi-tenancy architecture

    +

    Multi-tenancy

    BFE is designed to provide every tenant a dedicated share of the instance. Each tenant’s configuration is isolated and remains invisible to other tenants.

    @@ -39,7 +39,7 @@

    Multiple protocols

    Content based routing

    -

    BFE provides an [advanced domain-specific language](../condition/condition_grammar.md) to describe routing rules which are easy to understand and maintain.

    +

    BFE provides an advanced domain-specific language to describe routing rules which are easy to understand and maintain.

    @@ -52,8 +52,8 @@

    Many builtin plugins

    BFE provides a rich set of plugins for traffic management, security, observability, etc.

    -

    Best-in-class observability

    -

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs(server log/access log/TLS key log) for trouble shooting, data analysis and visualization. BFE also supports distributed tracing.

    +

    Observability

    +

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs for trouble shooting, data analysis and visualization. BFE also supports distributed tracing.

    Easily integrated

    diff --git a/docs/material/overrides/home_zh.html b/docs/material/overrides/home_zh.html new file mode 100644 index 000000000..2111c85e0 --- /dev/null +++ b/docs/material/overrides/home_zh.html @@ -0,0 +1,66 @@ +{#- + This file was automatically generated - do not edit +-#} +{% extends "overrides/main.html" %} +{% block tabs %} + {{ super() }} + +
    + + + +
    +
    +
    +
    +

    灵活的模块框架

    +

    内置灵活的模块框架,支持高效率定制开发第三方扩展模块

    +
    +
    +

    面向多租户架构

    +

    基于多租户架构设计,租户之间配置相互隔离

    +
    +
    +

    支持丰富的接入协议

    +

    支持HTTP,HTTPS,SPDY,HTTP/2,WebSocket,TLS等。未来计划支持gRPC, HTTP/3

    +
    +
    +

    基于请求内容路由

    +

    支持高级条件表达式定制转发规则,转发规则易于理解及维护

    +
    +
    +
    +
    +

    高级负载均衡

    +

    支持全局/分布式负载均衡,实现就近访问、跨可用区容灾及过载保护等

    +
    +
    +

    丰富的扩展模块

    +

    提供丰富的流量管理、安全防攻击、可见性等相关扩展模块

    +
    +
    +

    一流的可见性

    +

    提供丰富详尽的监控指标;提供各类日志供问题诊断、数据分析及可视化;BFE还支持请求分布式Tracing

    +
    +
    +

    兼容适配主流生态项目

    +

    兼容适配主流四层负载均衡方案,及其它生态项目如Kubernetes、Prometheus、Jaeger、Fluentd等

    +
    +
    +
    +{% endblock %} +{% block content %}{% endblock %} +{% block footer %}{% endblock %} diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 8070f0886..358f239fb 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -44,8 +44,9 @@ extra: link: mailto:bfe-osc@baidu.com nav: - - 'Home': 'index.md' - - 'doc': + - 'HOME': 'index.md' + - 'DOCS': + - 'About': 'ABOUT.md' - 'Introduction': - 'Overview': 'introduction/overview.md' - 'Comparsion to similar systems': 'introduction/comparison.md' @@ -110,7 +111,7 @@ nav: - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' - 'mod_userid': 'modules/mod_userid/mod_userid.md' - 'Operations': - - 'Command line pptions': 'operation/command.md' + - 'Command line options': 'operation/command.md' - 'Environment variables': 'operation/env_var.md' - 'System signals': 'operation/signal.md' - 'Configuration reload': 'operation/reload.md' @@ -173,4 +174,7 @@ nav: - 'TLS': 'condition/session/tls.md' - 'System related primitives': - 'Time': 'condition/system/time.md' - + - 'DOWNLOAD': + - 'DOWNLOAD': 'DOWNLOAD.md' + - 'COMMUNITY': + - 'COMMUNITY': 'COMMUNITY.md' diff --git a/docs/mkdocs_zh.yml b/docs/mkdocs_zh.yml index 0e5ab83ba..724c2250b 100644 --- a/docs/mkdocs_zh.yml +++ b/docs/mkdocs_zh.yml @@ -5,10 +5,24 @@ repo_name: 'Github' repo_url: https://github.com/baidu/bfe docs_dir: 'zh_cn' edit_uri: edit/develop/docs/zh_cn/ +site_description: >- + 基于百度统一接入前端开源的现代化的七层负载均衡系统 theme: - name: material + name: null + custom_dir: material language: zh + features: + - tabs + palette: + primary: indigo + accent: indigo + font: + text: Roboto + code: Roboto Mono + icon: + logo: logo + favicon: assets/favicon.png copyright: 'Copyright © 2019-2020 BFE 中文 | English' @@ -30,131 +44,137 @@ extra: link: mailto:bfe-osc@baidu.com nav: -- '关于': 'README.md' -- '介绍': - - 'BFE概览': 'introduction/overview.md' - - '竞品对比': 'introduction/comparison.md' - - '设计简介': - - '相关术语': 'introduction/terminology.md' - - '流量接入转发模型': 'introduction/forward_model.md' - - '基于内容路由': 'introduction/route.md' - - '流量负载均衡': 'introduction/balance.md' - - '获取帮助': 'introduction/getting_help.md' - - '发布历史': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' -- '快速开始': - - '安装及运行': 'installation/install_from_source.md' - - '使用示例': - - '使用示例': 'example/guide.md' - - '流量转发': 'example/route.md' - - '黑名单封禁': 'example/block.md' - - '重定向': 'example/redirect.md' - - '重写': 'example/rewrite.md' - - 'TLS客户端认证': 'example/client_auth.md' -- '安装说明': - - '安装概述': 'installation/install.md' - - '源码编译安装': 'installation/install_from_source.md' - - '二进制文件下载安装': 'installation/install_using_binaries.md' - - 'go方式安装': 'installation/install_using_go.md' - - 'snap方式安装': 'installation/install_using_snap.md' -- '配置说明': - - '配置概述': 'configuration/config.md' - - '核心配置': 'configuration/bfe.conf.md' - - '协议': - - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' - - '证书': 'configuration/tls_conf/server_cert_conf.data.md' - - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' - - '路由': - - '域名规则': 'configuration/server_data_conf/host_rule.data.md' - - 'VIP规则': 'configuration/server_data_conf/vip_rule.data.md' - - '路由规则': 'configuration/server_data_conf/route_rule.data.md' - - '后端集群': 'configuration/server_data_conf/cluster_conf.data.md' - - '负载均衡': - - '子集群负载均衡': 'configuration/cluster_conf/gslb.data.md' - - '实例负载均衡': 'configuration/cluster_conf/cluster_table.data.md' - - '名字服务': - - '名字规则': 'configuration/server_data_conf/name_conf.data.md' -- '扩展模块': - - 'mod_access': 'modules/mod_access/mod_access.md' - - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' - - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' - - 'mod_block': 'modules/mod_block/mod_block.md' - - 'mod_compress': 'modules/mod_compress/mod_compress.md' - - 'mod_doh': 'modules/mod_doh/mod_doh.md' - - 'mod_errors': 'modules/mod_errors/mod_errors.md' - - 'mod_geo': 'modules/mod_geo/mod_geo.md' - - 'mod_header': 'modules/mod_header/mod_header.md' - - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' - - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' - - 'mod_logid': 'modules/mod_logid/mod_logid.md' - - 'mod_prison': 'modules/mod_prison/mod_prison.md' - - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' - - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' - - 'mod_static': 'modules/mod_static/mod_static.md' - - 'mod_tag': 'modules/mod_tag/mod_tag.md' - - 'mod_trace': 'modules/mod_trace/mod_trace.md' - - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' - - 'mod_userid': 'modules/mod_userid/mod_userid.md' -- '运维管理': - - '命令行工具及参数': 'operation/command.md' - - '环境变量说明': 'operation/env_var.md' - - '系统信号说明': 'operation/signal.md' - - '配置热加载': 'operation/reload.md' - - '监控指标获取': 'operation/monitor.md' - - '日志切割备份': 'operation/log_rotation.md' - - '流量抓包分析': 'operation/capture_packet.md' - - '性能数据采集': 'operation/performance.md' -- '参与贡献': - - '如何贡献代码': - - '本地开发指南': 'development/local_dev_guide.md' - - '提交PR注意事项': 'development/submit_pr_guide.md' - - '如何贡献文档': 'development/write_doc_guide.md' - - '版本发布说明': 'development/release_regulation.md' - - '开发参考文档': - - '代码结构说明': 'development/source_code_layout.md' - - '模块开发介绍': - - '模块开发介绍': 'development/module/overview.md' - - 'BFE回调机制说明': 'development/module/bfe_callback.md' - - '如何开发模块': 'development/module/how_to_write_module.md' -- '常见问题': - - '安装相关': 'faq/installation.md' - - '配置相关': 'faq/configuration.md' - - '性能相关': 'faq/performance.md' - - '开发相关': 'faq/development.md' -- '监控指标': - - '协议': - - 'SSL/TLS': 'monitor/tls_state.md' - - 'HTTP': 'monitor/http_state.md' - - 'HTTP2': 'monitor/http2_state.md' - - 'SPDY': 'monitor/spdy_state.md' - - 'WebSocket': 'monitor/websocket_state.md' - - 'Stream': 'monitor/stream_state.md' - - '路由': - - '域名表': 'monitor/host_table_status.md' - - '负载均衡': - - '均衡详情': 'monitor/bal_table_status.md' - - '均衡错误': 'monitor/bal_state.md' - - '反向代理': - - '转发状态': 'monitor/proxy_state.md' - - '扩展模块': 'monitor/module_status.md' - - '延迟': - - '延迟分布': 'monitor/proxy_XXX_delay.md' -- '条件原语': - - '条件的概念及语法': 'condition/condition_grammar.md' - - '条件原语命名规范': 'condition/condition_naming_convention.md' - - '条件原语索引': 'condition/condition_primitive_index.md' - - '请求相关条件原语': - - 'Method': 'condition/request/method.md' - - 'URI': 'condition/request/uri.md' - - 'Protocol': 'condition/request/protocol.md' - - 'Header': 'condition/request/header.md' - - 'Cookie': 'condition/request/cookie.md' - - 'Tag': 'condition/request/tag.md' - - 'IP': 'condition/request/ip.md' - - '响应相关条件原语': - - 'Code': 'condition/response/code.md' - - 'Header': 'condition/response/header.md' - - '会话相关条件原语': - - 'IP': 'condition/session/ip.md' - - 'TLS': 'condition/session/tls.md' - - '系统相关条件原语': - - 'Time': 'condition/system/time.md' + - '首页': 'index.md' + - '文档': + - '关于': 'ABOUT.md' + - '介绍': + - 'BFE概览': 'introduction/overview.md' + - '竞品对比': 'introduction/comparison.md' + - '设计简介': + - '相关术语': 'introduction/terminology.md' + - '流量接入转发模型': 'introduction/forward_model.md' + - '基于内容路由': 'introduction/route.md' + - '流量负载均衡': 'introduction/balance.md' + - '获取帮助': 'introduction/getting_help.md' + - '发布历史': 'https://github.com/baidu/bfe/blob/master/CHANGELOG.md' + - '快速开始': + - '安装及运行': 'installation/install_from_source.md' + - '使用示例': + - '使用示例': 'example/guide.md' + - '流量转发': 'example/route.md' + - '黑名单封禁': 'example/block.md' + - '重定向': 'example/redirect.md' + - '重写': 'example/rewrite.md' + - 'TLS客户端认证': 'example/client_auth.md' + - '安装说明': + - '安装概述': 'installation/install.md' + - '源码编译安装': 'installation/install_from_source.md' + - '二进制文件下载安装': 'installation/install_using_binaries.md' + - 'go方式安装': 'installation/install_using_go.md' + - 'snap方式安装': 'installation/install_using_snap.md' + - '配置说明': + - '配置概述': 'configuration/config.md' + - '核心配置': 'configuration/bfe.conf.md' + - '协议': + - 'SSL/TLS': 'configuration/tls_conf/tls_rule_conf.data.md' + - '证书': 'configuration/tls_conf/server_cert_conf.data.md' + - 'Session ticket key': 'configuration/tls_conf/session_ticket_key.data.md' + - '路由': + - '域名规则': 'configuration/server_data_conf/host_rule.data.md' + - 'VIP规则': 'configuration/server_data_conf/vip_rule.data.md' + - '路由规则': 'configuration/server_data_conf/route_rule.data.md' + - '后端集群': 'configuration/server_data_conf/cluster_conf.data.md' + - '负载均衡': + - '子集群负载均衡': 'configuration/cluster_conf/gslb.data.md' + - '实例负载均衡': 'configuration/cluster_conf/cluster_table.data.md' + - '名字服务': + - '名字规则': 'configuration/server_data_conf/name_conf.data.md' + - '扩展模块': + - 'mod_access': 'modules/mod_access/mod_access.md' + - 'mod_auth_basic': 'modules/mod_auth_basic/mod_auth_basic.md' + - 'mod_auth_jwt': 'modules/mod_auth_jwt/mod_auth_jwt.md' + - 'mod_block': 'modules/mod_block/mod_block.md' + - 'mod_compress': 'modules/mod_compress/mod_compress.md' + - 'mod_doh': 'modules/mod_doh/mod_doh.md' + - 'mod_errors': 'modules/mod_errors/mod_errors.md' + - 'mod_geo': 'modules/mod_geo/mod_geo.md' + - 'mod_header': 'modules/mod_header/mod_header.md' + - 'mod_http_code': 'modules/mod_http_code/mod_http_code.md' + - 'mod_key_log': 'modules/mod_key_log/mod_key_log.md' + - 'mod_logid': 'modules/mod_logid/mod_logid.md' + - 'mod_prison': 'modules/mod_prison/mod_prison.md' + - 'mod_redirect': 'modules/mod_redirect/mod_redirect.md' + - 'mod_rewrite': 'modules/mod_rewrite/mod_rewrite.md' + - 'mod_static': 'modules/mod_static/mod_static.md' + - 'mod_tag': 'modules/mod_tag/mod_tag.md' + - 'mod_trace': 'modules/mod_trace/mod_trace.md' + - 'mod_trust_clientip': 'modules/mod_trust_clientip/mod_trust_clientip.md' + - 'mod_userid': 'modules/mod_userid/mod_userid.md' + - '运维管理': + - '命令行工具及参数': 'operation/command.md' + - '环境变量说明': 'operation/env_var.md' + - '系统信号说明': 'operation/signal.md' + - '配置热加载': 'operation/reload.md' + - '监控指标获取': 'operation/monitor.md' + - '日志切割备份': 'operation/log_rotation.md' + - '流量抓包分析': 'operation/capture_packet.md' + - '性能数据采集': 'operation/performance.md' + - '参与贡献': + - '如何贡献代码': + - '本地开发指南': 'development/local_dev_guide.md' + - '提交PR注意事项': 'development/submit_pr_guide.md' + - '如何贡献文档': 'development/write_doc_guide.md' + - '版本发布说明': 'development/release_regulation.md' + - '开发参考文档': + - '代码结构说明': 'development/source_code_layout.md' + - '模块开发介绍': + - '模块开发介绍': 'development/module/overview.md' + - 'BFE回调机制说明': 'development/module/bfe_callback.md' + - '如何开发模块': 'development/module/how_to_write_module.md' + - '常见问题': + - '安装相关': 'faq/installation.md' + - '配置相关': 'faq/configuration.md' + - '性能相关': 'faq/performance.md' + - '开发相关': 'faq/development.md' + - '监控指标': + - '协议': + - 'SSL/TLS': 'monitor/tls_state.md' + - 'HTTP': 'monitor/http_state.md' + - 'HTTP2': 'monitor/http2_state.md' + - 'SPDY': 'monitor/spdy_state.md' + - 'WebSocket': 'monitor/websocket_state.md' + - 'Stream': 'monitor/stream_state.md' + - '路由': + - '域名表': 'monitor/host_table_status.md' + - '负载均衡': + - '均衡详情': 'monitor/bal_table_status.md' + - '均衡错误': 'monitor/bal_state.md' + - '反向代理': + - '转发状态': 'monitor/proxy_state.md' + - '扩展模块': 'monitor/module_status.md' + - '延迟': + - '延迟分布': 'monitor/proxy_XXX_delay.md' + - '条件原语': + - '条件的概念及语法': 'condition/condition_grammar.md' + - '条件原语命名规范': 'condition/condition_naming_convention.md' + - '条件原语索引': 'condition/condition_primitive_index.md' + - '请求相关条件原语': + - 'Method': 'condition/request/method.md' + - 'URI': 'condition/request/uri.md' + - 'Protocol': 'condition/request/protocol.md' + - 'Header': 'condition/request/header.md' + - 'Cookie': 'condition/request/cookie.md' + - 'Tag': 'condition/request/tag.md' + - 'IP': 'condition/request/ip.md' + - '响应相关条件原语': + - 'Code': 'condition/response/code.md' + - 'Header': 'condition/response/header.md' + - '会话相关条件原语': + - 'IP': 'condition/session/ip.md' + - 'TLS': 'condition/session/tls.md' + - '系统相关条件原语': + - 'Time': 'condition/system/time.md' + - '下载': + - '下载': 'DOWNLOAD.md' + - '社区': + - 'COMMUNITY': 'COMMUNITY.md' diff --git a/docs/zh_cn/README.md b/docs/zh_cn/ABOUT.md similarity index 100% rename from docs/zh_cn/README.md rename to docs/zh_cn/ABOUT.md diff --git a/docs/zh_cn/COMMUNITY.md b/docs/zh_cn/COMMUNITY.md new file mode 100644 index 000000000..17f875748 --- /dev/null +++ b/docs/zh_cn/COMMUNITY.md @@ -0,0 +1,24 @@ +我们致力于围绕BFE建立开源社区。如果您有兴趣使用或希望获取帮助,欢迎联系我们。 + +## BFE社区 + +**BFE Slack社区**: [登陆](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA)并关注你感兴趣的话题。 + +**BFE开发者微信群**: [发送申请邮件](mailto:bfe-osc@baidu.com)并注明您的微信账号及贡献(例如提交的PR/Issue链接),我们将立即邀请您加入。 + +**Twitter**: [@BFE-Networks](https://twitter.com/BfeNetworks) + +**Issue tracker**: 在[GitHub issue tracker](https://github.com/baidu/bfe/issues) 反馈bug或功能需求。 + +## 参与开发 +衷心感谢您的贡献,欢迎您访问Github上[BFE项目](https://github.com/baidu/bfe), 并按[流程](https://github.com/baidu/bfe/blob/develop/CONTRIBUTING.md)参与贡献代码及文档。 + +## 项目治理 +BFE是独立的开源项目,BFE项目遵循如下[管理办法](https://github.com/baidu/bfe/blob/develop/GOVERNANCE.md)。 + +## 行为准则 +为了构建一个受欢迎且无骚扰的社区,BFE社区应遵循如下[行为准则](https://github.com/baidu/bfe/blob/develop/CODE_OF_CONDUCT.md)。 + +## 申请专项合作 +欢迎邮件我们 bfe-osc@baidu.com 洽谈。 + diff --git a/docs/zh_cn/DOWNLOAD.md b/docs/zh_cn/DOWNLOAD.md new file mode 100644 index 000000000..e271249f8 --- /dev/null +++ b/docs/zh_cn/DOWNLOAD.md @@ -0,0 +1,13 @@ +BFE提供预编译二进制文件供下载。也可在GitHub下载各平台[最新版本BFE](https://github.com/baidu/bfe/releases)。 + +## bfe v0.9.0 + +* 2020-04-16 [发布说明](https://github.com/baidu/bfe/releases/tag/v0.9.0) + +| 文件名 | 操作系统 | 平台 | 大小 | SHA256检验和 | +| --------- | -------- | ---- | ---- | ------------ | +| [bfe_0.9.0_darwin_amd64.tar.gz](https://github.com/baidu/bfe/releases/download/v0.9.0/bfe_0.9.0_darwin_amd64.tar.gz) | darwin | amd64 | 9.75 MB | 3bdbb80cc4946bc85b7295fc86ca86800e7811d20f37b36037aadfc7df718ad9 | +| [bfe_0.9.0_linux_amd64.tar.gz](https://github.com/baidu/bfe/releases/download/v0.9.0/bfe_0.9.0_linux_amd64.tar.gz) | linux | amd64 | 10.90 MB | 9b6aaac88651d88e86e67835b5ae0bdbe1c76076382b198f0aeb0b94b7572887 | +| [bfe_0.9.0_windows_amd64.tar.gz](https://github.com/baidu/bfe/releases/download/v0.9.0/bfe_0.9.0_windows_amd64.tar.gz) | windows | amd64 | 9.73 MB | 44221fe4c423ebe8d31c6da5bc28fe1ff9dbc84619094097871cb6e3e85ca4ef | + + diff --git a/docs/zh_cn/SUMMARY.md b/docs/zh_cn/SUMMARY.md index 647e52754..2e2212820 100644 --- a/docs/zh_cn/SUMMARY.md +++ b/docs/zh_cn/SUMMARY.md @@ -1,6 +1,6 @@ # Summary -* [关于](README.md) +* [关于](ABOUT.md) * 介绍 * [BFE概览](introduction/overview.md) * [竞品对比](introduction/comparison.md) diff --git a/docs/zh_cn/index.md b/docs/zh_cn/index.md new file mode 100644 index 000000000..c9c86bdff --- /dev/null +++ b/docs/zh_cn/index.md @@ -0,0 +1,4 @@ +--- +template: overrides/home_zh.html +title: Material for MkDocs +--- From 5cade0c55f851a9faf59c666737582f603635a3d Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Sat, 16 May 2020 16:53:01 +0800 Subject: [PATCH 087/111] docs: fix comma mod_header.md (#488) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit json配置示例中有两个中文逗号 --- docs/zh_cn/modules/mod_header/mod_header.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh_cn/modules/mod_header/mod_header.md b/docs/zh_cn/modules/mod_header/mod_header.md index b3164dc86..4616403fd 100644 --- a/docs/zh_cn/modules/mod_header/mod_header.md +++ b/docs/zh_cn/modules/mod_header/mod_header.md @@ -61,14 +61,14 @@ DataPath = mod_header/header_rule.data "X-Bfe-Log-Id", "%bfe_log_id" ] - }, + }, { "cmd": "REQ_HEADER_SET", "params": [ "X-Bfe-Vip", "%bfe_vip" ] - }, + }, { "cmd": "RSP_HEADER_SET", "params": [ From cc63f14b56d825d3c708a46206a6f782a6c71426 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Sat, 16 May 2020 19:40:21 +0800 Subject: [PATCH 088/111] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb53169a6..5ec8066cd 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front - Contributors: [CONTRIBUTORS](CONTRIBUTORS.md) ## Communication -- Slack: Join the BFE community on Slack - [Sign up](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA) and join channels on topics that interest you. -- WeChat: Join our WeChat Developer group - [Send a request mail](mailto:bfe-osc@baidu.com) with your WeChat ID and a contribution you've made to BFE(such as a PR/Issue). We will invite you right away. +- BFE community on Slack: [Sign up](https://join.slack.com/t/bfe-networks/shared_invite/zt-cn04xsqr-j7LDFmPkCuCZ39OLcHlMBA) and join channels on topics that interest you. +- BFE developer group on WeChat: [Send a request mail](mailto:bfe-osc@baidu.com) with your WeChat ID and a contribution you've made to BFE(such as a PR/Issue). We will invite you right away. ## License BFE is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details. From ce52e072d2da07a50fd57a7710f401af3feaac2d Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Sat, 16 May 2020 19:42:21 +0800 Subject: [PATCH 089/111] docs: update mod_auth_jwt.md (#492) --- docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md index a330da019..ea82382c0 100644 --- a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md @@ -63,8 +63,8 @@ OpenDebug = true { "Version": "Version", "Config": { - "example_product": [ - "Cond": "req_host_in(\"www.example.org\")", + "example_product": { + "Cond": "req_host_in(\"www.example.org\")" } } } From 28b36310c16156db98a544512ffc9a036b0c67ff Mon Sep 17 00:00:00 2001 From: lcmmhcc <37269413+lcmmhcc@users.noreply.github.com> Date: Sat, 16 May 2020 20:07:07 +0800 Subject: [PATCH 090/111] docs: syntax highlighting optimization (#493) --- docs/en_us/configuration/bfe.conf.md | 2 +- docs/en_us/development/write_doc_guide.md | 8 ++++---- docs/en_us/example/block.md | 10 +++++----- docs/en_us/example/client_auth.md | 16 +++++++-------- docs/en_us/example/redirect.md | 8 ++++---- docs/en_us/example/rewrite.md | 8 ++++---- docs/en_us/example/route.md | 14 ++++++------- docs/en_us/faq/installation.md | 2 +- .../en_us/installation/install_from_source.md | 10 +++++----- .../installation/install_using_binaries.md | 4 ++-- docs/en_us/installation/install_using_go.md | 4 ++-- docs/en_us/installation/install_using_snap.md | 4 ++-- docs/en_us/modules/mod_access/mod_access.md | 2 +- .../modules/mod_auth_basic/mod_auth_basic.md | 6 +++--- docs/en_us/modules/mod_block/mod_block.md | 4 ++-- .../modules/mod_compress/mod_compress.md | 4 ++-- docs/en_us/modules/mod_errors/mod_errors.md | 4 ++-- docs/en_us/modules/mod_geo/mod_geo.md | 4 ++-- docs/en_us/modules/mod_header/mod_header.md | 4 ++-- docs/en_us/modules/mod_key_log/mod_key_log.md | 2 +- .../modules/mod_redirect/mod_redirect.md | 4 ++-- docs/en_us/modules/mod_rewrite/mod_rewrite.md | 4 ++-- docs/en_us/modules/mod_static/mod_static.md | 4 ++-- docs/en_us/modules/mod_tag/mod_tag.md | 2 +- docs/en_us/modules/mod_trace/mod_trace.md | 6 +++--- .../mod_trust_clientip/mod_trust_clientip.md | 4 ++-- docs/en_us/modules/mod_userid/mod_userid.md | 4 ++-- docs/en_us/operation/capture_packet.md | 4 ++-- docs/en_us/operation/env_var.md | 4 ++-- docs/en_us/operation/monitor.md | 2 +- docs/en_us/operation/performance.md | 8 ++++---- docs/en_us/operation/reload.md | 4 ++-- docs/zh_cn/configuration/bfe.conf.md | 2 +- docs/zh_cn/development/write_doc_guide.md | 8 ++++---- docs/zh_cn/example/block.md | 10 +++++----- docs/zh_cn/example/client_auth.md | 20 +++++++++---------- docs/zh_cn/example/install_on_openbsd.md | 14 ++++++------- docs/zh_cn/example/redirect.md | 10 +++++----- docs/zh_cn/example/rewrite.md | 10 +++++----- docs/zh_cn/example/route.md | 14 ++++++------- docs/zh_cn/faq/installation.md | 2 +- .../zh_cn/installation/install_from_source.md | 10 +++++----- .../installation/install_using_binaries.md | 4 ++-- docs/zh_cn/installation/install_using_go.md | 4 ++-- docs/zh_cn/installation/install_using_snap.md | 4 ++-- docs/zh_cn/modules/mod_access/mod_access.md | 2 +- .../modules/mod_auth_basic/mod_auth_basic.md | 6 +++--- .../modules/mod_auth_jwt/mod_auth_jwt.md | 6 +++--- docs/zh_cn/modules/mod_block/mod_block.md | 4 ++-- .../modules/mod_compress/mod_compress.md | 6 +++--- docs/zh_cn/modules/mod_errors/mod_errors.md | 4 ++-- docs/zh_cn/modules/mod_geo/mod_geo.md | 4 ++-- docs/zh_cn/modules/mod_header/mod_header.md | 4 ++-- docs/zh_cn/modules/mod_key_log/mod_key_log.md | 2 +- .../modules/mod_redirect/mod_redirect.md | 4 ++-- docs/zh_cn/modules/mod_rewrite/mod_rewrite.md | 4 ++-- docs/zh_cn/modules/mod_static/mod_static.md | 4 ++-- docs/zh_cn/modules/mod_tag/mod_tag.md | 2 +- docs/zh_cn/modules/mod_trace/mod_trace.md | 6 +++--- .../mod_trust_clientip/mod_trust_clientip.md | 4 ++-- docs/zh_cn/modules/mod_userid/mod_userid.md | 4 ++-- docs/zh_cn/operation/capture_packet.md | 4 ++-- docs/zh_cn/operation/env_var.md | 4 ++-- docs/zh_cn/operation/monitor.md | 2 +- docs/zh_cn/operation/performance.md | 8 ++++---- docs/zh_cn/operation/reload.md | 4 ++-- 66 files changed, 185 insertions(+), 185 deletions(-) diff --git a/docs/en_us/configuration/bfe.conf.md b/docs/en_us/configuration/bfe.conf.md index 21a9c18d4..204ba3720 100644 --- a/docs/en_us/configuration/bfe.conf.md +++ b/docs/en_us/configuration/bfe.conf.md @@ -60,7 +60,7 @@ bfe.conf is the core configuration file of BFE. ## Example -``` +```ini [Server] # listen port for http request HttpPort = 8080 diff --git a/docs/en_us/development/write_doc_guide.md b/docs/en_us/development/write_doc_guide.md index 723e38062..21dd79120 100644 --- a/docs/en_us/development/write_doc_guide.md +++ b/docs/en_us/development/write_doc_guide.md @@ -23,7 +23,7 @@ Before doing this, please make sure your operating system has gitbook installed. Take the ubuntu system as an example, run: -``` +```bash $ sudo apt-get update && apt-get install -y npm $ sudo npm install -g gitbook-cli ``` @@ -33,7 +33,7 @@ $ sudo npm install -g gitbook-cli First download the full repository: -``` +```bash $ git clone https://github.com/baidu/bfe ``` @@ -41,7 +41,7 @@ $ git clone https://github.com/baidu/bfe Change to base directory of documents which you want to load and build(docs/LANG), run: -``` +```bash $ cd docs/en_us/ $ gitbook serve --port 8000 ... @@ -67,7 +67,7 @@ All content should be written in [Markdown](https://guides.github.com/features/m - Run the preview tool in base directory of documents (docs/LANG) -``` +```bash $ cd docs/en_us/ $ gitbook serve --port 8000 ``` diff --git a/docs/en_us/example/block.md b/docs/en_us/example/block.md index b2585d6b3..171cac61a 100644 --- a/docs/en_us/example/block.md +++ b/docs/en_us/example/block.md @@ -12,13 +12,13 @@ Modify example configurations (conf/) as the following steps: * Step 1. Modify conf/bfe.conf and enable mod_block -``` +```ini Modules = mod_block #enable mod_block ``` * Step 2. Modify conf/mod_block/mod_block.conf and configure path of global ip blacklist and block rules -``` +```ini [basic] ProductRulePath = mod_block/block_rules.data @@ -29,13 +29,13 @@ IPBlacklistPath = mod_block/ip_blacklist.data Config ip address list, such as 2.2.2.2 -``` +```ini 2.2.2.2 ``` * Step 4. Configure block rules (conf/mod_block/block_rules.data) -``` +```json { "Version": "init version", "Config": { @@ -53,7 +53,7 @@ Config ip address list, such as 2.2.2.2 * Step 5. Verify configured rules -``` +```bash curl -v -H "host: example.org" "http://127.1:8080/bonus" ``` diff --git a/docs/en_us/example/client_auth.md b/docs/en_us/example/client_auth.md index 1e3331ab5..143b4aab9 100644 --- a/docs/en_us/example/client_auth.md +++ b/docs/en_us/example/client_auth.md @@ -8,7 +8,7 @@ * Step 1. Generate root certificate -``` +```bash openssl genrsa -out root.key 2048 openssl req -new -x509 -days 365 -key root.key -out root.crt @@ -16,7 +16,7 @@ openssl req -new -x509 -days 365 -key root.key -out root.crt * Step 2. Create a client certificate signing request -``` +```bash openssl genrsa -out client.key 2048 openssl req -new -out client.csr -key client.key @@ -24,7 +24,7 @@ openssl req -new -out client.csr -key client.key * Step 3. Generate client certificate -``` +```bash echo "extendedKeyUsage = clientAuth" > openssl.cnf openssl x509 -req -in client.csr -out client.crt -signkey client.key -CA root.crt -CAkey root.key -days 365 -extfile openssl.cnf @@ -63,14 +63,14 @@ backend bk_server_https Run HAproxy -``` +```bash haproxy -f haproxy.cfg ``` * Step 5. Configure BFE. Copy root.crt to tls_conf/client_ca directory(note: the suffix of root certificate should be ".crt"). -``` +```ini [server] ... Layer4LoadBalancer = "PROXY" @@ -84,7 +84,7 @@ clientCABaseDir = tls_conf/client_ca Modify conf/tls_conf_rule.data and set "ClientAuth" to true and "ClientCAName" to name of the root certificate. -``` +```json { "Version": "12", "DefaultNextProtos": [ @@ -110,12 +110,12 @@ Modify conf/tls_conf_rule.data and set "ClientAuth" to true and "ClientCAName" t ``` Run BFE. -``` +```bash ./bfe -c ../conf ``` * Step 6. Verify configuration -``` +```bash openssl s_client -connect 127.0.0.1:7443 -cert client.crt -key client.key -state -quiet ``` diff --git a/docs/en_us/example/redirect.md b/docs/en_us/example/redirect.md index a183ae38c..0e495368d 100644 --- a/docs/en_us/example/redirect.md +++ b/docs/en_us/example/redirect.md @@ -10,20 +10,20 @@ Modify the example configurations (conf/) as the following steps: * Step 1. modify conf/bfe.conf and enable mod_redirect -``` +```ini Modules = mod_redirect ``` * Step 2. modify mod_redirect basic configuration (conf/mod_redirect/mod_redirect.conf) -``` +```ini [basic] DataPath = mod_redirect/redirect.data ``` * Step 3. modify redirect rule configuration (conf/mod_redirect/redirect.data), and add following rules. -``` +```json { "Version": "init version", "Config": { @@ -43,7 +43,7 @@ DataPath = mod_redirect/redirect.data * Step 4. Verify configured rules -``` +```bash curl -H "host: example.org" "http://127.1:8080/test" ``` diff --git a/docs/en_us/example/rewrite.md b/docs/en_us/example/rewrite.md index 8cb38407d..9ae568416 100644 --- a/docs/en_us/example/rewrite.md +++ b/docs/en_us/example/rewrite.md @@ -11,20 +11,20 @@ Modify example configurations (conf/) as the following steps: * Step 1. Modify conf/bfe.conf and enable mod_rewrite -``` +```ini Modules = mod_rewrite # enable mod_rewrite ``` * Step 2. Modify conf/mod_rewrite/mod_rewrite.conf and set the rule configuration file -``` +```ini [basic] DataPath = mod_rewrite/rewrite.data ``` * Step 3. Modify rewrite rules configuration -``` +```json { "Version": "init version", "Config": { @@ -44,7 +44,7 @@ DataPath = mod_rewrite/rewrite.data * Step 4. Verify configured rules -``` +```bash curl -H "host: example.org" "http://127.1:8080/service" ``` diff --git a/docs/en_us/example/route.md b/docs/en_us/example/route.md index 5afc061d5..47be3c9d0 100644 --- a/docs/en_us/example/route.md +++ b/docs/en_us/example/route.md @@ -13,7 +13,7 @@ Modify example configurations (conf/) as the following steps: * Step 1. Config path of forward rules in conf/bfe.conf -``` +```ini hostRuleConf = server_data_conf/host_rule.data routeRuleConf = server_data_conf/route_rule.data clusterConf = server_data_conf/cluster_conf.data @@ -24,7 +24,7 @@ gslbConf = cluster_conf/gslb.data * Step 2. Config host rules (conf/server_data_conf/host_rule.data) -``` +```json { "Version": "init version", "DefaultProduct": null, @@ -44,7 +44,7 @@ gslbConf = cluster_conf/gslb.data * Step 3. Config cluster configuration (conf/server_data_conf/cluster_conf.data) Note: Set health check params and use default value for other params -``` +```json { "Version": "init version", "Config": { @@ -70,7 +70,7 @@ Note: Set health check params and use default value for other params * Step 4. Config instances of cluster (conf/cluster_conf/cluster_table.data) -``` +```json { "Version": "init version", "Config": { @@ -96,7 +96,7 @@ Note: Set health check params and use default value for other params * Step 5. Config gslb configuration (conf/cluster_conf/gslb.data) -``` +```json { "Hostname": "", "Ts": "0", @@ -115,7 +115,7 @@ Note: Set health check params and use default value for other params * Step 6. Config route rules (conf/server_data_conf/route_rule.data) -``` +```json { "Version": "init version", "ProductRule": { @@ -135,7 +135,7 @@ Note: Set health check params and use default value for other params * Step 7. Verify configured rules -``` +```bash curl -H "host: example.org" "http://127.1:8080/static/test.html" # request will route to 10.0.0.1:8001 diff --git a/docs/en_us/faq/installation.md b/docs/en_us/faq/installation.md index 32ccb459c..2e5110d43 100644 --- a/docs/en_us/faq/installation.md +++ b/docs/en_us/faq/installation.md @@ -2,7 +2,7 @@ ## Go get timeout during installation - Set GOPROXY enviroment variable as follows (go1.13+): -``` +```bash $ go env -w GO111MODULE=on $ go env -w GOPROXY=https://goproxy.cn,direct ``` diff --git a/docs/en_us/installation/install_from_source.md b/docs/en_us/installation/install_from_source.md index 5db87a7ed..2b5034422 100644 --- a/docs/en_us/installation/install_from_source.md +++ b/docs/en_us/installation/install_from_source.md @@ -5,27 +5,27 @@ - git ## Download source code -``` +```bash $ git clone https://github.com/baidu/bfe ``` ## Build - Execute the following command to build bfe: -``` +```bash $ cd bfe $ make ``` - Execute the following command to run tests: -``` +```bash $ make test ``` - Executable object file location: -``` +```bash $ file output/bin/bfe output/bin/bfe: ELF 64-bit LSB executable, ... ``` @@ -34,7 +34,7 @@ output/bin/bfe: ELF 64-bit LSB executable, ... - Run BFE with example configuration files: -``` +```bash $ cd output/bin/ $ ./bfe -c ../conf -l ../log ``` diff --git a/docs/en_us/installation/install_using_binaries.md b/docs/en_us/installation/install_using_binaries.md index 62567b8f4..7e6236ee8 100644 --- a/docs/en_us/installation/install_using_binaries.md +++ b/docs/en_us/installation/install_using_binaries.md @@ -8,7 +8,7 @@ - Extract the files to the installation directory: -``` +```bash $ tar zxvf bfe___.tar.gz ``` @@ -16,7 +16,7 @@ $ tar zxvf bfe___.tar.gz - Run BFE with example configuration files: -``` +```bash $ cd bfe/bin $ ./bfe -c ../conf -l ../log ``` diff --git a/docs/en_us/installation/install_using_go.md b/docs/en_us/installation/install_using_go.md index ba54831e3..936ebc1d3 100644 --- a/docs/en_us/installation/install_using_go.md +++ b/docs/en_us/installation/install_using_go.md @@ -6,7 +6,7 @@ ## Installation - Get the source code and install -``` +```bash $ go get github.com/baidu/bfe ``` @@ -15,7 +15,7 @@ Executable object file location is ${GOPATH}/bin/bfe ## Run - Run BFE with example configuration files: -``` +```bash $ cd ${GOPATH}/bin/ $ ./bfe -c ${GOPATH}/src/github.com/baidu/bfe/conf/ ``` diff --git a/docs/en_us/installation/install_using_snap.md b/docs/en_us/installation/install_using_snap.md index 7dc1e9b82..53d684da4 100644 --- a/docs/en_us/installation/install_using_snap.md +++ b/docs/en_us/installation/install_using_snap.md @@ -6,7 +6,7 @@ ## Installation - Execute the following command to install bfe: -``` +```bash $ sudo snap install --edge bfe ``` @@ -18,7 +18,7 @@ Log files location: /var/snap/bfe/common/log - Execute the following command to run bfe: -``` +```bash $ sudo /snap/bin/bfe ``` diff --git a/docs/en_us/modules/mod_access/mod_access.md b/docs/en_us/modules/mod_access/mod_access.md index 76dcdec9e..8ca5f495b 100644 --- a/docs/en_us/modules/mod_access/mod_access.md +++ b/docs/en_us/modules/mod_access/mod_access.md @@ -20,7 +20,7 @@ mod_access writes request logs and session logs in the specified format. ### Example -``` +```ini [Log] # filename prefix for log LogPrefix = access diff --git a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md index 02ae69a76..f5fc6c647 100644 --- a/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/en_us/modules/mod_auth_basic/mod_auth_basic.md @@ -16,11 +16,11 @@ conf/mod_auth_basic/mod_auth_basic.conf ### Example -```json -[basic] +```ini +[Basic] DataPath = mod_auth_basic/auth_basic_rule.data -[log] +[Log] OpenDebug = false ``` diff --git a/docs/en_us/modules/mod_block/mod_block.md b/docs/en_us/modules/mod_block/mod_block.md index d6dab670e..b80d66d0e 100644 --- a/docs/en_us/modules/mod_block/mod_block.md +++ b/docs/en_us/modules/mod_block/mod_block.md @@ -15,8 +15,8 @@ conf/mod_block/mod_block.conf | Basic.IPBlacklistPath | path of ip blacklist file | ### Example -``` -[basic] +```ini +[Basic] # product rule config file path ProductRulePath = mod_block/block_rules.data diff --git a/docs/en_us/modules/mod_compress/mod_compress.md b/docs/en_us/modules/mod_compress/mod_compress.md index d3e120e62..8169cc941 100644 --- a/docs/en_us/modules/mod_compress/mod_compress.md +++ b/docs/en_us/modules/mod_compress/mod_compress.md @@ -16,8 +16,8 @@ conf/mod_compress/mod_compress.conf ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_compress/compress_rule.data [log] diff --git a/docs/en_us/modules/mod_errors/mod_errors.md b/docs/en_us/modules/mod_errors/mod_errors.md index 1f5cf5282..4257b2517 100644 --- a/docs/en_us/modules/mod_errors/mod_errors.md +++ b/docs/en_us/modules/mod_errors/mod_errors.md @@ -15,8 +15,8 @@ conf/mod_errors/mod_errors.conf | Log.OpenDebug | Boolean
    Whether enable debug logs
    Default False | ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_errors/errors_rule.data ``` diff --git a/docs/en_us/modules/mod_geo/mod_geo.md b/docs/en_us/modules/mod_geo/mod_geo.md index 03c1a94d2..00100d6ef 100644 --- a/docs/en_us/modules/mod_geo/mod_geo.md +++ b/docs/en_us/modules/mod_geo/mod_geo.md @@ -18,7 +18,7 @@ mod_geo supports GeoDB in MaxMind format which can be downloaded from https://dev.maxmind.com/geoip/geoip2/geolite2/ ### Example -``` -[basic] +```ini +[Basic] GeoDBPath = mod_geo/geo.db ``` diff --git a/docs/en_us/modules/mod_header/mod_header.md b/docs/en_us/modules/mod_header/mod_header.md index 584851795..3a15165e5 100644 --- a/docs/en_us/modules/mod_header/mod_header.md +++ b/docs/en_us/modules/mod_header/mod_header.md @@ -16,8 +16,8 @@ conf/mod_header/mod_header.conf ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_header/header_rule.data ``` diff --git a/docs/en_us/modules/mod_key_log/mod_key_log.md b/docs/en_us/modules/mod_key_log/mod_key_log.md index 4c4b30f19..0a40244d0 100644 --- a/docs/en_us/modules/mod_key_log/mod_key_log.md +++ b/docs/en_us/modules/mod_key_log/mod_key_log.md @@ -21,7 +21,7 @@ conf/mod_key_log/mod_key_log.conf | Log.BackupCount | Integer
    max number of rotated log files | ### Example -``` +```ini [Log] # filename prefix for log LogPrefix = key diff --git a/docs/en_us/modules/mod_redirect/mod_redirect.md b/docs/en_us/modules/mod_redirect/mod_redirect.md index 052bce462..65a795bcf 100644 --- a/docs/en_us/modules/mod_redirect/mod_redirect.md +++ b/docs/en_us/modules/mod_redirect/mod_redirect.md @@ -15,8 +15,8 @@ conf/mod_redirect/mod_redirect.conf ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_redirect/redirect.data ``` diff --git a/docs/en_us/modules/mod_rewrite/mod_rewrite.md b/docs/en_us/modules/mod_rewrite/mod_rewrite.md index 4bd88515c..e9adfeb27 100644 --- a/docs/en_us/modules/mod_rewrite/mod_rewrite.md +++ b/docs/en_us/modules/mod_rewrite/mod_rewrite.md @@ -15,8 +15,8 @@ conf/mod_rewrite/mod_rewrite.conf ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_rewrite/rewrite.data ``` diff --git a/docs/en_us/modules/mod_static/mod_static.md b/docs/en_us/modules/mod_static/mod_static.md index 27bbd65fc..b7b4230ba 100644 --- a/docs/en_us/modules/mod_static/mod_static.md +++ b/docs/en_us/modules/mod_static/mod_static.md @@ -14,8 +14,8 @@ conf/mod_static/mod_static.conf | Basic.DataPath | String
    path of rule configuraiton | ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_static/static_rule.data ``` diff --git a/docs/en_us/modules/mod_tag/mod_tag.md b/docs/en_us/modules/mod_tag/mod_tag.md index 8e3a40520..1bd9ffaf1 100644 --- a/docs/en_us/modules/mod_tag/mod_tag.md +++ b/docs/en_us/modules/mod_tag/mod_tag.md @@ -15,7 +15,7 @@ conf/mod_tag/mod_tag.conf | Log.OpenDebug | Boolean
    debug flag of module | ### Example -``` +```ini [Basic] DataPath = mod_tag/tag_rule.data diff --git a/docs/en_us/modules/mod_trace/mod_trace.md b/docs/en_us/modules/mod_trace/mod_trace.md index ac65f8cf9..35b997ad1 100644 --- a/docs/en_us/modules/mod_trace/mod_trace.md +++ b/docs/en_us/modules/mod_trace/mod_trace.md @@ -54,7 +54,7 @@ mod_trace enables tracing for requests based on defined rules. #### Example for Zipkin -``` +```ini [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe @@ -83,7 +83,7 @@ SampleRate = 1.0 #### Example for Jaeger -``` +```ini [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe @@ -137,7 +137,7 @@ CollectorPassword = "" #### Example for Elastic -``` +```ini [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe diff --git a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md index 8669f18f5..e2e4d373b 100644 --- a/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/en_us/modules/mod_trust_clientip/mod_trust_clientip.md @@ -14,8 +14,8 @@ conf/mod_trust_clientip/mod_trust_clientip.conf | Basic.DataPath | String
    path of rule configuraiton | ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_trust_clientip/trust_client_ip.data ``` diff --git a/docs/en_us/modules/mod_userid/mod_userid.md b/docs/en_us/modules/mod_userid/mod_userid.md index 266e4f43d..dbaab3aff 100644 --- a/docs/en_us/modules/mod_userid/mod_userid.md +++ b/docs/en_us/modules/mod_userid/mod_userid.md @@ -15,8 +15,8 @@ conf/mod_userid/mod_userid.conf | Log.OpenDebug | Boolean
    debug flag of module | ### Example -``` -[basic] +```ini +[Basic] DataPath = mod_userid/userid_rule.data [Log] diff --git a/docs/en_us/operation/capture_packet.md b/docs/en_us/operation/capture_packet.md index e433c068f..c5967018c 100644 --- a/docs/en_us/operation/capture_packet.md +++ b/docs/en_us/operation/capture_packet.md @@ -6,7 +6,7 @@ Use packet capture and analysis tools to locate and analyze complex network prob tcpdump example: -``` +```bash # tcpdump tcp port 8443 -i any -s -w test.pcap ``` @@ -23,7 +23,7 @@ For TLS-based encrypted traffic, you can use mod_key_log and wireshark for analy * Step1: Enable mod_key_log module and save the TLS session key to key.log file * Note:modify bfe.conf and enable mod_key_log, See module configuration [mod_key_log](../modules/mod_key_log/mod_key_log.md) for details -``` +```ini [Server] Modules = mod_key_log ``` diff --git a/docs/en_us/operation/env_var.md b/docs/en_us/operation/env_var.md index db91e22b2..0732b5078 100644 --- a/docs/en_us/operation/env_var.md +++ b/docs/en_us/operation/env_var.md @@ -4,12 +4,12 @@ * Output verbose log about http2 header info -``` +```bash $ export GODEBUG="http2debug=1" ``` * Output verbose log about http2 header and framer info -``` +```bash $ export GODEBUG="http2debug=2" ``` diff --git a/docs/en_us/operation/monitor.md b/docs/en_us/operation/monitor.md index 8c871f1f8..64db8c704 100644 --- a/docs/en_us/operation/monitor.md +++ b/docs/en_us/operation/monitor.md @@ -5,7 +5,7 @@ BFE has a variety of built-in metrics which can be exposed in various formats. ## Configure monitor port Set monitor port in the BFE core configuration file (conf/bfe.conf). -``` +```ini [Server] MonitorPort = 8421 ``` diff --git a/docs/en_us/operation/performance.md b/docs/en_us/operation/performance.md index 37c49ef10..a8671a691 100644 --- a/docs/en_us/operation/performance.md +++ b/docs/en_us/operation/performance.md @@ -6,7 +6,7 @@ BFE has built-in CPU profile interfaces, which can be used in conjunction with t Set monitor port in the BFE core configuration file (conf/bfe.conf). -``` +```ini [Server] MonitorPort = 8421 ``` @@ -15,7 +15,7 @@ MonitorPort = 8421 * FlameGragh -``` +```bash $ git clone https://github.com/brendangregg/FlameGraph ``` @@ -24,14 +24,14 @@ Which contains stackcollpase-go.pl and flamegraph.pl tools ## Step * Get performance sampling data -``` +```bash $ go tool pprof -seconds=60 -raw -output=bfe.pprof http://:/debug/pprof/profile ``` Note: seconds=60 means capturing 60 seconds of stack samples * Transform and draw FlameGraph -``` +```bash $ ./stackcollpase-go.pl bfe.pporf > bfe.flame $ ./flamegraph.pl bfe.flame > bfe.svg ``` diff --git a/docs/en_us/operation/reload.md b/docs/en_us/operation/reload.md index 07ba2d8d4..33f9980d6 100644 --- a/docs/en_us/operation/reload.md +++ b/docs/en_us/operation/reload.md @@ -6,7 +6,7 @@ BFE has a built-in feature of configuration hot-reload. A new configuration file Set MonitorPort in BFE core configuration file(conf/bfe.conf) -``` +```ini [Server] MonitorPort = 8421 ``` @@ -15,7 +15,7 @@ MonitorPort = 8421 * Reload APIs only allows to be accessed using localhost(127.0.0.1/::1)and only supports GET requests -``` +```bash # reload routing configurations $ curl http://localhost:8421/reload/server_data_conf ``` diff --git a/docs/zh_cn/configuration/bfe.conf.md b/docs/zh_cn/configuration/bfe.conf.md index e854e91ab..5c7fc2bc3 100644 --- a/docs/zh_cn/configuration/bfe.conf.md +++ b/docs/zh_cn/configuration/bfe.conf.md @@ -59,7 +59,7 @@ bfe.conf是BFE的核心配置 ## 配置示例 -``` +```ini [Server] # listen port for http request HttpPort = 8080 diff --git a/docs/zh_cn/development/write_doc_guide.md b/docs/zh_cn/development/write_doc_guide.md index 4b4811ce8..6f82a7bde 100644 --- a/docs/zh_cn/development/write_doc_guide.md +++ b/docs/zh_cn/development/write_doc_guide.md @@ -23,7 +23,7 @@ BFE的文档主要分为以下几个类别: 以ubuntu系统为例,运行: -``` +```bash $ sudo apt-get update && apt-get install -y npm $ sudo npm install -g gitbook-cli ``` @@ -32,7 +32,7 @@ $ sudo npm install -g gitbook-cli 下载完整的BFE仓库: -``` +```bash $ git clone https://github.com/baidu/bfe ``` @@ -40,7 +40,7 @@ $ git clone https://github.com/baidu/bfe 进入您希望加载和构建内容的目录列表(docs/LANG), 运行: -``` +```bash $ cd docs/zh_cn/ $ gitbook serve --port 8000 ... @@ -67,7 +67,7 @@ Serving book on http://localhost:8000 - 在文档基目录(docs/LANG)启动预览工具 -``` +```bash $ cd docs/zh_cn/ $ gitbook serve --port 8000 ``` diff --git a/docs/zh_cn/example/block.md b/docs/zh_cn/example/block.md index 00bc41fc3..ef4a13380 100644 --- a/docs/zh_cn/example/block.md +++ b/docs/zh_cn/example/block.md @@ -12,14 +12,14 @@ * Step 1. bfe启用mod_block模块(conf/bfe.conf) -``` +```ini Modules = mod_block #启用mod_block ``` * Step 2. 配置使用的block规则文件(包括全局IP黑名单和封禁规则)路径(mod_block/mod_block.conf) -``` -[basic] +```ini +[Basic] # 封禁规则文件路径 ProductRulePath = mod_block/block_rules.data @@ -37,7 +37,7 @@ IPBlacklistPath = mod_block/ip_blacklist.data * Step 4. 配置封禁规则 (mod_block/block_rules.data) -``` +```json { "Version": "init version", "Config": { @@ -55,7 +55,7 @@ IPBlacklistPath = mod_block/ip_blacklist.data * Step 5. 验证封禁规则 -``` +```bash curl -v -H "host: example.org" "http://127.1:8080/bonus" ``` 连接将会被直接关闭 diff --git a/docs/zh_cn/example/client_auth.md b/docs/zh_cn/example/client_auth.md index c00a95256..452245854 100644 --- a/docs/zh_cn/example/client_auth.md +++ b/docs/zh_cn/example/client_auth.md @@ -8,7 +8,7 @@ * Step 1. 生成根证书 -``` +```bash openssl genrsa -out root.key 2048 openssl req -new -x509 -days 365 -key root.key -out root.crt @@ -16,7 +16,7 @@ openssl req -new -x509 -days 365 -key root.key -out root.crt * Step 2. 创建客户端证书签名申请 -``` +```bash openssl genrsa -out client.key 2048 openssl req -new -out client.csr -key client.key @@ -24,7 +24,7 @@ openssl req -new -out client.csr -key client.key * Step 3. 生成客户端证书 -``` +```bash echo "extendedKeyUsage = clientAuth" > openssl.cnf openssl x509 -req -in client.csr -out client.crt -signkey client.key -CA root.crt -CAkey root.key -days 365 -extfile openssl.cnf @@ -66,28 +66,28 @@ openssl x509 -req -in client.csr -out client.crt -signkey client.key -CA root.cr 启动HAproxy -``` +```bash haproxy -f haproxy.cfg ``` * Step 5. 配置BFE客户端证书文件存储路径(conf/bfe.conf),将root.crt复制到tls_conf/client_ca目录 注:根证书文件后缀名必须为.crt -``` -[server] +```ini +[Server] ... Layer4LoadBalancer = "PROXY" ... [HttpsBasic] ... -clientCABaseDir = tls_conf/client_ca +ClientCABaseDir = tls_conf/client_ca ... ``` 修改 conf/tls_conf_rule.data,将ClientAuth置为true,ClientCAName填写根证书文件名。 -``` +```json { "Version": "12", "DefaultNextProtos": [ @@ -113,12 +113,12 @@ clientCABaseDir = tls_conf/client_ca ``` 启动BFE -``` +```bash ./bfe -c ../conf ``` * Step 6. 验证配置 -``` +```bash openssl s_client -connect 127.0.0.1:7443 -cert client.crt -key client.key -state -quiet ``` diff --git a/docs/zh_cn/example/install_on_openbsd.md b/docs/zh_cn/example/install_on_openbsd.md index 89b2e9832..a2f36a49c 100644 --- a/docs/zh_cn/example/install_on_openbsd.md +++ b/docs/zh_cn/example/install_on_openbsd.md @@ -7,13 +7,13 @@ * 设置OpenBSD 6.6软件源安装路径并安装相关软件包: amd64 -``` +```bash # export PKG_PATH="https://mirrors.tuna.tsinghua.edu.cn/OpenBSD/6.6/packages/amd64/" # pkg_add wget go ``` i386 -``` +```bash # export PKG_PATH="https://mirrors.tuna.tsinghua.edu.cn/OpenBSD/6.6/packages/i386/" # pkg_add llvm wget go ``` @@ -21,7 +21,7 @@ i386 * 由于OpenBSD 6.6自带的make 无法编译BFE,因此需要安装gnu make amd64 -``` +```bash # wget http://ftp.gnu.org/gnu/make/make-4.2.tar.bz2 # tar -xvjf make-4.2.tar.bz2 # cd make-4.2 @@ -31,7 +31,7 @@ amd64 ``` i386 -``` +```bash # cd /usr/bin # ln -s clang gcc # @@ -46,7 +46,7 @@ i386 ## 编译安装BFE * 下载bfe 0.4.0 并编译安装 -``` +```bash # wget https://github.com/baidu/bfe/archive/v0.4.0.tar.gz # tar -xvzf v0.4.0.tar.gz # cd bfe-0.4.0/ @@ -59,7 +59,7 @@ i386 ``` * 修改配置文件 -``` +```bash # cd /usr/local/baidu_bfe/conf/mod_access/ # vi mod_access.conf LogDir = ../log @@ -67,7 +67,7 @@ LogDir = ../log ``` * 创建启动脚本及运行 -``` +```bash # mkdir /root/run_bfe # cd /root/run_bfe # vi run_bfe.sh diff --git a/docs/zh_cn/example/redirect.md b/docs/zh_cn/example/redirect.md index 32034c26d..ea184f14c 100644 --- a/docs/zh_cn/example/redirect.md +++ b/docs/zh_cn/example/redirect.md @@ -10,21 +10,21 @@ * Step 1. bfe启用mod_redirect模块 (conf/bfe.conf) -``` +```ini Modules = mod_redirect #启用mod_redirect ``` * Step 2. 配置redirect规则文件的存储路径 (conf/mod_redirect/mod_redirect.conf) -``` -[basic] +```ini +[Basic] DataPath = mod_redirect/redirect.data ``` * Step 3. 修改redirect规则文件 (conf/mod_redirect/redirect.data) 将域名为example.org的所有http请求重定向为https请求 -``` +```json { "Version": "init version", "Config": { @@ -44,7 +44,7 @@ DataPath = mod_redirect/redirect.data * Step 4. 验证置规则 -``` +```bash curl -H "host: example.org" "http://127.1:8080/test" ``` 将返回301响应,响应Location头部为https://example.org/test diff --git a/docs/zh_cn/example/rewrite.md b/docs/zh_cn/example/rewrite.md index aad754aed..ec1d8d374 100644 --- a/docs/zh_cn/example/rewrite.md +++ b/docs/zh_cn/example/rewrite.md @@ -11,14 +11,14 @@ * Step 1. bfe启用mod_rewrite模块(conf/bfe.conf) -``` +```ini Modules = mod_rewrite #启用mod_rewrite ``` * Step 2. 配置rewrite规则文件的存储路径 (conf/mod_rewrite/mod_rewrite.conf) -``` -[basic] +```ini +[Basic] DataPath = mod_rewrite/rewrite.data ``` @@ -26,7 +26,7 @@ DataPath = mod_rewrite/rewrite.data 路径前缀为/service的所有请求均会添加/v1前缀后转发给后端服务 -``` +```json { "Version": "init version", "Config": { @@ -46,7 +46,7 @@ DataPath = mod_rewrite/rewrite.data * Step 4. 验证配置规则 -``` +```bash curl -H "host: example.org" "http://127.1:8080/service" ``` diff --git a/docs/zh_cn/example/route.md b/docs/zh_cn/example/route.md index 62d30a8ac..bcf2223a8 100644 --- a/docs/zh_cn/example/route.md +++ b/docs/zh_cn/example/route.md @@ -12,7 +12,7 @@ * Step 1.在 conf/bfe.conf配置转发功能使用的配置文件路径 -``` +```ini hostRuleConf = server_data_conf/host_rule.data #域名规则配置文件 routeRuleConf = server_data_conf/route_rule.data #分流规则配置文件 clusterConf = server_data_conf/cluster_conf.data #集群配置文件 @@ -23,7 +23,7 @@ gslbConf = cluster_conf/gslb.data #子集群负载均衡配置 * Step 2. 配置域名规则 (conf/server_data_conf/host_rule.data) -``` +```json { "Version": "init version", "DefaultProduct": null, @@ -43,7 +43,7 @@ gslbConf = cluster_conf/gslb.data #子集群负载均衡配置 * Step 3. 配置集群的基础信息 (conf/server_data_conf/cluster_conf.data) 配置集群cluster_demo_static和cluster_demo_dynamic健康检查的参数,其他均使用默认值 -``` +```json { "Version": "init version", "Config": { @@ -69,7 +69,7 @@ gslbConf = cluster_conf/gslb.data #子集群负载均衡配置 * Step 4. 配置集群下实例信息 (conf/cluster_conf/cluster_table.data) -``` +```json { "Version": "init version", "Config": { @@ -95,7 +95,7 @@ gslbConf = cluster_conf/gslb.data #子集群负载均衡配置 * Step 5. 配置子集群内负载均衡 (conf/cluster_conf/gslb.data) -``` +```json { "Hostname": "", "Ts": "0", @@ -116,7 +116,7 @@ gslbConf = cluster_conf/gslb.data #子集群负载均衡配置 * 将/static开头的流量转发到cluster_demo_static集群 * 其余流量转发到cluster_demo_dynamic集群 -``` +```json { "Version": "init version", "ProductRule": { @@ -138,7 +138,7 @@ gslbConf = cluster_conf/gslb.data #子集群负载均衡配置 * Step 7. 验证配置规则 -``` +```bash curl -H "host: example.org" "http://127.1:8080/static/test.html" # 将请求转发至10.0.0.1:8001 diff --git a/docs/zh_cn/faq/installation.md b/docs/zh_cn/faq/installation.md index 5fde2c725..8eb65dc29 100644 --- a/docs/zh_cn/faq/installation.md +++ b/docs/zh_cn/faq/installation.md @@ -2,7 +2,7 @@ ## 安装时遇到go get超时错误 - 设置GOPROXY环境变量(go1.13及以上版本) -``` +```bash $ go env -w GO111MODULE=on $ go env -w GOPROXY=https://goproxy.cn,direct ``` diff --git a/docs/zh_cn/installation/install_from_source.md b/docs/zh_cn/installation/install_from_source.md index 4695c8603..f03d4df21 100644 --- a/docs/zh_cn/installation/install_from_source.md +++ b/docs/zh_cn/installation/install_from_source.md @@ -5,27 +5,27 @@ - git ## 源码下载 -``` +```bash $ git clone https://github.com/baidu/bfe ``` ## 编译 - 执行如下命令编译: -``` +```bash $ cd bfe $ make ``` - 执行如下命令运行测试: -``` +```bash $ make test ``` - 可执行目标文件位置: -``` +```bash $ file output/bin/bfe output/bin/bfe: ELF 64-bit LSB executable, ... ``` @@ -34,7 +34,7 @@ output/bin/bfe: ELF 64-bit LSB executable, ... - 基于示例配置运行BFE: -``` +```bash $ cd output/bin/ $ ./bfe -c ../conf -l ../log ``` diff --git a/docs/zh_cn/installation/install_using_binaries.md b/docs/zh_cn/installation/install_using_binaries.md index 9d51bb52f..4219abe68 100644 --- a/docs/zh_cn/installation/install_using_binaries.md +++ b/docs/zh_cn/installation/install_using_binaries.md @@ -8,7 +8,7 @@ - 将文件解压到安装目录: -``` +```bash $ tar zxvf bfe___.tar.gz ``` @@ -16,7 +16,7 @@ $ tar zxvf bfe___.tar.gz - 基于示例配置运行BFE: -``` +```bash $ cd bfe/bin $ ./bfe -c ../conf -l ../log ``` diff --git a/docs/zh_cn/installation/install_using_go.md b/docs/zh_cn/installation/install_using_go.md index 2cc7d56c1..cb4b3af7e 100644 --- a/docs/zh_cn/installation/install_using_go.md +++ b/docs/zh_cn/installation/install_using_go.md @@ -6,7 +6,7 @@ ## 安装 - 获取并安装 -``` +```bash $ go get github.com/baidu/bfe ``` @@ -15,7 +15,7 @@ $ go get github.com/baidu/bfe ## 运行 - 基于示例配置运行BFE: -``` +```bash $ cd ${GOPATH}/bin/ $ ./bfe -c ${GOPATH}/src/github.com/baidu/bfe/conf/ ``` diff --git a/docs/zh_cn/installation/install_using_snap.md b/docs/zh_cn/installation/install_using_snap.md index 665e2ff5a..aa10b90f8 100644 --- a/docs/zh_cn/installation/install_using_snap.md +++ b/docs/zh_cn/installation/install_using_snap.md @@ -6,7 +6,7 @@ ## 安装 - 执行如下命令: -``` +```bash $ sudo snap install --edge bfe ``` @@ -18,7 +18,7 @@ $ sudo snap install --edge bfe - 执行如下命令: -``` +```bash $ sudo /snap/bin/bfe ``` diff --git a/docs/zh_cn/modules/mod_access/mod_access.md b/docs/zh_cn/modules/mod_access/mod_access.md index 689d2f01a..5533862c8 100644 --- a/docs/zh_cn/modules/mod_access/mod_access.md +++ b/docs/zh_cn/modules/mod_access/mod_access.md @@ -22,7 +22,7 @@ mod_access以指定格式记录请求日志和会话日志。 * COMBINED:Combined Log Format; 等价于配置 RequestTemplate = $host - - $request_time \\"$request_line\\" $status_code $res_len \\"${Referer}req_header\\" \\"${User-Agent}req_header\\" ### 配置示例 -``` +```ini [Log] # filename prefix for log LogPrefix = access diff --git a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md index 498d7d82d..5e8427564 100644 --- a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md @@ -15,11 +15,11 @@ mod_auth_basic支持HTTP基本认证。 ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_auth_basic/auth_basic_rule.data -[log] +[Log] OpenDebug = false ``` diff --git a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md index ea82382c0..733ca83d0 100644 --- a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md @@ -11,8 +11,8 @@ mod_auth_jwt支持JWT认证。 ### 配置示例 -``` -[basic] +```ini +[Basic] # The path of the JWK file # For more details, see https://tools.ietf.org/html/rfc7517 SecretPath = mod_auth_jwt/secret.jwk @@ -53,7 +53,7 @@ ValidateClaimNbf = true # Enable validation for Audience claim # ValidateClaimAud = audience -[log] +[Log] OpenDebug = true ``` diff --git a/docs/zh_cn/modules/mod_block/mod_block.md b/docs/zh_cn/modules/mod_block/mod_block.md index 65fae89af..5665e0911 100644 --- a/docs/zh_cn/modules/mod_block/mod_block.md +++ b/docs/zh_cn/modules/mod_block/mod_block.md @@ -23,8 +23,8 @@ mod_block基于自定义的规则,对连接或请求进行封禁。 ``` ### 配置示例 -``` -[basic] +```ini +[Basic] # product rule config file path ProductRulePath = mod_block/block_rules.data diff --git a/docs/zh_cn/modules/mod_compress/mod_compress.md b/docs/zh_cn/modules/mod_compress/mod_compress.md index 9e07471b6..a337a04f0 100644 --- a/docs/zh_cn/modules/mod_compress/mod_compress.md +++ b/docs/zh_cn/modules/mod_compress/mod_compress.md @@ -15,11 +15,11 @@ mod_compress支持对响应主体压缩。 ### 配置示例 - 模块配置文件 -``` -[basic] +```ini +[Basic] DataPath = mod_compress/compress_rule.data -[log] +[Log] OpenDebug = false ``` diff --git a/docs/zh_cn/modules/mod_errors/mod_errors.md b/docs/zh_cn/modules/mod_errors/mod_errors.md index 1fed6a200..d99a22c0b 100644 --- a/docs/zh_cn/modules/mod_errors/mod_errors.md +++ b/docs/zh_cn/modules/mod_errors/mod_errors.md @@ -14,8 +14,8 @@ mod_errors根据自定义的条件,将响应内容替换为/重定向至指定 | Log.OpenDebug | Boolean
    是否开启 debug 日志
    默认值False | ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_errors/errors_rule.data ``` diff --git a/docs/zh_cn/modules/mod_geo/mod_geo.md b/docs/zh_cn/modules/mod_geo/mod_geo.md index 3cf721260..ff092fd75 100644 --- a/docs/zh_cn/modules/mod_geo/mod_geo.md +++ b/docs/zh_cn/modules/mod_geo/mod_geo.md @@ -17,8 +17,8 @@ mod_geo基于地理信息字典,通过用户IP获取相关的地理信息。 字典文件说明:当前仅支持 MaxMind 地理信息字典, 可在 https://dev.maxmind.com/geoip/geoip2/geolite2/ 下载 ### 配置示例 -``` -[basic] +```ini +[Basic] GeoDBPath = mod_geo/geo.db ``` diff --git a/docs/zh_cn/modules/mod_header/mod_header.md b/docs/zh_cn/modules/mod_header/mod_header.md index 4616403fd..a3c1d9c21 100644 --- a/docs/zh_cn/modules/mod_header/mod_header.md +++ b/docs/zh_cn/modules/mod_header/mod_header.md @@ -14,8 +14,8 @@ mod_header根据自定义条件,修改请求或响应的头部。 | Log.OpenDebug | Boolean
    是否开启 debug 日志
    默认值False | ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_header/header_rule.data ``` diff --git a/docs/zh_cn/modules/mod_key_log/mod_key_log.md b/docs/zh_cn/modules/mod_key_log/mod_key_log.md index 3ad062ab3..d33db0cba 100644 --- a/docs/zh_cn/modules/mod_key_log/mod_key_log.md +++ b/docs/zh_cn/modules/mod_key_log/mod_key_log.md @@ -19,7 +19,7 @@ https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format | Log.BackupCount | Integer
    最大的日志存储数量 | ### 配置示例 -``` +```ini [Log] # filename prefix for log LogPrefix = key diff --git a/docs/zh_cn/modules/mod_redirect/mod_redirect.md b/docs/zh_cn/modules/mod_redirect/mod_redirect.md index 92e0f439b..a78900c7d 100644 --- a/docs/zh_cn/modules/mod_redirect/mod_redirect.md +++ b/docs/zh_cn/modules/mod_redirect/mod_redirect.md @@ -14,8 +14,8 @@ mod_rediect根据自定义的条件,对请求进行重定向。 | Basic.DataPath | String
    规则配置文件路径 | ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_redirect/redirect.data ``` diff --git a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md index 9964387c4..034af7be9 100644 --- a/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md +++ b/docs/zh_cn/modules/mod_rewrite/mod_rewrite.md @@ -14,8 +14,8 @@ mod_rewrite根据自定义的条件,修改请求的URI。 | Basic.DataPath | String
    规则配置文件路径 | ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_rewrite/rewrite.data ``` diff --git a/docs/zh_cn/modules/mod_static/mod_static.md b/docs/zh_cn/modules/mod_static/mod_static.md index 8e4befa63..2685a33f6 100644 --- a/docs/zh_cn/modules/mod_static/mod_static.md +++ b/docs/zh_cn/modules/mod_static/mod_static.md @@ -15,8 +15,8 @@ mod_static支持返回静态文件作为响应。 | Basic.MimeTypePath | String
    MIME配置文件路径 | ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_static/static_rule.data MimeTypePath = mod_static/mime_type.data diff --git a/docs/zh_cn/modules/mod_tag/mod_tag.md b/docs/zh_cn/modules/mod_tag/mod_tag.md index acc82a055..99b78406f 100644 --- a/docs/zh_cn/modules/mod_tag/mod_tag.md +++ b/docs/zh_cn/modules/mod_tag/mod_tag.md @@ -15,7 +15,7 @@ mod_tag根据自定义的条件,为请求设置Tag标识。 | Log.OpenDebug | String
    是否启用模块调试日志开关 | ### 配置示例 -``` +```ini [Basic] DataPath = mod_tag/tag_rule.data diff --git a/docs/zh_cn/modules/mod_trace/mod_trace.md b/docs/zh_cn/modules/mod_trace/mod_trace.md index e6c64d068..28fe5e810 100644 --- a/docs/zh_cn/modules/mod_trace/mod_trace.md +++ b/docs/zh_cn/modules/mod_trace/mod_trace.md @@ -53,7 +53,7 @@ mod_trace根据自定义的条件,为请求开启分布式跟踪。 #### 基于Zipkin示例 -```json +```ini [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe @@ -81,7 +81,7 @@ SampleRate = 1.0 ``` #### 基于Jaeger示例 -``` +```ini [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe @@ -134,7 +134,7 @@ CollectorPassword = "" ``` #### 基于Elastic示例 -``` +```ini [Basic] DataPath = mod_trace/trace_rule.data ServiceName = bfe diff --git a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md index 6cdf1f274..df25beefd 100644 --- a/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md +++ b/docs/zh_cn/modules/mod_trust_clientip/mod_trust_clientip.md @@ -14,8 +14,8 @@ mod_trust_clientip基于配置信任IP列表,检查并标识访问用户真实 | Basic.DataPath | String
    IP字典文件路径,包含了所有信任IP | ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_trust_clientip/trust_client_ip.data ``` diff --git a/docs/zh_cn/modules/mod_userid/mod_userid.md b/docs/zh_cn/modules/mod_userid/mod_userid.md index ad2437351..dd9109e25 100644 --- a/docs/zh_cn/modules/mod_userid/mod_userid.md +++ b/docs/zh_cn/modules/mod_userid/mod_userid.md @@ -15,8 +15,8 @@ mod_userid为新用户自动在Cookie中添加用户标识。 | Log.OpenDebug | 是否启用模块调试日志开关 | ### 配置示例 -``` -[basic] +```ini +[Basic] DataPath = mod_userid/userid_rule.data [Log] diff --git a/docs/zh_cn/operation/capture_packet.md b/docs/zh_cn/operation/capture_packet.md index d4a491a13..4c531e5fc 100644 --- a/docs/zh_cn/operation/capture_packet.md +++ b/docs/zh_cn/operation/capture_packet.md @@ -6,7 +6,7 @@ 使用tcpdump抓取示例: -``` +```bash # tcpdump tcp port 8443 -i any -s -w test.pcap ``` @@ -23,7 +23,7 @@ * Step1: 在bfe开启mod_key_log模块,保存TLS会话密钥到key.log日志文件中 * 注:修改bfe.conf文件,增加启用mod_key_log模块, 模块配置详见[mod_key_log](../modules/mod_key_log/mod_key_log.md) -``` +```ini [Server] Modules = mod_key_log ``` diff --git a/docs/zh_cn/operation/env_var.md b/docs/zh_cn/operation/env_var.md index 325e1cdbc..fa2fb7ef7 100644 --- a/docs/zh_cn/operation/env_var.md +++ b/docs/zh_cn/operation/env_var.md @@ -3,11 +3,11 @@ ## GODEBUG * 输出HTTP2 Header日志信息 -``` +```bash $ export GODEBUG="http2debug=1" ``` * 输出HTTP2 Header及HTTP2 Frame日志信息 -``` +```bash $ export GODEBUG="http2debug=2" ``` diff --git a/docs/zh_cn/operation/monitor.md b/docs/zh_cn/operation/monitor.md index c956e278b..11f11e010 100644 --- a/docs/zh_cn/operation/monitor.md +++ b/docs/zh_cn/operation/monitor.md @@ -6,7 +6,7 @@ BFE内置丰富的监控指标,支持多种格式,可以通过BFE实例的 在BFE核心配置文件(conf/bfe.conf)中, 配置MonitorPort -``` +```ini [Server] MonitorPort = 8421 ``` diff --git a/docs/zh_cn/operation/performance.md b/docs/zh_cn/operation/performance.md index aeec96d9f..d79050748 100644 --- a/docs/zh_cn/operation/performance.md +++ b/docs/zh_cn/operation/performance.md @@ -6,7 +6,7 @@ BFE内置了CPU profile接口,配合使用火焰图工具,用于定位分析 在BFE核心配置文件(conf/bfe.conf)中, 配置MonitorPort -``` +```ini [Server] MonitorPort = 8421 ``` @@ -15,7 +15,7 @@ MonitorPort = 8421 * FlameGragh -``` +```bash $ git clone https://github.com/brendangregg/FlameGraph ``` @@ -24,14 +24,14 @@ $ git clone https://github.com/brendangregg/FlameGraph ## 操作步骤 * 获取性能采样数据 -``` +```bash $ go tool pprof -seconds=60 -raw -output=bfe.pprof http://:/debug/pprof/profile ``` 注:seconds=60 表示抓取60s的采样数据 * 转换并绘制火焰图 -``` +```bash $ ./stackcollpase-go.pl bfe.pporf > bfe.flame $ ./flamegraph.pl bfe.flame > bfe.svg ``` diff --git a/docs/zh_cn/operation/reload.md b/docs/zh_cn/operation/reload.md index e4919018c..73a96c797 100644 --- a/docs/zh_cn/operation/reload.md +++ b/docs/zh_cn/operation/reload.md @@ -6,7 +6,7 @@ BFE内置配置热加载功能,通过请求Reload HTTP API能够加载新的 在BFE核心配置文件(conf/bfe.conf)中, 配置MonitorPort -``` +```ini [Server] MonitorPort = 8421 ``` @@ -14,7 +14,7 @@ MonitorPort = 8421 ## 使用方式 * reload接口仅允许使用localhost访问(127.0.0.1/::1), 仅支持GET请求, 示例: -``` +```bash # 重加载分流转发配置 $ curl http://localhost:8421/reload/server_data_conf ``` From 3a5939510ffe261c3118a01746eefbcc18104186 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Sat, 16 May 2020 21:05:02 +0800 Subject: [PATCH 091/111] docs: fix minor issues --- docs/material/overrides/home_en.html | 2 +- docs/material/overrides/home_zh.html | 2 +- docs/mkdocs_en.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/material/overrides/home_en.html b/docs/material/overrides/home_en.html index 4bce3744c..4d71d7a92 100644 --- a/docs/material/overrides/home_en.html +++ b/docs/material/overrides/home_en.html @@ -31,7 +31,7 @@

    Plugin framework

    Multi-tenancy

    -

    BFE is designed to provide every tenant a dedicated share of the instance. Each tenant’s configuration is isolated and remains invisible to other tenants.

    +

    BFE is designed to provide every tenant a dedicated share of the instance. Each tenant is isolated and remains invisible to other tenants.

    Multiple protocols

    diff --git a/docs/material/overrides/home_zh.html b/docs/material/overrides/home_zh.html index 2111c85e0..b3d666124 100644 --- a/docs/material/overrides/home_zh.html +++ b/docs/material/overrides/home_zh.html @@ -39,7 +39,7 @@

    支持丰富的接入协议

    基于请求内容路由

    -

    支持高级条件表达式定制转发规则,转发规则易于理解及维护

    +

    支持高级条件表达式定制转发规则,相比正则表达式方式,转发规则易于理解及维护

    diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 358f239fb..8e7fe9d55 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -6,7 +6,7 @@ repo_url: https://github.com/baidu/bfe docs_dir: 'en_us' edit_uri: edit/develop/docs/en_us/ site_description: >- - An modern layer 7 load balancer derived from proprietary Baidu Front End. + A modern layer 7 load balancer derived from proprietary Baidu Front End. theme: name: null From 08ffd62485a2525034e11b9ef002f9c89d111861 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Sun, 17 May 2020 13:24:41 +0800 Subject: [PATCH 092/111] docs: fix format of list items --- docs/en_us/condition/condition_grammar.md | 6 +- .../condition/condition_naming_convention.md | 49 ++++++++++------ docs/en_us/condition/request/uri.md | 2 - .../development/module/how_to_write_module.md | 16 ++++-- .../en_us/installation/install_from_source.md | 3 + docs/en_us/installation/install_using_snap.md | 6 +- .../modules/mod_compress/mod_compress.md | 2 +- docs/en_us/operation/capture_packet.md | 1 + docs/en_us/operation/monitor.md | 1 + docs/mkdocs_en.yml | 3 +- docs/mkdocs_zh.yml | 3 +- docs/zh_cn/condition/condition_grammar.md | 6 +- .../condition/condition_naming_convention.md | 57 ++++++++++++------- docs/zh_cn/condition/request/header.md | 2 +- docs/zh_cn/development/module/bfe_callback.md | 31 +++++----- .../development/module/how_to_write_module.md | 17 ++++-- .../zh_cn/installation/install_from_source.md | 3 + docs/zh_cn/installation/install_using_snap.md | 6 +- docs/zh_cn/operation/capture_packet.md | 1 + docs/zh_cn/operation/monitor.md | 9 +-- docs/zh_cn/operation/signal.md | 3 +- 21 files changed, 140 insertions(+), 87 deletions(-) diff --git a/docs/en_us/condition/condition_grammar.md b/docs/en_us/condition/condition_grammar.md index f188739ed..b989a6567 100644 --- a/docs/en_us/condition/condition_grammar.md +++ b/docs/en_us/condition/condition_grammar.md @@ -40,11 +40,13 @@ $news_host && req_method_in("GET") - Basic conditional judgment unit, format is shown as follows: -​ **FuncName( params )** +``` +FuncName(params) +``` - Condition primitive like function definition: FuncName is name of condition primitive; params are input parameters - Return value type of Condition Primitive is bool -- Note: All builtin [condition primitives](condition_primitive_index.md) +- BFE provides a set of builtin [condition primitives](condition_primitive_index.md) ## Condition Expression Grammar diff --git a/docs/en_us/condition/condition_naming_convention.md b/docs/en_us/condition/condition_naming_convention.md index dc2226652..bd410aa25 100644 --- a/docs/en_us/condition/condition_naming_convention.md +++ b/docs/en_us/condition/condition_naming_convention.md @@ -1,37 +1,50 @@ # Condition Naming Convention -## Name prefix of condition primitive: +## Name prefix of condition primitive - Name prefix of request related primitive is "**req_**" - - e.g. **req_host_in()** + - e.g. **req_host_in()** + - Name prefix of response related primitive is "**res_**" - - e.g. **res_code_in()** + - e.g. **res_code_in()** + - Name prefix of session related primitive is "**ses_**" - - e.g. **ses_vip_in()** + - e.g. **ses_vip_in()** + - Name prefix of system related primitive is "**bfe_**" - - e.g. **bfe_time_range**() + - e.g. **bfe_time_range**() -## Name of compare actions: +## Name of compare actions - **match**:exact match - - In this situation, the only one parameter is given - - eg. **req_tag_match()** + - In this situation, the only one parameter is given + - eg. **req_tag_match()** + - **in**:if the value is in the configured set - - eg. **req_host_in()** + - eg. **req_host_in()** + - **prefix_in**:if the value prefix is in the configured set - - eg. **req_path_prefix_in()** + - eg. **req_path_prefix_in()** + - **suffix_in**:if the value suffix is in the configured set - - eg. **req_path_suffix_in()** + - eg. **req_path_suffix_in()** + - **key_exist**:if the key exists - - eg. **req_query_key_exist()** + - eg. **req_query_key_exist()** + - **value_in**:for the configured key, judge if the value is in the configured value set - - eg. **req_query_key_exist()** + - eg. **req_query_key_exist()** + - **value_prefix_in**:for the configured key, judge if the value prefix is in the configured set - - eg. **req_header_value_prefix_in()** + - eg. **req_header_value_prefix_in()** + - **value_suffix_in**:for the configured key, judge if the value suffix is in the configured set - - eg. **req_header_value_suffix_in()** + - eg. **req_header_value_suffix_in()** + - **range**: range match - - eg. **req_cip_range()** + - eg. **req_cip_range()** + - **regmatch**:regular match - - eg. **req_url_regmatch()** + - eg. **req_url_regmatch()** + - **contain**: string match - - eg. **req_cookie_value_contain()** + - eg. **req_cookie_value_contain()** diff --git a/docs/en_us/condition/request/uri.md b/docs/en_us/condition/request/uri.md index 94419cd92..901dc568c 100644 --- a/docs/en_us/condition/request/uri.md +++ b/docs/en_us/condition/request/uri.md @@ -1,7 +1,5 @@ # Request URI Related Primitives -URI format:http://host[:port]/path/?query - ## req_host_in(host_list) * Description: Judge if host matches configured patterns diff --git a/docs/en_us/development/module/how_to_write_module.md b/docs/en_us/development/module/how_to_write_module.md index 64d3a219e..4ff6e2ec9 100644 --- a/docs/en_us/development/module/how_to_write_module.md +++ b/docs/en_us/development/module/how_to_write_module.md @@ -15,14 +15,16 @@ mod_block is used as an example for ease of understanding.([/bfe_modules/mod_b ### Types of configuration For a given module, there are 2 types of configuration: + - Static configuration: be loaded when BFE starts - + There is only one such configuration file for each module - + The name of the configuration file is the same as the module name. It is suffixed with .conf - + Example: mod_block.conf + + There is only one such configuration file for each module + + The name of the configuration file is the same as the module name. It is suffixed with .conf + + Example: mod_block.conf + - Dynamic configuration: be loaded when BFE starts. It can also be hot-reloaded without restarting BFE. - + There can be one or more such configuration files for each module - + The name of the configuration file usually ends with .data - + Example: block_rules.data and ip_blacklist.data in mod_block + + There can be one or more such configuration files for each module + + The name of the configuration file usually ends with .data + + Example: block_rules.data and ip_blacklist.data in mod_block ### Placement of configuration files @@ -33,6 +35,7 @@ For a given module, there are 2 types of configuration: ### Verification of configuration Configuration files are verified whenever they are loaded, regardless of static or dynamic configuration. + - BFE fails to start if the configuration files fails to be loaded. - BFE will continue to run if dynamic configuration fails to be hot-reloaded. @@ -99,6 +102,7 @@ func (m *ModuleBlock) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHan For each BFE module, it is strongly recommended to expose enough internal states. To expose internal states of a module, do the following 3 steps: + - Define state variables - Register callback function for exposing internal states - Insert code for doing statistic diff --git a/docs/en_us/installation/install_from_source.md b/docs/en_us/installation/install_from_source.md index 2b5034422..b2e3d0d6b 100644 --- a/docs/en_us/installation/install_from_source.md +++ b/docs/en_us/installation/install_from_source.md @@ -17,6 +17,9 @@ $ cd bfe $ make ``` +!!! tip + If you encounter an error such as "https fetch: Get ... connect: connection timed out", please set the GOPROXY and try again. See [Installation FAQ](../faq/installation.md) + - Execute the following command to run tests: ```bash diff --git a/docs/en_us/installation/install_using_snap.md b/docs/en_us/installation/install_using_snap.md index 53d684da4..26cca21a8 100644 --- a/docs/en_us/installation/install_using_snap.md +++ b/docs/en_us/installation/install_using_snap.md @@ -10,9 +10,9 @@ $ sudo snap install --edge bfe ``` -Configuration files location: /var/snap/bfe/common/conf/ - -Log files location: /var/snap/bfe/common/log +!!! tip + Configuration files location: /var/snap/bfe/common/conf/
    + Log files location: /var/snap/bfe/common/log/ ## Run diff --git a/docs/en_us/modules/mod_compress/mod_compress.md b/docs/en_us/modules/mod_compress/mod_compress.md index 8169cc941..feec3cf9e 100644 --- a/docs/en_us/modules/mod_compress/mod_compress.md +++ b/docs/en_us/modules/mod_compress/mod_compress.md @@ -20,7 +20,7 @@ conf/mod_compress/mod_compress.conf [Basic] DataPath = mod_compress/compress_rule.data -[log] +[Log] OpenDebug = false ``` diff --git a/docs/en_us/operation/capture_packet.md b/docs/en_us/operation/capture_packet.md index c5967018c..f30ea8e81 100644 --- a/docs/en_us/operation/capture_packet.md +++ b/docs/en_us/operation/capture_packet.md @@ -32,4 +32,5 @@ Modules = mod_key_log * Note:Edit→Preferences→Protocols→SSL→(Pre)-Master-Secret log filename * Step3: Use wireshark to open and decrypt the captured data + ![WireShark decrypt https](../../images/wireShark_decrypt_https.png) diff --git a/docs/en_us/operation/monitor.md b/docs/en_us/operation/monitor.md index 64db8c704..0e774c3ee 100644 --- a/docs/en_us/operation/monitor.md +++ b/docs/en_us/operation/monitor.md @@ -26,6 +26,7 @@ http://:8421/monitor/ ## Fetch metric data in specified format Currently supported formats: + * [prometheus](https://prometheus.io/) * kv * json (default) diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 8e7fe9d55..5f44b325c 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -28,6 +28,7 @@ copyright: 'Copyright © 2019-2020 BFE 中文 | 中文 | + 日志文件位于/var/snap/bfe/common/log/ ## 运行 diff --git a/docs/zh_cn/operation/capture_packet.md b/docs/zh_cn/operation/capture_packet.md index 4c531e5fc..20166c62e 100644 --- a/docs/zh_cn/operation/capture_packet.md +++ b/docs/zh_cn/operation/capture_packet.md @@ -32,4 +32,5 @@ Modules = mod_key_log * 注:配置路径Edit→Preferences→Protocols→SSL→(Pre)-Master-Secret log filename * Step3: 使用wireshark打开并解密抓包数据 + ![WireShark解密https](../../images/wireShark_decrypt_https.png) diff --git a/docs/zh_cn/operation/monitor.md b/docs/zh_cn/operation/monitor.md index 11f11e010..ac8dc7027 100644 --- a/docs/zh_cn/operation/monitor.md +++ b/docs/zh_cn/operation/monitor.md @@ -26,10 +26,11 @@ http://:8421/monitor/ ## 输出格式 -当前支持监控数据格式如下 - * [prometheus](https://prometheus.io/) - * kv - * json (默认格式) +当前支持监控数据格式如下: + +* [prometheus](https://prometheus.io/) +* kv +* json (默认格式) 使用format参数指定输出的格式, 示例: diff --git a/docs/zh_cn/operation/signal.md b/docs/zh_cn/operation/signal.md index a069a1962..18aa93ce1 100644 --- a/docs/zh_cn/operation/signal.md +++ b/docs/zh_cn/operation/signal.md @@ -3,7 +3,8 @@ ## SIGQUIT 优雅退出BFE进程 -注:BFE进程不再接收新的连接请求,继续完成活跃请求处理后退出, 或超过GracefulShutdownTimeout(conf/bfe.conf)后强制退出 +!!! note + BFE进程不再接收新的连接请求,继续完成活跃请求处理后退出, 或超过GracefulShutdownTimeout(conf/bfe.conf)后强制退出 ## SIGTERM 强制退出BFE进程 From 9eb2359f5dd63daad2ed7c5d840d60b60fef4d7b Mon Sep 17 00:00:00 2001 From: yangsijie Date: Mon, 18 May 2020 11:38:40 +0800 Subject: [PATCH 093/111] docs: add Makefile --- docs/Makefile | 28 ++++++++++++++++ docs/en_us/development/module/bfe_callback.md | 31 +++++++++--------- docs/en_us/operation/performance.md | 1 + docs/images/bfe-callback.png | Bin 0 -> 80696 bytes docs/images/bfe_callback.png | Bin 393326 -> 0 bytes docs/material/overrides/home_en.html | 6 ++-- docs/material/overrides/home_zh.html | 2 +- docs/zh_cn/development/module/bfe_callback.md | 2 +- docs/zh_cn/operation/performance.md | 1 + 9 files changed, 51 insertions(+), 20 deletions(-) create mode 100644 docs/Makefile create mode 100644 docs/images/bfe-callback.png delete mode 100644 docs/images/bfe_callback.png diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 000000000..c374593cf --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,28 @@ +# Copyright (c) 2020 Baidu, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +WORKROOT := $(shell pwd) +OUTDIR := $(WORKROOT)/output + +all: build + +# build content for website +build: + mkdocs build -f mkdocs_en.yml -d $(OUTDIR)/en_us + cp images $(OUTDIR)/en_us -r + mkdocs build -f mkdocs_zh.yml -d $(OUTDIR)/zh_cn + cp images $(OUTDIR)/zh_cn -r + +clean: + rm -rf $(OUTDIR) diff --git a/docs/en_us/development/module/bfe_callback.md b/docs/en_us/development/module/bfe_callback.md index 2be72ecfb..ffe7243e3 100644 --- a/docs/en_us/development/module/bfe_callback.md +++ b/docs/en_us/development/module/bfe_callback.md @@ -3,7 +3,7 @@ ## Callback Points in forwarding process The Callback Points in the forwarding process are shown below. -![BFECallbacks](../../../images/bfe_callback.png) +![BFECallbacks](../../../images/bfe-callback.png) ## List of Callback Points There are 9 callback points in BFE: @@ -37,6 +37,7 @@ The definition of return values is in [/bfe_module/bfe_handler_list.go](https:// The format of callback functions may be different for different callback points. There are 5 types of callback functions. + - HandlersAccept: Handler for processing connection estalishment - HandlersRequest: Handler for processing request received - HandlersForward: Handler for request forwarding process @@ -52,38 +53,38 @@ Note: For the meaning of type int in the return value below, please refer to "Re ### HandlersAccept - Applicable callback points: - + HandleAccept - + HandleHandshake + + HandleAccept + + HandleHandshake - Function prototype: - + handler(session *bfe_basic.Session) int + + handler(session *bfe_basic.Session) int ### HandlersRequest - Applicable callback point: - + HandleBeforeLocation - + HandleFoundProduct - + HandleAfterLocation + + HandleBeforeLocation + + HandleFoundProduct + + HandleAfterLocation - Function prototype: - + handler(req *bfe_basic.Request) (int, *bfe_http.Response) + + handler(req *bfe_basic.Request) (int, *bfe_http.Response) ### HandlersForward - Applicable callback point: - + HandleForward + + HandleForward - Function prototype: - + handler(req *bfe_basic.Request) int + + handler(req *bfe_basic.Request) int ### HandlersResponse - Applicable callback point: - + HandleReadResponse - + HandleRequestFinish + + HandleReadResponse + + HandleRequestFinish - Function prototype: - + handler(req *bfe_basic.Request, res *bfe_http.Response) int + + handler(req *bfe_basic.Request, res *bfe_http.Response) int ### HandlersFinish - Applicable callback point: - + HandleFinish + + HandleFinish - Function prototype: - + handler(session *bfe_basic.Session) int \ No newline at end of file + + handler(session *bfe_basic.Session) int diff --git a/docs/en_us/operation/performance.md b/docs/en_us/operation/performance.md index a8671a691..8e406f710 100644 --- a/docs/en_us/operation/performance.md +++ b/docs/en_us/operation/performance.md @@ -37,4 +37,5 @@ $ ./flamegraph.pl bfe.flame > bfe.svg ``` * Open bfe.svg in browser + ![flame graph example](../../images/bfe.svg) diff --git a/docs/images/bfe-callback.png b/docs/images/bfe-callback.png new file mode 100644 index 0000000000000000000000000000000000000000..23910af9cde2266cdcca6bf043ace011a24e0091 GIT binary patch literal 80696 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%0Dwx2=n8Zj&Z{%ix8R4+N6WIH8akB< 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 literal 0 HcmV?d00001 diff --git a/docs/images/bfe_callback.png b/docs/images/bfe_callback.png deleted file mode 100644 index f6893091bed985984abd90fe2532af5ac0fe25b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 393326 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

    |I3Y8P2|*W6wtDd)%!#ubcz(+WCnlr{cO3( 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 diff --git a/docs/material/overrides/home_en.html b/docs/material/overrides/home_en.html index 4d71d7a92..ed0c2b8c4 100644 --- a/docs/material/overrides/home_en.html +++ b/docs/material/overrides/home_en.html @@ -11,7 +11,7 @@

    -

    Advanced load balancing

    +

    Load balancing

    BFE supports global load balancing and distributed load balancing for zone aware balancing, zone level failure resilience, overload protection etc.

    -

    Many builtin plugins

    +

    Many plugins

    BFE provides a rich set of plugins for traffic management, security, observability, etc.

    diff --git a/docs/material/overrides/home_zh.html b/docs/material/overrides/home_zh.html index b3d666124..60b0032ee 100644 --- a/docs/material/overrides/home_zh.html +++ b/docs/material/overrides/home_zh.html @@ -11,7 +11,7 @@

    BFE开源版

    {{ config.site_description }}

    -
    + 快速开始 diff --git a/docs/zh_cn/development/module/bfe_callback.md b/docs/zh_cn/development/module/bfe_callback.md index 3f9873173..74505470e 100644 --- a/docs/zh_cn/development/module/bfe_callback.md +++ b/docs/zh_cn/development/module/bfe_callback.md @@ -3,7 +3,7 @@ ## BFE的转发过程和回调点 BFE转发过程中的回调点如下图所示。 -![BFE转发过程中的回调点](../../../images/bfe_callback.png) +![BFE转发过程中的回调点](../../../images/bfe-callback.png) ## 回调点列表 在BFE中,设置了以下9个回调点: diff --git a/docs/zh_cn/operation/performance.md b/docs/zh_cn/operation/performance.md index d79050748..0bff04350 100644 --- a/docs/zh_cn/operation/performance.md +++ b/docs/zh_cn/operation/performance.md @@ -37,4 +37,5 @@ $ ./flamegraph.pl bfe.flame > bfe.svg ``` * 在浏览器中打开bfe.svg查看 + ![火焰图示例](../../images/bfe.svg) From 808e6eb1a6d10f14ee3c1b59bf11a87a17e96286 Mon Sep 17 00:00:00 2001 From: arlingtonroad <1149015395@qq.com> Date: Mon, 18 May 2020 18:39:39 +0800 Subject: [PATCH 094/111] Update images/wireshark_decrypt_https.png (#495) --- docs/images/wireShark_decrypt_https.png | Bin 528994 -> 392873 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/images/wireShark_decrypt_https.png b/docs/images/wireShark_decrypt_https.png index 45164c7998b0375b4c2f15aa953f8e80d2fa6943..f2b1118b7861684ea504c0b8d3739efb821d05e2 100644 GIT binary patch literal 392873 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�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 z164r/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

    RX}DPa)*NpGcR&X9x!wmPEh8XOInQ@ zIf5WAmf%Y5W6hlr=CfkeD#}9(3_lL(->0pP5$Phu4-{${kpZ-&OW@BGTzCGY6F5ot<89I;X?9iJqnM|F;u^N zqv&vR9CC0>P(LHrnf|1@Xq=E{){Lth;G8j(DcB#~>Tm3K4)Uepf6`HXQ#_U1YY^|L ze{xLYeOXaxjI@61`r`kzupcWw3OqwoG~CCrN1m#+5T^d7v6V3R&moYY>Wpl>7VcZ< zk=F;;UUwbR=v*VhRShmpVC~xVi18*FH^u_AY7}e1nLii|istwFEj#F{c^W;Nm5}k* zVIn8cB(D5$2};onbLgOE0#~leB;xtk-k`U#Vl-89e^^{RW=x-nUp@9X4zV-OU`JTL zV<%T;rALj8H0IN(939DgVprnt5Lbn|P}m$v4~VT4Xxtnu4i*-hm8@HD zy9K}f-5&^44`If*QB;Cit86N;2DR}#!znQ-kpo%{UVLpH&+?j#$rHw5dg65Kr%?9J zJBu-S(q!Cn{Y}X1l8zO0TfS${evBAAgbC2hLW3jIlB1Qpp1J5l0VS3T505_eya64D zDDVuWVE4IeC*YAk%|;>n#mM~boP@|5%wKvlGKyJcexCwpe1ew?_5^kuBrB^bux-yi zB(QJE?9p1uBCKb8lj$c$_48-UY7uOu;_kcd#^#+nIPsjs7jC>BK5E;adipucocUP{ z8PK2JEF00xbGF=^T<^Z;E)?w9f~9M>V$877G@lV|+WIqTd{tNY{N(t+Q}wxVJlbRm z!NdL&6%1b18lH7^pZ+!R8#p`HsIN!0vl_G#hbUJkv>UN>!$IpjJ-VZ_oe zpQZIVR(a{YRIBud3XTxSwBmtpK17e2bO+hmWVAOg&3lL5YI6xXj^f4}Z@|&l<`S6g z!Q}B{jONYHJ}A(Vsa0cwCb@v2k)OqPtTyElBe;~7RhfmgZ+!DxrrfQK^`=0F3XWp) zu06(rWZJdY(lR532eq#=^^aqFjvh7?>D1!+*`H;iCDTI9lN+~g!?bDB3;=zOJ?eJ7q;k{vs?<9Klq28`@sgk1Hlog9zq z8(OHzNyl|lCm9XAv_YnANZA<9rIRL3BEU*Q(WzR@o%c3Qavm<>yAOQ*>l~AgV-1D7 zfdlWwJ$Kwq&!y>{j}}qWP=I)XWC_dn-E%ko?+;I5*PcDdOrQpX+M0>iPRIW~_Ir%w z95rG97rm%Chz7BZpY7?RHbW+9G#Q{kNNqqxIRVXP(m#SR6DHDgY${f+SVjvNKifY< zS>ZFZ`k)bEvyOP+syzjh1h(;Z&X;+;^O2k1AJ0Aa9M1wAgWd$emI`~Xj%_@+e?RgJg;y3;uteIgJqPzAy<1lv@_rv$8fv)^(1HLL4mIa%yNCq- zoMC;ja@_`Mak}Hyn{T1lv{9_ zH=va7YH{h_J8nT7LEPidKFec#W^i$RBpPc4$^uxoaWjw17{$Ke#hUdSFqjLN0?5aY z9VfkGsEHYmytHJD9W??wS$9igNec?LVT)h$qecswUJ`)i_UTJ7(x2eoh2Q=0c@&jZ zV&B1im^uA(=-o3DPyFdAlvg!SgBeeGZ5(#(J7nIK2k`P!6?o{|-=!DjU1qUF!0e7& zZ$&~<8eSxzJyLkWXhU;zd*TbX-GOIVmqUk+QeG&)#0feZcLeAECr$s-0`_Fe&Y3wq z@caueqk+~nM~@%H^jX&(4yU}S)WA(EgI&{ ze;0R=j;W;6Yja*kKguFE%(@ZHH5HT_=)Ile(~7lgsWJ9p=+IFZ$_1yE#yTutzK))V z>x^u7?YJ@QBPX~3c#;c$)MO{dVdA85)VvxUJXxK3RGP!bB(PoC>ZW6;O^v*wB8rPI zF&IE@)lFlQpB8TNoUDZuF|69NmX;W&r>q{ypx2^*(ck*Mnu94XD<#!)8CN!DKR?^7 zggJ?Fwc?S&M$hlt->gz;SWxFx$K|xoY6%gC4N8^TQ)spHSRuO5l%<)IraU8BLy2M% z5U`_F($w&|XP!k7JIo-iXjGl5qF|hbE$mErx!viKy@9ISCa#L_=XqgMIe{pr2vzM~ zl%FiZvoAbPP2F;{YC3Gl5ae=jQm0Z5TFp}#bUsrH%_$qnWD@kGUw1Z^Pss| zItR4T!-vskSi+I4ARNX-A(pF?d#Rc0P8Dh`)#_2MG1EB*FzvBOicjL^+Wyyr+gY{Lrb0qM`VvQHB?W3D3o<2^vuRixI_U+ou$#^7cxl&rrRofNI-@^;DU*L-O zDGDK8oS?A%{1bmN781E!d%hioz z+lw!}L@mH-4C7HG0y=BgucNkVGCj(2VTxmmOdj{_--{^(E|kp4?rttVB%!pl6wgzj zS+R1JxhEQEPC7H_zWL)AC(~gqXgv4q)7Z3W19>dOBS5-fRnYMtrYEw0bq>l_rdrad$#n5~&Y!Ef;;+^H8VdIF7cNEqKrX}( zOfFry9EXn=Vkd>XF%%T{5jdUX>i)(p+p&PF;)~u}VYHL`d0+XqP|z+paf~KDsnn=& zPY-*Gf=I4?fn74v%v|>_-(ANvoLm`B=0Z`=9^DPFk<~>k$Lfj-3YOIFjN?Mm!GniT z!jd{J}zL{oX+KZaVIm%aG zkBX8a^dcWr5Cmp$?B7Hy6_rWHuE?}2o%CG4aU&N2dKsZknyAh}zjRBBMxvvBi>Kb4 zKOYG+zweeutAd4#j4A(CmbYi`-f&Rsx}EdTehSypo-JIuoU~hpEz~+R(5yR=pl>VX zmYkgK)UY>xfIqbm*M}OZU7Sk=24x=U<#>|JvHOMD&r<+hK`L&$<4`Jb=rC73bg~@yK)*S>rJuqq@g?J;U5Ev6j9y)x$EWD1m<{H+`$#$f9E6cKV z%Qn37^2^lXZZx3GOW=KkX0m1vH)R)@`5P*0`Dm#1X_w+t@%s{FQn0Fnsh_9txk&#S-o#GNxk|2sTt_URu;R zbnq~a791f!Cm*w)m6CVnaxr4=YjaRWEtxco0^0)NXrmJtCUO2FSkEu&n%3-pW zTEw~M>rde{Ggvh~`>6Kyx;Rm~d3=%fTlM2Sw`B1W z%$+-r8vjc6uQ-~b>3ERisN_7UHjE|c5*QpYdKAYD50TJuHh?mLG(novTbt?-XlWqm;li)W zi)PBWzNRMlHQ!V5F@Ruf>GI{6J7*4hv(8D$iO3&3h-1e>yhBaofW8AMH^fu>Hqw}g zYn#2So7>pL)KMQIqv=qhvKDD*;;B7%`T2dYjllYamtNw+OtH}%E}(Yb&vC2&uwhvE z-g{!!0ma13TT(%5dK+%bIk2x?IKasmH{(abMewh{{$zlV*Rws4V@ z3lvAMJ*G9Hl`j6fav##b9@OlRk%Kgz)qWC{L7NO+bXXu}xROEbYy?X(jL}|j z7M6f%TxhdHEML0;pa0Bsv*IgOQHPd+nuO&TnReWm2UVHN$OdM;Sg%sh6F2`MNIHx+E1CLb2#)g}F8#GyKWiHGW z&%)zJ3Bm@^mOK$#_Z1+LpNaCCX0+}nGhQ|=P?v5SFXxaH>N*fOj^dk!2T_p1sE z`Y@9vT^`bX<%fyAuXStX08H+AJO;YSPb0>;E1KDW{4oIR+~rI3i<)i|5yV>RS_3#S zUsX?xgt2K&Ri6ID#cOuv%1tbhuR&~KV8Cb!R;Adu6uW{atxE~WY>6*->?g-P9?$Gl z6f7+5dVn7&Mc|)8j2gh<4PWiHrC7Mr3F(wbwq_^uSsnE)j}h5rQyA6_<(O zT{VQBeFw3dzkD^;+gn)n>j~MoVmAnR$|;$ICA=96-XlUGQl0op;g-PoydF+BH9>`Q zu?s{_RJ=#zR{a6h#9gpcZj1IsCp7BZ)tiLhjI!m^=;PMk?$%V%l;8;ceqLw%`;AL< zL>{DC3@mpDJAHe}a>u7mP;UuV$SFA~_W%9*GplczLkJjj4h7)}WOL8cac1B>)R+l|s+SyO50MY*JZXs<)(7_0Jo6=L2E4R3`8T&=ie2?*w6 z5u{bPL&@}!@PaxC@68SDk@Z zuf|{f>}~SSZrfo5bLH%om5z50$o=~d@LKec!+XtF_^F7!g1GYJ(vc>JWLq-9!jqe9!F z@DxUn3z~wpd>H(NbrB5%=6NOKF~}9#xs+II$AUenB;WEdIw>DkMHSNF%RInNqlBMD zIQ@&C{oID*HJy&NM1@{*3$R@z}?hebSpSR+b;LcCNs zM1|C3TonHrh>Ej?^C#N5)8E6qNo7 zyjCM@{fl_Uds^v@7>}X0)0#WN$$Q3No-v#pC-R))YcOEaV-T2J!|0gAbu(toCOt^G zxj`X}NO)PF3Wou&a5rKwI_Imv4c;dCte4->t{AFj0MwqbcX9oSC5ur$itIAV;m2QW zx4-+_|74RVjz{UdLT**NWsNCiPBF+t70|dA-UH;wzwF@|(OC2Zi+;XC^sEpCGy?^z zpYf=;ObUjaXk>vJ3`HAv9I$0CEVay}7@IY7o*h7by?BWzEAEwy7KvgU-cL>(Fb)eR z2eOjMe>{zyZ!mG|%)YliZ+iiBRCpTX)#2ufOJbl1UNqcIVau%NjNu zJZ-^fQf*6CzGit@D4WCCvyz>`#?rD$Hi7WTi0&5TKC0=)r@6u@xiXg4EHVs6!G45K zj}KvS=m>od{nq&(`;5%Vn4f-5@J&}gd45Q;(dGK1T)9fHR5MTgDBr0UX2SEH+e1Th z1(6AKs+a`?KsEN1469h#DY$nVt1GRgzRH^FASPS`2KszN%3P?2F+_n_vYg4vm;%96 zfq_IkG;*20``!n365&;SdSq!)I6z)OzNKbnKu8~12JUI~4x2n}8gBJ_Z1yA@jrDtY zYJ%N|xHJ)l*w}!6s3>@v>!0?47q>C8uB%g%xP{ zDrJKEgqY9%fT6%dmE7COJi7o<2cD=t7-J#~E*4Ky&ggtRSGA0d`a=llA8yz{-1BiN znqxr#v^x-B>Ka>cC9lO3#r;_0I-$n7`6XCgMtL%>LTMDnI6A)&>(&fUPK?AWw(sD6 z`v}W8{u5RQyo87;ET9{L*4`IMsGvec>QJtW$$Kclm0OQB1W$_;@G{oAvDphiBtUp7 z?mn>p`#0~|eL_o60X%#qiZGV~1PA3GNWf6YOH6!<6_ktx_7R@b^Xy^#)7~I~7G7u_ z2w1&6xV8}x)4{>+&TgAAa~6d3uH#EIM7tbC`NJ=^Ioy?taFyJKz2rx}xMm#|_(ZJr zxWOT)8Cf}&k9W8cK|%Q_dk!3?Npqd8UbEI2w32u4-M(SJeD_0pNcdtrid{<+Rs^X(@^RB;#T=e)EmjY$aiL$$02g2tlDpUvAxMUw^a5Lrs(uIfZ<^CK?2{@{Br| zdo+sSgmIZ7SonhFO85f^}*g+=YLy_R3!ax-IAseyiv>1%` z`IARr1R@Vb;a$Me1AeGb6&;g^;E~{74HdhH;-(&Ytf|n^s66NkAxyG-r$fUdFsw;6 zmKjY|)S9u@4zLD!;B0JM0!9QnW+T{ya7_Yf90J}#yj3ff5;jC`$}}Pra!Eed+Dg9m z)ndGDvi`y&$6^R7fEQHZ(aK0pA?ziOT;QAVPMStnRarrHj%6Uc-^c3RhBd#jp%wub zL5K%+AY}F-)DB2+Ly&S~Apbsjh~}$+i7etOu%V&~QwhnQGJUc&5W1_JDp|)9u}?sd+sb6Vb|e> zh#*oS-dRurFD3PD8>NanLc~Iz4^}1iIy1aV~L^^-Ii@z z5bmRFKI<&+P71tD1!HCsGJF3~J=XIS_&0kLWogQ!G7pziL8%a4hSo^t;)7(_!d~_NL z#RSeb!IK|6s3u(cGt$h|&82>T6$TyPNqqzfFE=S)>w$4;08U!iaY`CE-d{7A-9 zv7Anf#afFV@GcSWOE0)w3g2yk2Plsz627aV2%$qXpq~4qh?-bH7;!cVZ&htQd4_l0 z!>1@1SPYRt4?TbE{H05bIUJhV;o+MJgbS~jx6rbO4YRNI?x2F6JO>ySp{HKlNir0h zDJ?V2URk%wRxVlSd$<>wMLjel;}a|#MWr7ly^njQqY(Vv+wWM-!+Un+eg#$h25cR2 zib4d#@Fupx2Tu{Ic=p0MJCDcmBEMyb*7JJ!-Nk>M$Z@LTr?nTak|#`4)^{&n!WyeT zqOPe#!5oe(xRCu5fnlM!waE&K3O$PIH2JNQ36X7Vs3WxRn!WP!%Whzhk=ge#o_ADG z_83MLaH8V=T{|Uw!TWy}1Ic~ln&!HASceAB<n_|bViaZ^4I;&m)Fzjxz6a!)zv_bL^w0tUGZ++F_TeKW z3s!>w9qw+-rPxE^sGyRNJSkaYN+7_=5Ue2nR6ajWyV9elELpJ7cHnZ}yzvX0F@36s znKae5;IXQQf#8urcu*+B?!9|G-nFB1F1J=H)a>|ryS=h<5d{Ytz8Kdd_ffx>CFeZ3pv&_r@~xh2B{XV0E#_qXr1&+smeC%0u}Ml!MG z2pT9oNf2O#+|<_-DuP!dfxNfRxlUGx!h#(8YU@{o2@-M$fm`$9Do+$v4uzCqg$TW{ zc)m?2%E1-fX7yN)Wsi$Qp}U8tWapm!UL<1k*6sGrI+zX?@g3WF9vh|zxGRKW309l4 zr@qBf+>0e>4ciU{1%mpBIQ4D_PBa3{r7PDdzH!MzzZ8O4T!dTu__uZ)My?};O*lFy z+ZB&z2j8FmWQ9eQ6AORt!exkOzvJPO1+zU*YwM;>SQf(}=w(O*C`nis>zi6(3<{qb zFcJF!tUU+z?LnZ5wKc0&+Bd*eMhjWuCLw5Y0l6a=!RN-LY zfG1HQ9!6IKGmpM`!|qnLmdCyu= zTPv3=v0eN3*#(50;lr|QE+H(*C=Mj=VfoV-VA{_yUHwBrNy5urw}ei|;>et_zAhp+ zY1g6scIw+`_F!S4j8YNp$;Fo7rjXmC$Bw};D`DO}HXRFVCRXj)cw2XqEUq%mQ(^eM zc-TMxa+in3s=DGb@(#v~9%d=0&)Kiu{|KS78-e^)!jrChp`HkYIyEOBTU?A#ueS=x zg2hm=9vR^z+@+BtGyx+|6ov!Wkw8ZYTD>R{nZq&>7)RR2AAaZth#45)#ub-X83IQ$ zp*oH2g#DnLB`MUG`|n_glXq@BAuu~AbW?@5w~_pxX(av2YE0FDr`T-BirUAXZD_9Z z{oD==Hf`NPj#DxMR1?C;QUpLn3Q!RbPl^;Pl~PZ~>mx;H`i$v#gD$udCGV9grS`G! zBDqJib`H<9rM8I%i0Uj?O^VAUt&*mXnqqDQ! zI~h)uV71p!<+I&;c2QX1Awp0kf>JF3HjuS<97Y>dBzfHudi8QbHVW) z+qWSALl+X$$t|DFZJ#9+1y|!eUWsySh3o2fWl?T)S$O3(d+;yN?HG>HK*V zGuvSAfBZ4#(r|kbnIJ_uo(Rq>mo2e>#xVP!^1hYj^rd6RxMiK3WD~TW-HkY>gG9PsoH-i4dED9PNOhYR@HzP zMw-PikM4*^aZq^a-G|kdla+xoNmWT`&X-?oq&OM4PT@822AQPF$iv@zU>_+Qm9}X9 z0?*^p9^mQhuPDMP%PG>+iihorUAuVEUR%8aFHi$vg~!~1GJEE1(rJ=N{WwY9aXGn2 zeeCgVwhFJb^4dNmEVP~CK6B>I^}M8=-P+f72GQ<3%8qMSuxY>%TYK?I6%FGl8Zc)82QY7c1l;vYk1j0hvF z63xqLp@0vqcRc3f?|XzHmx=}j5q802e(V`x@4fe~KVIG#{V17K8n=|N?^}9)>;cc! zIS{-X4_+HyJ5^xPW($M)YhmQFSA{1rC$|y~ZW^&5B?BwpBpR!a;`19J23n*vEcnVT zQk;DU8hbcGRV;|4?`<$bB^0WFgtYLe-k|h-JuY3{r#Nw6T!?{sUUlLYipKiE?gFt% z7RGFwNKAZ~hUREQnS995|qONK0$allf$rvrsi0(TfNh1Q`+DcQIe zuWC?IHV&rL%UWrkB3vRgF%Z!>T<$8D-af#F;YL-6lZ4dC=I@HavdD$0obRVcN)sVK z5xpH$JQ^N&YLJj>VI+|;2_*JoVP_28z^n^q9u32yYX|e7x+9)V6_QXXd?^h*tbshe zvcRi6E=w0s07mw_9b#^sFcbATio_crD_gwq3N)(4!rpRI~)654w4 zrYZ+gg;#XQk{UFWeBM?f7?0?N_KNp0V-Ksh6Z{7pVxGj4x53!j5V9qp#o{@Xm7Hu} zuW0H32LJw?4=EAaSMA`7tm82V{{1L6T3%IH>tO$Tn+mQGZiEiMPq@PUUF`jq&Q@@g zDqVyNcMr6HGgy+_@z{dT8H5oHgi&08xW*oY28C2b5K^ng*DAs!D`*@>u_QuYRN$wD zHPN0IzDwB>^Y@-@p_hk#BiKVk7=viOG_T;h{_G=V4=Dt-2``#xv~t4anepm;%(IpL zJ8H$Cwi%v704{g3H{$TV^x`>cgoi{Sprt^Ew7=Yv&XbunZ{S_}mqhd1_wQ58;(|?` zFu@hZ7U0%Ken%{xgE$2G2!tSQDjCe8BUL>VD=td@0C*;1)=LgzB!ZgquMQoe2#SmW zGqCoHKCka7s)DbL;w&5MHe4^UxDJV5=Q`q*|Y%|3$5}ej4QKW)zwfitWhL_kB;T zJaJu&OIH1G=BzxDM66U12=n#O)_#=AL~s=Q46lW5^PU0tW*1k`m z!k>x(l=KKnwg<9A=#5(90ZQ3Z*n;&J-tv%tHX(3%+bjrN%LxnjLy z;7L8;NL@4D(x_MzZi?{m7zy>L*=}?^hmz6StimNkIE}Mw>-Jt-;(=;7m7ma0C3uaVxb~GUA#L?*Xe$~haxegJW00fVlCuFmIC1X zj0uWvDSTIb!_>=6Z4cVvdC}mjwz7<$atH{<$-*J+H?HYrTapO(;@Q z*az4H1B@ejfVE=pHg^b919)i;Oo2o16(02BvE+Gr8SjvCCmPa1;V0!7JDmgW{qW;f z_Iv~e4wYSxU9LkZC3@qBwO%zg!S_%mt7_V9uh>#~E z#|rP2-qV8or2;Dn=~TkxnkeMB2Ew#^>8+QZoW=e}F67yrjI$eqel#>S0hvNn@5w{+ zQi=W!;Xd<0>~wFU=#spUGURIA6!O_jn}SwodIB^)L2D-&9!pSHD{Y+E$B{&>Nv2fa zwzx3qH-Z&?znHsl&)+Tiobi=TUj%&6fHVLHGUF2M|2+@!t-h8=RBw%g-lpKeY{tud z$)6&;m2Q;^F8o<2U|Kqd7ry};%tQc#OhG)<)K!)?HO2EBE;d8J;B>86j+8HvK*fLR zKEB{~)TRbT!4*7D&lNG&^*Z_>Hp;D0_>6Mqq9O1KUt{(8j)2PFv}NRdh-MrC1D2r4 z=Wr4OA;7-yyhI92H_S)WUz?XdxFYCDe=ryy2n*`tW-g&I_&}c3Ka4>o$2As(2WZwJ zs1fw)=w}0~u!2H}guaN^zys@(X3PdtfPi2KlmY_A9A&=?cVY>Q1s~lhLc)K#GJv=U zp9C>B2%AMYU<%CJC)=rA|_ae15;VPLC zo2Dc_D5f|d&442WaS0N>#zJn6kYFJu>^JI4?swb;I;x!pO>~B@J~2@UJf8dK1WPLj zesEs>fD{j}W|k7Tx`@$^fbazd9me1|%((QtFbZ^l4{B!Gt3AatJm)W1C7!AG3;PBK z$*1S(2q|D1zlT(52Eah@6K<G9^`2#4TUH}pzJG_*_bmZ4GmU2CE@Id<_u>-FT}*E!|#m+_}SAk~!& z*Po^7MZrLvhlp&SSzRs_Yw^Oz3FA| z@C25g)ng1io$t(xNqMt(=k-#^z!k0$FOkBphO266A$sQYhjW654k)J6KKG*WG|%Jm zwbV>_j;;X~qO*>tP9Oc&!GFXrfGcAVO_X3SJ|<;Q6(L;#7mjGH5I7zFywjlHoZuPy zd3*?8H2wi_g%>&vW$?jOj6wIPp|G0AMk053vtX_j{|n=sqE|#$WoT1x#sSt`2CiO> zN3i6xV5%b+OYm-e)*LjXAmmZFz&vz<=IN@K7y%rGo7$IMsJ~jzC@SPi?h&8q(zv)n z3d~cp^5^P#Jc?&%9V8FPn>RFnt_gMl_Y%hFik!k7dA9IQ4YMV%Unf7Yy0yiPh>|rl zJmr%oU~rc)Md$P$@gL!p8tVp>R{sh=5zbjd889P-8-hn9dsLfPyo`ILcq#ulpc0IS z>jPXAo(UJYR!`;S!ZH2Ue%4-c8Ba7`u=9xu)_OM2;k&%gQh>BKd>zB^6tm8~7$dz5 zJt41JADO06>wy!aU|j=cFa%Y-pZBt_G)nCRr(gOrKbom{k0_khQi`(L1}HCHMM6Z; z`oI&(o06BchlJl+|KJGb$4MXaP_ZcHEvZlM5)KH?fgA`uV9ttg@IAm^BrU5Ec9`~E zIB@BeZ06D-?*?An9L4kGdwB8)eRaAD=(HQ;os=A+QK=}1%QG4~f0dEO3)s0KP4K{I z17C>75EOy3roAb;q4iVKY(YogwYJKo*HZRl7)wqbK}h9FP#L%hKtr%_kos4REp$5c zIW%6K51kVnTL}M6h^HCzurv?TK8FGpz&C)YD`3C+^?Pn$4#EMbVunRrLXa%o!ks^r zLj+3z6$pgd`mIkaF(3IY!oi{su<3$p#F7GV1=n$U=zy4TPdLO>_w@Rv)bpPPh^z;) z>}z2oz$Whw&LtAYq$S8|DitBfK+s!dnc$EB%}^!0!B-rKk)3^*PrpHb(-zXbLiONx zFi-#bjQ$CYLc~i0l)#_?G8g77IJmW1;ALEbv@Ae@r-JXmI2dDaZ7_Bbq0qg$R)kJ- z8a&50eF8ZAJU+BG!5MuDt`Kq3O1qcAkyPXTv3o;n7Tl|+_8@SGVFVT{KKo7+T%Ufg zu6=$Fjg~p)L-3=|+6PY`!YxfC zxF_`c+3$g;NAa(H3!oN^idpz5Lu2IYAi?GCC)UE}s~H87Gk;^BNmz828^GsZd*7e( zdF`+e7=qoVZ(49+iq`k>etmMDf|rg#H1KEWPMr>LDuBH3edryb3;c}k4iGE&```n0 z`u99Sco(dDFm4y%c}_sj2621veHupS2>$+<-UahkaSY{HV}O7rN<4AfmCsUR4xSLq za}YN;<-4BW=$^iRg1ye@n3`rMI_>wm*G?y7eBvns@IyZWcnp3S`sFa@o1QPu<8Nnw z>u^gyyW9BzbVmHZpd&8h_8~B{*F95@^8tQ$RCB;~mC>`zx4@R*wHdNHuuZ<6oiY{5XyT>#ipR>!?|U&OLqxU~%a2 z48a?q27B9A=E=)`!sp;^`d0#}-tS`>64taXoPKKfp)bLjYxFWw=+JumsQ4YwSwB7W zk7OC~7`-KUv#t-pXy~%v@q?nrHb4LXKmbWZK~(Mw?hQRt>mbD zzWMk9FNjKcOTq{YUW}eeC^ryw2mA?EMm$RMlAPt3?DHLZ8v9M^jf|Iik`xaV1cZFa zi~YW57zducU_ak~! zYqhSzPbqpbI_r5-K%_8*o)vn>Z~3iDH60z!XY_&n$~nzf@Yef+w+3$yX5uf@#e;{g z;qdti=Yb}J8+!EMRl)oRzx(mf%33O)}#$p7N!m|sFdI%z^v0>#x|si$(U(-B?uyB~sDcV`prda^t> zzJs20XUUBXwKI|7K~=w{jr>_0p+yohYY_x;|IshLDn>pe$O)N#+ab-~^JcUW2NyqB zipO{98kN`%-l2^zA|b06!~jb`w7)|M9{vt311qU(g#uWBeP~)xS;qM?gzoa339)4* z482C@Bv8ARC^$JZ&(Jl`=(jU+=Ab&%eSn6<(#t1;+(sjTcx8w)ikL8EzCM;Mt7Jg;<`g#l330%}G%A2o7J%CoUNLs5SDzX~zLoURL$(_kM6*MtKhQNqJy1#cgp?N+B(BDvg2G`Wz>U>4(2dz}Nou(zL~ukVAVgkLz6w9+kecVlMcx@4!I*=W2#a_Ka8?wF zd&GPkx>x6U7K8D3aHZolI4?@CYlA(h5o<38@>J-#g3HhW41(wBZG+?BoX+}aoThPw zU#C|FhEBg{=sAP9sBv(gJWqOuP(??e4C})a@Abd{2TuakSd}_X_RV(kxfqA zeZtA5gsD%V6tIX_UVY{N)a(4E46;XVJZ@0#$Dht2sOrEA#iF*WYL;?~0J36@dvNJ? za;}?rUn$+PpgczMVD`FO*DEJL#S2=AQ&nFn-z@qgFmY(=U*ObEUPmJp^umZIS8hWT zE34igb@_%Ok91mh#*Q>J4FgQh})MNI!bZpgw51bQL2aQV`CJ< z&sO7}8WKpAARb53VTf1<;|>snhd+}8)YK%I1E@|oi1M#QJmpFb=ev?Im7p2JxH#>Q z(Le&k4K}4JLd7c*sF8;jHjma8%xna7x6im)PjKCaRf% zgGyS~AzZBk_k;k#WhqV$O9wFP%X;X&B7CaI=AWg~BD|=tEU>6NOFSKGjw}btr#)O)i^3k+))PPs{7~$jsD5p~=HH4vc_0j&v{sUOqo8%BO zR>k4#N3=$Ymhirfd_(Q+XmTn56!;1)QXUwv_jy7C2Eoc20#hL5-~VH$^#^;q@J>}{ z1(QyQSue~djD4>4RDPWLd8s!~q=?NEltcp%zUqGAa|=074TK%VvHuZy5R$~8p-s>P zVT5vqgclNY+re*z%*X&BT<=l^RYFnJ6H0w_8zm>=0IL{i3X4OLr z#WP~anbP8kH#EQ-wElXh1a;A{+PVgf5L_VFk?}Nu7ow$cD%m?3Kr+{3ew*S6-2LjcBTh>M&*At#CAiXx@eC&-b&G*B?6q zMFterADLG>JX4|Bo-+e&4Tq05lEb4uP*EhzXuN$0s|srp{ZxUJKD-e74j!<(m5pAs zLt}aR2Il@y9}Y5v3*Ud9gmC5fHZZPe(J#gxU_<~8dr)H=%Q+h&hKD66d8D3jOp&`+{pz1K!bMKSyR>)l>VVBDDQvQ&h6?(#xV-r2q znyV73F6d&dWO!6jnHKO^^e&b>WnXS?49)+^XFT~i5;#kNQZ-@8G~!{AGUx(J<);h# zg_9oM4;}7+#t5W}Iu|a~P=%1iVs5eiN(t&tZ&5lT;n9*W{D#4?XinY}6+@khE=iFP z&C+B7`upVQg3rHg4qnb{$;lSfAEBLaJ83VNiMCCJj7pP zxUNH`u$hB!znzyzD3`1iz*bM-!CcZx@gVUGt#}kNllHvmsfr3ICrkJ*yy`@@Qm&$C zi{L0)C0R{#R?}}8aDV{c6}9D%(l?h~yTPAc2tZ&A=jNvla!Yw%2R~AJ+ksOr{4Sc@ zF!jh)pS%cYT$E_*Q}_M&7wwh@^y#gnY`*rHidFrPPUv1LKT@o%S!*u&PHV~72fzj2 z1I{a%3wuC#tYT}?E(fyi;A;Qix_cE&?roz`TpiUSRSjD80JKk3??TT~&a3J|=zJuh z-aSMCc0=QpudN(;{pj59`y+ZdVpwLd&zX^$*QZg0Br`LUR!F(N5B^LPuz)B?pgDf( ztT$%7b^9)j6gw@iFpq}4U)!-`$L(gtEtp4?jmR3|1lTbK1l4~!L`?7AxnrBRY_{`P zuX+r1PEM|St|WA7!)RlwRP9$^ZKt8&Rm!-Yw(K#Z9g#oXyxC4)xL_6ZG%7AC^+k;& zFnZ(8eN^7NVN!PK{o?{Q2;NSz_x7E;s6cqYa>wLRbR)?sDHr@1m3l5* zxdzjtoN7V7022r`3{8xylPX7>H*cXE`*r%jocBsQiIge*5|~}Me2wy-=e=r>s zNhGo;(CACC7hv{3O*JciDKVHpP+n89|KCrk%U(G;IYYjxXhIh~1yaAxu3=Gs4g4 zUn6foKKQNXz8k3y`P~`%AKkcag@pwad-nJd-st+rHSi$u3{HY$qu1oJui`%#2K|tqKkDm3E;_g*&$I{MvR>F*J8{4%ejE zUHW%@x_PVJy;Wi7FJHCd(h{0&R@=v$wow)Hnit2(A2SBx2jdvTV`mTuBRh8Npl8V? zJ9*}uWsMpIQ;f2$G%{5+%~NMDU_HvgYD7VRC+>Y7mJIZy(pCe#ZT0}Kb9S1ss)Ct_ zZ4-utO`E@@B>8QG?|K_XDf16M{@A}Cr}|bTtq(@9*X0?PS4N&f9RW3Z9%lFNAA|7j zTdEiyJ$~G-T)SaMXx>^_T;i}19Z~aPrux<#ZD5(fBoi7dM_ohcEjw{sgpEB-Af}{)|^u7%8A;_b(gN)q*Cbx z8pr0jvMD?`fBrnx;2zQlwAeqZdGpyz7bv#SW_fu92)W<@($kY(APM`IuimnImG$0} zPfUFyyy5(%%XanhWg5#fPYJ& z@US;-6Yl7G@qiGIb|G3koAHX*G_|zar=M>G9#`xkrKO9C3i%t?14qqAcWS|E1i@3&t;cb?w?MWTaw*dnqxG`KRDge&nd#uWq!Wyj*yz z^7$ASg1iJ(jaN#Egn#kaV4YCRF^u?izD8Q7VEiiVw1GWvir#E@@87dR@KQN>S|Nqp zQg;kRrr!Sf{ZEiJaw+E2WFLI|spXfBLoT}Djm~ee?>bT1wWl^ysq-{Ac?JHj#>OM* z_s3w^I|1yxFBo)X$F5y8>D~kGXM6QQ%~4+04?o}PI6HpaIJ@)Uk$plL_nS8>yr@iZ zVZI%PPks%*ym;vg#W86g*8$!9U%!6>rEWZwxI3-`@f5wSn93(+l<{ zvh2wd$c7kdI#C!t{%iw{h%2EBSK-fTR>3~{X7?U1V}Iw~1B<7f!f!tO$VTRl_R7)k z0mr>dhQn8mQpXg2<>CxwQ@OcLdSPexF;iH7zzq*j$zNo_I z&6_uaSvKdlhY(O8+P6XU|N6iE4@!rhg`u9Y zG86?c)yK*|&-4&P#B`* z3_Ah`2lg zQdF*9x$RA1UwPwA`-i{(f9x#E@%&jc00u<|1P`w7#yeX^x$C)$7kLks4I4Jw%$d_^ zl06gHE+w(~o^6A{Pn$Z8K3*zMn`s9RAB9Pu#+Xn9^t2vg4tg9`MesN)E6eWGHe$iU z)sD68DrKFMAgcfQ?bq!8`iFl)Xsom=7$_#PeiEW~e!UBPnL>$d1T8FrS}BcBL}~5X zHB?wip`Xb%Cz5Mct*}?=OFXprlNgIMpW3 zoo;{s_y34Byv?#Q6RiB`QLoU}j`b6HfT~=b_U(7yIbNw!mMW4-wO#Sz8ibEnEZg9& zaxPFaLhlI8QL><{@$y&&`~lh%3?p=jdoAY7U1a&t=QzAw&5bn}G>+TK7uWe-hylkV z@VdPTO^bnf|Ic6j3T68qW0Plez}{egsfp*?pu}j z3CBYRI}b%8m2&tgSWhpVKWTLcs(<^x{I3vbJgrm%Oo$G*k5S4-qQsp#d(oD%f3JM` z6^5GAHh20IufP_IxADnYi?%)u15GyY&^)+bh49ycQhC=F&cn(~AIv@FM{NBoZ(9DS zEG)+@2!to8hTCsnBlxx9-Cn(NA!|im1EsWMV{Q!6ozNVD-{QBj+@Cmg3O@O|jmjNE zY3*vR?XxPB8Yu+wc+8zUkCN~4(Cu?5=(m0Dc?CtRd8+eE(ISmC7Ej6<`ZT3sAeumL zr+<0(U7N)3!t5;g1|BD^Ck#pOtHJwN4XndaSj2-f<08PLRy%h5l$ZUUNQFt2+t;Cp zmU9T+VJMo#D7EsQx>AgEKY#(R4XeDA#uLC=RWHAP2$FH&(H%UOYS67B7>!hr95G^; zRlwu#-o1_Ctc0t=TsS{>`KGm@oXOKNfBswv8BaYo8o{;|53mdfb>}X-r$Zrb%EdW! z^pJbk+Hu7QcRQ(kr*i3l$GtpNHPv2{{(t`;|J}CI3g9M+SQrX+9nli6fseoZt9~S9{zhPr5EJHvBh$;1+o}RDo=xW+U1+KEdt|7RdWYk z*DgxGpS8E%dYe9A>DJlYXb~3;w)U4O@@PUi^xhg7Q*su(H zK-(Zy^^?LO;r?5U^!2PqA_BGcz`lcrY;4(N`hb;DsW!rmL#Ixju$SL@$F^_(#`ePp z^Yh;3O0EV6gjMpIsdbIy!C(C1zp_45o}}oEj0e{+zVzZjzIOYTjUF-0_Cu%Qk^g?a zex0>5{upx08mUxSiP7R1%FT>fGszXocAgPnwv<+Ru~dvB%-(qOE%?PH=-qMfW46UX zTi*Qn&%sZ;J_xN96*s+?*Sxv2?U(=fPnHC&XhKnyF-m;7hAOS3)bVGbfQ2R}=|3LV=tZpNzrIsJUxLZDXx%3m!3!> zv?9W~TA^3X&8_Yodhnpe7A#n1H|eo327&Yx#3*CL2&=`r(}FU1l)f*^=S{a`*Y1P# zgdxI!Z(g}>w{P6AaZ_j8qB+xSSSF=mvEDwq_t1uC4 zd6;j1e+(-i>qiV-=J||eU;TUXP>7>Y%KF-CZ1e8jcKJ@Vy@J3UOQ~FyLa)c#)ehs3 zrAb~s5iwQH(tNeChcOQIx2m~!58*8Z=0;d4Rhb~CmPmh?R?77%6fqG&PG~I#tu>WZ zbJF z2vl8dGhW?nyKv@PJW*+s1nvNCSSe9n)s#HIlrXG#nQpzTx_{r&A)+cTul`(z_kCl> zF5w|4Ekg*1q=a&c=ND9Cr5!<>vXoTeeyG@h!Y(rC#gs+WGgIM}r!%aZy4itaC+P-5i=&sfDn3|%9#p_iF< z>ijXhyh#|yiZHs+VjY_N)!|ckWX4Mc zrBBGPBa0Vy%s% zY3eZV{bw|;9)NE|L0iT1f@FTpPsrySjq{?NgzY2HUA}SK=FgmK*Y4KXquM4*?4Sv6 ze1_#gW1<;jTtd8;(%*(*P>~J)$KU;e$OYgE5s0Aktf~&W1kcl-JRnEz<;uX=_|=YW zHg0^G&7g^D7rmRlz>7A%Y^rr3pl;e(Zfh4$v%Lq)XT~ zwXd+s$wV}?Aovd(nM0(-DZD$Gl**?GZMM8HgT=GpC894C6}N0`$ynB@2Lb+}WtGr# z2@iYHhj+SXRFInB)8^fSP*6#ckH#ldFxd>j2EJ$Y$k*1rmxl+ zn?5Gr4xKo{c&L7hA~I~`2Lw5Rdg$;n~{k(Gw zUXJB7WL`*5FL^k$*Q0=2?V}nyf3wmS&YfvD9<|UGfbe1F-*WA;-Momgv2+sqs)&{q zF;+{coRsh02$~%b9YW_o;Db`B#_b^U@L}-UgH^Wa^Uv_AmY}ScVYsNWs-|`X`^9$l z>P=fYZHnDT`JXXsoh8u|GYZ~k{O-c5{K4m&Y#xS}Su-b5l$7=>Ad!?K!NV&)LkD}< zuk{$fAJsfWv5Cj4(o0XVTHCw{9t%D$TfPw5H$b!JTB1&_;BAkg0eB=m5OZm4eUJA< zVbI5;h}^cdd@p6)MOn1Yk+z(EoQoFDv;F(_GUlK!?qe(tK1nu;Vx3|l+E9#QEf&6< zKmil=raOvE-QC`db6~n>=7_l#MSzZVb24MJ3*(e)H~w_IE#f zjq0ep3tF#YCkp*jZ?7{L$-|HvyTRkEtWoyzvPDE$okLbTfgB#^Q4Z;mDR??Fm?wr0 z#vvM$z&af~Tuvm~B_e-{@Gd3Tk%Nb5%1s%3dOb>(l!33IzQw-z`fIy)x7OyM&<2l=Hn4v@vnXc<`pj)Iy{9 zlRqSEtCCnR7LaK)H=cnNOihe8e7Ti|gJbQ5Wy{_3af&d7-ABp^G064J2z}uQfZ+l= zKvNm@a^l!mESLj=ops_W7Nz*y9x*AHpw>PnCZ14$VynZN_NcnjlaIgS`pFZ=+Z4Q2 z5)jKlgea_9M2ge>oO~99vgwm2p|#Jjn(Bx4F`)sI$LAxMCPA>y*)0g~U%c@*SR?AZ zm&bUl36YikR`uW^(yc<}SWqqMA7RDx4w2t(nF+uoRlpN-?L*MqbL^lkojuD`=dK@k zh-mcTiRq*Gh(cT>Mv9Psvu7WhHXKXYj37QaE*{tyTQvz9(;qj>ctn8LAB=j`>@UIDfUcl?ab8Ey4l zk%Ymc{ClN^ZobEn$aoZ+HOr6!byYj*X#w3rojCBkh>({OGyso21j@rRP2koWBQ=O5o!o&8EF@A^VVN!9P#V01(xY8o; z0ac3!UildE7XQ`jFWS2wd}!AR&7L!Ts*T7QW2NlPoA>Gn+wLT+Oq}M2hoAtukVw*R z!_zbDuYdLzcoZ(%{sTMhQNwha)y}b5WfKU0zhP7GX!p`{OOYRQrcWY_>@Y%Uie-)@ zHw4P8lJ?36>BG7%<>B$cXM{rK)ZMsu2X<2eZEm&ew{O{`kqFXM_3cK0jX?TW@go^w zvIrki-^SDDFWUS$b8P@+6oBv+t>F)6BEeqpe0BXAyL#;^mgr0N5%lQA<%{s3w0W3r zM0Xnkp1IK_IV<0$&X{HOm3Q2OKLM{{E((g;RcMc;WuzleUA6BBah)-9mL)uR0a+6*A=4*T9 zl{aiSA$<{jV=ZfRzUQE*7(gO-95wY!HxN|E}HNfA(vkA!m;%JXk_ z9Xx9D@D^UbL$hkecKgn41kv-he$9(^?#3N!pwTxSko^7m`T2x^_n?G5LLiN_3+$Eg zC8KTn%$ZhSO-R{*@ZtLh00bvQ#T50>N=RHY`NB!SsF!^jjndtTr%MF|X3m&lO?8!4 zPB?7NsF4Wv3%Cm-D&v>JeiEVi?D=yxW$ZXp*yaFA(hsqno^3I)C}?<5!Qnm{n8|zj zIv!<(w4VXbF5j%MU%c}=d*BVbaP1nQwnqsitg`tt$}A}>7e!7XtW>na5HC*y80qxY zy*uphJ$rW3_<6MFq^i$a3yM!C$UJw(Y#TQ!jRw%0EO+E^t8OF5|H1`Zym$fLl;b{D z?Ln=zSfKKtl*jXz@BEAilZhTY69>T>IM2}55$JiB@Zl&Pv`7qCYhGMQ?&KZs4Yy#yLW+_0 zyFps_)Z!s(tZ$?*V6u%sj=FODfsG<9pckB}udgF~G1lfRn1{DCFidNuQ;>TCSt2l4 z>)gL~Xh@->owc7kcdlg=%Faj+K>_*tP4Ii3~`$?A%e{MS>ehu3^Ae zE~NUt3ZI!-AjdL4HMAd7M@;Yu4LsqS=&pSIGWPASb<)Xp`#p%Xl6iS>dSh_E&%T zw)GNf{MqN*i5$3OOTpPc_MzSUXK(}yqSa7%RxB?2WaW#nK=NEE9#!Ym@KR0dBpihh z${8ECONo$GNhpv`DAWjq(pD@ZNmwe|`2F#x8;H5R=5BaTdPcEQSYsZWPH|+A3o$ejX1HSra-jV$}VsyH{cLqdM^>an39rc zbqK;e2)*;>&#@_3x9;7!>kM^pmd|{>^d9&12`+pVti;Sz?I#`qI}9bPq@)zWU1RBk zoA`4qW8Y$hlxto*q8uUfF7sXg@_JxKYfgj^sEADgW@C#Bu!!6xaT4Wg>sK_Y8-|;E zky|wtMxmJAFSl%SB|~xkx9;8{uWyg7efecV3Nj%YJrLZ<_Rd>xSlNtuSbAw9h-Xn= zNeNol$thD}v2qF&f^gx?DTqP?;Vic-33s!aI$k64aT7Ke~eX@PKsr%6YN>#;!JGLERbLDEn2nZFD zheip$Ma5%nHUdl&gj#ra(*Qp>s$L24X>sG5;a>5d1EoXi5^YW~P*zr{Gr;~7z&o*u()bOHPr+Ww|P;%^~ zDbuZ_xX|CFrkBwu%2NniD9FpVhge003&KtPJdcM2FRhWnXA={X*faf%`!4$>(%LXI zNMTKZLB4_&`qkH8hJg_RL(U90IsK8fG1zU-tGIr@7CI3%m= zWy02!lUISKM2YWlc$N~?pcCUyFL_Wr@~K1XHE!HE1mNj56=t80<+K2gN;nzk&Km}= z*4iq3DIPkLl$_u+NZ$LT*f<&@CkAo-192u@wj8n%@ z`#Mn?$?%OH6!@u5`_iB4#iKs44W}F ziPt4SJAd}}n}pgQc4g%%@H%|(0I30o>Y00=+HbR2)Cht zC8lLsYJ4>7-31;hJ4G}b++sacj3!XtFm*x)6dtDIJc^3K2#+$)!-o&qJq)udaD=%G zTC05mKV<>3bMx%p{d-o)&jXZZg(>EeV|xjYLIZo?HhbXyJ<=c81B(_cz%W(>4X!-7N0QT`PwGL#@pfr^X(

    9tp1p}+u&J$NsV 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�Cs)S-7qQPYe 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%0AG2rPiIN68 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⁢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

    {jbOK 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

    o!P;kAjxI30gI4LB*~x2 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%0ANk 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 literal 528994 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

    VrXcafP+ZW=!N;( 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�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

  • uHqXXOXW)p$yTFTXNy25S@~KVBkqH|(@N6(Ujo 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 From b01d71af199f18fce340a2d1912420521b299819 Mon Sep 17 00:00:00 2001 From: lx-or-xxxl <49898488+lx-or-xxxl@users.noreply.github.com> Date: Mon, 18 May 2020 18:41:54 +0800 Subject: [PATCH 095/111] docs: optimize layout of home page and add icons (#494) --- docs/material/overrides/home_en.html | 303 ++++++++++++++++++++++----- docs/material/overrides/home_zh.html | 294 +++++++++++++++++++++----- 2 files changed, 489 insertions(+), 108 deletions(-) diff --git a/docs/material/overrides/home_en.html b/docs/material/overrides/home_en.html index ed0c2b8c4..e7a934582 100644 --- a/docs/material/overrides/home_en.html +++ b/docs/material/overrides/home_en.html @@ -3,64 +3,259 @@ -#} {% extends "overrides/main.html" %} {% block tabs %} - {{ super() }} - -

    +{{ super() }} + +
    -
    -
    -
    -

    Plugin framework

    -

    BFE has a builtin plugin framework that makes it possible to develop new features rapidly by writing plugins.

    -
    -
    -

    Multi-tenancy

    -

    BFE is designed to provide every tenant a dedicated share of the instance. Each tenant is isolated and remains invisible to other tenants.

    -
    -
    -

    Multiple protocols

    -

    BFE supports HTTP, HTTPS, SPDY, HTTP2, WebSocket, TLS, etc. Future support is planned for gRPC and HTTP/3.

    -
    -
    -

    Content based routing

    -

    BFE provides an advanced domain-specific language to describe routing rules which are easy to understand and maintain.

    -
    -
    -
    -
    -

    Load balancing

    -

    BFE supports global load balancing and distributed load balancing for zone aware balancing, zone level failure resilience, overload protection etc.

    -
    -
    -

    Many plugins

    -

    BFE provides a rich set of plugins for traffic management, security, observability, etc.

    -
    -
    -

    Observability

    -

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs for trouble shooting, data analysis and visualization. BFE also supports distributed tracing.

    -
    -
    -

    Easily integrated

    -

    BFE is easily integrated with mainstream layer 4 load balancing solution, and other ecosystem projects(e.g. Kubernetes、Prometheus、Jaeger、Fluentd etc).

    -
    -
    -
    +
    +
    +
    +

    + + + + Plugin framework +

    +

    BFE has a builtin plugin framework that makes it possible to develop new features rapidly by writing + plugins.

    +
    +
    +

    + + + Multi-tenancy +

    +

    BFE is designed to provide every tenant a dedicated share of the instance. Each tenant’s + configuration is isolated and remains invisible to other tenants.

    +
    +
    +

    + + + Multiple protocols +

    +

    BFE supports HTTP, HTTPS, SPDY, HTTP2, WebSocket, TLS, etc. Future support is planned for gRPC and + HTTP/3.

    +
    +
    +

    + + + Content based routing

    +

    BFE provides an advanced domain-specific language to describe routing rules which are easy to + understand and maintain.

    +
    +
    +
    +
    +

    + + + Advanced load balancing

    +

    BFE supports global load balancing and distributed load balancing for zone aware balancing, zone + level failure resilience, overload protection etc.

    +
    +
    +

    + + + Many builtin plugins

    +

    BFE provides a rich set of plugins for traffic management, security, observability, etc.

    +
    +
    +

    + + + Observability

    +

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs(server log/access + log/TLS key log) for trouble shooting, data analysis and visualization. BFE also supports + distributed tracing.

    +
    +
    +

    + + + Easily integrated

    +

    BFE is easily integrated with mainstream layer 4 load balancing solution, and other ecosystem + projects(e.g. Kubernetes、Prometheus、Jaeger、Fluentd etc).

    +
    +
    {% endblock %} {% block content %}{% endblock %} -{% block footer %}{% endblock %} +{% block footer %}{% endblock %} \ No newline at end of file diff --git a/docs/material/overrides/home_zh.html b/docs/material/overrides/home_zh.html index 60b0032ee..ff5d63e5f 100644 --- a/docs/material/overrides/home_zh.html +++ b/docs/material/overrides/home_zh.html @@ -3,64 +3,250 @@ -#} {% extends "overrides/main.html" %} {% block tabs %} - {{ super() }} - -
    +{{ super() }} + +
    -
    -
    -

    BFE开源版

    -

    {{ config.site_description }}

    - - 快速开始 - - - 前往GitHub - +
    +
    +

    BFE开源版

    +

    {{ config.site_description }}

    + + 快速开始 + + + 前往GitHub + +
    -
    -
    -
    -
    -
    -

    灵活的模块框架

    -

    内置灵活的模块框架,支持高效率定制开发第三方扩展模块

    -
    -
    -

    面向多租户架构

    -

    基于多租户架构设计,租户之间配置相互隔离

    -
    -
    -

    支持丰富的接入协议

    -

    支持HTTP,HTTPS,SPDY,HTTP/2,WebSocket,TLS等。未来计划支持gRPC, HTTP/3

    -
    -
    -

    基于请求内容路由

    -

    支持高级条件表达式定制转发规则,相比正则表达式方式,转发规则易于理解及维护

    -
    -
    -
    -
    -

    高级负载均衡

    -

    支持全局/分布式负载均衡,实现就近访问、跨可用区容灾及过载保护等

    -
    -
    -

    丰富的扩展模块

    -

    提供丰富的流量管理、安全防攻击、可见性等相关扩展模块

    -
    -
    -

    一流的可见性

    -

    提供丰富详尽的监控指标;提供各类日志供问题诊断、数据分析及可视化;BFE还支持请求分布式Tracing

    -
    -
    -

    兼容适配主流生态项目

    -

    兼容适配主流四层负载均衡方案,及其它生态项目如Kubernetes、Prometheus、Jaeger、Fluentd等

    -
    -
    -
    +
    +
    +
    +

    + + + + 灵活的模块框架 +

    +

    内置灵活的模块框架,支持高效率定制开发第三方扩展模块

    +
    +
    +

    + + + 面向多租户架构 +

    +

    基于多租户架构设计,租户之间配置相互隔离

    +
    +
    +

    + + + 支持丰富的接入协议 +

    +

    支持HTTP,HTTPS,SPDY,HTTP/2,WebSocket,TLS等。未来计划支持gRPC, HTTP/3

    +
    +
    +

    + + + 基于请求内容路由

    +

    支持高级条件表达式定制转发规则,相比正则表达式方式,转发规则易于理解及维护

    +
    +
    +
    +
    +

    + + + 高级负载均衡

    +

    支持全局/分布式负载均衡,实现就近访问、跨可用区容灾及过载保护等

    +
    +
    +

    + + + 丰富的扩展模块

    +

    提供丰富的流量管理、安全防攻击、可见性等相关扩展模块

    +
    +
    +

    + + + 一流的可见性

    +

    提供丰富详尽的监控指标;提供各类日志供问题诊断、数据分析及可视化;BFE还支持请求分布式Tracing

    +
    +
    +

    + + + 兼容适配主流生态项目

    +

    兼容适配主流四层负载均衡方案,及其它生态项目如Kubernetes、Prometheus、Jaeger、Fluentd等

    +
    +
    {% endblock %} {% block content %}{% endblock %} -{% block footer %}{% endblock %} +{% block footer %}{% endblock %} \ No newline at end of file From 5b0919d331f67615d0d7fe3a3705e0bcc76c75f5 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Mon, 18 May 2020 18:43:04 +0800 Subject: [PATCH 096/111] docs: update docs/mkdocs.yml --- docs/en_us/installation/install_using_go.md | 4 ++++ docs/en_us/operation/capture_packet.md | 2 +- ...eShark_decrypt_https.png => wireshark-https.png} | Bin docs/material/overrides/home_en.html | 10 +++++----- docs/mkdocs_en.yml | 4 ++-- docs/mkdocs_zh.yml | 4 ++-- docs/zh_cn/installation/install_using_go.md | 4 ++++ docs/zh_cn/operation/capture_packet.md | 2 +- 8 files changed, 19 insertions(+), 11 deletions(-) rename docs/images/{wireShark_decrypt_https.png => wireshark-https.png} (100%) diff --git a/docs/en_us/installation/install_using_go.md b/docs/en_us/installation/install_using_go.md index 936ebc1d3..d1c48bee0 100644 --- a/docs/en_us/installation/install_using_go.md +++ b/docs/en_us/installation/install_using_go.md @@ -12,6 +12,10 @@ $ go get github.com/baidu/bfe Executable object file location is ${GOPATH}/bin/bfe +!!! tip + If you encounter an error such as "https fetch: Get ... connect: connection timed out", please set the GOPROXY and try again. See [Installation FAQ](../faq/installation.md) + + ## Run - Run BFE with example configuration files: diff --git a/docs/en_us/operation/capture_packet.md b/docs/en_us/operation/capture_packet.md index f30ea8e81..9d24946c6 100644 --- a/docs/en_us/operation/capture_packet.md +++ b/docs/en_us/operation/capture_packet.md @@ -33,4 +33,4 @@ Modules = mod_key_log * Step3: Use wireshark to open and decrypt the captured data -![WireShark decrypt https](../../images/wireShark_decrypt_https.png) +![WireShark decrypt https](../../images/wireshark-https.png) diff --git a/docs/images/wireShark_decrypt_https.png b/docs/images/wireshark-https.png similarity index 100% rename from docs/images/wireShark_decrypt_https.png rename to docs/images/wireshark-https.png diff --git a/docs/material/overrides/home_en.html b/docs/material/overrides/home_en.html index e7a934582..ff7a7ef66 100644 --- a/docs/material/overrides/home_en.html +++ b/docs/material/overrides/home_en.html @@ -163,7 +163,7 @@

    BFE

    {{ config.site_description }}

    - Get started @@ -224,7 +224,7 @@

    - Advanced load balancing

    + Load balancing

    BFE supports global load balancing and distributed load balancing for zone aware balancing, zone level failure resilience, overload protection etc.

    @@ -242,8 +242,8 @@

    Observability

    -

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs(server log/access - log/TLS key log) for trouble shooting, data analysis and visualization. BFE also supports +

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs + for trouble shooting, data analysis and visualization. BFE also supports distributed tracing.

    @@ -258,4 +258,4 @@

    {% endblock %} {% block content %}{% endblock %} -{% block footer %}{% endblock %} \ No newline at end of file +{% block footer %}{% endblock %} diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 5f44b325c..0356f290c 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -176,6 +176,6 @@ nav: - 'System related primitives': - 'Time': 'condition/system/time.md' - 'DOWNLOAD': - - 'DOWNLOAD': 'DOWNLOAD.md' + - 'Download binaries': 'DOWNLOAD.md' - 'COMMUNITY': - - 'COMMUNITY': 'COMMUNITY.md' + - 'Get Involved': 'COMMUNITY.md' diff --git a/docs/mkdocs_zh.yml b/docs/mkdocs_zh.yml index e25da07b7..ecfc6190f 100644 --- a/docs/mkdocs_zh.yml +++ b/docs/mkdocs_zh.yml @@ -176,6 +176,6 @@ nav: - '系统相关条件原语': - 'Time': 'condition/system/time.md' - '下载': - - '下载': 'DOWNLOAD.md' + - '预编译文件下载': 'DOWNLOAD.md' - '社区': - - 'COMMUNITY': 'COMMUNITY.md' + - '加入我们': 'COMMUNITY.md' diff --git a/docs/zh_cn/installation/install_using_go.md b/docs/zh_cn/installation/install_using_go.md index cb4b3af7e..cb3539a65 100644 --- a/docs/zh_cn/installation/install_using_go.md +++ b/docs/zh_cn/installation/install_using_go.md @@ -12,6 +12,10 @@ $ go get github.com/baidu/bfe 可执行目标文件位置: ${GOPATH}/bin/bfe +!!! tip + 如果遇到超时错误"https fetch: Get ... connect: connection timed out", 请设置代理后重试,详见[安装常见问题](../faq/installation.md) + + ## 运行 - 基于示例配置运行BFE: diff --git a/docs/zh_cn/operation/capture_packet.md b/docs/zh_cn/operation/capture_packet.md index 20166c62e..2dee5c8f5 100644 --- a/docs/zh_cn/operation/capture_packet.md +++ b/docs/zh_cn/operation/capture_packet.md @@ -33,4 +33,4 @@ Modules = mod_key_log * Step3: 使用wireshark打开并解密抓包数据 -![WireShark解密https](../../images/wireShark_decrypt_https.png) +![WireShark解密https](../../images/wireshark-https.png) From ffe387355eac251b141e0074a22076eff58d19fa Mon Sep 17 00:00:00 2001 From: xiaofei0800 <54530729+xiaofei0800@users.noreply.github.com> Date: Tue, 19 May 2020 10:57:50 +0800 Subject: [PATCH 097/111] Refactor and simplify mod_auth_jwt (#496) --- bfe_modules/mod_auth_basic/mod_auth_basic.go | 2 +- .../mod_auth_jwt/auth_jwt_rule_load.go | 219 +++++++++++++++ ...fig_test.go => auth_jwt_rule_load_test.go} | 36 +-- ...oduct_config_test.go => auth_jwt_table.go} | 40 +-- bfe_modules/mod_auth_jwt/conf_mod_auth_jwt.go | 61 ++++ ...nfig_test.go => conf_mod_auth_jwt_test.go} | 18 +- .../mod_auth_jwt/config/auth_config.go | 47 ---- bfe_modules/mod_auth_jwt/config/config.go | 138 --------- .../mod_auth_jwt/config/module_config.go | 110 -------- .../mod_auth_jwt/config/module_config_test.go | 50 ---- .../mod_auth_jwt/config/product_config.go | 192 ------------- bfe_modules/mod_auth_jwt/config/utils.go | 87 ------ bfe_modules/mod_auth_jwt/config/utils_test.go | 78 ------ bfe_modules/mod_auth_jwt/jwt/claim_getter.go | 103 ------- .../mod_auth_jwt/jwt/claim_getter_test.go | 42 --- bfe_modules/mod_auth_jwt/jwt/jwe.go | 95 ------- bfe_modules/mod_auth_jwt/jwt/jwe_test.go | 43 --- bfe_modules/mod_auth_jwt/jwt/jws.go | 77 ------ bfe_modules/mod_auth_jwt/jwt/jws_test.go | 30 -- bfe_modules/mod_auth_jwt/jwt/jwt.go | 225 --------------- bfe_modules/mod_auth_jwt/jwt/jwt_test.go | 88 ------ bfe_modules/mod_auth_jwt/jwt/utils.go | 65 ----- bfe_modules/mod_auth_jwt/jwt/utils_test.go | 32 --- bfe_modules/mod_auth_jwt/mod_auth_jwt.go | 261 ++++++++++-------- bfe_modules/mod_auth_jwt/mod_auth_jwt_test.go | 123 +++++---- .../testdata/mod_auth_jwt/SECRET.key | 4 - .../testdata/mod_auth_jwt/auth_jwt_rule.data | 12 + .../auth_jwt_rule.data.key_invalid | 12 + .../testdata/mod_auth_jwt/jwe_invalid_1.txt | 1 - .../testdata/mod_auth_jwt/jwe_valid_1.txt | 1 - .../testdata/mod_auth_jwt/jws_invalid_1.txt | 1 - .../testdata/mod_auth_jwt/jws_valid_1.txt | 1 - .../testdata/mod_auth_jwt/key_file | 12 + .../testdata/mod_auth_jwt/key_file_invalid | 7 + .../testdata/mod_auth_jwt/mod_auth_jwt.conf | 35 +-- .../mod_auth_jwt/module_config_empty.data | 3 - .../mod_auth_jwt/module_config_invalid.data | 3 - .../testdata/mod_auth_jwt/product_config.data | 27 -- .../product_config_invalid_type.data | 9 - .../mod_auth_jwt/secret_jwe_invalid_1.key | 4 - .../mod_auth_jwt/secret_jwe_valid_1.key | 11 - .../mod_auth_jwt/secret_jws_valid_1.key | 4 - .../secret_test_jwe_A128GCMKW_A128GCM.key | 1 - .../secret_test_jwe_A128KW_A128GCM.key | 1 - .../secret_test_jwe_A192GCMKW_A128GCM.key | 1 - .../secret_test_jwe_A192KW_A128GCM.key | 1 - .../secret_test_jwe_A256GCMKW_A128GCM.key | 1 - .../secret_test_jwe_A256KW_A128GCM.key | 1 - ...ecret_test_jwe_ECDH-ES+A128GCM_A128GCM.key | 1 - ...secret_test_jwe_ECDH-ES+A128KW_A128GCM.key | 1 - ...secret_test_jwe_ECDH-ES+A192KW_A128GCM.key | 1 - ...secret_test_jwe_ECDH-ES+A256KW_A128GCM.key | 1 - .../secret_test_jwe_ECDH-ES_A128GCM.key | 1 - ...et_test_jwe_PBES2-HS256+A128KW_A128GCM.key | 1 - ...et_test_jwe_PBES2-HS384+A192KW_A128GCM.key | 1 - ...et_test_jwe_PBES2-HS512+A256KW_A128GCM.key | 1 - .../secret_test_jwe_RSA-OAEP-256_A128GCM.key | 1 - .../secret_test_jwe_RSA-OAEP_A128GCM.key | 1 - .../secret_test_jwe_RSA1_5_A128GCM.key | 1 - .../secret_test_jwe_dir_A128GCM.key | 1 - .../mod_auth_jwt/secret_test_jws_ES256.key | 1 - .../mod_auth_jwt/secret_test_jws_ES384.key | 1 - .../mod_auth_jwt/secret_test_jws_ES512.key | 1 - .../mod_auth_jwt/secret_test_jws_HS256.key | 1 - .../mod_auth_jwt/secret_test_jws_HS384.key | 1 - .../mod_auth_jwt/secret_test_jws_HS512.key | 1 - .../mod_auth_jwt/secret_test_jws_PS256.key | 1 - .../mod_auth_jwt/secret_test_jws_PS384.key | 1 - .../mod_auth_jwt/secret_test_jws_PS512.key | 1 - .../mod_auth_jwt/secret_test_jws_RS256.key | 1 - .../mod_auth_jwt/secret_test_jws_RS384.key | 1 - .../mod_auth_jwt/secret_test_jws_RS512.key | 1 - .../test_jwe_A128GCMKW_A128GCM.txt | 1 - .../mod_auth_jwt/test_jwe_A128KW_A128GCM.txt | 1 - .../test_jwe_A192GCMKW_A128GCM.txt | 1 - .../mod_auth_jwt/test_jwe_A192KW_A128GCM.txt | 1 - .../test_jwe_A256GCMKW_A128GCM.txt | 1 - .../mod_auth_jwt/test_jwe_A256KW_A128GCM.txt | 1 - .../test_jwe_ECDH-ES+A128KW_A128GCM.txt | 1 - .../test_jwe_ECDH-ES+A192KW_A128GCM.txt | 1 - .../test_jwe_ECDH-ES+A256KW_A128GCM.txt | 1 - .../mod_auth_jwt/test_jwe_ECDH-ES_A128GCM.txt | 1 - .../test_jwe_PBES2-HS256+A128KW_A128GCM.txt | 1 - .../test_jwe_PBES2-HS384+A192KW_A128GCM.txt | 1 - .../test_jwe_PBES2-HS512+A256KW_A128GCM.txt | 1 - .../test_jwe_RSA-OAEP-256_A128GCM.txt | 1 - .../test_jwe_RSA-OAEP_A128GCM.txt | 1 - .../mod_auth_jwt/test_jwe_RSA1_5_A128GCM.txt | 1 - .../mod_auth_jwt/test_jwe_dir_A128GCM.txt | 1 - .../testdata/mod_auth_jwt/test_jws_ES256.txt | 1 - .../testdata/mod_auth_jwt/test_jws_ES384.txt | 1 - .../testdata/mod_auth_jwt/test_jws_ES512.txt | 1 - .../testdata/mod_auth_jwt/test_jws_HS256.txt | 1 - .../testdata/mod_auth_jwt/test_jws_HS384.txt | 1 - .../testdata/mod_auth_jwt/test_jws_HS512.txt | 1 - .../testdata/mod_auth_jwt/test_jws_PS256.txt | 1 - .../testdata/mod_auth_jwt/test_jws_PS384.txt | 1 - .../testdata/mod_auth_jwt/test_jws_PS512.txt | 1 - .../testdata/mod_auth_jwt/test_jws_RS256.txt | 1 - .../testdata/mod_auth_jwt/test_jws_RS384.txt | 1 - .../testdata/mod_auth_jwt/test_jws_RS512.txt | 1 - bfe_modules/mod_doh/dns_msg_convert.go | 2 +- bfe_modules/mod_doh/mod_doh.go | 2 +- bfe_modules/mod_doh/mod_doh_test.go | 2 +- bfe_modules/mod_static/mime_type_table.go | 2 +- bfe_modules/mod_static/mod_static.go | 2 +- bfe_modules/mod_static/static_file.go | 2 +- conf/mod_auth_jwt/auth_jwt_rule.data | 12 + conf/mod_auth_jwt/key_file | 7 + conf/mod_auth_jwt/mod_auth_jwt.conf | 43 +-- .../modules/mod_auth_jwt/mod_auth_jwt.md | 71 ++++- .../modules/mod_auth_basic/mod_auth_basic.md | 2 +- .../modules/mod_auth_jwt/mod_auth_jwt.md | 134 ++++----- go.mod | 1 + 114 files changed, 736 insertions(+), 2014 deletions(-) create mode 100644 bfe_modules/mod_auth_jwt/auth_jwt_rule_load.go rename bfe_modules/mod_auth_jwt/{config/config_test.go => auth_jwt_rule_load_test.go} (51%) rename bfe_modules/mod_auth_jwt/{config/product_config_test.go => auth_jwt_table.go} (50%) create mode 100644 bfe_modules/mod_auth_jwt/conf_mod_auth_jwt.go rename bfe_modules/mod_auth_jwt/{config/auth_config_test.go => conf_mod_auth_jwt_test.go} (65%) delete mode 100644 bfe_modules/mod_auth_jwt/config/auth_config.go delete mode 100644 bfe_modules/mod_auth_jwt/config/config.go delete mode 100644 bfe_modules/mod_auth_jwt/config/module_config.go delete mode 100644 bfe_modules/mod_auth_jwt/config/module_config_test.go delete mode 100644 bfe_modules/mod_auth_jwt/config/product_config.go delete mode 100644 bfe_modules/mod_auth_jwt/config/utils.go delete mode 100644 bfe_modules/mod_auth_jwt/config/utils_test.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/claim_getter.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/claim_getter_test.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/jwe.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/jwe_test.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/jws.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/jws_test.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/jwt.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/jwt_test.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/utils.go delete mode 100644 bfe_modules/mod_auth_jwt/jwt/utils_test.go delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/SECRET.key create mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data create mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data.key_invalid delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_invalid_1.txt delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_valid_1.txt delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_invalid_1.txt delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_valid_1.txt create mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file create mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file_invalid delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_empty.data delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_invalid.data delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config.data delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config_invalid_type.data delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_invalid_1.key delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_valid_1.key delete mode 100644 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jws_valid_1.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128GCMKW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192GCMKW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256GCMKW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128GCM_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A192KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A256KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS256+A128KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS384+A192KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS512+A256KW_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP-256_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA1_5_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_dir_A128GCM.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES256.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES384.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES512.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS256.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS384.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS512.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS256.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS384.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS512.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS256.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS384.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS512.key delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128GCMKW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192GCMKW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256GCMKW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A128KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A192KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A256KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS256+A128KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS384+A192KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS512+A256KW_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP-256_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA1_5_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_dir_A128GCM.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES256.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES384.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES512.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS256.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS384.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS512.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS256.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS384.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS512.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS256.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS384.txt delete mode 100755 bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS512.txt create mode 100644 conf/mod_auth_jwt/auth_jwt_rule.data create mode 100644 conf/mod_auth_jwt/key_file diff --git a/bfe_modules/mod_auth_basic/mod_auth_basic.go b/bfe_modules/mod_auth_basic/mod_auth_basic.go index 6f342f3c0..c44c67a5c 100644 --- a/bfe_modules/mod_auth_basic/mod_auth_basic.go +++ b/bfe_modules/mod_auth_basic/mod_auth_basic.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/bfe_modules/mod_auth_jwt/auth_jwt_rule_load.go b/bfe_modules/mod_auth_jwt/auth_jwt_rule_load.go new file mode 100644 index 000000000..f861ab7d1 --- /dev/null +++ b/bfe_modules/mod_auth_jwt/auth_jwt_rule_load.go @@ -0,0 +1,219 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_jwt + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "os" +) + +import ( + jwt "github.com/dgrijalva/jwt-go" + jose "gopkg.in/square/go-jose.v2" +) + +import ( + "github.com/baidu/bfe/bfe_basic/condition" +) + +type AuthJWTRuleFile struct { + Cond string + KeyFile string // JSON Web Key file + Realm string // security realm +} + +type keyProvider struct { + key *jose.JSONWebKey +} + +func (p *keyProvider) provideKey(token *jwt.Token) (interface{}, error) { + return p.key.Key, nil +} + +type AuthJWTRule struct { + Cond condition.Condition + Keys []keyProvider + Realm string +} + +type RuleFileList []AuthJWTRuleFile +type RuleList []AuthJWTRule + +type ProductRulesFile map[string]*RuleFileList +type ProductRules map[string]*RuleList + +type AuthJWTConfFile struct { + Version *string + Config *ProductRulesFile +} + +type AuthJWTConf struct { + Version string + Config ProductRules +} + +// Read JSON Web Key file. +// The file must follow the format described by https://tools.ietf.org/html/rfc7517s +func readKeyFile(filename string) ([]keyProvider, error) { + var keyProviders []keyProvider + var keys []*jose.JSONWebKey + + data, err := ioutil.ReadFile(filename) + if err != nil { + return keyProviders, err + } + + err = json.Unmarshal(data, &keys) + if err != nil { + return keyProviders, err + } + + for _, key := range keys { + keyProviders = append(keyProviders, keyProvider{key: key}) + } + + return keyProviders, nil +} + +func AuthJWTRuleCheck(conf AuthJWTRuleFile) error { + if len(conf.Cond) == 0 { + return fmt.Errorf("Cond empty.") + } + + if len(conf.KeyFile) == 0 { + return fmt.Errorf("KeyFile empty.") + } + + return nil +} + +func RuleListCheck(conf *RuleFileList) error { + for index, rule := range *conf { + err := AuthJWTRuleCheck(rule) + if err != nil { + return fmt.Errorf("AuthJWTRule: %d, %v", index, err) + } + } + + return nil +} + +func ProductRulesCheck(conf *ProductRulesFile) error { + for product, ruleList := range *conf { + if ruleList == nil { + return fmt.Errorf("no RuleList for product: %s", product) + } + + err := RuleListCheck(ruleList) + if err != nil { + return fmt.Errorf("invalid product rules:%s, %v", product, err) + } + } + + return nil +} + +func AuthJWTConfCheck(conf AuthJWTConfFile) error { + var err error + + if conf.Version == nil { + return fmt.Errorf("no Version") + } + + if conf.Config == nil { + return fmt.Errorf("no Config") + } + + err = ProductRulesCheck(conf.Config) + if err != nil { + return fmt.Errorf("Config: %v", err) + } + + return nil +} + +func ruleConvert(ruleFile AuthJWTRuleFile) (AuthJWTRule, error) { + rule := AuthJWTRule{} + + cond, err := condition.Build(ruleFile.Cond) + if err != nil { + return rule, err + } + + rule.Cond = cond + rule.Keys, err = readKeyFile(ruleFile.KeyFile) + if err != nil { + return rule, err + } + rule.Realm = ruleFile.Realm + if len(rule.Realm) == 0 { + rule.Realm = "Restricted" + } + + return rule, nil +} + +func ruleListConvert(ruleFileList *RuleFileList) (*RuleList, error) { + ruleList := new(RuleList) + *ruleList = make([]AuthJWTRule, 0) + + for _, ruleFile := range *ruleFileList { + rule, err := ruleConvert(ruleFile) + if err != nil { + return ruleList, err + } + *ruleList = append(*ruleList, rule) + } + + return ruleList, nil +} + +func AuthJWTConfLoad(filename string) (AuthJWTConf, error) { + var conf AuthJWTConf + + file, err := os.Open(filename) + if err != nil { + return conf, err + } + defer file.Close() + + decoder := json.NewDecoder(file) + + var config AuthJWTConfFile + err = decoder.Decode(&config) + if err != nil { + return conf, err + } + + err = AuthJWTConfCheck(config) + if err != nil { + return conf, err + } + + conf.Version = *config.Version + conf.Config = make(ProductRules) + + for product, ruleFileList := range *config.Config { + ruleList, err := ruleListConvert(ruleFileList) + if err != nil { + return conf, err + } + conf.Config[product] = ruleList + } + + return conf, nil +} diff --git a/bfe_modules/mod_auth_jwt/config/config_test.go b/bfe_modules/mod_auth_jwt/auth_jwt_rule_load_test.go similarity index 51% rename from bfe_modules/mod_auth_jwt/config/config_test.go rename to bfe_modules/mod_auth_jwt/auth_jwt_rule_load_test.go index c77a6aced..643cef212 100644 --- a/bfe_modules/mod_auth_jwt/config/config_test.go +++ b/bfe_modules/mod_auth_jwt/auth_jwt_rule_load_test.go @@ -12,39 +12,27 @@ // See the License for the specific language governing permissions and // limitations under the License. -package config +package mod_auth_jwt import ( "testing" ) -import ( - "github.com/baidu/bfe/bfe_util" -) - -const ( - confRoot = "./../testdata/mod_auth_jwt/" -) - -func TestNew(t *testing.T) { - config, err := New(bfe_util.ConfPathProc("mod_auth_jwt.conf", confRoot)) +func TestAuthJWTConfLoad(t *testing.T) { + authJWTConf, err := AuthJWTConfLoad("./testdata/mod_auth_jwt/auth_jwt_rule.data") if err != nil { - t.Error(err) + t.Errorf("AuthJWTConfLoad() error: %v", err) + return } - v, ok := config.Get("Log.OpenDebug") - debug := v.Bool() - if !ok { - t.Error("something wrong with Config.Get()") - } - - config.ModuleConfig.Log.OpenDebug = !debug - err = config.Reload() - if err != nil { - t.Error(err) + if len(*authJWTConf.Config["unittest"]) != 1 { + t.Errorf("Length of auth_jwt rule should be 1 not %d", len(*authJWTConf.Config["unittest"])) } +} - if config.ModuleConfig.Log.OpenDebug == !debug { - t.Error("something wrong with Config.Reload()") +func TestAuthJWTConfLoadKeyInvalid(t *testing.T) { + _, err := AuthJWTConfLoad("./testdata/mod_auth_jwt/auth_jwt_rule.data.key_invalid") + if err == nil || err.Error() != "square/go-jose: unknown json web key type 'invalid'" { + t.Errorf("AuthJWTConfLoad() error: %v", err) } } diff --git a/bfe_modules/mod_auth_jwt/config/product_config_test.go b/bfe_modules/mod_auth_jwt/auth_jwt_table.go similarity index 50% rename from bfe_modules/mod_auth_jwt/config/product_config_test.go rename to bfe_modules/mod_auth_jwt/auth_jwt_table.go index 247dd2966..f7854918b 100644 --- a/bfe_modules/mod_auth_jwt/config/product_config_test.go +++ b/bfe_modules/mod_auth_jwt/auth_jwt_table.go @@ -12,30 +12,36 @@ // See the License for the specific language governing permissions and // limitations under the License. -package config +package mod_auth_jwt import ( - "testing" + "sync" ) -import ( - "github.com/baidu/bfe/bfe_util" -) +type AuthJWTRuleTable struct { + lock sync.RWMutex + version string + productRules ProductRules +} -func TestNewProductConfig_1(t *testing.T) { - config, err := NewProductConfig(bfe_util.ConfPathProc("product_config.data", confRoot)) - if err != nil { - t.Error(err) - } +func NewAuthJWTRuleTable() *AuthJWTRuleTable { + t := new(AuthJWTRuleTable) + t.productRules = make(ProductRules) + return t +} - t.Log(config) +func (t *AuthJWTRuleTable) Update(conf AuthJWTConf) { + t.lock.Lock() + t.version = conf.Version + t.productRules = conf.Config + t.lock.Unlock() } -func TestNewProductConfig_2(t *testing.T) { - _, err := NewProductConfig(bfe_util.ConfPathProc("product_config_invalid_type.data", confRoot)) - if err == nil { - t.Errorf("something wrong with NewProductConfig(invalid type)") - } +func (t *AuthJWTRuleTable) Search(product string) (*RuleList, bool) { + t.lock.RLock() + productRules := t.productRules + t.lock.RUnlock() - t.Log(err) + rules, ok := productRules[product] + return rules, ok } diff --git a/bfe_modules/mod_auth_jwt/conf_mod_auth_jwt.go b/bfe_modules/mod_auth_jwt/conf_mod_auth_jwt.go new file mode 100644 index 000000000..0bea5c899 --- /dev/null +++ b/bfe_modules/mod_auth_jwt/conf_mod_auth_jwt.go @@ -0,0 +1,61 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_jwt + +import ( + "github.com/baidu/go-lib/log" + gcfg "gopkg.in/gcfg.v1" +) + +import ( + "github.com/baidu/bfe/bfe_util" +) + +type ConfModAuthJWT struct { + Basic struct { + DataPath string + } + + Log struct { + OpenDebug bool + } +} + +func ConfLoad(filePath string, confRoot string) (*ConfModAuthJWT, error) { + var err error + var cfg ConfModAuthJWT + + err = gcfg.ReadFileInto(&cfg, filePath) + if err != nil { + return nil, err + } + + err = cfg.Check(confRoot) + if err != nil { + return nil, err + } + + return &cfg, nil +} + +func (cfg *ConfModAuthJWT) Check(confRoot string) error { + if cfg.Basic.DataPath == "" { + log.Logger.Warn("ModAuthJWT.DataPath not set, use default value") + cfg.Basic.DataPath = "mod_auth_jwt/auth_jwt_rule.data" + } + + cfg.Basic.DataPath = bfe_util.ConfPathProc(cfg.Basic.DataPath, confRoot) + return nil +} diff --git a/bfe_modules/mod_auth_jwt/config/auth_config_test.go b/bfe_modules/mod_auth_jwt/conf_mod_auth_jwt_test.go similarity index 65% rename from bfe_modules/mod_auth_jwt/config/auth_config_test.go rename to bfe_modules/mod_auth_jwt/conf_mod_auth_jwt_test.go index 222732488..d479781d4 100644 --- a/bfe_modules/mod_auth_jwt/config/auth_config_test.go +++ b/bfe_modules/mod_auth_jwt/conf_mod_auth_jwt_test.go @@ -12,20 +12,20 @@ // See the License for the specific language governing permissions and // limitations under the License. -package config +package mod_auth_jwt import ( "testing" ) -import ( - "github.com/baidu/bfe/bfe_util" -) - -func TestAuthConfig_BuildSecret(t *testing.T) { - config := &AuthConfig{SecretPath: bfe_util.ConfPathProc("secret_jws_valid_1.key", confRoot)} - err := config.BuildSecret() +func TestConfLoad(t *testing.T) { + config, err := ConfLoad("./testdata/mod_auth_jwt/mod_auth_jwt.conf", "") if err != nil { - t.Error(err) + t.Errorf("ConfLoad() error: %v", err) + return + } + + if config.Basic.DataPath != "mod_auth_jwt/auth_jwt_rule.data" { + t.Errorf("DataPath should be mod_auth_jwt/auth_jwt_rule.data, not %s", config.Basic.DataPath) } } diff --git a/bfe_modules/mod_auth_jwt/config/auth_config.go b/bfe_modules/mod_auth_jwt/config/auth_config.go deleted file mode 100644 index 230832421..000000000 --- a/bfe_modules/mod_auth_jwt/config/auth_config.go +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package config - -import ( - "io/ioutil" -) - -import ( - "gopkg.in/square/go-jose.v2" -) - -// auth config (common in module config & product config) -type AuthConfig struct { - Secret *jose.JSONWebKey - SecretPath string - EnabledHeaderClaims bool - ValidateNested bool - ValidateClaimExp bool - ValidateClaimNbf bool - ValidateClaimIss string - ValidateClaimSub string - ValidateClaimAud string -} - -func (config *AuthConfig) BuildSecret() (err error) { - config.Secret = new(jose.JSONWebKey) - - secret, err := ioutil.ReadFile(config.SecretPath) - if err != nil { - return err - } - - return config.Secret.UnmarshalJSON(secret) -} diff --git a/bfe_modules/mod_auth_jwt/config/config.go b/bfe_modules/mod_auth_jwt/config/config.go deleted file mode 100644 index 8e9a0d103..000000000 --- a/bfe_modules/mod_auth_jwt/config/config.go +++ /dev/null @@ -1,138 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package config - -import ( - "fmt" - "reflect" - "strings" - "sync" -) - -var ( - invalid = reflect.Value{} -) - -type Config struct { - lock sync.RWMutex - moduleConfig reflect.Value - ModuleConfig *ModuleConfig - ProductConfig *ProductConfig -} - -func New(path string) (config *Config, err error) { - config = new(Config) - config.ModuleConfig, err = NewModuleConfig(path) - if err != nil { - return nil, err - } - - config.ProductConfig, err = NewProductConfig(config.ModuleConfig.Basic.ProductConfigPath) - if err != nil { - return nil, err - } - - err = config.init() - if err != nil { - return nil, err - } - - return config, nil -} - -// initialize for the config -func (config *Config) init() (err error) { - config.moduleConfig = reflect.Indirect(reflect.ValueOf(config.ModuleConfig)) - config.ProductConfig.Merge(config.ModuleConfig) - - err = config.Check() - if err != nil { - return err - } - - return nil -} - -// Check checks whether the config item were valid -func (config *Config) Check() (err error) { - for product, rule := range config.ProductConfig.Config { - if len(rule.SecretPath) == 0 { - return fmt.Errorf("required parameter `SecretPath` for product rule missed (product: %s)", product) - } - } - - return nil -} - -// Update updates config by the given new path -func (config *Config) Update(path string) (err error) { - config.lock.Lock() - defer config.lock.Unlock() - - // ensures atomicity - originModuleConfig := *config.ModuleConfig - err = config.ModuleConfig.Update(path) - if err != nil { - return err - } - - err = config.ProductConfig.Update(config.ModuleConfig.Basic.ProductConfigPath) - if err != nil { - *config.ModuleConfig = originModuleConfig - return err - } - - err = config.init() - if err != nil { - *config.ModuleConfig = originModuleConfig - return err - } - - return nil -} - -// Reload reloads config -func (config *Config) Reload() (err error) { - return config.Update(config.ModuleConfig.path) -} - -// Search searches auth rule for a product -func (config *Config) Search(name string) (rule *AuthRule, ok bool) { - config.lock.RLock() - defer config.lock.RUnlock() - - rule, ok = config.ProductConfig.Config[name] - - return rule, ok -} - -// Get gets member from ModuleConfig with RLock -func (config *Config) Get(name string) (v reflect.Value, ok bool) { - config.lock.RLock() - defer config.lock.RUnlock() - - v = config.moduleConfig - getters := strings.Split(name, ".") - - // support for getter as a.b.c - for _, getter := range getters { - v = v.FieldByName(getter) - if !v.IsValid() { - return invalid, false - } - } - - return v, true -} diff --git a/bfe_modules/mod_auth_jwt/config/module_config.go b/bfe_modules/mod_auth_jwt/config/module_config.go deleted file mode 100644 index fe2282473..000000000 --- a/bfe_modules/mod_auth_jwt/config/module_config.go +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package config - -import ( - "fmt" - "path/filepath" -) - -import ( - "gopkg.in/gcfg.v1" -) - -import ( - "github.com/baidu/bfe/bfe_util" -) - -// module config -type ModuleConfig struct { - path string // the path of config file - root string // the directory of `path` - - Basic struct { - AuthConfig - ProductConfigPath string - } - - Log struct { - OpenDebug bool - } -} - -func NewModuleConfig(path string) (config *ModuleConfig, err error) { - config = new(ModuleConfig) - - err = config.Update(path) - if err != nil { - return nil, err - } - - return config, nil -} - -// Update updates config from the given new path -func (config *ModuleConfig) Update(path string) (err error) { - root, _ := filepath.Split(path) - // ensures atomicity - ptr, config := config, &ModuleConfig{path: path, root: root} - err = gcfg.ReadFileInto(config, path) - if err != nil { - return err - } - - // perform check action - err = config.Check() - if err != nil { - return err - } - - // join the path parameters - config.Basic.ProductConfigPath = bfe_util.ConfPathProc(config.Basic.ProductConfigPath, config.root) - if len(config.Basic.SecretPath) > 0 { - config.Basic.SecretPath = bfe_util.ConfPathProc(config.Basic.SecretPath, config.root) - // build secret as JSON Web Key - err = config.Basic.AuthConfig.BuildSecret() - if err != nil { - return err - } - } - - *ptr = *config // ensures atomicity - - return nil -} - -// Reload reloads config from config.path -func (config *ModuleConfig) Reload() (err error) { - return config.Update(config.path) -} - -// Check checks if the config was valid -func (config *ModuleConfig) Check() (err error) { - secretPath := config.Basic.SecretPath - productConfigPath := config.Basic.ProductConfigPath - - if len(productConfigPath) == 0 { - return fmt.Errorf("required config parameter `ProductConfigPath` missed") - } - - if len(secretPath) > 0 { - err = AssertsFile(bfe_util.ConfPathProc(config.Basic.SecretPath, config.root)) - if err != nil { - return err - } - } - - return AssertsFile(bfe_util.ConfPathProc(config.Basic.ProductConfigPath, config.root)) -} diff --git a/bfe_modules/mod_auth_jwt/config/module_config_test.go b/bfe_modules/mod_auth_jwt/config/module_config_test.go deleted file mode 100644 index 39c8bb79a..000000000 --- a/bfe_modules/mod_auth_jwt/config/module_config_test.go +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package config - -import ( - "testing" -) - -import ( - "github.com/baidu/bfe/bfe_util" -) - -func TestNewModuleConfig_1(t *testing.T) { - config, err := NewModuleConfig(bfe_util.ConfPathProc("mod_auth_jwt.conf", confRoot)) - if err != nil { - t.Error(err) - } - - t.Log(config) -} - -func TestNewModuleConfig_2(t *testing.T) { - _, err := NewModuleConfig(bfe_util.ConfPathProc("module_config_empty.data", confRoot)) - if err == nil { - t.Errorf("loading module config without required parameter should be failed") - } - - t.Log(err) -} - -func TestNewModuleConfig_3(t *testing.T) { - _, err := NewModuleConfig(bfe_util.ConfPathProc("module_config_invalid.data", confRoot)) - if err == nil { - t.Errorf("loading module config with invalid parameter value should be failed") - } - - t.Log(err) -} diff --git a/bfe_modules/mod_auth_jwt/config/product_config.go b/bfe_modules/mod_auth_jwt/config/product_config.go deleted file mode 100644 index 5b31a1604..000000000 --- a/bfe_modules/mod_auth_jwt/config/product_config.go +++ /dev/null @@ -1,192 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package config - -import ( - "encoding/json" - "fmt" - "os" - "path/filepath" - "reflect" -) - -import ( - "github.com/baidu/bfe/bfe_basic/condition" - "github.com/baidu/bfe/bfe_util" -) - -// auth rule (config for each product) -type AuthRule struct { - AuthConfig - keys []string // keys that represented explicitly in config file - Cond condition.Condition -} - -// product config -type ProductConfig struct { - path string // config file path - root string // the directory of `path` - Version string - Config map[string]*AuthRule -} - -func NewProductConfig(path string) (config *ProductConfig, err error) { - config = new(ProductConfig) - - err = config.Update(path) - if err != nil { - return nil, err - } - - return config, nil -} - -// Update updates config from the given new path -func (config *ProductConfig) Update(path string) (err error) { - file, err := os.Open(path) - if err != nil { - return err - } - - defer file.Close() - - data := make(map[string]interface{}) - err = json.NewDecoder(file).Decode(&data) - if err != nil { - return err - } - - root, _ := filepath.Split(path) - // ensures atomicity - ptr, config := config, &ProductConfig{root: root, path: path} - - // convert map to struct ProductConfig - err = config.convert(data) - if err != nil { - return err - } - - // perform check action - err = config.Check() - if err != nil { - return err - } - - *ptr = *config // ensures atomicity - - return nil -} - -// Reload reloads config from config.path -func (config *ProductConfig) Reload() (err error) { - return config.Update(config.path) -} - -// convert converts map to ProductConfig and update to self -func (config *ProductConfig) convert(m map[string]interface{}) (err error) { - version, ok := m["Version"].(string) - if !ok { - return fmt.Errorf("invalid value type for config parameter `Version`, expected string") - } - - config.Version = version - - // {product: rule} - rules, ok := m["Config"].(map[string]interface{}) - if !ok { - return fmt.Errorf("invalid value type for config parameter `Config`, expected map[string]interface{}") - } - - newConfig := make(map[string]*AuthRule, len(rules)) - - for product, rule := range rules { - ruleMap, ok := rule.(map[string]interface{}) - if !ok { - return fmt.Errorf("invalid value type for value of `Config`, expected map[string]interface{}") - } - - condStr, ok := ruleMap["Cond"].(string) - if !ok { - return fmt.Errorf("invalid value type for `Cond` in product rule: %s", product) - } - - // build condition - cond, err := condition.Build(condStr) - if err != nil { - return err - } - - authRule := &AuthRule{keys: MapKeys(ruleMap), Cond: cond} - err = MapConvert(ruleMap, &authRule.AuthConfig) // convert ruleMap to struct AuthConfig - if err != nil { - return err - } - - // join the path parameter - if len(authRule.SecretPath) > 0 { - authRule.SecretPath = bfe_util.ConfPathProc(authRule.SecretPath, config.root) - } - - newConfig[product] = authRule - } - - config.Config = newConfig - - return nil -} - -// Check checks whether the config item were valid or not -func (config *ProductConfig) Check() (err error) { - for _, rule := range config.Config { - if len(rule.SecretPath) == 0 { - continue - } - - err = AssertsFile(rule.SecretPath) - if err != nil { - return err - } - - err = rule.BuildSecret() - if err != nil { - return err - } - } - - return nil -} - -// Merge merging missed AuthRule item for each product from ModuleConfig -func (config *ProductConfig) Merge(moduleConfig *ModuleConfig) { - src := reflect.ValueOf(moduleConfig.Basic.AuthConfig) - - for _, rule := range config.Config { - dst := reflect.Indirect(reflect.ValueOf(&rule.AuthConfig)) - - for i, l := 0, src.NumField(); i < l; i++ { - field := src.Type().Field(i) - target := dst.FieldByName(field.Name) - if Contains(rule.keys, field.Name) || !target.CanSet() { - continue - } - - if field.Name == "Secret" && rule.SecretPath != moduleConfig.Basic.SecretPath { - continue - } - - target.Set(src.FieldByName(field.Name)) - } - } -} diff --git a/bfe_modules/mod_auth_jwt/config/utils.go b/bfe_modules/mod_auth_jwt/config/utils.go deleted file mode 100644 index 618c37077..000000000 --- a/bfe_modules/mod_auth_jwt/config/utils.go +++ /dev/null @@ -1,87 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package config - -import ( - "fmt" - "os" - "reflect" -) - -// AssertsFile asserts whether a path was a valid file path or not -func AssertsFile(path string) (err error) { - file, err := os.Stat(path) - if err != nil { - return err - } - - if file.IsDir() { - return fmt.Errorf("%s not a valid file path", path) - } - - return nil -} - -// MapKeys returns the keys of a map -func MapKeys(m map[string]interface{}) (keys []string) { - keys = make([]string, 0, len(m)) - - for key := range m { - keys = append(keys, key) - } - - return keys -} - -// MapConvert converts map to struct -func MapConvert(m map[string]interface{}, v interface{}) (err error) { - dst := reflect.ValueOf(v) - - if dst.Kind() != reflect.Ptr { - return fmt.Errorf("target should be a pointer to struct") - } - - dst = reflect.Indirect(dst) - - for i, l := 0, dst.NumField(); i < l; i++ { - tField := dst.Type().Field(i) - vField := dst.FieldByName(tField.Name) - - v, ok := m[tField.Name] - if !(ok && vField.CanSet()) { - continue - } - - convertV := reflect.ValueOf(v) - t0, t1 := convertV.Type(), vField.Type() - if t0 != t1 { - return fmt.Errorf("field %s: cannot read type %+v into %+v", tField.Name, t0, t1) - } - - vField.Set(convertV) - } - return nil -} - -// Contains returns whether v in target or not -func Contains(target []string, v string) bool { - for _, v0 := range target { - if v == v0 { - return true - } - } - - return false -} diff --git a/bfe_modules/mod_auth_jwt/config/utils_test.go b/bfe_modules/mod_auth_jwt/config/utils_test.go deleted file mode 100644 index 20e7e3bdd..000000000 --- a/bfe_modules/mod_auth_jwt/config/utils_test.go +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package config - -import ( - "testing" -) - -func TestAssertsFile(t *testing.T) { - err := AssertsFile("./") - if err == nil { - t.Errorf("Bad assertion: path ./ was a directory") - } - - err = AssertsFile("./utils.go") - if err != nil { - t.Errorf("Bad assertion: %+v", err) - } -} - -func TestMapKeys(t *testing.T) { - m := map[string]interface{}{ - "a": 0, - "b": 1, - "c": 2, - } - - keys := MapKeys(m) - t.Log(keys) - if len(keys) != 3 { - t.Errorf("Bad result of MapKeys: %+v", keys) - } -} - -func TestMapConvert(t *testing.T) { - type testStruct struct { - A int - B bool - C string - } - m := map[string]interface{}{ - "A": 1, - "B": true, - "C": "string", - } - target := testStruct{} - - err := MapConvert(m, &target) - if err != nil { - t.Error(err) - } - t.Log(target) - - target = testStruct{} - err = MapConvert(m, target) - if err == nil { - t.Errorf("something wrong with MapConvert(non-ptr)") - } -} - -func TestContains(t *testing.T) { - target := []string{"a", "b", "c"} - if !Contains(target, "a") || Contains(target, "d") { - t.Errorf("something wrong with Contains()") - } -} diff --git a/bfe_modules/mod_auth_jwt/jwt/claim_getter.go b/bfe_modules/mod_auth_jwt/jwt/claim_getter.go deleted file mode 100644 index af1d73fcb..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/claim_getter.go +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package jwt - -import "errors" - -type Claims struct { - header map[string]interface{} - payload map[string]interface{} - enabledHeader bool -} - -// get claim from JWT header and payload(if enabledPayload was set to true) -func (context *Claims) Claim(name string) (claim interface{}, ok bool) { - if context.payload != nil { - // payload maybe nil - if claim, ok := context.payload[name]; ok { - return claim, true - } - } - - if context.enabledHeader { - // header always not nil - claim, ok = context.header[name] - return claim, ok - } - - return nil, false -} - -// get & convert -func (context *Claims) GetInt64(name string) (claim interface{}, value int64, ok bool) { - claim, ok = context.Claim(name) - if !ok { - return nil, 0, false - } - - if value, ok = claim.(int64); ok { - return claim, value, true - } - - if floatV, ok := claim.(float64); ok { - // able to be converted - return claim, int64(floatV), true - } - - return claim, 0, false -} - -func (context *Claims) GetString(name string) (claim interface{}, value string, ok bool) { - claim, ok = context.Claim(name) - if !ok { - return nil, "", false - } - if value, ok = claim.(string); ok { - return claim, value, true - } - return claim, "", false -} - -// expires -func (context *Claims) Exp() (claim interface{}, exp int64, ok bool) { - return context.GetInt64("exp") -} - -// not-before -func (context *Claims) Nbf() (claim interface{}, nbf int64, ok bool) { - return context.GetInt64("exp") -} - -// issuer -func (context *Claims) Iss() (claim interface{}, iss string, ok bool) { - return context.GetString("iss") -} - -// audience -func (context *Claims) Aud() (claim interface{}, aud string, ok bool) { - return context.GetString("aud") -} - -// subject -func (context *Claims) Sub() (claim interface{}, sub string, ok bool) { - return context.GetString("sub") -} - -func NewClaims(header, payload map[string]interface{}, enabledHeader bool) (claims *Claims, err error) { - if header == nil { - return nil, errors.New("Claims: header should not be nil. ") - } - return &Claims{header, payload, enabledHeader}, nil -} diff --git a/bfe_modules/mod_auth_jwt/jwt/claim_getter_test.go b/bfe_modules/mod_auth_jwt/jwt/claim_getter_test.go deleted file mode 100644 index bc0f493dd..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/claim_getter_test.go +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package jwt - -import ( - "testing" - "time" -) - -func TestNewClaims(t *testing.T) { - header := map[string]interface{}{ - "iss": "issuer", - "exp": time.Now().Unix(), - } - - payload := map[string]interface{}{ - "aud": "audience", - } - - claims, _ := NewClaims(header, payload, true) - - if _, _, ok := claims.Exp(); !ok { - t.Error("failed to get claim from header") - } - - if claim, exp, ok := claims.Exp(); !ok { - t.Logf("%+v, %+v", claim, exp) - t.Error("failed to convert claim type") - } -} diff --git a/bfe_modules/mod_auth_jwt/jwt/jwe.go b/bfe_modules/mod_auth_jwt/jwt/jwe.go deleted file mode 100644 index 41ec9ccfc..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/jwe.go +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -// Json Web Encryption -// see: https://tools.ietf.org/html/rfc7516 -package jwt - -import ( - "fmt" - "strings" -) - -import ( - "gopkg.in/square/go-jose.v2" -) - -type JWE struct { - Raw string - Header *Base64URLEncodedJSON - Payload *Base64URLEncodedJSON - EncryptedKey *Base64URLEncoded - InitialVector *Base64URLEncoded - CipherText *Base64URLEncoded - AuthenticationTag *Base64URLEncoded - Secret *jose.JSONWebKey -} - -func (mJWE *JWE) Plaintext() (plaintext []byte, err error) { - enc, err := jose.ParseEncrypted(mJWE.Raw) - if err != nil { - return nil, err - } - - return enc.Decrypt(mJWE.Secret) -} - -func (mJWE *JWE) BasicCheck() (err error) { - _, err = mJWE.Plaintext() - - return err -} - -func NewJWE(token string, secret *jose.JSONWebKey) (mJWE *JWE, err error) { - parts := strings.Split(token, ".") - if len(parts) != 5 { - return nil, fmt.Errorf("not a JWE token: %s", token) - } - - mJWE = &JWE{Raw: token, Secret: secret} - mJWE.Header, err = NewBase64URLEncodedJSON(parts[0], true) - if err != nil { - return nil, err - } - - mJWE.EncryptedKey, err = NewBase64URLEncoded(parts[1]) - if err != nil { - return nil, err - } - - mJWE.InitialVector, err = NewBase64URLEncoded(parts[2]) - if err != nil { - return nil, err - } - - mJWE.CipherText, err = NewBase64URLEncoded(parts[3]) - if err != nil { - return nil, err - } - - mJWE.AuthenticationTag, err = NewBase64URLEncoded(parts[4]) - if err != nil { - return nil, err - } - - // parse payload for lookup claims or nested JWT - // error ignored parsing payload this stage - plaintext, err := mJWE.Plaintext() - if err == nil { - // payload can be not a base64URL-encoded json object - mJWE.Payload, _ = NewBase64URLEncodedJSON(string(plaintext), false) - } - - return mJWE, nil -} diff --git a/bfe_modules/mod_auth_jwt/jwt/jwe_test.go b/bfe_modules/mod_auth_jwt/jwt/jwe_test.go deleted file mode 100644 index a7d536f9a..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/jwe_test.go +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package jwt - -import ( - "io/ioutil" - "testing" -) - -import ( - "gopkg.in/square/go-jose.v2" -) - -func TestNewJWE(t *testing.T) { - token, _ := ioutil.ReadFile("./../testdata/mod_auth_jwt/jwe_valid_1.txt") - secret, _ := ioutil.ReadFile("./../testdata/mod_auth_jwt/secret_jwe_valid_1.key") - key := new(jose.JSONWebKey) - err := key.UnmarshalJSON(secret) - if err != nil { - t.Fatal(err) - } - - mJWE, err := NewJWE(string(token), key) - if err != nil { - t.Fatal(err) - } - - plaintext, _ := mJWE.Plaintext() - t.Log(string(plaintext)) - t.Log(mJWE.Payload) -} diff --git a/bfe_modules/mod_auth_jwt/jwt/jws.go b/bfe_modules/mod_auth_jwt/jwt/jws.go deleted file mode 100644 index 632e77458..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/jws.go +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -// Json Web signature -// see: https://tools.ietf.org/html/rfc7515 -package jwt - -import ( - "fmt" - "strings" -) - -import ( - "gopkg.in/square/go-jose.v2" -) - -type JWS struct { - Raw string - Header *Base64URLEncodedJSON - Payload *Base64URLEncodedJSON - Signature *Base64URLEncoded - Secret *jose.JSONWebKey -} - -func (mJWS *JWS) BasicCheck() (err error) { - sig, err := jose.ParseSigned(mJWS.Raw) - if err != nil { - return err - } - - var key = mJWS.Secret.Key - if _, ok := key.([]byte); !ok { - key = mJWS.Secret.Public() - } - - _, err = sig.Verify(key) - - return err -} - -func NewJWS(token string, secret *jose.JSONWebKey) (mJWS *JWS, err error) { - parts := strings.Split(token, ".") - if len(parts) != 3 { - return nil, fmt.Errorf("not a JWS token: %s", token) - } - - mJWS = &JWS{Raw: token, Secret: secret} - mJWS.Header, err = NewBase64URLEncodedJSON(parts[0], true) - if err != nil { - return nil, err - } - - // do not report json error - // it may be limited to the header parameter 'cty' - mJWS.Payload, err = NewBase64URLEncodedJSON(parts[1], false) - if err != nil { - return nil, err - } - - mJWS.Signature, err = NewBase64URLEncoded(parts[2]) - if err != nil { - return nil, err - } - - return mJWS, nil -} diff --git a/bfe_modules/mod_auth_jwt/jwt/jws_test.go b/bfe_modules/mod_auth_jwt/jwt/jws_test.go deleted file mode 100644 index f07151f04..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/jws_test.go +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package jwt - -import ( - "io/ioutil" - "testing" -) - -func TestNewJWS(t *testing.T) { - token, _ := ioutil.ReadFile("./../testdata/mod_auth_jwt/test_jws_HS256.txt") - mJWS, err := NewJWS(string(token), nil) - if err != nil { - t.Fatal(err) - } - - t.Log(mJWS, mJWS.Header.Decoded) -} diff --git a/bfe_modules/mod_auth_jwt/jwt/jwt.go b/bfe_modules/mod_auth_jwt/jwt/jwt.go deleted file mode 100644 index 6371eb4f6..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/jwt.go +++ /dev/null @@ -1,225 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -// Json Web Token -// see: https://tools.ietf.org/html/rfc7519 -package jwt - -import ( - "fmt" - "strings" - "time" -) - -import ( - "github.com/baidu/bfe/bfe_modules/mod_auth_jwt/config" -) - -type tokenValidator interface { - BasicCheck() error -} - -type JWT struct { - JWE *JWE - JWS *JWS - Claims *Claims - Nested *JWT // nested jwt - config *config.AuthConfig - context tokenValidator // current token context -} - -// build token as JWS object -func (mJWT *JWT) buildJWS(token string) (err error) { - mJWT.JWS, err = NewJWS(token, mJWT.config.Secret) - if err != nil { - return err - } - - mJWT.context = mJWT.JWS - mJWT.Claims, err = NewClaims(mJWT.JWS.Header.Decoded, - mJWT.JWS.Payload.Decoded, mJWT.config.EnabledHeaderClaims) - - if mJWT.JWS.Header.Decoded["cty"] == "JWT" { - // build nested JWT - // error ignored because the jwk for the nested jwt may be different - mJWT.Nested, _ = NewJWT(mJWT.JWS.Payload.Raw, mJWT.config) - } - - return err -} - -// build token as JWE object -func (mJWT *JWT) buildJWE(token string) (err error) { - mJWT.JWE, err = NewJWE(token, mJWT.config.Secret) - if err != nil { - return err - } - - mJWT.context = mJWT.JWE - var payload map[string]interface{} = nil - if mJWT.JWE.Payload != nil { - payload = mJWT.JWE.Payload.Decoded - } - mJWT.Claims, err = NewClaims(mJWT.JWE.Header.Decoded, payload, - mJWT.config.EnabledHeaderClaims) - - if mJWT.JWE.Header.Decoded["cty"] == "JWT" && mJWT.JWE.Payload != nil { - // build nested JWT - // error ignored because the jwk for the nested jwt may be different - mJWT.Nested, _ = NewJWT(mJWT.JWE.Payload.Raw, mJWT.config) - } - - return err -} - -// exported validation interface -func (mJWT *JWT) Validate() (err error) { - // perform basic check - err = mJWT.context.BasicCheck() - if err != nil { - return err - } - - // validate for claims - err = mJWT.validateClaims() - if err != nil { - return err - } - - if mJWT.Nested != nil && mJWT.config.ValidateNested { - // validate for nested JWT - return mJWT.Nested.Validate() - } - - return nil -} - -func (mJWT *JWT) validateClaims() (err error) { - if err = mJWT.validateExp(); err != nil { - return err - } - - if err = mJWT.validateNbf(); err != nil { - return err - } - - if err = mJWT.validateIss(); err != nil { - return err - } - - if err = mJWT.validateAud(); err != nil { - return err - } - - if err = mJWT.validateSub(); err != nil { - return err - } - - return nil -} - -func (mJWT *JWT) validateExp() (err error) { - if !mJWT.config.ValidateClaimExp { - return nil - } - - claim, exp, ok := mJWT.Claims.Exp() - if !ok { - if claim == nil { - // claim not present - return nil - } - return fmt.Errorf("invalid value for exp claim: %s", claim) - } - - if time.Now().After(time.Unix(exp, 0)) { - return fmt.Errorf("the access token has been expired") - } - - return nil -} - -func (mJWT *JWT) validateNbf() (err error) { - if !mJWT.config.ValidateClaimNbf { - return nil - } - - claim, nbf, ok := mJWT.Claims.Nbf() - if !ok { - if claim == nil { - return nil - } - return fmt.Errorf("invalid value for nbf claim: %s", claim) - } - - nbfTime := time.Unix(nbf, 0) - if time.Now().Before(nbfTime) { - return fmt.Errorf("this access token could not be accepted now, try again on %s", nbfTime) - } - - return nil -} - -func (mJWT *JWT) validateEqual(name string, target interface{}) (err error) { - claim, ok := mJWT.Claims.Claim(name) - if !ok { - return nil - } - - if claim != target { - return fmt.Errorf("claim validation failed: %s", name) - } - - return nil -} - -func (mJWT *JWT) validateIss() (err error) { - iss := mJWT.config.ValidateClaimIss - if len(iss) == 0 { - return nil - } - return mJWT.validateEqual("iss", iss) -} - -func (mJWT *JWT) validateAud() (err error) { - aud := mJWT.config.ValidateClaimAud - if len(aud) == 0 { - return nil - } - return mJWT.validateEqual("aud", aud) -} - -func (mJWT *JWT) validateSub() (err error) { - sub := mJWT.config.ValidateClaimSub - if len(sub) == 0 { - return nil - } - return mJWT.validateEqual("sub", sub) -} - -func NewJWT(token string, conf *config.AuthConfig) (mJWT *JWT, err error) { - mJWT, length := &JWT{config: conf}, len(strings.Split(token, ".")) - - if length == 3 { - err = mJWT.buildJWS(token) - } else if length == 5 { - err = mJWT.buildJWE(token) - } - - if err != nil { - return nil, err - } - - return mJWT, nil -} diff --git a/bfe_modules/mod_auth_jwt/jwt/jwt_test.go b/bfe_modules/mod_auth_jwt/jwt/jwt_test.go deleted file mode 100644 index 10492f25d..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/jwt_test.go +++ /dev/null @@ -1,88 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package jwt - -import ( - "fmt" - "io/ioutil" - "testing" -) - -import ( - "github.com/baidu/bfe/bfe_modules/mod_auth_jwt/config" -) - -var ( - conf = new(config.AuthConfig) - - jwsAlgSet = []string{ - "HS256", "HS384", "HS512", "RS256", - "RS384", "RS512", "ES256", "ES384", - "ES512", "PS256", "PS384", "PS512", - } - - jweAlgSet = []string{ - "dir", "RSA1_5", "RSA-OAEP", "RSA-OAEP-256", - "A128KW", "A192KW", "A256KW", "A128GCMKW", - "A192GCMKW", "A256GCMKW", "ECDH-ES", - "ECDH-ES+A128KW", "ECDH-ES+A192KW", - "ECDH-ES+A256KW", "PBES2-HS256+A128KW", - "PBES2-HS384+A192KW", "PBES2-HS512+A256KW", - } -) - -func TestJWSValidate(t *testing.T) { - for _, name := range jwsAlgSet { - tokenPath := fmt.Sprintf("./../testdata/mod_auth_jwt/test_jws_%s.txt", name) - conf.SecretPath = fmt.Sprintf("./../testdata/mod_auth_jwt/secret_test_jws_%s.key", name) - - token, _ := ioutil.ReadFile(tokenPath) - err := conf.BuildSecret() - if err != nil { - t.Error(err) - } - - mJWT, err := NewJWT(string(token), conf) - if err != nil { - t.Error(name, err) - } - - if err := mJWT.Validate(); err != nil { - t.Error(name, err) - } - } -} - -func TestJWEValidate(t *testing.T) { - for _, name := range jweAlgSet { - tokenPath := fmt.Sprintf("./../testdata/mod_auth_jwt/test_jwe_%s_A128GCM.txt", name) - conf.SecretPath = fmt.Sprintf("./../testdata/mod_auth_jwt/secret_test_jwe_%s_A128GCM.key", name) - - token, _ := ioutil.ReadFile(tokenPath) - err := conf.BuildSecret() - if err != nil { - t.Error(err) - } - - mJWT, err := NewJWT(string(token), conf) - if err != nil { - t.Error(name, err) - } - - if err := mJWT.Validate(); err != nil { - t.Error(name, err) - } - } -} diff --git a/bfe_modules/mod_auth_jwt/jwt/utils.go b/bfe_modules/mod_auth_jwt/jwt/utils.go deleted file mode 100644 index 87bb4da4b..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/utils.go +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package jwt - -import ( - "encoding/base64" - "encoding/json" -) - -// base64url-encoded string -type Base64URLEncoded struct { - Raw string - Decoded []byte -} - -// base64url-encoded json object -type Base64URLEncodedJSON struct { - Raw string - Decoded map[string]interface{} - DecodedBase64URL []byte -} - -var ( - Base64URLDecode = base64.RawURLEncoding.DecodeString -) - -func NewBase64URLEncoded(raw string) (b *Base64URLEncoded, err error) { - decoded, err := Base64URLDecode(raw) - if err != nil { - return nil, err - } - - return &Base64URLEncoded{raw, decoded}, nil -} - -func NewBase64URLEncodedJSON(raw string, strict bool) (b *Base64URLEncodedJSON, err error) { - // the parameter 'strict' tells whether json error should be report or not - - bDecoded, err := Base64URLDecode(raw) - if err != nil { - return nil, err - } - - jMap := make(map[string]interface{}) - if err = json.Unmarshal(bDecoded, &jMap); err != nil { - if strict { - return nil, err - } - jMap = nil // in loose mode - } - - return &Base64URLEncodedJSON{raw, jMap, bDecoded}, nil -} diff --git a/bfe_modules/mod_auth_jwt/jwt/utils_test.go b/bfe_modules/mod_auth_jwt/jwt/utils_test.go deleted file mode 100644 index e2f974245..000000000 --- a/bfe_modules/mod_auth_jwt/jwt/utils_test.go +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2019 Baidu, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package jwt - -import ( - "io/ioutil" - "strings" - "testing" -) - -func TestNewBase64URLJson(t *testing.T) { - token, _ := ioutil.ReadFile("./../testdata/mod_auth_jwt/test_jws_HS256.txt") - header := strings.Split(string(token), ".")[0] - obj, err := NewBase64URLEncodedJSON(header, true) - if err != nil { - t.Fatal(err) - } - - t.Log(obj) -} diff --git a/bfe_modules/mod_auth_jwt/mod_auth_jwt.go b/bfe_modules/mod_auth_jwt/mod_auth_jwt.go index f2e70e487..96bb11e5d 100644 --- a/bfe_modules/mod_auth_jwt/mod_auth_jwt.go +++ b/bfe_modules/mod_auth_jwt/mod_auth_jwt.go @@ -15,183 +15,208 @@ package mod_auth_jwt import ( - "bytes" - "errors" - "io/ioutil" + "fmt" "net/url" "strings" ) import ( - "github.com/baidu/bfe/bfe_basic" - "github.com/baidu/bfe/bfe_http" - "github.com/baidu/bfe/bfe_module" - "github.com/baidu/bfe/bfe_modules/mod_auth_jwt/config" - "github.com/baidu/bfe/bfe_modules/mod_auth_jwt/jwt" "github.com/baidu/go-lib/log" "github.com/baidu/go-lib/web-monitor/metrics" "github.com/baidu/go-lib/web-monitor/web_monitor" + jwt "github.com/dgrijalva/jwt-go" +) + +import ( + "github.com/baidu/bfe/bfe_basic" + "github.com/baidu/bfe/bfe_http" + "github.com/baidu/bfe/bfe_module" +) + +const ( + ModAuthJWT = "mod_auth_jwt" ) -type counters struct { - AuthTotal *metrics.Counter - AuthSuccess *metrics.Counter - AuthFailed *metrics.Counter +type ModuleAuthJWTState struct { + ReqAuthRuleHit *metrics.Counter + ReqAuthNoAuthorization *metrics.Counter + ReqAuthAuthorizationFormatErr *metrics.Counter + ReqAuthSuccess *metrics.Counter + ReqAuthFailure *metrics.Counter } type ModuleAuthJWT struct { - counters *counters - metrics *metrics.Metrics - config *config.Config - confPath string + name string + state ModuleAuthJWTState + metrics metrics.Metrics + configPath string + ruleTable *AuthJWTRuleTable } -var Debug bool - -func NewModuleAuthJWT() (module *ModuleAuthJWT) { - module = new(ModuleAuthJWT) - // not initialized yet - module.counters = new(counters) - module.metrics = new(metrics.Metrics) +var ( + openDebug = false +) - return module +func NewModuleAuthJWT() *ModuleAuthJWT { + m := new(ModuleAuthJWT) + m.name = ModAuthJWT + m.metrics.Init(&m.state, ModAuthJWT, 0) + m.ruleTable = NewAuthJWTRuleTable() + return m } -func (module *ModuleAuthJWT) Name() (name string) { - return "mod_auth_jwt" +func (m *ModuleAuthJWT) Name() string { + return m.name } -func (module *ModuleAuthJWT) Init(callbacks *bfe_module.BfeCallbacks, - handlers *web_monitor.WebHandlers, confRoot string) (err error) { - - module.confPath = bfe_module.ModConfPath(confRoot, module.Name()) +func (m *ModuleAuthJWT) loadConfData(query url.Values) error { + path := query.Get("path") + if path == "" { + path = m.configPath + } - // initialization for module config - module.config, err = config.New(module.confPath) + conf, err := AuthJWTConfLoad(path) if err != nil { - return err + return fmt.Errorf("error in AuthJWTConfLoad(%s): %v", path, err) } - debug, _ := module.config.Get("Log.OpenDebug") - Debug = debug.Bool() + m.ruleTable.Update(conf) + return nil +} - // initialization for metrics - err = module.metrics.Init(module.counters, module.Name(), 0) - if err != nil { - return err +func (m *ModuleAuthJWT) getState(params map[string][]string) ([]byte, error) { + s := m.metrics.GetAll() + return s.Format(params) +} + +func (m *ModuleAuthJWT) getStateDiff(params map[string][]string) ([]byte, error) { + s := m.metrics.GetDiff() + return s.Format(params) +} + +func (m *ModuleAuthJWT) monitorHandlers() map[string]interface{} { + handlers := map[string]interface{}{ + m.name: m.getState, + m.name + ".diff": m.getStateDiff, } + return handlers +} - // register filter for auth service - err = callbacks.AddFilter(bfe_module.HandleFoundProduct, module.authService) - if err != nil { - return err +func (m *ModuleAuthJWT) getToken(req *bfe_basic.Request) (string, error) { + authHeader := req.HttpRequest.Header.Get("Authorization") + if authHeader == "" { + m.state.ReqAuthNoAuthorization.Inc(1) + return "", fmt.Errorf("No Authorization header.") } - // register handler for monitor service - err = web_monitor.RegisterHandlers(handlers, web_monitor.WebHandleMonitor, map[string]interface{}{ - module.Name(): module.getMetrics, - module.Name() + ".diff": module.getMetricsDiff, - }) - if err != nil { - return err + authValue := strings.Split(authHeader, " ") + if len(authValue) != 2 { + m.state.ReqAuthAuthorizationFormatErr.Inc(1) + return "", fmt.Errorf("Authorization header format error.") } - // register handler for hot deployment service - err = handlers.RegisterHandler(web_monitor.WebHandleReload, module.Name(), module.reloadService) - if err != nil { - return err + if authValue[0] != "Bearer" { + m.state.ReqAuthAuthorizationFormatErr.Inc(1) + return "", fmt.Errorf("Authorization type[%s] error.", authValue[0]) } - return nil + return authValue[1], nil } -func (module *ModuleAuthJWT) authService(request *bfe_basic.Request) (flag int, response *bfe_http.Response) { - product := request.Route.Product - authConfig, ok := module.config.Search(product) - if !ok || !authConfig.Cond.Match(request) { - if Debug && ok { - log.Logger.Debug("%s found product %s but mismatch with the condition: %s", - module.Name(), product, authConfig.Cond) +func (m *ModuleAuthJWT) validateToken(token string, rule *AuthJWTRule) error { + for _, key := range rule.Keys { + parsedToken, err := jwt.Parse(token, key.provideKey) + if err != nil { + if openDebug { + log.Logger.Debug("%s: parse token error: %v, kid: %s", m.name, err, key.key.KeyID) + } + continue } - return bfe_module.BfeHandlerGoOn, nil + // Both signature and time based claims "exp, iat, nbf" are valid. + if parsedToken.Valid && parsedToken.Claims.Valid() == nil { + return nil + } } - if Debug { - log.Logger.Debug("%s receive an auth request (product: %s)", module.Name(), product) + return fmt.Errorf("token[%s] invalid", token) +} + +func (m *ModuleAuthJWT) checkAuthCredentials(req *bfe_basic.Request, rule *AuthJWTRule) error { + token, err := m.getToken(req) + if err != nil { + return err } - module.counters.AuthTotal.Inc(1) + return m.validateToken(token, rule) +} - authorization := request.HttpRequest.Header.Get("Authorization") - prefix := "Bearer " - if !strings.HasPrefix(authorization, prefix) { - if Debug { - log.Logger.Debug("%s auth failed: bad token type given (product: %s)", module.Name(), product) - } +func (m *ModuleAuthJWT) createUnauthorizedResp(req *bfe_basic.Request, + rule *AuthJWTRule) *bfe_http.Response { + resp := bfe_basic.CreateInternalResp(req, bfe_http.StatusUnauthorized) + resp.Header.Set("WWW-Authenticate", fmt.Sprintf("Bearer realm=\"%s\"", rule.Realm)) + return resp +} - module.counters.AuthFailed.Inc(1) - // send an unauthorized response - return bfe_module.BfeHandlerResponse, createUnauthorizedResponse( - request, "Bearer type token required.") +func (m *ModuleAuthJWT) authJWTHandler(req *bfe_basic.Request) (int, *bfe_http.Response) { + rules, ok := m.ruleTable.Search(req.Route.Product) + if !ok { + return bfe_module.BfeHandlerGoOn, nil } - token := authorization[len(prefix):] + for _, rule := range *rules { + if rule.Cond.Match(req) { + m.state.ReqAuthRuleHit.Inc(1) - // apply validation for token - err := module.validateToken(token, &authConfig.AuthConfig) - if err != nil { - if Debug { - log.Logger.Debug("%s auth failed: %s (product: %s)", module.Name(), err, product) - } else { - // hide error detail to user - err = errors.New("your access token was rejected") - } + err := m.checkAuthCredentials(req, &rule) + if err != nil { + if openDebug { + log.Logger.Debug("%s: check auth jwt error: %v", m.name, err) + } - module.counters.AuthFailed.Inc(1) - return bfe_module.BfeHandlerResponse, createUnauthorizedResponse( - request, err.Error()) - } + m.state.ReqAuthFailure.Inc(1) + return bfe_module.BfeHandlerResponse, m.createUnauthorizedResp(req, &rule) + } - if Debug { - log.Logger.Debug("%s auth success. (product: %s)", module.Name(), product) + m.state.ReqAuthSuccess.Inc(1) + return bfe_module.BfeHandlerGoOn, nil + } } - module.counters.AuthSuccess.Inc(1) - return bfe_module.BfeHandlerGoOn, nil } -func (module *ModuleAuthJWT) validateToken(token string, config *config.AuthConfig) (err error) { - mJWT, err := jwt.NewJWT(token, config) - if err != nil { - return err - } +func (m *ModuleAuthJWT) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHandlers, + cr string) error { + var err error + var cfg *ConfModAuthJWT - return mJWT.Validate() -} + confPath := bfe_module.ModConfPath(cr, m.name) + if cfg, err = ConfLoad(confPath, cr); err != nil { + return fmt.Errorf("%s: conf load err: %v", m.name, err) + } -func createUnauthorizedResponse(request *bfe_basic.Request, body string) (response *bfe_http.Response) { - response = bfe_basic.CreateInternalResp(request, bfe_http.StatusUnauthorized) - response.Header.Set("WWW-Authenticate", "Bearer") - response.Body = ioutil.NopCloser(bytes.NewBufferString(body)) + m.configPath = cfg.Basic.DataPath + openDebug = cfg.Log.OpenDebug - return response -} + if err = m.loadConfData(nil); err != nil { + return fmt.Errorf("err in loadConfData(): %v", err) + } -func (module *ModuleAuthJWT) getMetrics(params map[string][]string) ([]byte, error) { - return module.metrics.GetAll().Format(params) -} + err = cbs.AddFilter(bfe_module.HandleFoundProduct, m.authJWTHandler) + if err != nil { + return fmt.Errorf("%s.Init(): AddFilter(m.authJWTHandler): %v", m.name, err) + } -func (module *ModuleAuthJWT) getMetricsDiff(params map[string][]string) ([]byte, error) { - return module.metrics.GetDiff().Format(params) -} + err = web_monitor.RegisterHandlers(whs, web_monitor.WebHandleMonitor, m.monitorHandlers()) + if err != nil { + return fmt.Errorf("%s.Init():RegisterHandlers(m.monitorHandlers): %v", m.name, err) + } -func (module *ModuleAuthJWT) reloadService(query url.Values) (err error) { - path := query.Get("path") - if len(path) == 0 { - return module.config.Reload() + err = whs.RegisterHandler(web_monitor.WebHandleReload, m.name, m.loadConfData) + if err != nil { + return fmt.Errorf("%s.Init(): RegisterHandler(m.loadConfData): %v", m.name, err) } - return module.config.Update(path) + return nil } diff --git a/bfe_modules/mod_auth_jwt/mod_auth_jwt_test.go b/bfe_modules/mod_auth_jwt/mod_auth_jwt_test.go index f10d8e800..5932a4b31 100644 --- a/bfe_modules/mod_auth_jwt/mod_auth_jwt_test.go +++ b/bfe_modules/mod_auth_jwt/mod_auth_jwt_test.go @@ -16,77 +16,94 @@ package mod_auth_jwt import ( "fmt" - "io/ioutil" - "os" "testing" ) import ( - "github.com/baidu/bfe/bfe_basic" - "github.com/baidu/bfe/bfe_http" - "github.com/baidu/bfe/bfe_module" "github.com/baidu/go-lib/web-monitor/web_monitor" ) -var ( - request = new(bfe_basic.Request) - module = NewModuleAuthJWT() +import ( + "github.com/baidu/bfe/bfe_basic" + "github.com/baidu/bfe/bfe_http" + "github.com/baidu/bfe/bfe_module" ) -func init() { - httpRequest, err := bfe_http.NewRequest("GET", "http://www.example.org", nil) - if err != nil { - panic(err) - } - request.HttpRequest = httpRequest - request.Session = new(bfe_basic.Session) - callbacks := bfe_module.NewBfeCallbacks() - handlers := web_monitor.NewWebHandlers() - confRoot := "./testdata" - err = module.Init(callbacks, handlers, confRoot) - if err != nil { - panic(err) - } +func TestAuthJWTFileHandlerRuleNotMatched(t *testing.T) { + testModAuthJWT(t, "example.org", "", func( + t *testing.T, m *ModuleAuthJWT, ret int, resp *bfe_http.Response) { + if ret != bfe_module.BfeHandlerGoOn { + t.Errorf("ret should be %d, not %d", bfe_module.BfeHandlerGoOn, ret) + } + }) } -func TestAuthService_valid(t *testing.T) { - products := []string{"jwe_valid_1", "jws_valid_1"} - for _, product := range products { - request.Route.Product = fmt.Sprintf("test_%s", product) - file, err := os.Open(fmt.Sprintf("./testdata/mod_auth_jwt/%s.txt", product)) - if err != nil { - t.Fatal(err) +func TestAuthJWTFileHandlerNoAuthorization(t *testing.T) { + testModAuthJWT(t, "www.example.org", "", func( + t *testing.T, m *ModuleAuthJWT, ret int, resp *bfe_http.Response) { + if ret != bfe_module.BfeHandlerResponse { + t.Errorf("ret should be %d, not %d", bfe_module.BfeHandlerResponse, ret) + return } - token, _ := ioutil.ReadAll(file) - _ = file.Close() - t.Logf("%s", token) - request.HttpRequest.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token)) - flag, response := module.authService(request) - if flag != bfe_module.BfeHandlerGoOn { - t.Logf("%+v", response) - t.Errorf("Expected flag code %d, got %d", bfe_module.BfeHandlerGoOn, flag) + if resp.StatusCode != bfe_http.StatusUnauthorized { + t.Errorf("status code should be %d, not %d", bfe_http.StatusUnauthorized, resp.StatusCode) return } - } + }) } -func TestAuthService_invalid(t *testing.T) { - products := []string{"jwe_invalid_1", "jws_invalid_1"} - for _, product := range products { - request.Route.Product = fmt.Sprintf("test_%s", product) - file, err := os.Open(fmt.Sprintf("./testdata/mod_auth_jwt/%s.txt", product)) - if err != nil { - t.Fatal(err) +func TestAuthJWTFileHandlerTokenInvalid(t *testing.T) { + testModAuthJWT(t, "www.example.org", "INVALID", func( + t *testing.T, m *ModuleAuthJWT, ret int, resp *bfe_http.Response) { + if ret != bfe_module.BfeHandlerResponse { + t.Errorf("ret should be %d, not %d", bfe_module.BfeHandlerResponse, ret) + return } - token, _ := ioutil.ReadAll(file) - _ = file.Close() - t.Logf("%s", token) - request.HttpRequest.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token)) - flag, response := module.authService(request) - if flag != bfe_module.BfeHandlerResponse { - t.Errorf("Expected flag code %d, got %d", bfe_module.BfeHandlerResponse, flag) + if resp.StatusCode != bfe_http.StatusUnauthorized { + t.Errorf("status code should be %d, not %d", bfe_http.StatusUnauthorized, resp.StatusCode) return } - t.Logf("%+v", response) + }) +} + +func TestAuthJWTFileHandlerCorrect(t *testing.T) { + header := "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImtpZCI6IjAwMDEifQ" + payload := "eyJuYW1lIjoiVW5pdHRlc3QiLCJzdWIiOiJVbml0dGVzdCIsImlzcyI6IkJGRSBHYXRld2F5In0" + signature := "NZcVkR0hcJLFrmtFZGlrMUye5wFB2twCKDDRHwn4QQ4" + token := fmt.Sprintf("%s.%s.%s", header, payload, signature) + + testModAuthJWT(t, "www.example.org", token, func( + t *testing.T, m *ModuleAuthJWT, ret int, resp *bfe_http.Response) { + if ret != bfe_module.BfeHandlerGoOn { + t.Errorf("ret should be %d, not %d", bfe_module.BfeHandlerGoOn, ret) + } + }) +} + +func testModAuthJWT(t *testing.T, host string, token string, + check func(*testing.T, *ModuleAuthJWT, int, *bfe_http.Response)) { + // prepare module + m := NewModuleAuthJWT() + cb := bfe_module.NewBfeCallbacks() + wh := web_monitor.NewWebHandlers() + err := m.Init(cb, wh, "./testdata") + if err != nil { + t.Fatalf("Init() error: %v", err) + } + + // prepare request + req := new(bfe_basic.Request) + req.Session = new(bfe_basic.Session) + req.Route.Product = "unittest" + req.HttpRequest, _ = bfe_http.NewRequest("GET", fmt.Sprintf("http://%s", host), nil) + if token != "" { + req.HttpRequest.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token)) + } + + // process request and check + ret, resp := m.authJWTHandler(req) + check(t, m, ret, resp) + if resp != nil { + resp.Body.Close() } } diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/SECRET.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/SECRET.key deleted file mode 100644 index 8e6849f79..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/SECRET.key +++ /dev/null @@ -1,4 +0,0 @@ -{ - "kty": "oct", - "k": "fF37IR8ITCYxpXHqYZfdqw" -} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data new file mode 100644 index 000000000..92918c1fa --- /dev/null +++ b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data @@ -0,0 +1,12 @@ +{ + "Config": { + "unittest": [ + { + "Cond": "req_host_in(\"www.example.org\")", + "KeyFile": "./testdata/mod_auth_jwt/key_file", + "Realm": "unittest" + } + ] + }, + "Version": "unittest" +} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data.key_invalid b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data.key_invalid new file mode 100644 index 000000000..89d06a1aa --- /dev/null +++ b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/auth_jwt_rule.data.key_invalid @@ -0,0 +1,12 @@ +{ + "Config": { + "unittest": [ + { + "Cond": "req_host_in(\"www.example.org\")", + "KeyFile": "./testdata/mod_auth_jwt/key_file_invalid", + "Realm": "unittest" + } + ] + }, + "Version": "unittest" +} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_invalid_1.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_invalid_1.txt deleted file mode 100644 index 2d518eabf..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_invalid_1.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2In0.6KB707dM9YTIgHtLvtgWQ8mKwboJW3of9locizkDTHzBC2IlrT1oOQ.AxY8DCtDaGlsbGljb3RoZQ.KDlTtXchhZTGufMYmOYGS4HffxPSUrfmqCHXaI9wOGY.9hH0vgRfYgPnAHOd8stkvw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_valid_1.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_valid_1.txt deleted file mode 100644 index e71dceed8..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jwe_valid_1.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkEyNTZHQ00ifQ.OKOawDo13gRp2ojaHV7LFpZcgV7T6DVZKTyKOMTYUmKoTCVJRgckCL9kiMT03JGeipsEdY3mx_etLbbWSrFr05kLzcSr4qKAq7YN7e9jwQRb23nfa6c9d-StnImGyFDbSv04uVuxIp5Zms1gNxKKK2Da14B8S4rzVRltdYwam_lDp5XnZAYpQdb76FdIKLaVmqgfwX7XWRxv2322i-vDxRfqNzo_tETKzpVLzfiwQyeyPGLBIO56YJ7eObdv0je81860ppamavo35UgoRdbYaBcoh9QcfylQr66oc6vFWXRcZ_ZT2LawVCWTIy3brGPi6UklfCpIMfIjf7iGdXKHzg.48V1_ALb6US04U3b.5eym8TW_c8SuK0ltJ3rpYIzOeDQz7TALvtu6UG9oMo4vpzs9tX_EFShS8iB7j6jiSdiwkIr3ajwQzaBtQD_A.XFBoMYUZodetZdvTiFvSkQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_invalid_1.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_invalid_1.txt deleted file mode 100644 index d3ce94b33..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_invalid_1.txt +++ /dev/null @@ -1 +0,0 @@ -eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJwYXlsb2FkIjoiY3JhY2tlZCJ9.LEI6_NBoqSiwWbSPLYPPWaZa8QnzVmYWV7OvLiNc9IY \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_valid_1.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_valid_1.txt deleted file mode 100644 index 1d35305ad..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/jws_valid_1.txt +++ /dev/null @@ -1 +0,0 @@ -eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.e30.m0GkVXaQKJ9ekQDYBdG6VQQX2MahN4hLqIk0RuXpR1Y \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file new file mode 100644 index 000000000..1004fbf17 --- /dev/null +++ b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file @@ -0,0 +1,12 @@ +[ + { + "k": "YmZland0Mg", + "kty": "oct", + "kid": "0001" + }, + { + "k": "YmZland0", + "kty": "oct", + "kid": "0002" + } +] \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file_invalid b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file_invalid new file mode 100644 index 000000000..8485943de --- /dev/null +++ b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/key_file_invalid @@ -0,0 +1,7 @@ +[ + { + "k": "YmZland0", + "kty": "invalid", + "kid": "0001" + } +] \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/mod_auth_jwt.conf b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/mod_auth_jwt.conf index beede5e83..dc7195f21 100644 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/mod_auth_jwt.conf +++ b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/mod_auth_jwt.conf @@ -1,36 +1,5 @@ [basic] -# The path of the file saving secret key -# A key-value mapping JSON type file -# for more key-value information(JWK): https://tools.ietf.org/html/rfc7517 -# Can be override in product config -SecretPath = ./SECRET.key -# Config path for products -ProductConfigPath = ./product_config.data - -# By default, the module read JWT claims from payload(JWS) or plaintext(JWE) only. -# By setting EnabledHeaderClaims to true, the module will try to read JWT claims from header - -# in the case that a claim validation was enabled while it's not exists in payload(JWS) or plaintext(JWE). -# Can be override in product config -EnabledHeaderClaims = false - -# Validation for JWT claims -# NOTICE: -# Validation for claims will be applied when relative claim(s) present in the JWT header - -# or payload(when EnabledPayloadClaims was set to true). When no any relative claim(s) present, - -# only basic validation (for example: signature check) will be applied. -# All claims validation can be override in product config -# For more claims detail: https://tools.ietf.org/html/rfc7519#section-4 - -# exp (bool) -ValidateClaimExp = true -# nbf (bool) -ValidateClaimNbf = true -# iss (string) -# ValidateClaimIss = issuer -# sub (string) -# ValidateClaimSub = subject -# aud (string) -# ValidateClaimAud = audience +DataPath = ./mod_auth_jwt/auth_jwt_rule.data [log] -OpenDebug = true +OpenDebug = true \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_empty.data b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_empty.data deleted file mode 100644 index feb339a6c..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_empty.data +++ /dev/null @@ -1,3 +0,0 @@ -[basic] - -[log] diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_invalid.data b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_invalid.data deleted file mode 100644 index c1423e579..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/module_config_invalid.data +++ /dev/null @@ -1,3 +0,0 @@ -[basic] -SecretPath = ./../ -ProductConfigPath = ./product_config.data diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config.data b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config.data deleted file mode 100644 index 15f9cd074..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config.data +++ /dev/null @@ -1,27 +0,0 @@ -{ - "Version": "1.0.0", - "Config": { - "test": { - "Cond": "req_host_in(\"www.example.org\")", - "ValidateClaimNbf": false, - "ValidateClaimExp": true, - "ValidateClaimIss": "issuer" - }, - "test_jwe_valid_1": { - "Cond": "req_host_in(\"www.example.org\")", - "SecretPath": "./secret_jwe_valid_1.key" - }, - "test_jws_valid_1": { - "Cond": "req_host_in(\"www.example.org\")", - "SecretPath": "./secret_jws_valid_1.key" - }, - "test_jws_invalid_1": { - "Cond": "req_host_in(\"www.example.org\")", - "SecretPath": "./secret_jws_valid_1.key" - }, - "test_jwe_invalid_1": { - "Cond": "req_host_in(\"www.example.org\")", - "SecretPath": "./secret_jwe_invalid_1.key" - } - } -} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config_invalid_type.data b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config_invalid_type.data deleted file mode 100644 index 088182de9..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/product_config_invalid_type.data +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "1.0.0", - "Config": { - "test": { - "Cond": "req_host_in(\"www.example.org\")", - "ValidateClaimExp": "invalid" - } - } -} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_invalid_1.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_invalid_1.key deleted file mode 100644 index 8b50473bc..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_invalid_1.key +++ /dev/null @@ -1,4 +0,0 @@ -{ - "kty":"oct", - "k":"GawgguFyGrWKav7AX4VKUg" -} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_valid_1.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_valid_1.key deleted file mode 100644 index 3a85e492b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jwe_valid_1.key +++ /dev/null @@ -1,11 +0,0 @@ -{ - "kty":"RSA", - "n":"oahUIoWw0K0usKNuOR6H4wkf4oBUXHTxRvgb48E-BVvxkeDNjbC4he8rUWcJoZmds2h7M70imEVhRU5djINXtqllXI4DFqcI1DgjT9LewND8MW2Krf3Spsk_ZkoFnilakGygTwpZ3uesH-PFABNIUYpOiN15dsQRkgr0vEhxN92i2asbOenSZeyaxziK72UwxrrKoExv6kc5twXTq4h-QChLOln0_mtUZwfsRaMStPs6mS6XrgxnxbWhojf663tuEQueGC-FCMfra36C9knDFGzKsNa7LZK2djYgyD3JR_MB_4NUJW_TqOQtwHYbxevoJArm-L5StowjzGy-_bq6Gw", - "e":"AQAB", - "d":"kLdtIj6GbDks_ApCSTYQtelcNttlKiOyPzMrXHeI-yk1F7-kpDxY4-WY5NWV5KntaEeXS1j82E375xxhWMHXyvjYecPT9fpwR_M9gV8n9Hrh2anTpTD93Dt62ypW3yDsJzBnTnrYu1iwWRgBKrEYY46qAZIrA2xAwnm2X7uGR1hghkqDp0Vqj3kbSCz1XyfCs6_LehBwtxHIyh8Ripy40p24moOAbgxVw3rxT_vlt3UVe4WO3JkJOzlpUf-KTVI2Ptgm-dARxTEtE-id-4OJr0h-K-VFs3VSndVTIznSxfyrj8ILL6MG_Uv8YAu7VILSB3lOW085-4qE3DzgrTjgyQ", - "p":"1r52Xk46c-LsfB5P442p7atdPUrxQSy4mti_tZI3Mgf2EuFVbUoDBvaRQ-SWxkbkmoEzL7JXroSBjSrK3YIQgYdMgyAEPTPjXv_hI2_1eTSPVZfzL0lffNn03IXqWF5MDFuoUYE0hzb2vhrlN_rKrbfDIwUbTrjjgieRbwC6Cl0", - "q":"wLb35x7hmQWZsWJmB_vle87ihgZ19S8lBEROLIsZG4ayZVe9Hi9gDVCOBmUDdaDYVTSNx_8Fyw1YYa9XGrGnDew00J28cRUoeBB_jKI1oma0Orv1T9aXIWxKwd4gvxFImOWr3QRL9KEBRzk2RatUBnmDZJTIAfwTs0g68UZHvtc", - "dp":"ZK-YwE7diUh0qR1tR7w8WHtolDx3MZ_OTowiFvgfeQ3SiresXjm9gZ5KLhMXvo-uz-KUJWDxS5pFQ_M0evdo1dKiRTjVw_x4NyqyXPM5nULPkcpU827rnpZzAJKpdhWAgqrXGKAECQH0Xt4taznjnd_zVpAmZZq60WPMBMfKcuE", - "dq":"Dq0gfgJ1DdFGXiLvQEZnuKEN0UUmsJBxkjydc3j4ZYdBiMRAy86x0vHCjywcMlYYg4yoC4YZa9hNVcsjqA3FeiL19rk8g6Qn29Tt0cj8qqyFpz9vNDBUfCAiJVeESOjJDZPYHdHY8v1b-o-Z2X5tvLx-TCekf7oxyeKDUqKWjis", - "qi":"VIMpMYbPf47dT1w_zDUXfPimsSegnMOA1zTaX7aGk_8urY6R8-ZW1FxU7AlWAyLWybqq6t16VFd7hQd0y6flUK4SlOydB61gwanOsXGOAOv82cHq0E3eL4HrtZkUuKvnPrMnsUUFlfUdybVzxyjz9JF_XyaY14ardLSjf4L_FNY" -} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jws_valid_1.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jws_valid_1.key deleted file mode 100644 index 153c4a290..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_jws_valid_1.key +++ /dev/null @@ -1,4 +0,0 @@ -{ - "kty": "oct", - "k": "AyM1SysPpbyDfgZld3umj1qzKObwVMkoqQ-EstJQLr_T-1qS0gZH75aKtMN3Yj0iPS4hcgUuTwjAzZr1Z9CAow" -} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128GCMKW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128GCMKW_A128GCM.key deleted file mode 100755 index 6bf1466f0..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128GCMKW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"fF37IR8ITCYxpXHqYZfdqw","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128KW_A128GCM.key deleted file mode 100755 index eab38b1ff..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A128KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"8pK-hXGL2qfOpcIVPCbaYQ","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192GCMKW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192GCMKW_A128GCM.key deleted file mode 100755 index 1409a10d9..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192GCMKW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"X9QP8Nyk6n3360pIU_DDpOEEw3REmS4-","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192KW_A128GCM.key deleted file mode 100755 index 351d3e20b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A192KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"eO_FV7ZuuauuraQ0PLWhilRGcp2tuDWK","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256GCMKW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256GCMKW_A128GCM.key deleted file mode 100755 index f54395578..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256GCMKW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"vBpYiyihMKiHtBtMwsA_8s8utErvLOpZWkdEdbmAN7o","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256KW_A128GCM.key deleted file mode 100755 index 5e6669711..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_A256KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"flUFTfzR2fXYiF0WRUmKnj7S_vp0krWDdJ9QGnu2kM8","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128GCM_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128GCM_A128GCM.key deleted file mode 100755 index 4cfe4e7ea..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128GCM_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-256","d":"TiKKJg9zVbQYWiUtPI7jR4AQQU4zO2sd4VQCbVqG8rc","kty":"EC","x":"XrcbPreMPk8BetsM5paaOxXVMyJEETWgvDQoRzatc-A","y":"Yo9e0PQU373vl6WQ7jZGo2Sh0-v1Vu7UFNZF6VqSMeg"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128KW_A128GCM.key deleted file mode 100755 index 552cfbf9d..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A128KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-256","d":"sPwpb4ZgN7sX3xeKF7-IR7hNoGXkxC7HCTHefRmvnjk","kty":"EC","x":"6RrJnirNuYrOcbHk5SBK2s-wmcJVon56j7es4CUOwew","y":"6MFvHTS1CfR03MFxWLkKG1fqhNNeq7kmVZ5NIjtsuqI"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A192KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A192KW_A128GCM.key deleted file mode 100755 index 737ec48b4..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A192KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-256","d":"oh3GhY_08yPMO-lPNvJ_Z7DTWqk66RXjTjtdUmhX-2M","kty":"EC","x":"UmvP2Nsr4om9C6xFNksevXkjSDcwGHVI_MGbptC-hjI","y":"e8V281cmOCcT6JleRMh65fyZQFqFBlCl--NjEdPFNCg"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A256KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A256KW_A128GCM.key deleted file mode 100755 index a00628275..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES+A256KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-256","d":"YQFZWtDh4FpAeWjKXh2Vcu-VTN67eMPqGrebtuSOgCA","kty":"EC","x":"ksX1ZBthYAKT1aMv9Ih6o5rBvepTrkfWYpoDa2XrRO0","y":"HSFK73p64u7bOMM2KxiGewOCHhVcMWER-_g0uDUxzBQ"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES_A128GCM.key deleted file mode 100755 index ed9f7260b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_ECDH-ES_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-256","d":"uCDOqIBmsXke5eX8grPZjv3RlM1SCTkhIKJ5BVjOywg","kty":"EC","x":"KRzpxZO_YK0kb_i8vi-EsmN7re-p2Lcm-cAOivehhNw","y":"2dKfHk_3k4fifd95hoW51rLUmtom51jZvD76p01iUuM"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS256+A128KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS256+A128KW_A128GCM.key deleted file mode 100755 index 1c732d607..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS256+A128KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"NU9vLVVjV2ZqRTBoVS0tSTJ3M2IzUQ","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS384+A192KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS384+A192KW_A128GCM.key deleted file mode 100755 index dde7eef27..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS384+A192KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"X25oUEt4U1g3ZWN1Yy1GTmIwRnFQQQ","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS512+A256KW_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS512+A256KW_A128GCM.key deleted file mode 100755 index f7b414b51..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_PBES2-HS512+A256KW_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"NjN5NEQzOWxaaFFHTTZxZk94NENDQQ","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP-256_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP-256_A128GCM.key deleted file mode 100755 index e68f24725..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP-256_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"NIUezxfbs7LPo55GhqhyhJwC2csLHeubGxIXHvLIuuwWDzaEKX_xJLwk22MxaceE8_xuuZ6pwOy-zlUxTrYPdKHVCtvDeXjtbHZ7L1bUKxV9MmwrF11Llq2D9tUPjs6rVUFHNtO19crSh_1Jw2dTGchYaAKoYXl0GRvbt_pJIEaMtqZSqpfsya3do1UWS7NIsGrEOkxQvWuvPXlytI8fkQEUE-xey3IkPti74XjUTqg1Rh5qW7WxP5TO6cfGd_1495jlvajJT5X23W7Nyzl6jEvk9KLkaEDHYpUQZLc9YtZmuVubbE3yEULNFGMLgMVI8fbL8qc0HxhTvxomWPq1SQ","dp":"yyJoX-LeD_gBVE9P3jVRYNjW9CzS3nJmq4_3V16b4cvQOqi0EkXpLykg9AbwCQkQfwGRkJscjPyXwQ38qqACt6vJpBx9ldvViXiBxaVJO1V3WUwTYeuNmPETPhzOVE1Y_0_NGv41b59R5wnUoqv-Z14sfXypJSNLFpn-z8jSj1k","dq":"KFb74j4aYRxTXBNcMbXJ-A7u6aGcbIjR6378OytOgi6GpkVmvvSygOBqpUfaOI2LqMeCYuhRVhHxqqOlc_jRoMcr-t5mO86fKeU-Q99xOyEWQ90qp6OcYTxDbqAXi-RgnYJ5IRDay1urK1u4I1q07-blmwO7KNafaBDNJXZTdTE","e":"AQAB","kty":"RSA","n":"xxMmO56s7i5N24u2wKTIBLdaQYfnu2YHvScXYS_RxULKa6320gNqOuOBubNf7eQWFWaWlI6LllIFyleWoyfNOY5fPnb1VAQ_c1bZJU_bi7ToKR9SpDySWDPNP9SBSUPBZefX2NYcJ3SW1BT92TlHLNrPO8YVcP-yklgjl39hMlBPwLLQnez-C5ohULFrNd-uX3uFYsmblSVidhECeicr-xQE3AqsRO7E9O4tS76MwCi_YDijA97W9xhCCGhmmCpS9NK4AnMEvxb70vXsMiU_0a6DqKCAxtoz_Zq0gsAowJJpr28upXSxNFG6gChGy9v12zsTfwDDocu_B9xGs_--gQ","p":"6QTD8u4xX681BNMDVy9MSq3I0YF023pQd4sCTyP8odjUGUazv86niO1gyqQ7gW4J5N-LE9OJhtfIf6PvZ9nrNRmwq6l5MM_Rta5IpzidcSUGGzkbZVoieAuGjCAaUQe_rQSpddx6TLKYfCd72l0ZV0D0K0Wyr72vNbQQmuR2VMM","q":"2rVflMvqTAtG0-wu3lOao4Nzjyyv0rSS0BJ2ImIh1OdIG1zzYq2FdHTO0XYUACobPegtoFUkDZ-Xj_QkawodWB4Wvv3SIfzYBt7L10olf0lj5U27_kTfEJ4AkceLAyH69Q2GbajUCfamhf2zvU6ed4Z4VOjrbVD9bkywrDVjW2s","qi":"l1aNDVNY-GTL9-9RLb7zTfjXdNGOV191rKpwd1fyjixElXkQ29_zFZ_St06QSeH160xZv_d9S-pArM7fVksQhHO4hTOGNZFXE1pb71pLZPbaEed9H2SbQUgAAEvChsrXUVgQK-NBZ68gRQFQC7zBlbJd-M5dxdygTyrNQfQu8-w"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP_A128GCM.key deleted file mode 100755 index dc091706e..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA-OAEP_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"bvXl2SRQKO1SElOZjAXyo7dpNkBbAMf2qINCH-m5DCheCvoy_tmR_T8CD1J5Kd0jGR40--RXReA2watVrmg7DXAxmvPt-EDZ2YKSNib0RTGB8PRBnChktTh1FHDakwZmZ5PYmR17qYGCBLXiG2Dkk4C7Su3g-_m3Gdd0PEMByXS_4PAABfqRtRCJfD4iNNZtksJCK0FCLx_EGi-GPreXLrlVcsGTuOqHtTrLbki6F7sOQsxnqgaozEmvHmPi0OnF0VL5x5TXrQNuCqMY7ni1z53lCf48wby_rMBmLY9Evm2HT3kg2063ypRSWQ1P6Gi2UgA8hBHi7y2AONIrjRN64Q","dp":"vSU-x_xWFOv1QMPdWV_iFtziDSeBljaJBj1Gxv4ANEmkw-JX6zAlQiqtr8_FS3kXfbdpdCXPPBytiL_Qwb_z1cRpi9N_SwFyUFhxwboE6EqO6xJniMavUUM8B1v7UccdtqKBqzfodF0pSv12gmLn1XLhxERgeA10vVAhV_7DVrk","dq":"Ka0Q4VSmvj5N3-BcbJvhDYXZ9OpiBrGt0G0f54jLK4Gky2V1luAdLvShJBHCAb2Zo9xEaOHf93cIdAilmD8sW10unOi6mhoLRPoMpuruUZ1hbopqojXEZzgSzAwuy9iLaYQ8jvYnZ_pUGXp_mCcjQPeab1EUHXAOUxKo2OraQvE","e":"AQAB","kty":"RSA","n":"udVF8LtsL5vmxZq0FanmKDUMXLJeQ5Wz2s1HHmfx6GfmljR6u-o73UFw9KWKe4BH8z0W6RyfRaEX50-tRMgWwDKnmXVRBE9ayqw1cIDQYCBJE6Pn7aSuDYlRVeVAAXjGITIPa01Ap3SnM2tOfFEeuUAujOU0HL_8x0jqzVw6l8VG3IrHoCxeqcp0hYIDeMfaIPm0-O8PN3xx0AGEsrCuLzeCFwRy0p5YnnHfh1on5xtcvhOfseiXqZnnpeT4TF9S2rJFQHuL5XAwoK57QEHVYgZLt8xsM79QFxOT1EqSfMa4Zf3FAabgQq8n0fpcsjZA86LRboaOjpaPmLdzCXhCIw","p":"9U95_3LJt9QeTIYkBB6ypPzIWBOwy5OfSDGC1Ae8pxwH7l2PRufJTEErZg8P4imjWF4QJgMjSj-OtYPT1OGHx7Tv7noB5bNYtNAV2yNQXCjjuBvQ4ZL6YvGUC2N9z2sYPr1aGq0JM4-Psg6Os3f0xnuwmY3avGhiyFvAFjXWz18","q":"we5OWT0lyY_Q2mDsYwgsYGOZPj43tnz97gWtWDSwUaoQ9aTYBHdQCHeIC_oAymh32NiGdJcZi1xDYc92Khxwc1c2DxxrXc2jpRFoD403_ne6__9LVd-xbAz6efuwdaCYbjeDSye9qFjr7fF6adZ5Rsuj7wzuc2N1VShHLA4Ed70","qi":"QIjzMSSqJjkVRXE2ZSXymf2WWrS_0IM85VwMt_ZytoE0_5GKDA7m4cBWQuGT8M60bpErz20GniIBnUNsRnkktF35KGb5yOPG5E15ftdFJ9NbEtJDzX-l8xKd_t1HXOJMn_9bMKyhXcMhf1gAW4rEwF7_7oq7hCd1EqHKi_OX2js"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA1_5_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA1_5_A128GCM.key deleted file mode 100755 index ac89be11b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_RSA1_5_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"ynXgEfRHTHvGduxVeZcRXDTdc9KKB1YCtZ0x4gFtxuQrhFmifiCFMe_ph6bUwfVbYzSQ3x6I9DYSPwog4QXyK6n3zjv-LTqmeRlHvpBkFHUQXoSsInKIAwNEMh56BhBOiP2GvKfa6lePdnUCdxO1B3uW2ynXS98PxI0PafBnc4g8Zg1vR5OkojWTwkH5vy69IPwsyYIPG-ZI9VIxB2xuo0PGYESIBKFuBtBmD-TzYjukT9E-H1wLrvvTvD-LcxJlCXz-zGGkRoo1J5wZioB7lTtfBhC1XDLcJ244WPFK6jyuCtwdXz7WEjYX_F1f72VIcLyhDwsUzWC2-fvakcoK4Q","dp":"AwX6dU10oUzrSUqwSJJxc81sIcebNUEOY1mDdesDSeSlkaIg4CH5DNvGjOMyRC-vUcqdVHR2sXw6_B3rYu_BWA4xPOFwhwBE-oBDtP6iaMzPa0lrjIuhRyn2ib5Pl2439UjivkP2SKAISKmiOG81gsuJyxNV5QaWat-QnA70NuU","dq":"41JViMyTihbX19wV1Rm9QWj4wE-PfoHpxm8FR7AHJnkerCLQF95bFXN3HTbYoGUPyjZTT3hrDT3mcHi98ob1DQLBUjy9Yb6lusWDoF4puX0lvDiRwU68LzcE06lHwA0ygOnwj5mNg_ZAXZQQxW12CDKCatnM9fb-icxkVG67pGE","e":"AQAB","kty":"RSA","n":"7B9ID3j58cg77Zuhvkq1M7wliqorws8JPwpkyRVGHOREX56A_yFDIlPI9z7lqbByQhfV4twAadUUKxkelS7WZWQfIAZ4jEf-_yIgKYL8pEzP3PZ0T43BbkChxKlFLzwE0RFpEn-lsulZMxt-M28c2g3lcaqjbY5KF114-_sovIAhVE75RtklR8AkK15yVVxf4pD27stDARuFJTT1ksi0RCn8rTsyhwsmGzM5pLybi84Jd0Gqf8UVX34cHx_aeYP6ZsLXRCM7EBt-OeJnK5pxZwmA72FJXJJNceUhd47VidH2awTqvl_Ndn6QDY2DfhXDKEcWiUxbCelr6KLp4ESq5w","p":"-EwvP327l0YfgZiQw-weO_MlmUJm7sLuzpCe73hd9v8vkYwIbLQHUwgmtX4f4dQ2XkttanCmKLemSW7WkgKoCh3tvNlQV4OFs2gBr-i2CLtrLdK22JlJZcWEt8Vmkt3MgyhuFWYw80Txd0_Xmc1LtekXS24GiCy70ShBUqB9EG8","q":"83JobYKnU1uOE1OSgOBvOLN9DU3bv3ukZ4OwPpqkg4YA7PJ7CHoqBBw7K9DFJX0_iFmt3Vg1-KQzZbebHOsqXj14cvtdA1jEWjSAd9EOPQmm2gaEd5xCltiCkCGUtnqH1OFvTGVBu-l2PEqOTgCd6toCkNwKLDm28k7OHzyf2Qk","qi":"5scmKj94R6oYuPwnEdBo4zPcwl7_X8Jo5IdJ4rKDjUkOw5P_Afg9ym2OkjTyRoWbJ8Vvy1BOsGFRm3XrqzAdo9HejB-GCrYYkIuac3m9z94Fdy8hLmWq6_SobH2nYEGnohpXqmv3VWNDMyW3Y0xwlRDBpSkiOdkdngsAMKhSWm8"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_dir_A128GCM.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_dir_A128GCM.key deleted file mode 100755 index 9dfb09453..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jwe_dir_A128GCM.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"hsIMv_k05PGUy8f26gC12g","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES256.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES256.key deleted file mode 100755 index 6be92a924..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES256.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-256","d":"RmW6S0IvemNKhZi6VBCFCqVVQAEU3U9gwS8KEJwDN5A","kty":"EC","size":2048,"x":"r6lK3cJPghQIB67aS2Z5Hb8HlNTGRapupJEfSvdOnRE","y":"peORtVZDto-4RYz_iqzneMJL9YqI2G0wuJXWCWWWugQ"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES384.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES384.key deleted file mode 100755 index 7affa1da3..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES384.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-384","d":"V7cHE_TXAhtg_2ZqAFrXm7Tw5tMVANx1mH67QSojQDTHl7y8aw9VGGKwarD8gFDW","kty":"EC","size":2048,"x":"eU3xUtgx2XPfRLBsD9_LfPCWiF-4MsGUWOaByidLxQCbp75T8bwt5MurJ8fpV7bd","y":"di_5SULtFRtOjy7hkfUI7Yzy0URQLlmLqUQNCdj6cRSBlDRG2Xir24Q7XshuEbEu"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES512.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES512.key deleted file mode 100755 index 3cc95ad5b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_ES512.key +++ /dev/null @@ -1 +0,0 @@ -{"crv":"P-521","d":"AWxFDVtJ3mSZhKCo4N0KUoq6UHM2Ults2_PuE2xAOYdbbo7PgmZRGUKvmc5c5on4CfNPNhnb0kCtVc1JsfxOxjh9","kty":"EC","size":2048,"x":"AIQPIZ0jvucagMAmpF9_T_vSL5KeLoTU6d-Bxlv6ZxlsXwWhCAwW9Zji_4N-hlHMi5bRd3LxKYmnyTzpZ22TAV-F","y":"AFk7yp-iW5PgTN3MlshfFQKng23NuQpOqSl19BPrFUnw9xNny5Lg2s_roXWBG9k-kWPy_R5cDxYBfIs9Eor_uFh2"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS256.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS256.key deleted file mode 100755 index b6a14a513..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS256.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"07542b82854156bd0b80c705701ec1c9faf93f3054f19429b9b0b17f2a043a7106bdc1084bc989843d168ae689ceede8429eac7cfc5e5bed3f32144fbb457991d3ab9e99cf0009a97a54e1fc6be8945d4a1eb72db77c92a6397d8916af56d00c601fc8bb7259a4225eb71b8f07f4a55e39bba4d44183fcac4abd5734e0f61826","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS384.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS384.key deleted file mode 100755 index 6fdce6ae4..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS384.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"efaa53eed3b0cb43afa16c37140c5e158af63e39120ef116cd588b48f09a5fce4480d60495ef417df909365e15f9fad3a8ae5277c39ff422a6a01596ad4edeead3b2fdd8efd351ef8e41d8acdc01e925c4dbef03ddc1344e6e93f71cf8cd3521f60baf4bdb40cdf5abc0ff58fb69ff6580e032e1aa24d9eeb5501a58294b779f","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS512.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS512.key deleted file mode 100755 index 8c170d01f..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_HS512.key +++ /dev/null @@ -1 +0,0 @@ -{"k":"1897fcc518efd785eb0f080b445cb2f386e8192891c149ae4eb9b4da0c0c7952cea970d5bfcebc0aee91963ea1661657b95c0149e43339c2fe93f96e204064aa7c2cfcc9c207b021a1826afc17ecfebc44336467c9c06eb7fbff3d6229b38800b66bf2e6f8c0ad3c95b1e09df14b42562f5b0b25a9db3e087928a84a8374be0d","kty":"oct"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS256.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS256.key deleted file mode 100755 index 15a454f3c..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS256.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"hdy4amakGjHpz0H1y95c7fiaFIUMMXDh1iyaWIqxhjW9ZoD1KcBhL8lk0JBnEYpd5rFNzblEWJ5whJsb0JJJsPoZmPXR_kzBjo04IiZccr4FA10ptA8lMTsGUTXF_AH2fHjVwK4uEI-aJTMrU8h-KzwIRstEOl7HN0CBMzP4AjIENDhvfZvRN5Ri_Aof7x3DLD1l9Ocy-R1WEBiCv1qhKRb_aentXrzooo3Mj2ytsP511HD_LSFD32I5YKbo12d7nvCkVZ5x4mhyu47K-FAehmJrj7wd7KUqn6SKrBoeipUt44Ka0JAaPdGJTr3R7i_rHzHAGvJl36PQHOLW70SUQQ","dp":"guUttV-RhRT4BMdnHIYE1ZCJzlPYGFfu0bg1H81A9-wvyX1jMIOz7m4s4FYqbc1Mz4jANHlXGazNkppsiFEWq8PWoV25c9i9KSObJgmMIqZ01JCKIGTp1aFcKXmR-ifPWn4k1VcNc_p3MCSQrn5qCbMHfGdbcRJeT8mq-0UvsBc","dq":"VIxSoWPE-NFfldDQgtmRMN29omlpWdMHknrlWApjfxkXI0R-DJ60nCbhqHiYp5279Dy3CAew1kPdYCzJOyrcLhavM-I7rzIbfwyupSdjPBfa8bxEQbu6J5HlVAcK9YMWYMbvc2EzUpZGvCm4YP8yAWQ26pdYqSUegbD_-bzMBoE","e":"AQAB","kty":"RSA","n":"yQQCCUArLVAt5pONythkopu2kSw87L-8d7kY-jFv6Bw5TF5d20cOwN69HMFbc_UKGekLVTTnYXPlkzAMjQaKuKRBvPNmaUiHitFvhbOVjezXSDPuGtXElPfukXvE3Cdov2hxAdXpXMnqdC9sCRpFxBOQuymWpgfhlIyR8FJf0wQ-wXOtrVh41ka9W8-RWFi01femseSFA-Zm3OnK8EBB0cDtUWILYhiWNMGLiz6CQbZRRAuJbH92HVQL2kbw2ZcvMJX1EgeSTtcr49YUcwYqEtVZM-KkzqW1ZINDeFhPEvs0qTne1DUsc-6fgCM0A0g0l8q9lxazwJumna0rrIjz3w","p":"6tCHgyNCozgLrCjsF3DHbTgo2-cSHYd7Q5tzQ6F2SRhK4N_gQYZs5TYrR_OvuTIZlS07D0QPPbooyu7nKgGpIPH3jrxHkfjC7hLS5B9hU599ryiczaU21iAXnuPckaAixcziMa5wmf5FNX_ef4qsJMg5Agfx_P_gZdvgG-sjh38","q":"2ybUw2-5AnQoaSRPva6i1ZX0vhjS9NNseVzdUkCsdrYR3TTyXN-76HbitkXAlEtdsj82hTtXVm8Wb_azAlmUR6IDRBhLqxb9n0m6HaBDGmWQZfiHFmVzf6gAtT2rzmiHeIqDFMh2ItibYeSWSD9fTWCYbfruEEIsYDkKb6qFw6E","qi":"rNKAzHylgme3Odtv3x-ppBOjn7cEGlctRmFVL7qSulHcrgn01WWcRG7VrGk0cV2yixdvDhiqEx6HB8zm1jyGY-ky9iEFhBuhHZRmiy4zerdi45b-TniHT9Rp1vzPDNGVcBWNUCX20vsu__hSWhLcqodinwG3Dtyr68TRdWRNJgU"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS384.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS384.key deleted file mode 100755 index c334bd9c9..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS384.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"OIoO2kQGNOfkko3u1PK4zHwy37vFeQoIHP2g23g9_aUHijdPjXdxVTnpO2ocfKIlqIr8Jb5Cnd_HTAS5aVFA-ZGjeZoZXfsVFRJhgtQRYPBDhYD5tclKP-jTgsph8LLvjGD4eYEfel9UB6a0CUyvePTiGT7_7BtEifcQ3ZRBMMsazdY6s1BLT2usg4IvdOHrTIPryva9PCwb9OH6TsvKuPwdhgZiAIR7WlWwp8kIIaitYvtop56uubEDsNrtTda8FTyjcmjtd1j3YEV59oJUnxGJEzaddLkj-E574OX9e2j2ToU2DKmaKuTxG-qu_RcdYsMthWjwPHEE7gyFAKXyEQ","dp":"E4nLnxK1WoPhR2QpsZkEE9jPry5uyeRpdIrgp-Z1Yf7BmtFlsjewHBYfchtFzL7p_3NHP4yRBFc3VG4DSV9BUb7InUkcNmjwlKKopMzUqoIUkctfUQTVG6KfdomWLefkiJJMjdVvhKS6FbSF_IZBYG-n6TOJ_Ueh_j7MRNfEM1E","dq":"Optxp120ffXPaxE2KOf8GSShELwIUWGD4mTCZESKdL2L3UJFqaVjp9Db3Dka24svdqrj8FKtHr4ITo4MwZBHdqS_GQJ--4S4lwnGrXwgChSzMz9B-O7DUubrdhUTFl2S3ufhG0YEGcP4tCN3TusRawN20FlIq0QdeirftBRtH0k","e":"AQAB","kty":"RSA","n":"ubBGDLzLrtiLZ3ilyTB6HuEJJWeIFg8tsls8p_g4AmY1vkabazk9ZQsTwriOBmwtPlFru7rh-CdfvT0l28eiO0b4R7U4W7TctbN_AimlKKz9hWNZdyeNRiYyaZsY90zphyISU2Ho4Du18E6PWYq6ec1DNksDNWVrox0rsMiGaJ31ZGcXgEPyClMcwzRd9t1hfnrF_mQ9cUk9BYwCD4q64kIAjQgRCUFPaA_qb-OiiEQDoSuaMwYbJZTUWr5syqvAtcwgGEo5QXHxO3MFszD6M9FjuPv3GCAUWYfTR80BtkMKNCv4UukKB3Is5SELtfWAaYhAsRwCNRaGLbBS676EQw","p":"6wlbw8ZREVmljrqBlh5XEMUll2gIqVA6T-XuFiM1ZtHuZ-T1RKuHIb_iUDK-l1cnZP5vZ45_2suLQsnawVdW4k6tfUL716Saw6EkEAu466Q7k7uimlI867ATOfDPG1n1fwFeXJG7TgOzDRd6-W7MD9ZKGJjFxW7ckGO8gYFdX1s","q":"ykAkRbXUq6jGi9nJfPnFs07m0vpWzcHth_SGi4EbvusS167V36l5ulCiJyHWCCR9mvVKoOgJ1SYfTwLxXnEck6L1Aq1TnfgMWDEJYrmx7Rxkj4PWibIB_ZOt1skA7C4CurxssR3E35u911-UaEKKyrmlKzR29J6yiKppze_QKzk","qi":"oylmGZpewmBraiIaPtMl2wxwWziWC-7Y56KPXTeW-dciP0FtAmzXnE1j0Qxvqi2f2XMhxiOtHN3gdMlZmnGrOO7QkHYZ3uWW7TqnfSJ2xcFI8Kddz30UtaHtqDKWeuSwnaB5UQ1dQf4hjyLoDlK0u7Z9T8j_XrSWGe6bFdMpvd8"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS512.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS512.key deleted file mode 100755 index 104a0cb6e..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_PS512.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"iOrcdM-3irwfJb6A7KGrOuN42iEHKOR4tvg0zg-9hqbwZ0KUM-yUrPHdmkTLv9Ccv5zk6_9C5Izg74nwN60Pf8p7sHxef6f5WJONv2Ht9qZEXXC1jSeoIQeq2h7hbLL5rIb1MB_9C83pHrSmGRoqQ6uckMuIVEPmaDeKAZuXhrB6xYA9Y4bRIvDGfBj23B2Jv2jG-T9JZwHcBUgtATSN8ScmTfZEwnpwLa9U7hZU5o3_sLtZtoNXlE1aHkgn5q5_qeJCdfMAroIR2ts1IU7Blva9pxj6WuB-zGt1FmGECxs6VwttQ05K7kc6E5VCLK0BuEnT_ngY8GPxM6LMA8472Q","dp":"7g7XsriH61v5fgB4N-4baAmCWPHQUy4eBKBNPSwzMPv3RwIFgueaV1mos2nYDAgjBCWmsMxKjhz-OpZzn5I1_TNPrLVCo2R-aL1h-JbIs_VtRnKsf_isz0KY183VUAAjTjxhvMNWOKmyf3Cf9SEIYz2CqvlDqt77nE-OxkGirKk","dq":"TRr6sxgYy5zrq4bYGs0jbR31xVH0DCFkc4_PsR8hm_FNmtZt2Cjpo3vAlsDAyNLU-PV_i7uxxJmDehbkuN71mG-gf5Vs9BxczNtQCbmC21PrUW-hqOiy1UYs_P-0Gf1ONMAHqCso83_Wdh49x2Eq0OZ2jUMUuFrYNqVAePDXedk","e":"AQAB","kty":"RSA","n":"3lKNqDRktpFZkLHxpa7TE-oT6ensNcjDyN_l21rh-3Ln3fiTWG3pPTrlXhwpdcsrHPcRArWjBtRnKUch6YrEl8G1-Tav6QEQyvLUAZio34uq51o-o-RNkEcDQ-KEF3IDb0MmIhfrbDuGuvulyq84keuxJkD4OpVJkgQpiiYnDD4UH8IJYfQ5jUjKCM1_FMduEywRgZ8ueVQxwJTYOgsBy7cFjaCn6WdrKuLQt3doEIx8acsi-85XbU-iaA0a4YcXNIL3Qj4r4ksfRaIKSUM3qgk8jNJ3oOtXoBoBeDpGytMoSbPCujd63ouzaK9GlD5yVerNWhAyjs6wRv23q-QDVw","p":"8ORUh9C8es1COy_8jgmMDWU0yz9-PrcT3Ht9TFkUTDx2HkBJ4ypiu-0_poVouuJLs_wG4ypAcDkYEfrCcuNlhsi0jxtfrnHULWxqzzwT_uLHV3UA30S5fdv3uYKoG3gSdeZOsdf-p_UaYn9ijCqVmj_Z9hIQ-zY_pr60sU20p60","q":"7EQURuRTWdagG2p5iEYSOGqDgqdlPNJIvLAJNB_Svq6synk7yCkBJ18uU80mFNJxOjNUnSwQqjH8Hf_j2GbSdiDCX1jFXmHGwNnmfmompaQPMX4ZGBxK2xlCKBTjPvm6_ErWTR2-xmm8kHRK8oirCuIqdsFaMbECXSOP8gkaB5M","qi":"qYeTcnxxQfRuVOgAFkdVOuAYVxNzJetwWesCLmhnw1kPz7gWont_17aY4pi5CFEnCi-3Z9nGgoVmMRZOY7MkWUssy9SV58AZg7BlaBF9dnl7OQytBpHUCdJ4APax5H3UOcKcKQJnwd26RKXL1OTPA3D8L3YhCqBt8OAWCpZoUQc"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS256.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS256.key deleted file mode 100755 index a9561b621..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS256.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"Nbgt21WWwKJXNmUQlEKdvAWjHc9og8yV5aGa7JdLNbXd7J3Hac50oldJ4ZfFiZOwoTGsd6ReeMraCA8S82aX_1vSwYa-lPctuU3_u_tU-MJg8NZ0aYnon6dmjp4tVj403-fgHId9opdp9Z1PpIb3EiuP8FSBioYlxJ-GTjjILh-2-bNEjmKwwZ0yzYstOakzaXOYiPJW2alIwpo6I0mDJF_6olkdUtSayysvxn33N8yigUctTCLlN7hw74kXJWcELVF8diqHF_78BiUOzfvXVPAj_Pn1Nol6RmytShCQRgEz1ca_gr3UXbd-pO_AVi9vvkD5Un44p44IRjv_nqXqQQ","dp":"rDi7WTSUCHcjW_06wc-1zO_DENJ99hZ8PVOyDTklQgDQUS7TliTLRcI7Qn_Gmktj8bIGUJiQjt9gD2_n_A_7JAYwNyJtbMj9h9LAesgFkPZQX2_LtvSx9U5-YNsYv93C-3qTrA-Ad3P8hBK2eqfnR5MBOcfQF_kK0Uvp3IogqWk","dq":"wSnvXVQadkHm-gjQ9NXrTkqOF0y3hwfjxhDB9A40fiVYyYkAVG7EnQnd4YFu8aR35a3pYPUkOTOQ9xIPPEvBPPOXzyk-V9BOv0U7FC6KADxPX8SUlB3UmjhqidjWfgHYkhi-Y-Jp0ocb_3yoxUFgA7S9XAyGx4s8l64vQX8MxaE","e":"AQAB","kty":"RSA","n":"0MoocAkE-6ytsaos5fc5hPR6mhsevzB03_VR_HNhdCi-PRaPnbWVjjGt2RkongiYn6D8SQIRBYQYsypIPlSlZIhtg3gXf1fx6xry4eUcon-8wwzNYgUx2ex6pBlSsBrjpEBAMifPU9nuhp-c61yS-sl3uWE5V9a1jxCnVTfgSIPYWetbZybks0NGSANqWHl4lzDoKEqos2JqGndfxsfjXw4OgZ26gi3TikjkVqq_n_E4xSCfk2nFx8OSm1qarFPA58plQ6oIAPyeCWZpvzFFknpg5hX5v33h6IKXX5yKVDLHX7A1iOhpO_zcNTRqx4yqsrwlN8JtGR-oCoKFNx7iVw","p":"9PZf4sCrBUjk7RcsPjJm99SHkhDW0mYFk8SdFd019JxLCjI1aPd--xMYoOAR7JZQesyj2dts6t1NWw1afx84cwoiswIMOApei8qeiIxH4N0BHvWMyHbQvYey7EudkD-qcaQIIGBBd29jJGvNIvMZOLTdVa4MONsOhn5W8YKBw6c","q":"2jKIjWy2Xff1CgzzTu7sru8wuuwzYIzSVwz2uopStUC5vY6J0K1cI65UgQQokpP_3keHsdcy-U0PLnnmIsz9hflC3EFUAiW2Bzx8rwWB7D4XA_rUhea2Dow_cWfF21fT0pNS-5mWGyG2lraxcNpQjtehitT9yQe0Zs3X_JqRgdE","qi":"r7tAj869sxUfjeA2SFJ8wM-oVe9OSXrjuq2cjnayzPDILiSDfHBt7gy5b-MqRwi1NiwqOiyZVonw5xpxOzpFUfs2LC81FYK2ac3k6FWZAdZT861HdEDtMihSRktErsImMJE9b7JJ0u0ZJiIdFPztbqB3bESFwvLPQVvBmkyErpw"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS384.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS384.key deleted file mode 100755 index da3d21f73..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS384.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"eJn4d_om9d-bXG1cJzBflqRNmLafkD8N7fuzjzXBHIhQ3ZjUErP7Ywm0q2qCLCuPzIk4rv7aWarBlM55z2KW5BBfjW5b84naNWjMr2clyi-ktu5M-rOD5T54EafEFqdo1nOGDhWqwei3fX7qxcguBI68ZNbe5brzQA9OM4qo0fKaW1KhiQL-gvAABXGwFEY37js3K7vwBLHQE5vIah2bTO4oXi6Dwlb01_N1zx1HkSNJIp-t3fJJppZMSYDwMJNP_hTn4Fy-HYvx4gZUlJzE0uE_lU8dgdTwp2HRWOFTL6xQvNKwm94Mf8XoL5TBivMpAtG_P60V5JAoqpMnGbIiAQ","dp":"bD-WZFE6KKWZaab3HkikL10ZzQBVQ6RKs90rdyQ00kJ81K6egaemAdP1YBXclWuiH2IxE9_xKumIZyMM60zSs1rjvi0NMteZ4m_HjsSb9G8RyDpzr7WNSSiGaxBH5zcKOBGTsuSf-cOUSK1ohFRqPBrKFBvSf91nTLjkTLR57wE","dq":"FS1dJxMP1hPeCWiuL_ViEIwTSsLHQQQ24w0BcursUEM1ferIVElCM1sXqdGJk4V3B-qIj4JD439wycJxeJQTqcbcO-hOuu1GTE7GUpETBZOjtPYrO5ATgiL3sHWawEP2VFP2WvNCQKOmD9HNPTxC8QZqnQLfBcYcxqrJZtVKxj8","e":"AQAB","kty":"RSA","n":"og-C36HulXlefODEIJa0FreZ_EDbvTRGouK7-5OkEfWKcUWzNFE5TGUNeDl5gK2oj_Rag-fMb7R5H8XKpfHUP2Ig4Puqk69324ZL9FNG17CWSFDa_pHSKLacHfXmSDFBD5YT0Xih1ekcchA4i86zPKgJYg2X9QH76TuP3_bpHLsoA0EpFUbRN-SEQMVS_8VJi_opmGLQPVfk0IAVAP0DX66FOrNWwCBJPSPLfxqI58fUd7ebWHbUGZMsad9TlMP0nCqBF62pxCzBfuQy_IL0nbABm7BzAJ2CdXG26T8qqbHJTux4fxInzuyUGoKkfjPnQlJL6v-SUf0AGfI_Tjk4Jw","p":"zNpx4kQDDzgC5Ghasm6AnCIZ_ebPLJgPfsh1EMVA9XnLfosZzuqzVNcblKjIvOM7xgwco1EE4LbCnNCFKoLA7Go7_QT4aEuc7gMiXtfq1h2owHcxCKaRocrJpFd1BcP4klW7ttHEoOkbTSZ8Pxtc30_QroACGNoYClm7_RQTGQE","q":"yoXlWCFuIWKWJMj1rSDpUoZASIw8D4UrkR-ou9bhOcWQ8hOVbRnn5BsokK_ZVr3wI1KJeKcuuS99ctc3SZyRTxoct8-vbpxq5aEjuZlUoqwb9vSJ-5DxjRxr3MjLu_bVKeMJj1H3Z4Jvhl00hhbLMIBXZDTlsCzsHlEQm_MPaSc","qi":"nrplK1cwC_J5_E1k66HFa6XQwKh0sV7Up4i6LWrX1ZlhS5qlOQm186w-pBLWxB8H5d8C-pBVwvZjWu1K2BBzkMZkvMBvpWeu-KyGYPqVWlvn4sZCPHlAUy-mEaOFRuxm807Ju58Mz_7zClhz2aYZVUqw_Wd-Qd2-76X-QrrDS3c"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS512.key b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS512.key deleted file mode 100755 index 4c8944409..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/secret_test_jws_RS512.key +++ /dev/null @@ -1 +0,0 @@ -{"d":"eKhHdrEsA-3EZ25JfQ_G4uQgxWGwtQQaKLPEzXVfOZdqYWF5Bm-xRwRXILJn0s-pfloubWySBwkW2IgFXuN0lIQ6JQYqGOzKzHDSoYSNTmFB0OmLUh25anbRLSqlaDa951_EgG64SiQAbHwNdFQ97_4o3KWKuFqXuEjxJn44vDSMqhKIGcfgV0nwAQ0R4loKvO2D_IiAv_dhY2z6xK7k92tDNWEe6KEqlqvFlHLmSnyAtXmed47WBsSH5eWJe4aImH7WTH7XBq9EifHW3f3lyUrkrkNrUxUAJt3q1T3qUWJtk0XEcWcLX-GzEpd3NTfMrWfW9Us7TQIIfx0jTDfl-Q","dp":"6Ot_VFBqEJY3-hhvu-nm_1D0CB_QNaHYMB8GSpfwn539QuTxK9NZKQiaT7YcO7zcFEdgGfLTGNIKVQLI428k_N69Cw1hZo_E6clON3LhqkPZUP9wh1labKGkCn3XjKPivpR-LmDdv4bFDkQ9JJ0z-xkk9d8QIH3zkzE2ke8uBXE","dq":"dVIukVOmz3qsgaQBiFDTt3ZEiJvckku6CLMBdJ4bmDFUMZZViNzxwERFzsYN3KmWDbs7tfpXtu4WVaBZxxsC-7u44Q143_7JXktBKxbmWqtE_pSLQkh4-jj-6Htgr4fzW60GnhWxKaUNrJUok8zc7E_cw3rJ1TB1w1-h94YUIUE","e":"AQAB","kty":"RSA","n":"19iW3-Gbl50qh4qN-YKYesiecGx-eJoeSn1xRlHqmJAzffgQi-4GdjQvsT5exxu5Esm-qSs-di-2VNauHZ7LlXuZSYyf2QcpHj9t4uktK0QHMtwwWoOT-Bdkj-SDiAiYi69U07LUyUCQkW89PLq0DPhasal404R7tIIDFa3NsMKKItZay_XP7x4_1sJguBnpKGMu8e5lb21H5l32OVNHwNEcfp4xwkYne3NEr-L7glgICJYZy-XXuYJl9_oQMDtriV5uFwy8H3Qs16uuNo5xDSzQJfdd6bsXE7hFSShx75KDWszJvAARkIRmsM9oDgJiAoWgW8Gb3HF2e419N_UAxw","p":"7BCAdV-L1U7dMcHmTM9E6_vE7-T8UOWb7RbMELcrInwTg1mdUJ8jC8HPgycpVqhE_B47W4KiA4ESzx6eMQ8j_p8Hm7TMS9Nzu8XR03luvl3zmp9wnmVrOz3bX168vWCAFsTLFqQrU_qSFqZyXmv4Xk5a9NX-6-GMVy29kNsqfVs","q":"6hL76ZJ0vUyoD5dHy8VctqHS2fiPAu7DbrTjQTZecZLc-7e7aUMrP2RtYbqknovODdnqr75Ed8DCDiSH-e1f0ZpouBmj1Ip8LI1mjJhDuM-9fUTIsDlSsbThNjKypilr49JhGYipFP9PEdqBwNJd957O5V--yLcjcYPYRyOhCgU","qi":"UqgX-2IEUbG7Q_yRxtOq3muiAo2NjKxaQGd29GMDNyEDo7uRDQLr5rwyaX1UQcFVSImUA65TwUGn1CWDDF7iFK6DBoNZlW6mDouMIOKT6LyVeMLNG3WQAvLgDvJ8cnJL9gLV7Hwqle_XF47nDM4bWyFe-GkK-mc41PLEp2Bx2Rw"} \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128GCMKW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128GCMKW_A128GCM.txt deleted file mode 100755 index 21310925a..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128GCMKW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJBMTI4R0NNS1ciLCJlbmMiOiJBMTI4R0NNIiwiaXYiOiJuVmRUR3ZiQ18weVpuaDFyIiwidGFnIjoiYURLYUdTcHpZYkJvRTZVMDlabHhPZyJ9.Ed5ekGtFpPzrZC-ED0NmTw.Xh8EeeM4rldu8oeX.qtCTJzi8Ubc8.MNMYukLYVPu79Zts1QwnaQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128KW_A128GCM.txt deleted file mode 100755 index d39a41a36..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A128KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4R0NNIn0.47c_Ppj-9oogB97DBHuCszhtNHyLgwLq.cBtXDnCijV-BK4wT.ybxM6qvf-_m4.UufG_ufsEhIHAZ5PJ_I9wQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192GCMKW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192GCMKW_A128GCM.txt deleted file mode 100755 index b2c7c63ee..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192GCMKW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJBMTkyR0NNS1ciLCJlbmMiOiJBMTI4R0NNIiwiaXYiOiI4ZG1odG5OemMyUXB6bE5PIiwidGFnIjoiZ0tYdmtLZXlzblRnUVY1S0NGUFFJUSJ9._j6QDjz67EgfKBxG7bDw2A.h5anFptfBZ6sP_9o.aEbN9XGTSGT6.vfetUZ5zNfVYDaofYeJSYw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192KW_A128GCM.txt deleted file mode 100755 index c91dda89b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A192KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJBMTkyS1ciLCJlbmMiOiJBMTI4R0NNIn0.bpteRPKNzjuOhrq3KSqOX9bAwAVrWOyk.GVMm_kZfR7O8hKTP.ZIRvje6Z27UQ.oHd4MyShpVFOULmDDc6Kbw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256GCMKW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256GCMKW_A128GCM.txt deleted file mode 100755 index ce2b58b4a..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256GCMKW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJBMjU2R0NNS1ciLCJlbmMiOiJBMTI4R0NNIiwiaXYiOiJ0TEcwMzBzQWxpQjU0QThYIiwidGFnIjoiYW84NjlNZ2t6X0Z3RFZfTUFuSC1OZyJ9.bAHysqDRWJLP10NXpXSA_A.527PfvQnlV264lLx.gczLBR2s5b09.PbG9fgyAlQ7jqGblvQitwQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256KW_A128GCM.txt deleted file mode 100755 index a19e28c89..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_A256KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJBMjU2S1ciLCJlbmMiOiJBMTI4R0NNIn0.iqzsq32tHgy2uYf51eJ4d1jddDRMt_sG.K84Dw6zo6xRPJkjl.i5jAGlgqJv5d.XlT7vFyMBbWvbeoi22jY1g \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A128KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A128KW_A128GCM.txt deleted file mode 100755 index 48f678e8b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A128KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFQ0RILUVTK0ExMjhLVyIsImVuYyI6IkExMjhHQ00iLCJlcGsiOnsiY3J2IjoiUC0yNTYiLCJrdHkiOiJFQyIsIngiOiJITmdWYnhpd19YY1ZiSWZ6LUtJRFozM1RtZTZieDNZUy1rcGxpRXdVVnZnIiwieSI6IlJJNldoM08yR2JFTnFqenJvNGJFTDRIY1ZfZEpnWEN2OWZ1c21DQk5hM2sifX0.urWQBXnJMaP7kFqkGsOLf2vgzsPMFYkt.AfNJdcx1RpLL3fP-.F2DEQsRP3uBG.ktnA2KOBAOYjPtvdldcYng \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A192KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A192KW_A128GCM.txt deleted file mode 100755 index b13d8b2ee..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A192KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFQ0RILUVTK0ExOTJLVyIsImVuYyI6IkExMjhHQ00iLCJlcGsiOnsiY3J2IjoiUC0yNTYiLCJrdHkiOiJFQyIsIngiOiJYRFRiTE90Y3RGSjM5LVM4M2dZY09TMGlOUVhWaXNZZzJTUS0ySDBjYnJvIiwieSI6IlZoaEhxMTFBa0FEeDdCbjJZdDc1ZUdnSXJZWHVxeGhBTzN3WEpNVG96TFkifX0.hqiq7BN_Pbdxla1VB7jUZc9Bi_cj8EIt.2xe987N9m4ViTESS.Uy4PLCMwPXv-.juPZMrrusqw4UXSHR40KZQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A256KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A256KW_A128GCM.txt deleted file mode 100755 index 1a0fe7a55..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES+A256KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFQ0RILUVTK0EyNTZLVyIsImVuYyI6IkExMjhHQ00iLCJlcGsiOnsiY3J2IjoiUC0yNTYiLCJrdHkiOiJFQyIsIngiOiJVdHBLZVViREhTdU45eG9uTGNvRERieFNBRm9UcDNlYkxfSkVTYUEtdXA0IiwieSI6IlVic2pPMl9vVElRaGxoMUZnOVBsZ1pTLW5YWXMwQjhyYi05dFRPNV91eUEifX0.MGTF1E9-k8MUZjEbuYbsXjbHcHxyiss1.6VjcFcGDh21Ihsfk.yhWpmimZT0UU.1T0PJdRB2_qf4_af8yGXYw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES_A128GCM.txt deleted file mode 100755 index 54a84e811..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_ECDH-ES_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFQ0RILUVTIiwiZW5jIjoiQTEyOEdDTSIsImVwayI6eyJjcnYiOiJQLTI1NiIsImt0eSI6IkVDIiwieCI6IklPZVR0MzZRb2pMZ05YbkJOZVZ1Yl9mQ0dEenpsV0VKWWxHbGRjcW16RXMiLCJ5IjoiQV8xUzhEcU5SZ08wMW53WjJpQkt2UG5ZVzdfbmtqUUJ3cGZrSlBxVFJfcyJ9fQ..veZD6S6KSBAnnnXt.SBGoDasYY1ss.Hb-goymXZ8p4spgVy5RYHw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS256+A128KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS256+A128KW_A128GCM.txt deleted file mode 100755 index 92b7afcb1..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS256+A128KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJlbmMiOiJBMTI4R0NNIiwicDJjIjo4MTkyLCJwMnMiOiJKRkFVTzVfNkJHWVV3R0ZSZXJNRHpRIn0.XltQ9fSEnIua77Gtyj6pvUyunfWHqbVg.F72FX-Sepu_0IrkX.rbcqt1bDEvj4.RewudFFak5s5KolYs1ZMyw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS384+A192KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS384+A192KW_A128GCM.txt deleted file mode 100755 index 715b62ff6..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS384+A192KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzM4NCtBMTkyS1ciLCJlbmMiOiJBMTI4R0NNIiwicDJjIjo4MTkyLCJwMnMiOiJ1ajJpOUZXOXM5eDI5SXFHT2xwU2JnIn0.dnA-XA8t0pFG9hTaZbHlwHJfdyKfjC-Z.B6WAqdZkYzmjxSWx.LuFWZRFiJ5Ji.XU9GRhDMZl1hYNI3So2FwQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS512+A256KW_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS512+A256KW_A128GCM.txt deleted file mode 100755 index 0c371c5cd..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_PBES2-HS512+A256KW_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzUxMitBMjU2S1ciLCJlbmMiOiJBMTI4R0NNIiwicDJjIjo4MTkyLCJwMnMiOiJ1QmtqR1o4MlAwM3Qyc2dDOVNnd2RRIn0.nM1Izc_qSyV8cgSTz3hXWIm4j33E1ELh.MO_EXBR4wSCDzPJl.iE6T6Y-K61k2.iKHDwaZbNIW7uHji4u1uaA \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP-256_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP-256_A128GCM.txt deleted file mode 100755 index d06dc8e2b..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP-256_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJSU0EtT0FFUC0yNTYiLCJlbmMiOiJBMTI4R0NNIn0.btcuxCbsqGQGa-b6um36OtOeP1yf31lmEZCLNsJrbslT5AqYe9F1sVn5DkWbcXeV8bqD2-6hi8K9vyHNYwe3bQlZJ1GVL2qkr-w3dohpMZLqBfJwMPG4JYYdBSDniUhmqw2mWtTjgYyORoeLwvxL-lmKG_xMaMp7Cv6VyuYrsmB7B49TTFYtXKuBrLBNgKIZJ91pdThHoqSzeGHTT6vUyvfdO4b3Y7AMN2ev5okaQuXlo6J0ggfAJ38eH8-zHJdeKK1xdGzLYbCpE9hOZMBwvE_k2hb4rdHA0LxU7LTsVOiY_xy38ihrY-NNeHNvUM3NfaNQ5uXr8KA0fHZB1-9-NQ.o0bFbR5U-OGHbpeG.auQgvNVgRjNu.aaLrDkQ1S86FDvf295pOMg \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP_A128GCM.txt deleted file mode 100755 index 541839b0a..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA-OAEP_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkExMjhHQ00ifQ.ZTeAMbhMEbX8gX56272gnM2SBmeEMX5N6tqhU46KZ--Kr9grlXoEUzhtXnvczYlABMOsZEfIeV-KW_2w3OsHzhXbkTdT4bZZO7Qhn0nZLi0HPN1fQ6wFgwW67wOiF0lnFG0SSTG8a4SLWg6PVo70tCCE_7mSifMer0MHKGN06ziP0xrznUKiESpDcY4tkNz24z5OL42PeOybdZy9kxIg-hBDiXONgurhhKBSpuxvO7lnSrBqcDVMewx_rDwEvjebGvdIuaml1XPHv2V2A_dX9oXvxFtQ1sSTUnV5V-irah7W0JYKjUNw2RNoSuw2vb5mP4Tzk-L5wwti9yEK6fsZWw.Qb76iwwT_XEtfvJr.h5JNFVPaCQPM.fiYFESWcj49v-tYZBUsZtA \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA1_5_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA1_5_A128GCM.txt deleted file mode 100755 index f241beb3f..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_RSA1_5_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJSU0ExXzUiLCJlbmMiOiJBMTI4R0NNIn0.3R-CwtCKL8Pi_-q8RXI0-ZE9Mozu5R6QtGyJNLf080g2mPqnmbi-aXkVUoRb-0J7fwjcNn9PMNpWUkyhuriB7nRo-B9kshAE035fjAuL4VS93xw9jBM01Qs8yYsyHmaM7vm_SlA-ne0f_VhHtMoRUEwTEyUkAVFWyTfUqcnll7EoEtN5Xy9N1jj2xYv37xcJ21MQiavV0A_hc29Kj7mAI071KM9QqOqjwlBqhCF-EEaNaaq6QKXkjBrqBHTE8iaCPTgfI3YLpNqUnPiVrsQj4p8yGsdScxZOxjDv017Bqyaa991-IRaFAi7h4opbQHakAUwi9b_SFA-7Km1vryFpIQ.dNReyxNshKr2ME79.noY9CUKOM3zM.bxvBohI2gFp4kZTWQ8PA2g \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_dir_A128GCM.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_dir_A128GCM.txt deleted file mode 100755 index 33660a011..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jwe_dir_A128GCM.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJkaXIiLCJlbmMiOiJBMTI4R0NNIn0..4yRGlHUCUbZaj-8F.uN_ENR4SuOXd.LL6pjDBElTysdHKpz6e-Ug \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES256.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES256.txt deleted file mode 100755 index 0524ef639..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES256.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFUzI1NiJ9.e30.4Fuiy_0SltPhSLLK44MhRItj5JmpCDz21JgLYaXZz0P1ZpyhQvosi2aTrq8yWdLmrt5HkWUTRfa5Rp-YRQ2fXQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES384.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES384.txt deleted file mode 100755 index da4719325..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES384.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFUzM4NCJ9.e30.SJXwpVNaB18Udub2ok2qg5cPUVAsLX0Zf16Gp5gV5y8FKhOUS20XV7_MavMyYxnm4_jnvWu2s05mAEVdduaKTI2711pI54XH17-fCyFue00p6mRrFvYUEMQicpNNoMAQ \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES512.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES512.txt deleted file mode 100755 index b53b3fc80..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_ES512.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJFUzUxMiJ9.e30.AIQHUmEMcfZ386FBkjuMGuMRlHpvQM671YnisrejHAUb4VJC2cVw0tC0J8zPedchJC1sHamMgU4igwaFf-IXPa7gAI5oPoCFAP9-wnGnZQtFsmrIrdW4kDTnVRfMZbAHmuFwFkMMA6hr73722DiA-yCFEuWsrmPrdIw6yH6LyuXMBfzr \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS256.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS256.txt deleted file mode 100755 index a94c8957f..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS256.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJIUzI1NiJ9.e30.5_VNFcURLAW9PfkUWHv3zScl91JzyV80CMCOuu-L6oE \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS384.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS384.txt deleted file mode 100755 index 889f08859..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS384.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJIUzM4NCJ9.e30.DK4Vc5MJgyhKQYl4gEZ_Ek38Ouq2s-oNi4Coy6wtkRONZReS6RMQbJfMh35w6EQv \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS512.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS512.txt deleted file mode 100755 index 4936d97b1..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_HS512.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJIUzUxMiJ9.e30.qf_vaGJ-T7jPXZLjJeQTQgTequCOQS7JPHQ78fs4Kh5cbrFm3QFmCJKxRiADBDBOX0ClVQYPqNhd_-E0qMMVWg \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS256.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS256.txt deleted file mode 100755 index 7864e77fb..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS256.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQUzI1NiJ9.e30.eJKJO03t7bcURp3729hYmNGKoueQLm8QY-JbQfo5x8tB-M4EhkoQ3qHyeH3fbYKCwouTW3hTfGn1XFMDY_O3W9zXRouwCHNH4sc_vc58gKv7mghWvrVUtfDW0u6gVFLXZQDRDxkvpZN0gcu-DJgPFoRxDe7KHuMYaYZL9jsWu9wd4eJRih7ul5xxUtIak8hazzRkByAcfVk9V498Sw0mUamSw0vZSmfzaue3nzxUiInsOc3Q2Ue8CswnG566ZwwYBYPRwPz4nMwlHiN0a-PKznJivAvZQvzX-Y41FYhQm8b0hxDgl3lTQ2HszjgsBrTGg6DfowFGdfzhTKg05rjAaA \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS384.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS384.txt deleted file mode 100755 index e930a41aa..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS384.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQUzM4NCJ9.e30.sFaPoUt-NZc2wSOkHcSYMSU672N2s2nxtiiu73lDB_IE5jPWGHBS0eeUnGJ8FpDgqn6y1U9qC5rSSpWmVlUInNK5xEVceyBiH6p878-eRDpaG6lvD2bYbhmuDIZKkneO7xoV8sWl-vqOPflDLuonj1ryGMkN5L-UpysIaWzcHS06Rz_tq_bHFz3xzEf42sZHdd_OZQABhOYcxgFFCRyR9g8xeWAvyd9s0_hnFxA0rqKPUjqvYSDtnZRYg96PUs0Kx8MKB_pT0QQHcA_Bjyv92QN9rYlwkcjc1zpYbZp1aXg9iVLHo2grb2nZT17YbEUpfGmUkxfe7q3aHylHvn0emA \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS512.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS512.txt deleted file mode 100755 index c63c3d148..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_PS512.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQUzUxMiJ9.e30.Dj3TNeSttvRSSpDNEf9Sz8xLqgp8i2mx9WV-_GxxXHyZKOwf1Fxchf-3x9eZT7rs2__Fdgr3t3N5o36o_yIBMbHT2F4MUig4icdnsNsJ5nzLde_pGa-K7mtDfQrZeDKrsKQV70eEQFb68X52EwQfZfp3deE7YwShHK-RZbfDkmZk9IPwgGwrB_JqVkgEDaaO-LJX97vIwFdRCOZALya7xHww8nqxNG2q9MUce8w0niRoy3zp8uqjzg48i4Sly_9rPR8ndhG2S9l4wNWdmafjflhPlz72qjiZRFBMfxLnrHUJkbsG_sjpS18JHzp1Nz8h3I_l5HU4jBSZx2WmzKhS4A \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS256.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS256.txt deleted file mode 100755 index 007114c97..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS256.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJSUzI1NiJ9.e30.lfep-rer6hAhiz3MseWfsEpGbfCX-KOoX0djIz9rXTrjiQ4z1OjuF8NJkexUnLYL_QK7BjaLG0QQm7ZwrZWnnBg4y2o_JWCxBO8p9SCFCRVw6NrUFbGEcoYPayiGHfViCTg6Q4xT8Q4hcEaQlTSICurRr78DJSbrI7w14CrGB558ddn5Fzq9ZQ-cKVJsjTOdg217L3KflgMlePkjcjfV6OrJqxGXYtLgpI_C4T48kucvM8b1WVM9-bvJiVZ8J35kVbxTCHO914BDgp-9pROYr-OC5S_CHn_AWJFp1cInauEIPYXWXBgpqA0LYqZPYD992DMvapr9INPcshlWgTkMWw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS384.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS384.txt deleted file mode 100755 index 2ad4ed400..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS384.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJSUzM4NCJ9.e30.nVO1zqTQaWaNYxd_0n1tcO0oh8b7O5YV3yD2CW_0mi9WjQyjx5wswZPdEWK9I3RiNlhCgPmr3VIzWuNjDUQaZ3xe45M_i2qNYagHaYimKLW_TpBvVhZgxTcdxypEJhNwyGSnMijSJBjb1B9IyoXRc8wMcTkCOfXS2bVqC5_FtOR6X6Xc9BncOb4kV7ho9XPhhbYWvA-td1Gy6GT274-C5ZcGUA7XlH68XOkw0UotbT_S1J9y7et7m6KBin_2NjSDDddPgrUK6SueDFLk2_aSD_o6VYa9xDEg_yAoSPkMIiye-z02WpHz33cp4KAN4hT7FwOyoUvwX9Nr6gGT6dNbAw \ No newline at end of file diff --git a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS512.txt b/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS512.txt deleted file mode 100755 index ee1d0277d..000000000 --- a/bfe_modules/mod_auth_jwt/testdata/mod_auth_jwt/test_jws_RS512.txt +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJSUzUxMiJ9.e30.ie93zKoTwAEpfG0lEp6UblFI9SHPbPUrkqM74hqq6TunMKfLZLaMS0PLUq7DF3EzlKB06j-Rx3wSLEBMKwemcNnVCkZNkgvxFYQPIXPWzOST44FOY5IFE1Wiq7p-2OKJ5XRD96k6fonC_xsWgrrZl1bIU5je300RO0XedOze3uZwWx2H8FgHdd89sJz-mEpAddrE40yKiOoSaGAb6n-rm39bVmnKVQu6BiKdX0kV6eIqXWolhgXTAk6PS5xWX3s8CeEKV681jT8_LDmb8fDoJOfTaQ5D_VqjvPvCafbTX-30r9TCKkxU7j2Y9Ul_YkPvYOkcdzqnqfXtV2eD9WxjMQ \ No newline at end of file diff --git a/bfe_modules/mod_doh/dns_msg_convert.go b/bfe_modules/mod_doh/dns_msg_convert.go index fced0cf6a..44cd0dd06 100644 --- a/bfe_modules/mod_doh/dns_msg_convert.go +++ b/bfe_modules/mod_doh/dns_msg_convert.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/bfe_modules/mod_doh/mod_doh.go b/bfe_modules/mod_doh/mod_doh.go index c4c516098..1de80f9db 100644 --- a/bfe_modules/mod_doh/mod_doh.go +++ b/bfe_modules/mod_doh/mod_doh.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/bfe_modules/mod_doh/mod_doh_test.go b/bfe_modules/mod_doh/mod_doh_test.go index 96a952670..ff42999ab 100644 --- a/bfe_modules/mod_doh/mod_doh_test.go +++ b/bfe_modules/mod_doh/mod_doh_test.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/bfe_modules/mod_static/mime_type_table.go b/bfe_modules/mod_static/mime_type_table.go index 4562d0ec9..3e02ae8c5 100644 --- a/bfe_modules/mod_static/mime_type_table.go +++ b/bfe_modules/mod_static/mime_type_table.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/bfe_modules/mod_static/mod_static.go b/bfe_modules/mod_static/mod_static.go index fde5bd0d8..a9b80cb15 100644 --- a/bfe_modules/mod_static/mod_static.go +++ b/bfe_modules/mod_static/mod_static.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/bfe_modules/mod_static/static_file.go b/bfe_modules/mod_static/static_file.go index 5fae70cb7..5f97b8855 100644 --- a/bfe_modules/mod_static/static_file.go +++ b/bfe_modules/mod_static/static_file.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/conf/mod_auth_jwt/auth_jwt_rule.data b/conf/mod_auth_jwt/auth_jwt_rule.data new file mode 100644 index 000000000..6e06d3fe7 --- /dev/null +++ b/conf/mod_auth_jwt/auth_jwt_rule.data @@ -0,0 +1,12 @@ +{ + "Config": { + "example_product": [ + { + "Cond": "req_host_in(\"www.example.org\")", + "KeyFile": "../conf/mod_auth_jwt/key_file", + "Realm": "example_product" + } + ] + }, + "Version": "init version" +} \ No newline at end of file diff --git a/conf/mod_auth_jwt/key_file b/conf/mod_auth_jwt/key_file new file mode 100644 index 000000000..40bdb30b3 --- /dev/null +++ b/conf/mod_auth_jwt/key_file @@ -0,0 +1,7 @@ +[ + { + "k": "YmZland0Mg", + "kty": "oct", + "kid": "0001" + } +] \ No newline at end of file diff --git a/conf/mod_auth_jwt/mod_auth_jwt.conf b/conf/mod_auth_jwt/mod_auth_jwt.conf index cc3c2e961..e2beff269 100644 --- a/conf/mod_auth_jwt/mod_auth_jwt.conf +++ b/conf/mod_auth_jwt/mod_auth_jwt.conf @@ -1,44 +1,5 @@ [basic] -# The path of the file saving secret key -# A key-value mapping JSON type file -# for more key-value information(JWK): https://tools.ietf.org/html/rfc7517 -# Can be override in product config -SecretPath = -# Config path for products -ProductConfigPath = - -# By default, the module read JWT claims from payload(JWS) or plaintext(JWE) only. -# By setting EnabledHeaderClaims to true, the module will try to read JWT claims from header - -# in the case that a claim validation was enabled while it's not exists in payload(JWS) or plaintext(JWE). -# Can be override in product config -EnabledHeaderClaims = false - -# Enabled validation for nested JWT -# NOTICE: -# This step will be skipped in the case that the nested JWT parse failed, -# it is in the consideration of different encryption key may be used for the nested JWT. -# The nested JWT should be Base64URL-encoded as the payload for JWS, -# or Base64URL-encoded as encrypted plaintext for JWE. -ValidateNested = true - -# Validation for JWT claims -# NOTICE: -# Validation for claims will be applied when relative claim(s) present in the JWT header - -# or payload(when EnabledPayloadClaims was set to true). When no any relative claim(s) present, - -# only basic validation (for example: signature check) will be applied. -# All claims validation can be override in product config -# For more claims detail: https://tools.ietf.org/html/rfc7519#section-4 - -# exp (bool) -ValidateClaimExp = true -# nbf (bool) -ValidateClaimNbf = true -# iss (string) -# ValidateClaimIss = issuer -# sub (string) -# ValidateClaimSub = subject -# aud (string) -# ValidateClaimAud = audience +DataPath = mod_auth_jwt/auth_jwt_rule.data [log] -OpenDebug = true +OpenDebug = false \ No newline at end of file diff --git a/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md index fca73e896..0108fc830 100644 --- a/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md @@ -1,4 +1,73 @@ # mod_auth_jwt -Note: This documentation is working in process. Please help improve it by [filing issues](https://github.com/baidu/bfe/issues/new/choose) or [pull requests](../../development/submit_pr_guide.md). +## Introduction +mod_auth_jwt implements JWT([JSON Web Token](https://tools.ietf.org/html/rfc7519)). + +## Module Configuration + +### Description +conf/mod_auth_jwt/mod_auth_jwt.conf + +| Config Item | Description | +| ----------- | --------------------------------------- | +| Basic.DataPath | String
    path of rule configuraiton | +| Log.OpenDebug | Boolean
    debug flag of module | + +### Example + +``` +[Basic] +DataPath = mod_auth_jwt/auth_jwt_rule.data +``` + +## Rule Configuration + +### Description +conf/mod_auth_jwt/auth_jwt_rule.data + +| Config Item | Description | +| ----------- | ------------------------------------------------------------ | +| Version | String
    Verson of config file | +| Config | Struct
    JWT rules for each product | +| Config{k} | String
    Product name | +| Config{v} | Object
    A ordered list of rules | +| Config{v}[] | Object
    A rule | +| Config{v}[].Cond | String
    Condition expression, See [Condition](../../condition/condition_grammar.md) | +| Config{v}[].KeyFile | String
    Path of JWK configuration | +| Config{v}[].Realm | String
    Realm, ie. protection space
    Default "Restricted" | + +Description about JWK configuration +* Key file must follow the format described by the [JSON Web Key Specification](https://tools.ietf.org/html/rfc7517) +* Generate key: +``` +echo -n jwt_example | base64 | tr '+/' '-_' | tr -d '=' +``` + +* key file configuration example +``` +[ + { + "k": "and0X2V4YW1wbGU", + "kty": "oct", + "kid": "0001" + } +] +``` + +### Example + +```json +{ + "Version": "20190101000000", + "Config": { + "example_product": [ + { + "Cond": "req_host_in(\"www.example.org\")", + "KeyFile": "mod_auth_jwt/key_file", + "Realm": "Restricted" + } + ] + } +} +``` \ No newline at end of file diff --git a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md index 5e8427564..683c67c48 100644 --- a/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md +++ b/docs/zh_cn/modules/mod_auth_basic/mod_auth_basic.md @@ -34,7 +34,7 @@ OpenDebug = false | Config{v}[] | Object
    HTTP基本认证规则 | | Config{v}[].Cond | String
    匹配条件, 语法详见[Condition](../../condition/condition_grammar.md) | | Config{v}[].UserFile | String
    用户密码文件路径 | -| Config{v}[].Realm | String
    认证规则生效范围
    默认值"Restricted" | +| Config{v}[].Realm | String
    安全域名称
    默认值"Restricted" | 用户密码文件说明: * 密码使用MD5、SHA1 或 BCrypt 进行哈希编码, 可使用 htpasswd、openssl 生成 userfile 文件 diff --git a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md index 733ca83d0..5b80e54a9 100644 --- a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md @@ -2,98 +2,72 @@ ## 模块简介 -mod_auth_jwt支持JWT认证。 - -## 配置说明 +mod_auth_jwt支持JWT([JSON Web Token](https://tools.ietf.org/html/rfc7519))认证 + +## 基础配置 ### 配置描述 -模块配置文件:conf/mod_auth_jwt/mod_auth_jwt.conf +模块配置文件: conf/mod_auth_jwt/mod_auth_jwt.conf + +| Config Item | Description | +| ----------- | --------------------------------------- | +| Basic.DataPath | String
    规则配置的的文件路径 | +| Log.OpenDebug | Boolean
    是否开启 debug 日志
    默认值False | ### 配置示例 -```ini +``` [Basic] -# The path of the JWK file -# For more details, see https://tools.ietf.org/html/rfc7517 -SecretPath = mod_auth_jwt/secret.jwk - -# Config path for products -ProductConfigPath = mod_auth_jwt/product_config.data - -# By default, the module read JWT claims from payload(JWS) or plaintext(JWE) only. -# By setting EnabledHeaderClaims to true, the module will try to read JWT claims from header - -# in the case that a claim validation was enabled while it's not exists in payload(JWS) or plaintext(JWE). -EnabledHeaderClaims = false - -# Enabled validation for nested JWT -# NOTICE:This step will be skipped in the case that the nested JWT parse failed, -# it is in the consideration of different encryption key may be used for the nested JWT. -# The nested JWT should be Base64URL-encoded as the payload for JWS, -# or Base64URL-encoded as encrypted plaintext for JWE. -ValidateNested = true - -# Validation for JWT claims -# NOTICE: Validation for claims will be applied when relative claim(s) present in the JWT header - -# or payload(when EnabledPayloadClaims was set to true). When no any relative claim(s) present, - -# only basic validation (for example: signature check) will be applied. -# For more details, see https://tools.ietf.org/html/rfc7519#section-4 - -# Enable validation for Expiration claim -ValidateClaimExp = true - -# Enable validation for Not Before claim -ValidateClaimNbf = true - -# Enable validation for Issuer claim -# ValidateClaimIss = issuer +DataPath = mod_auth_jwt/auth_jwt_rule.data +``` -# Enable validation for Subject claim -# ValidateClaimSub = subject +## 规则配置 -# Enable validation for Audience claim -# ValidateClaimAud = audience +### 配置描述 +conf/mod_auth_jwt/auth_jwt_rule.data + +| Config Item | Description | +| ----------- | ------------------------------------------------------------ | +| Version | String
    配置文件版本 | +| Config | Struct
    所有产品线的JWT认证规则配置 | +| Config{k} | String
    产品线名称 | +| Config{v} | Object
    产品线下 JWT认证规则列表| +| Config{v}[] | Object
    JWT认证规则 | +| Config{v}[].Cond | String
    匹配条件, 语法详见[Condition](../../condition/condition_grammar.md) | +| Config{v}[].KeyFile | String
    JWK配置文件 | +| Config{v}[].Realm | String
    安全域名称
    默认值"Restricted" | + +JWK配置文件说明 +* 配置文件必须遵守[JSON Web Key规范](https://tools.ietf.org/html/rfc7517) +* 生成示例Key: +``` +echo -n jwt_example | base64 | tr '+/' '-_' | tr -d '=' +``` -[Log] -OpenDebug = true +* JWK配置文件示例: +``` +[ + { + "k": "and0X2V4YW1wbGU", + "kty": "oct", + "kid": "0001" + } +] ``` -## 规则配置 ### 配置示例 + ```json { - "Version": "Version", - "Config": { - "example_product": { - "Cond": "req_host_in(\"www.example.org\")" - } - } + "Version": "20190101000000", + "Config": { + "example_product": [ + { + "Cond": "req_host_in(\"www.example.org\")", + "KeyFile": "mod_auth_jwt/key_file", + "Realm": "Restricted" + } + ] + } } -``` - -# 使用约定 -用法:需将token放置到HTTP请求Authorization头中,并指定为Bearer类型。 -示例:`Authorization: Bearer ` - -JWT(包括嵌套JWT)必须使用压缩序列格式(Compact Serialization),不支持JSON序列格式(JSON Serialization)。具体原因见下述用法说明。 -- 关于嵌套JWT - * 在JWS中,将进行了base64URL编码后的JWT直接作为JWS的Payload部分,则Payload为:base64URLEncode(Nested JWT)。 - * 在JWE中,将进行了base64URL编码后的JWT作为JWE的plaintext,则ciphertext为:base64URLEncode(Encrypt(Nested JWT))。 - * 当嵌套JWT能够被正常解析(未解密,仅解析)时,JWT验证通过的条件为**主体JWT验证通过+嵌套JWT验证通过**(这是个递归过程)。 - * 对于无法正常解析的嵌套JWT(密钥不同或者格式问题),对嵌套JWT的验证会被跳过(默认成功),此时JWT验证通过的条件仅为**主体JWT验证通过**。 - -- 关于基础验证 - * 对于JWS,若签名校验通过,则认为基础验证通过。 - * 对于JWE,若**能够正确解密出CEK(Content Encrypted Key)**、且利用该CEK**能够解密出明文内容**,即解密明文过程无异常抛出(无视明文具体内容,事实上对于明文具体内容也没有一个标准能够进行检查),则认为基础验证通过。 - -- 关于字段验证 - * 开启字段验证仅在能够在JWT中查找到相关字段的条件下生效,当字段不存在时,相关字段验证会被跳过(默认成功)。 - * 默认的,进行字段验证时仅在JWS的Payload部分或JWE的plaintext部分查找相关字段,可以通过配置启用EnabledHeaderClaims配置项达到当默认位置不存在相应字段时,则到Header部分中查找相关字段的目的。JWS的签名验证机制天然地可以保证Header和Payload的数据完整性;JWE虽然没有签名验证机制,但由于其解密AAD与Header相关,Header被篡改会导致AAD不正确,无法正确解密出明文,间接保证了JWE的Header的数据完整性。因此,启用该配置选项不必担心数据完整性问题,无论是对于JWS或是JWE。 - * 由于[JWE](https://tools.ietf.org/html/rfc7516)的RFC文档中并未规定plaintext的具体格式;而[JWT](https://tools.ietf.org/html/rfc7519#section-3)的RFC文档说明了在JWE中,声明字段应为JWE的plaintext部分。故约定,对于JWE,在需要承载声明字段的情况下,将进行了base64URL编码后的声明字段JSON字符串作为JWE的plaintext,则ciphertext为:base64URLEncode(Encrypt(Claim Set))。在plaintext无法应用该规则进行解码、且未启用EnabledHeaderClaims的情况下,对JWE的字段验证会被跳过(默认成功)。 - -## 监控项 - -| 监控项 | 描述 | -| ------------------------ | ---------------------------------- | -| AUTH_TOTAL | 命中认证规则的请求数 | -| AUTH_SUCCESS | 认证成功的请求数 | -| AUTH_FAILED | 认证失败的请求数 | +``` \ No newline at end of file diff --git a/go.mod b/go.mod index 77cb044ad..6f65cc62e 100644 --- a/go.mod +++ b/go.mod @@ -7,6 +7,7 @@ require ( github.com/andybalholm/brotli v1.0.0 github.com/asergeyev/nradix v0.0.0-20170505151046-3872ab85bb56 // indirect github.com/baidu/go-lib v0.0.0-20191217050907-c1bbbad6b030 + github.com/dgrijalva/jwt-go v3.2.0+incompatible github.com/gomodule/redigo v2.0.0+incompatible github.com/miekg/dns v1.1.29 github.com/opentracing/opentracing-go v1.1.0 From a115fbcf19d3bedf8be76a374e01117d8334e27b Mon Sep 17 00:00:00 2001 From: xiaofei0800 <54530729+xiaofei0800@users.noreply.github.com> Date: Tue, 19 May 2020 13:46:34 +0800 Subject: [PATCH 098/111] Update docs (#497) --- docs/en_us/introduction/comparison.md | 4 ++-- docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md | 4 ++-- docs/zh_cn/introduction/comparison.md | 4 ++-- docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en_us/introduction/comparison.md b/docs/en_us/introduction/comparison.md index f0ad39258..bfaec4d81 100644 --- a/docs/en_us/introduction/comparison.md +++ b/docs/en_us/introduction/comparison.md @@ -40,7 +40,7 @@ NOTE: Envoy supports global and distributed load balancing. ### Forwarding Rules -+ BFE provides [Condition Expression](../condition). ++ BFE provides [Condition Expression](../condition/condition_grammar.md). + Nginx uses regular expression. + Traefik supports traffic classification based on request content. But it can't support flexible AND or OR logic. + Envoy supports rules based on Domain, Path and Header. @@ -71,7 +71,7 @@ While Nginx and Envoy can do nothing with wrong memory usage. Debugging such a b ### Observability -+ BFE provides [rich internal status](../monitor) for external observation. ++ BFE provides [rich internal status](../operation/monitor.md) for external observation. + Nginx and Traefik provide less internal status. + Envoy also provides quite a lot internal status. diff --git a/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md index 0108fc830..16d4e5377 100644 --- a/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/en_us/modules/mod_auth_jwt/mod_auth_jwt.md @@ -16,7 +16,7 @@ conf/mod_auth_jwt/mod_auth_jwt.conf ### Example -``` +```ini [Basic] DataPath = mod_auth_jwt/auth_jwt_rule.data ``` @@ -45,7 +45,7 @@ echo -n jwt_example | base64 | tr '+/' '-_' | tr -d '=' ``` * key file configuration example -``` +```json [ { "k": "and0X2V4YW1wbGU", diff --git a/docs/zh_cn/introduction/comparison.md b/docs/zh_cn/introduction/comparison.md index 3c35de818..e77cddf79 100644 --- a/docs/zh_cn/introduction/comparison.md +++ b/docs/zh_cn/introduction/comparison.md @@ -40,7 +40,7 @@ ### 对于转发规则的描述方式 -+ BFE基于[条件表达式](../condition) ++ BFE基于[条件表达式](../condition/condition_grammar.md) + Nginx基于正则表达式 + Traefik支持基于请求内容的分流,但无法支持灵活的与或非逻辑 + Envoy支持基于域名、Path及Header的转发规则 @@ -69,7 +69,7 @@ ### 内部状态展示 -+ BFE对程序内部状态,提供了[丰富的展示](../monitor) ++ BFE对程序内部状态,提供了[丰富的展示](../operation/monitor.md) + Nginx和Traefik提供的内部状态信息较少 + Envoy也提供了丰富的内部状态展示 diff --git a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md index 5b80e54a9..a5fdd40f5 100644 --- a/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md +++ b/docs/zh_cn/modules/mod_auth_jwt/mod_auth_jwt.md @@ -16,7 +16,7 @@ mod_auth_jwt支持JWT([JSON Web Token](https://tools.ietf.org/html/rfc7519))认 ### 配置示例 -``` +```ini [Basic] DataPath = mod_auth_jwt/auth_jwt_rule.data ``` @@ -45,7 +45,7 @@ echo -n jwt_example | base64 | tr '+/' '-_' | tr -d '=' ``` * JWK配置文件示例: -``` +```json [ { "k": "and0X2V4YW1wbGU", From 73c01e6778305841c03b7a68db8b98894b48f016 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Tue, 19 May 2020 11:04:46 +0800 Subject: [PATCH 099/111] docs: fix minor issues in home page --- docs/material/overrides/home_en.html | 4 ++-- docs/material/overrides/home_zh.html | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/material/overrides/home_en.html b/docs/material/overrides/home_en.html index ff7a7ef66..97e7509a3 100644 --- a/docs/material/overrides/home_en.html +++ b/docs/material/overrides/home_en.html @@ -213,7 +213,7 @@

    - Content based routing

    + Routing

    BFE provides an advanced domain-specific language to describe routing rules which are easy to understand and maintain.

    @@ -253,7 +253,7 @@

    d="M13 11h5l-1.5-1.5 1.42-1.42L21.84 12l-3.92 3.92-1.42-1.42L18 13h-5v5l1.5-1.5 1.42 1.42L12 21.84l-3.92-3.92L9.5 16.5 11 18v-5H6l1.5 1.5-1.42 1.42L2.16 12l3.92-3.92L7.5 9.5 6 11h5V6L9.5 7.5 8.08 6.08 12 2.16l3.92 3.92L14.5 7.5 13 6v5z" /> Easily integrated

    BFE is easily integrated with mainstream layer 4 load balancing solution, and other ecosystem - projects(e.g. Kubernetes、Prometheus、Jaeger、Fluentd etc).

    + projects(e.g. Kubernetes, Prometheus, Jaeger, Fluentd etc).

    {% endblock %} diff --git a/docs/material/overrides/home_zh.html b/docs/material/overrides/home_zh.html index ff5d63e5f..4dd7f8d36 100644 --- a/docs/material/overrides/home_zh.html +++ b/docs/material/overrides/home_zh.html @@ -202,7 +202,7 @@

    d="M6 20a6 6 0 01-6-6c0-3.09 2.34-5.64 5.35-5.96A7.496 7.496 0 0112 4a7.5 7.5 0 017.35 6A5.02 5.02 0 0124 15a5 5 0 01-5 5H6M9.09 8.4L4.5 13l4.59 4.6 1.41-1.42L7.32 13l3.18-3.18L9.09 8.4m5.82 0L13.5 9.82 16.68 13l-3.18 3.18 1.41 1.42L19.5 13l-4.59-4.6z" /> 支持丰富的接入协议

    -

    支持HTTP,HTTPS,SPDY,HTTP/2,WebSocket,TLS等。未来计划支持gRPC, HTTP/3

    +

    支持HTTP、HTTPS、SPDY、HTTP/2、WebSocket、TLS等。未来计划支持gRPC、HTTP/3

    @@ -243,10 +243,10 @@

    - 兼容适配主流生态项目

    + 适配主流生态项目

    兼容适配主流四层负载均衡方案,及其它生态项目如Kubernetes、Prometheus、Jaeger、Fluentd等

    {% endblock %} {% block content %}{% endblock %} -{% block footer %}{% endblock %} \ No newline at end of file +{% block footer %}{% endblock %} From a331cd528b6bd5bffa1cc64555227c2dd0e3a82d Mon Sep 17 00:00:00 2001 From: yangsijie Date: Tue, 19 May 2020 15:46:04 +0800 Subject: [PATCH 100/111] docs: update homepage --- docs/material/overrides/home_zh.html | 2 +- docs/mkdocs_en.yml | 2 +- docs/mkdocs_zh.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/material/overrides/home_zh.html b/docs/material/overrides/home_zh.html index 4dd7f8d36..359628308 100644 --- a/docs/material/overrides/home_zh.html +++ b/docs/material/overrides/home_zh.html @@ -161,7 +161,7 @@
    -

    BFE开源版

    +

    BFE

    {{ config.site_description }}

    快速开始 diff --git a/docs/mkdocs_en.yml b/docs/mkdocs_en.yml index 0356f290c..288b9d0e9 100644 --- a/docs/mkdocs_en.yml +++ b/docs/mkdocs_en.yml @@ -6,7 +6,7 @@ repo_url: https://github.com/baidu/bfe docs_dir: 'en_us' edit_uri: edit/develop/docs/en_us/ site_description: >- - A modern layer 7 load balancer derived from proprietary Baidu Front End. + A modern layer 7 load balancer theme: name: null diff --git a/docs/mkdocs_zh.yml b/docs/mkdocs_zh.yml index ecfc6190f..8062521d5 100644 --- a/docs/mkdocs_zh.yml +++ b/docs/mkdocs_zh.yml @@ -6,7 +6,7 @@ repo_url: https://github.com/baidu/bfe docs_dir: 'zh_cn' edit_uri: edit/develop/docs/zh_cn/ site_description: >- - 基于百度统一接入前端开源的现代化的七层负载均衡系统 + 现代化的七层负载均衡系统 theme: name: null From ab45aa718d628e33d8f32caedd0aabb8a6b4e7ff Mon Sep 17 00:00:00 2001 From: lx-or-xxxl <49898488+lx-or-xxxl@users.noreply.github.com> Date: Tue, 19 May 2020 17:50:30 +0800 Subject: [PATCH 101/111] docs: update homepage and add description section (#498) --- docs/material/overrides/home_en.html | 194 ++++++++++++++++++++++++++- docs/material/overrides/home_zh.html | 193 +++++++++++++++++++++++++- 2 files changed, 379 insertions(+), 8 deletions(-) diff --git a/docs/material/overrides/home_en.html b/docs/material/overrides/home_en.html index 97e7509a3..8bc51a010 100644 --- a/docs/material/overrides/home_en.html +++ b/docs/material/overrides/home_en.html @@ -156,6 +156,125 @@ border-radius: 3px; } } + + /* 描述部分样式开始 */ + .open-source { + margin: 30px 0 50px 0; + font-family: 'Lato', sans-serif; + font-weight: 300; + text-align: center; + } + + .open-source h1 { + font-weight: 300; + font-size: 36px; + font-family: inherit; + line-height: 1.1; + color: inherit; + margin-top: 0; + } + + .open-source p { + width: 50%; + margin: auto; + font-size: 20px; + } + + .open-source .github-stars { + margin-top: 20px; + width: 200px; + height: 30px; + } + + .open-source a { + color: #337ab7; + text-decoration: none; + background-color: transparent; + font-family: 'Lato', sans-serif; + font-weight: 300; + text-align: center; + } + + .open-source a:hover { + text-decoration: underline; + } + + .open-source h1 svg { + height: 40px; + transform: translateY(20%); + margin-right: 10px; + } + + .hr { + border-bottom: 1px solid #eee; + width: 100%; + margin: 20px 0; + } + + /* 描述部分样式结束 */ + /* 页脚部分样式开始 */ + .md-footer-meta { + background-color: #000000de; + } + + .md-typeset { + font-size: .8rem; + line-height: 1.6; + -webkit-print-color-adjust: exact; + color-adjust: exact; + } + + .md-footer-meta__inner { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + padding: .2rem; + } + + .md-grid { + max-width: 61rem; + margin-right: auto; + margin-left: auto; + } + + .md-footer-copyright { + width: auto; + margin: auto .6rem; + padding: .4rem 0; + color: var(--md-default-bg-color--lighter); + font-size: .64rem; + } + + @media screen and (max-width:45em) { + .md-footer-copyright { + width: 100%; + } + } + + .md-footer-copyright__highlight { + color: var(--md-default-bg-color--light); + } + + .md-footer-social { + padding: .6rem 0; + margin: 0 .4rem; + } + + .md-footer-social__link { + display: inline-block; + width: 1.6rem; + height: 1.6rem; + text-align: center; + } + + .md-typeset { + font-size: .8rem; + line-height: 1.6; + -webkit-print-color-adjust: exact; + color-adjust: exact; + } + + /* 页脚部分样式结束 */
    @@ -213,7 +332,7 @@

    - Routing

    + Content based routing

    BFE provides an advanced domain-specific language to describe routing rules which are easy to understand and maintain.

    @@ -242,7 +361,7 @@

    Observability

    -

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs +

    BFE includes detailed built-in metrics for all subsystems. BFE writes various logs for trouble shooting, data analysis and visualization. BFE also supports distributed tracing.

    @@ -253,9 +372,76 @@

    d="M13 11h5l-1.5-1.5 1.42-1.42L21.84 12l-3.92 3.92-1.42-1.42L18 13h-5v5l1.5-1.5 1.42 1.42L12 21.84l-3.92-3.92L9.5 16.5 11 18v-5H6l1.5 1.5-1.42 1.42L2.16 12l3.92-3.92L7.5 9.5 6 11h5V6L9.5 7.5 8.08 6.08 12 2.16l3.92 3.92L14.5 7.5 13 6v5z" /> Easily integrated

    BFE is easily integrated with mainstream layer 4 load balancing solution, and other ecosystem - projects(e.g. Kubernetes, Prometheus, Jaeger, Fluentd etc).

    + projects(e.g. Kubernetes、Prometheus、Jaeger、Fluentd etc).

    +
    +
    +
    +
    +
    + + {% endblock %} {% block content %}{% endblock %} -{% block footer %}{% endblock %} +{% block footer %}{% endblock %} \ No newline at end of file diff --git a/docs/material/overrides/home_zh.html b/docs/material/overrides/home_zh.html index 359628308..b0de01876 100644 --- a/docs/material/overrides/home_zh.html +++ b/docs/material/overrides/home_zh.html @@ -156,12 +156,131 @@ border-radius: 3px; } } + + /* 描述部分样式开始 */ + .open-source { + margin: 30px 0 50px 0; + font-family: 'Lato', sans-serif; + font-weight: 300; + text-align: center; + } + + .open-source h1 { + font-weight: 300; + font-size: 36px; + font-family: inherit; + line-height: 1.1; + color: inherit; + margin-top: 0; + } + + .open-source p { + width: 50%; + margin: auto; + font-size: 20px; + } + + .open-source .github-stars { + margin-top: 20px; + width: 200px; + height: 30px; + } + + .open-source a { + color: #337ab7; + text-decoration: none; + background-color: transparent; + font-family: 'Lato', sans-serif; + font-weight: 300; + text-align: center; + } + + .open-source a:hover { + text-decoration: underline; + } + + .open-source h1 svg { + height: 40px; + transform: translateY(20%); + margin-right: 10px; + } + + .hr { + border-bottom: 1px solid #eee; + width: 100%; + margin: 20px 0; + } + + /* 描述部分样式结束 */ + /* 页脚部分样式开始 */ + .md-footer-meta { + background-color: #000000de; + } + + .md-typeset { + font-size: .8rem; + line-height: 1.6; + -webkit-print-color-adjust: exact; + color-adjust: exact; + } + + .md-footer-meta__inner { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + padding: .2rem; + } + + .md-grid { + max-width: 61rem; + margin-right: auto; + margin-left: auto; + } + + .md-footer-copyright { + width: auto; + margin: auto .6rem; + padding: .4rem 0; + color: var(--md-default-bg-color--lighter); + font-size: .64rem; + } + + @media screen and (max-width:45em) { + .md-footer-copyright { + width: 100%; + } + } + + .md-footer-copyright__highlight { + color: var(--md-default-bg-color--light); + } + + .md-footer-social { + padding: .6rem 0; + margin: 0 .4rem; + } + + .md-footer-social__link { + display: inline-block; + width: 1.6rem; + height: 1.6rem; + text-align: center; + } + + .md-typeset { + font-size: .8rem; + line-height: 1.6; + -webkit-print-color-adjust: exact; + color-adjust: exact; + } + + /* 页脚部分样式结束 */
    +
    +
    +
    +
    +
    + {% endblock %} {% block content %}{% endblock %} -{% block footer %}{% endblock %} +{% block footer %}{% endblock %} \ No newline at end of file From bf1ce9db57989c608972c57bb1a67d0786abe060 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Wed, 20 May 2020 13:37:38 +0800 Subject: [PATCH 102/111] Update CHANGELOG.md --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 013a4e26a..f4358e495 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - mod_trace: support tracing based on Elastic APM - mod_compress: support brotli algorithm -- Add condition primitive: req_host_tag_in +- mod_rewrite: add HostSuffixReplace action +- Add condition primitive: req_host_tag_in/req_host_suffix_in +- Add static content of website based on mkdocs +- Documents optimization + +### Changed +- Refactor and simplify mod_auth_jwt + +### Removed +- Remove legacy type of Layer4LoadBalancer ## [v0.9.0] - 2020-04-16 From 04893fec6c29c823c9105c7b51a2782f2b0df2c5 Mon Sep 17 00:00:00 2001 From: lx-or-xxxl <49898488+lx-or-xxxl@users.noreply.github.com> Date: Wed, 20 May 2020 19:40:35 +0800 Subject: [PATCH 103/111] docs: add adopters to home page (#500) --- docs/material/assets/images/baidu.png | Bin 0 -> 107239 bytes docs/material/assets/images/baiducloud.png | Bin 0 -> 4391 bytes docs/material/assets/images/cctv.png | Bin 0 -> 33911 bytes .../assets/images/china_everbright_bank.jpg | Bin 0 -> 15004 bytes docs/material/assets/images/china_life.jpg | Bin 0 -> 7254 bytes docs/material/assets/images/duxiaoman.png | Bin 0 -> 113931 bytes .../assets/images/sichuan_airlines.png | Bin 0 -> 11349 bytes docs/material/assets/images/spd_bank.jpeg | Bin 0 -> 14257 bytes docs/material/overrides/home_en.html | 81 +++++++++++++++++- docs/material/overrides/home_zh.html | 73 +++++++++++++++- 10 files changed, 150 insertions(+), 4 deletions(-) create mode 100644 docs/material/assets/images/baidu.png create mode 100644 docs/material/assets/images/baiducloud.png create mode 100644 docs/material/assets/images/cctv.png create mode 100644 docs/material/assets/images/china_everbright_bank.jpg create mode 100644 docs/material/assets/images/china_life.jpg create mode 100644 docs/material/assets/images/duxiaoman.png create mode 100644 docs/material/assets/images/sichuan_airlines.png create mode 100644 docs/material/assets/images/spd_bank.jpeg diff --git a/docs/material/assets/images/baidu.png b/docs/material/assets/images/baidu.png new file mode 100644 index 0000000000000000000000000000000000000000..29f5486a0189242b1c659b4caf5cda95ebd33d61 GIT binary patch literal 107239 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

    5Q#}$#D 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 K=)kocWB&st=uOoC literal 0 HcmV?d00001 diff --git a/docs/material/assets/images/baiducloud.png b/docs/material/assets/images/baiducloud.png new file mode 100644 index 0000000000000000000000000000000000000000..d663f5712ae17c933133fb4d8e95dc8a627350b5 GIT binary patch literal 4391 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 z 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 literal 0 HcmV?d00001 diff --git a/docs/material/assets/images/china_everbright_bank.jpg b/docs/material/assets/images/china_everbright_bank.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f6db9ad380223ad3964bcf4e0addd96cef03f39 GIT binary patch literal 15004 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 Sq|rZL6@HzM|5<=%)Bgvqc^#bq literal 0 HcmV?d00001 diff --git a/docs/material/assets/images/duxiaoman.png b/docs/material/assets/images/duxiaoman.png new file mode 100644 index 0000000000000000000000000000000000000000..abe7e406d1571dcf3afe2634a4c479be521dc26a GIT binary patch literal 113931 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 literal 0 HcmV?d00001 diff --git a/docs/material/assets/images/sichuan_airlines.png b/docs/material/assets/images/sichuan_airlines.png new file mode 100644 index 0000000000000000000000000000000000000000..57e23e4b17a04dc0b85683c5213cf72be381442f GIT binary patch literal 11349 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 z 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 E0L~Wg0{{R3 literal 0 HcmV?d00001 diff --git a/docs/material/overrides/home_en.html b/docs/material/overrides/home_en.html index 8bc51a010..3cabaefcd 100644 --- a/docs/material/overrides/home_en.html +++ b/docs/material/overrides/home_en.html @@ -159,7 +159,7 @@ /* 描述部分样式开始 */ .open-source { - margin: 30px 0 50px 0; + margin: 30px 0; font-family: 'Lato', sans-serif; font-weight: 300; text-align: center; @@ -212,6 +212,42 @@ } /* 描述部分样式结束 */ + /* 合作伙伴样式开始 */ + .text-center { + text-align: center; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; + margin-top: 15px; + font-family: 'Lato', sans-serif; + font-size: 23px; + font-weight: 300; + padding-bottom: 10px; + } + + .logos { + display: flex; + align-items: center; + justify-content: center; + flex-flow: row wrap; + margin: 0 auto; + } + + .logos img { + flex: 1 1 auto; + padding: 25px; + max-height: 130px; + vertical-align: middle; + } + + .hr-logos { + margin-top: 0; + margin-bottom: 30px; + } + + /* 合作伙伴样式结束 */ + /* 页脚部分样式开始 */ .md-footer-meta { background-color: #000000de; @@ -295,6 +331,7 @@

    BFE

    +

    @@ -375,22 +412,60 @@

    projects(e.g. Kubernetes、Prometheus、Jaeger、Fluentd etc).

    +
    +

    Open Source

    -

    BFE is open source and available under the Apache 2 +

    BFE is open source and available under the Apache 2.0 License on GitHub .

    - -
    我们的一些用户包括:
    +
    合作案例包括:
    diff --git a/docs/zh_cn/COMMUNITY.md b/docs/zh_cn/COMMUNITY.md index 17f875748..2833bacd1 100644 --- a/docs/zh_cn/COMMUNITY.md +++ b/docs/zh_cn/COMMUNITY.md @@ -20,5 +20,5 @@ BFE是独立的开源项目,BFE项目遵循如下[管理办法](https://github 为了构建一个受欢迎且无骚扰的社区,BFE社区应遵循如下[行为准则](https://github.com/baidu/bfe/blob/develop/CODE_OF_CONDUCT.md)。 ## 申请专项合作 -欢迎邮件我们 bfe-osc@baidu.com 洽谈。 +欢迎[邮件](mailto:bfe-osc@baidu.com)我们洽谈。 diff --git a/docs/zh_cn/condition/condition_naming_convention.md b/docs/zh_cn/condition/condition_naming_convention.md index 3cb71b2e8..a2ce6266c 100644 --- a/docs/zh_cn/condition/condition_naming_convention.md +++ b/docs/zh_cn/condition/condition_naming_convention.md @@ -4,50 +4,38 @@ ## 条件原语名称前缀 - 针对Request的原语,会以"**req_**"开头 - - 如:**req_host_in()** + - 如:req_host_in() - 针对Response的原语,会以"**res_**"开头 - - 如:**res_code_in()** + - 如:res_code_in() - 针对Session的原语,会以"**ses_**"开头 - - 如:**ses_vip_in()** + - 如:ses_vip_in() - 针对系统原语,会以"**bfe_**" 开头 - - 如:**bfe_time_range**() + - 如:bfe_time_range() ## 条件原语中比较的动作名称 - **match**:精确匹配 - - 这种情况下,参数中会提供唯一的一个值供比较 - - 如:**req_tag_match()** - + - 如:req_tag_match() - **in**:值是否在某个集合中 - - 如:**req_host_in()** - + - 如:req_host_in() - **prefix_in**:值的前缀是否在某个集合中 - - 如:**req_path_prefix_in()** - + - 如:req_path_prefix_in() - **suffix_in**:值的后缀是否在某个集合中 - - 如:**req_path_suffix_in()** - + - 如:req_path_suffix_in() - **key_exist**:是否存在指定的key - - 如:**req_query_key_exist()** - + - 如:req_query_key_exist() - **value_in**:对给定的key,其value是否落在某个集合中 - - 如:**req_query_key_exist()** - + - 如:req_query_key_exist() - **value_prefix_in**:对给定的key,其value的前缀是否在某个集合中 - - 如:**req_header_value_prefix_in()** - + - 如:req_header_value_prefix_in() - **value_suffix_in**:对给定的key,其value的后缀是否在某个集合中 - - 如:**req_header_value_suffix_in()** - -- **range**:范围匹配 - - 如:**req_cip_range()** - + - 如:req_header_value_suffix_in() +- **range**:范围匹配 + - 如:req_cip_range() - **regmatch**:正则匹配 - - 如:**req_url_regmatch()** + - 如:req_url_regmatch() - 注:这类条件原语不合理使用将明显影响性能,谨慎使用 - - **contain**: 字符串包含匹配 - - 如:**req_cookie_value_contain()** - + - 如:req_cookie_value_contain() diff --git a/docs/zh_cn/condition/request/cookie.md b/docs/zh_cn/condition/request/cookie.md index c3cc8bb6b..b886916ed 100644 --- a/docs/zh_cn/condition/request/cookie.md +++ b/docs/zh_cn/condition/request/cookie.md @@ -9,7 +9,7 @@ | key_list | String
    key列表,多个之间使用‘|’连接 | * 示例 -``` +```go req_cookie_key_in("uid|cid|uss") ``` @@ -24,7 +24,7 @@ req_cookie_key_in("uid|cid|uss") | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_cookie_value_in("deviceid", "testid", true) ``` @@ -39,7 +39,7 @@ req_cookie_value_in("deviceid", "testid", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_cookie_value_prefix_in("deviceid", "x", true) ``` @@ -54,7 +54,7 @@ req_cookie_value_prefix_in("deviceid", "x", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_cookie_value_suffix_in("deviceid", "1", true) ``` @@ -69,7 +69,7 @@ req_cookie_value_suffix_in("deviceid", "1", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_cookie_value_hash_in("uid", "100", true) ``` @@ -84,7 +84,7 @@ req_cookie_value_hash_in("uid", "100", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_cookie_value_contain("deviceid", "test", true) ``` diff --git a/docs/zh_cn/condition/request/header.md b/docs/zh_cn/condition/request/header.md index f0200889d..4c115530c 100644 --- a/docs/zh_cn/condition/request/header.md +++ b/docs/zh_cn/condition/request/header.md @@ -2,19 +2,19 @@ ## req_header_key_in(key_list) * 含义: 判断请求头部中key是否为key_list之一 - * 注:Header名称使用HTTP协议规范形式 + * 参数 | 参数 | 描述 | | -------- | ---------------------- | -| key_list | String
    key列表, 多个之间使用‘|’连接 | +| key_list | String
    key列表, 多个之间使用‘|’连接
    Header名称使用HTTP协议规范形式| * 示例 -``` -# 正确: +```go +// 正确: req_header_key_in("Header-Test") -# 错误: +// 错误: req_header_key_in("Header-test") req_header_key_in("header-test") req_header_key_in("header-Test") @@ -31,7 +31,7 @@ req_header_key_in("header-Test") | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_header_value_in("Referer", "https://example.org/login", true) ``` @@ -46,7 +46,7 @@ req_header_value_in("Referer", "https://example.org/login", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_header_value_prefix_in("Referer", "https://example.org", true) ``` @@ -61,7 +61,7 @@ req_header_value_prefix_in("Referer", "https://example.org", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_header_value_suffix_in("User-Agent", "2.0.4", true) ``` @@ -76,7 +76,7 @@ req_header_value_suffix_in("User-Agent", "2.0.4", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_header_value_hash_in("X-Device-Id", "100-200|400", true) ``` @@ -91,6 +91,6 @@ req_header_value_hash_in("X-Device-Id", "100-200|400", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_header_value_contain("User-Agent", "Firefox|Chrome", true) ``` diff --git a/docs/zh_cn/condition/request/ip.md b/docs/zh_cn/condition/request/ip.md index ccc91b9be..90b5982ac 100644 --- a/docs/zh_cn/condition/request/ip.md +++ b/docs/zh_cn/condition/request/ip.md @@ -12,7 +12,7 @@ * 示例 -``` +```go req_cip_range("10.0.0.1", "10.0.0.10") ``` @@ -31,7 +31,7 @@ req_cip_range("10.0.0.1", "10.0.0.10") * 示例 -``` +```go req_cip_hash_in("100") req_cip_hash_in("100-200") req_cip_hash_in("100-200|1000-1100") @@ -48,7 +48,7 @@ req_cip_hash_in("100-200|1000-1100") * 示例 -``` +```go req_vip_in("10.0.0.1|10.0.0.2") ``` @@ -64,7 +64,7 @@ req_vip_in("10.0.0.1|10.0.0.2") * 示例 -``` +```go req_vip_range("10.0.0.1", "10.0.0.10") ``` diff --git a/docs/zh_cn/condition/request/method.md b/docs/zh_cn/condition/request/method.md index c454984fa..13e8b07c2 100644 --- a/docs/zh_cn/condition/request/method.md +++ b/docs/zh_cn/condition/request/method.md @@ -11,6 +11,6 @@ * 示例 -``` +```go req_method_in("GET|POST") ``` diff --git a/docs/zh_cn/condition/request/tag.md b/docs/zh_cn/condition/request/tag.md index eedd7238d..c5c3baabc 100644 --- a/docs/zh_cn/condition/request/tag.md +++ b/docs/zh_cn/condition/request/tag.md @@ -13,6 +13,6 @@ * 示例 -``` +```go req_tag_match("clientIP", "blacklist") ``` diff --git a/docs/zh_cn/condition/request/uri.md b/docs/zh_cn/condition/request/uri.md index 65e990d7f..d904e172b 100644 --- a/docs/zh_cn/condition/request/uri.md +++ b/docs/zh_cn/condition/request/uri.md @@ -9,37 +9,37 @@ | host_list | String
    host列表,host之间使用‘|’连接 | * 示例 -``` +```go req_host_in("www.bfe-networks.com|bfe-networks.com") ``` ## req_path_in(path_list, case_insensitive) * 含义: 判断http的path是否为path_list之一 - * 注:需要包含开头的/ + * 参数 | 参数 | 描述 | | -------- | ---------------------- | -| path_list | String
    path列表,多个path之间使用‘|’连接 | +| path_list | String
    path列表,多个path之间使用‘|’连接
    每个path应以"/"开头 | | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_path_in("/api/search|/api/list", true) ``` ## req_path_prefix_in(prefix_list, case_insensitive) * 含义: 判断http的path是否前缀匹配prefix_list之一 - * 注:需要包含开头的/ + * 参数 | 参数 | 描述 | | -------- | ---------------------- | -| prefix_list | String
    path prefix列表, 多个之间使用‘|’连接 | +| prefix_list | String
    path prefix列表, 多个之间使用‘|’连接
    每个path prefix应以"/"开头 | | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_path_prefix_in("/api/report|/api/analytics", false) ``` @@ -53,7 +53,7 @@ req_path_prefix_in("/api/report|/api/analytics", false) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_path_suffix_in(".php|.jsp", false) ``` @@ -66,7 +66,7 @@ req_path_suffix_in(".php|.jsp", false) | key_list | String
    query key列表, 多个之间使用‘|’连接 | * 示例 -``` +```go req_query_key_in("word|wd") ``` @@ -79,7 +79,7 @@ req_query_key_in("word|wd") | prefix_list | String
    key prefix列表, 多个之间使用‘|’连接 | * 示例 -``` +```go req_query_key_prefix_in("rid") ``` @@ -94,7 +94,7 @@ req_query_key_prefix_in("rid") | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_query_value_in("uid", "x|y|z", true) ``` @@ -109,7 +109,7 @@ req_query_value_in("uid", "x|y|z", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_query_value_prefix_in("uid", "100|200", true) ``` @@ -124,7 +124,7 @@ req_query_value_prefix_in("uid", "100|200", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_query_value_suffix_in("uid", "1|2|3", true) ``` @@ -139,7 +139,7 @@ req_query_value_suffix_in("uid", "1|2|3", true) | case_insensitive | Boolean
    是否忽略大小写 | * 示例 -``` +```go req_query_value_hash_in("cid", "100", true) ``` @@ -152,7 +152,7 @@ req_query_value_hash_in("cid", "100", true) | port_list | String
    port列表,多个port之间使用‘|’连接 | * 示例 -``` +```go req_port_in("80|8080") ``` @@ -166,6 +166,6 @@ req_port_in("80|8080") | reg_exp | String
    表示正则表达式 | * 示例 -``` +```go req_url_regmatch(`/s\?word=123`) ``` diff --git a/docs/zh_cn/condition/response/code.md b/docs/zh_cn/condition/response/code.md index d11efc2c1..14cce90d4 100644 --- a/docs/zh_cn/condition/response/code.md +++ b/docs/zh_cn/condition/response/code.md @@ -11,7 +11,7 @@ * 示例 -``` +```go res_code_in("200|500") ``` diff --git a/docs/zh_cn/condition/response/header.md b/docs/zh_cn/condition/response/header.md index 707d8b9d5..a91fe6f97 100644 --- a/docs/zh_cn/condition/response/header.md +++ b/docs/zh_cn/condition/response/header.md @@ -11,7 +11,7 @@ * 示例 -``` +```go res_header_key_in("X-Bfe-Debug") ``` @@ -28,7 +28,7 @@ res_header_key_in("X-Bfe-Debug") * 示例 -``` +```go res_header_value_in("X-Bfe-Debug", "1", true) ``` diff --git a/docs/zh_cn/condition/session/ip.md b/docs/zh_cn/condition/session/ip.md index 528672de4..e919a5af4 100644 --- a/docs/zh_cn/condition/session/ip.md +++ b/docs/zh_cn/condition/session/ip.md @@ -12,7 +12,7 @@ * 示例 -``` +```go ses_sip_range("10.0.0.1", "10.0.0.10") ``` @@ -28,7 +28,7 @@ ses_sip_range("10.0.0.1", "10.0.0.10") * 示例 -``` +```go ses_vip_range("10.0.0.1", "10.0.0.10") ``` diff --git a/docs/zh_cn/condition/session/tls.md b/docs/zh_cn/condition/session/tls.md index 4fab101cf..43a555270 100644 --- a/docs/zh_cn/condition/session/tls.md +++ b/docs/zh_cn/condition/session/tls.md @@ -11,7 +11,7 @@ * 示例 -``` +```go ses_tls_sni_in("example.com|example.org") ``` @@ -30,6 +30,6 @@ ses_tls_sni_in("example.com|example.org") * 示例 -``` +```go ses_tls_client_ca_in("ca1|ca2") ``` diff --git a/docs/zh_cn/condition/system/time.md b/docs/zh_cn/condition/system/time.md index aedbce3d6..67504587c 100644 --- a/docs/zh_cn/condition/system/time.md +++ b/docs/zh_cn/condition/system/time.md @@ -14,7 +14,7 @@ * 示例 -``` +```go bfe_time_range("20190204203000H", "20190204204500H") ``` From 91c041abb109e80f697dafebb03be14027b2d364 Mon Sep 17 00:00:00 2001 From: Sijie Yang Date: Fri, 22 May 2020 15:02:20 +0800 Subject: [PATCH 108/111] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ec8066cd..d3409d5fb 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ BFE is an open-source layer 7 load balancer derived from proprietary Baidu Front - See [Build and run](docs/en_us/installation/install_from_source.md) ## Documentation -- [English version](docs/en_us/SUMMARY.md) -- [Chinese version](docs/zh_cn/SUMMARY.md) +- [English version](https://www.bfe-networks.net/en_us/ABOUT/) +- [Chinese version](https://www.bfe-networks.net/zh_cn/ABOUT/) ## Contributing - Please create an issue in [issue list](http://github.com/baidu/bfe/issues). From 328d84482e97538ad9c139eea1627454062e0a28 Mon Sep 17 00:00:00 2001 From: lx-or-xxxl <49898488+lx-or-xxxl@users.noreply.github.com> Date: Fri, 22 May 2020 20:39:11 +0800 Subject: [PATCH 109/111] website: add language switching and access statistics (#504) --- .../assets/stylesheets/main.127eade9.min.css | 2 +- docs/material/base.html | 9 ++++ docs/material/partials/header.html | 3 ++ docs/material/partials/language-change.html | 46 +++++++++++++++++++ 4 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 docs/material/partials/language-change.html diff --git a/docs/material/assets/stylesheets/main.127eade9.min.css b/docs/material/assets/stylesheets/main.127eade9.min.css index 3f82e7ce7..9c7d8a1e6 100644 --- a/docs/material/assets/stylesheets/main.127eade9.min.css +++ b/docs/material/assets/stylesheets/main.127eade9.min.css @@ -1,3 +1,3 @@ -html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}html{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}body{margin:0}hr{box-sizing:content-box;overflow:visible}a,button,label,input{-webkit-tap-highlight-color:transparent}a{color:inherit;text-decoration:none}small{font-size:80%}sub,sup{position:relative;font-size:80%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}table{border-collapse:separate;border-spacing:0}td,th{font-weight:normal;vertical-align:top}button{margin:0;padding:0;font-size:inherit;background:transparent;border:0}input{border:0;outline:0}:root{--md-default-fg-color: hsla(0, 0%, 0%, 0.87);--md-default-fg-color--light: hsla(0, 0%, 0%, 0.54);--md-default-fg-color--lighter: hsla(0, 0%, 0%, 0.26);--md-default-fg-color--lightest: hsla(0, 0%, 0%, 0.07);--md-default-bg-color: hsla(0, 0%, 100%, 1);--md-default-bg-color--light: hsla(0, 0%, 100%, 0.7);--md-default-bg-color--lighter: hsla(0, 0%, 100%, 0.3);--md-default-bg-color--lightest: hsla(0, 0%, 100%, 0.12);--md-primary-fg-color: hsla(231deg, 48%, 48%, 1);--md-primary-fg-color--light: hsla(230deg, 44%, 64%, 1);--md-primary-fg-color--dark: hsla(232deg, 54%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light);--md-accent-fg-color: hsla(231deg, 99%, 66%, 1);--md-accent-fg-color--transparent: hsla(231deg, 99%, 66%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light);--md-code-bg-color: hsla(0, 0%, 96%, 1);--md-code-fg-color: hsla(200, 18%, 26%, 1)}.md-icon svg{display:block;width:1.2rem;height:1.2rem;margin:0 auto;fill:currentColor}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body,input{color:var(--md-default-fg-color);font-feature-settings:"kern","liga";font-family:-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,pre,kbd{color:var(--md-default-fg-color);font-feature-settings:"kern";font-family:SFMono-Regular,Consolas,Menlo,monospace}.md-typeset{font-size:.8rem;line-height:1.6;-webkit-print-color-adjust:exact;color-adjust:exact}.md-typeset p,.md-typeset ul,.md-typeset ol,.md-typeset blockquote{margin:1em 0}.md-typeset h1{margin:0 0 2rem;color:var(--md-default-fg-color--light);font-weight:300;font-size:1.5625rem;line-height:1.3;letter-spacing:-0.01em}.md-typeset h2{margin:2rem 0 .8rem;font-weight:300;font-size:1.25rem;line-height:1.4;letter-spacing:-0.01em}.md-typeset h3{margin:1.6rem 0 .8rem;font-weight:400;font-size:1rem;line-height:1.5;letter-spacing:-0.01em}.md-typeset h2+h3{margin-top:.8rem}.md-typeset h4{margin:.8rem 0;font-weight:700;font-size:.8rem;letter-spacing:-0.01em}.md-typeset h5,.md-typeset h6{margin:.8rem 0;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;letter-spacing:-0.01em}.md-typeset h5{text-transform:uppercase}.md-typeset hr{margin:1.5em 0;border-bottom:.05rem dotted var(--md-default-fg-color--lighter)}.md-typeset a{color:var(--md-primary-fg-color);word-break:break-word}.md-typeset a,.md-typeset a::before{transition:color 125ms}.md-typeset a:focus,.md-typeset a:hover{color:var(--md-accent-fg-color)}.md-typeset code,.md-typeset pre,.md-typeset kbd{color:var(--md-code-fg-color);direction:ltr}@media print{.md-typeset code,.md-typeset pre,.md-typeset kbd{white-space:pre-wrap}}.md-typeset code{padding:0 .2941176471em;font-size:.85em;word-break:break-word;background-color:var(--md-code-bg-color);border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset h1 code,.md-typeset h2 code,.md-typeset h3 code,.md-typeset h4 code,.md-typeset h5 code,.md-typeset h6 code{margin:initial;padding:initial;background-color:transparent;box-shadow:none}.md-typeset a>code{color:currentColor}.md-typeset pre{position:relative;margin:1em 0;line-height:1.4}.md-typeset pre>code{display:block;margin:0;padding:.525rem 1.1764705882em;overflow:auto;word-break:normal;box-shadow:none;-webkit-box-decoration-break:slice;box-decoration-break:slice;touch-action:auto;scrollbar-width:thin}.md-typeset pre>code::-webkit-scrollbar{width:.2rem;height:.2rem}.md-typeset pre>code::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-typeset pre>code::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@media screen and (max-width: 44.9375em){.md-typeset>pre{margin:1em -0.8rem}.md-typeset>pre code{border-radius:0}}.md-typeset kbd{display:inline-block;padding:0 .6666666667em;font-size:.75em;line-height:1.5;vertical-align:text-top;word-break:break-word;border-radius:.1rem;box-shadow:0 .1rem 0 .05rem var(--md-default-fg-color--lighter),0 .1rem 0 var(--md-default-fg-color--lighter),inset 0 -0.1rem .2rem var(--md-default-bg-color)}.md-typeset mark{padding:0 .25em;word-break:break-word;background-color:rgba(255,235,59,.5);border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset abbr{text-decoration:none;border-bottom:.05rem dotted var(--md-default-fg-color--light);cursor:help}.md-typeset small{opacity:.75}.md-typeset sup,.md-typeset sub{margin-left:.078125em}[dir=rtl] .md-typeset sup,[dir=rtl] .md-typeset sub{margin-right:.078125em;margin-left:initial}.md-typeset blockquote{padding-left:.6rem;color:var(--md-default-fg-color--light);border-left:.2rem solid var(--md-default-fg-color--lighter)}[dir=rtl] .md-typeset blockquote{padding-right:.6rem;padding-left:initial;border-right:.2rem solid var(--md-default-fg-color--lighter);border-left:initial}.md-typeset ul{list-style-type:disc}.md-typeset ul,.md-typeset ol{margin-left:.625em;padding:0}[dir=rtl] .md-typeset ul,[dir=rtl] .md-typeset ol{margin-right:.625em;margin-left:initial}.md-typeset ul ol,.md-typeset ol ol{list-style-type:lower-alpha}.md-typeset ul ol ol,.md-typeset ol ol ol{list-style-type:lower-roman}.md-typeset ul li,.md-typeset ol li{margin-bottom:.5em;margin-left:1.25em}[dir=rtl] .md-typeset ul li,[dir=rtl] .md-typeset ol li{margin-right:1.25em;margin-left:initial}.md-typeset ul li p,.md-typeset ul li blockquote,.md-typeset ol li p,.md-typeset ol li blockquote{margin:.5em 0}.md-typeset ul li:last-child,.md-typeset ol li:last-child{margin-bottom:0}.md-typeset ul li ul,.md-typeset ul li ol,.md-typeset ol li ul,.md-typeset ol li ol{margin:.5em 0 .5em .625em}[dir=rtl] .md-typeset ul li ul,[dir=rtl] .md-typeset ul li ol,[dir=rtl] .md-typeset ol li ul,[dir=rtl] .md-typeset ol li ol{margin-right:.625em;margin-left:initial}.md-typeset dd{margin:1em 0 1em 1.875em}[dir=rtl] .md-typeset dd{margin-right:1.875em;margin-left:initial}.md-typeset img,.md-typeset svg{max-width:100%;height:auto}.md-typeset iframe{max-width:100%}.md-typeset table:not([class]){display:inline-block;max-width:100%;overflow:auto;font-size:.64rem;background:var(--md-default-bg-color);border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1);touch-action:auto}.md-typeset table:not([class])+*{margin-top:1.5em}.md-typeset table:not([class]) th:not([align]),.md-typeset table:not([class]) td:not([align]){text-align:left}[dir=rtl] .md-typeset table:not([class]) th:not([align]),[dir=rtl] .md-typeset table:not([class]) td:not([align]){text-align:right}.md-typeset table:not([class]) th{min-width:5rem;padding:.6rem .8rem;color:var(--md-default-bg-color);vertical-align:top;background-color:var(--md-default-fg-color--light)}.md-typeset table:not([class]) td{padding:.6rem .8rem;vertical-align:top;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-typeset table:not([class]) tr{transition:background-color 125ms}.md-typeset table:not([class]) tr:hover{background-color:rgba(0,0,0,.035);box-shadow:0 .05rem 0 var(--md-default-bg-color) inset}.md-typeset table:not([class]) tr:first-child td{border-top:0}.md-typeset table:not([class]) a{word-break:normal}.md-typeset__scrollwrap{margin:1em -0.8rem;overflow-x:auto;touch-action:auto}.md-typeset__table{display:inline-block;margin-bottom:.5em;padding:0 .8rem}.md-typeset__table table{display:table;width:100%;margin:0;overflow:hidden}html{height:100%;overflow-x:hidden;font-size:125%;background-color:var(--md-default-bg-color)}@media screen and (min-width: 100em){html{font-size:137.5%}}@media screen and (min-width: 125em){html{font-size:150%}}body{position:relative;display:flex;flex-direction:column;width:100%;min-height:100%;font-size:.5rem}@media screen and (max-width: 59.9375em){body[data-md-state=lock]{position:fixed}}@media print{body{display:block}}hr{display:block;height:.05rem;padding:0;border:0}.md-grid{max-width:61rem;margin-right:auto;margin-left:auto}.md-container{display:flex;flex-direction:column;flex-grow:1}@media print{.md-container{display:block}}.md-main{flex-grow:1}.md-main__inner{display:flex;height:100%;margin-top:1.5rem}.md-ellipsis{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.md-toggle{display:none}.md-overlay{position:fixed;top:0;z-index:3;width:0;height:0;background-color:var(--md-default-fg-color--light);opacity:0;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}@media screen and (max-width: 76.1875em){[data-md-toggle=drawer]:checked~.md-overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-skip{position:fixed;z-index:-1;margin:.5rem;padding:.3rem .5rem;color:var(--md-default-bg-color);font-size:.64rem;background-color:var(--md-default-fg-color);border-radius:.1rem;transform:translateY(0.4rem);opacity:0}.md-skip:focus{z-index:10;transform:translateY(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 175ms 75ms}@page{margin:25mm}.md-announce{overflow:auto;background-color:var(--md-default-fg-color)}.md-announce__inner{margin:.6rem auto;padding:0 .8rem;color:var(--md-default-bg-color);font-size:.7rem}@media print{.md-announce{display:none}}.md-typeset .md-button{display:inline-block;padding:.625em 2em;color:var(--md-primary-fg-color);font-weight:700;border:.1rem solid currentColor;border-radius:.1rem;transition:color 125ms,background-color 125ms,border-color 125ms}.md-typeset .md-button--primary{color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);border-color:var(--md-primary-fg-color)}.md-typeset .md-button:focus,.md-typeset .md-button:hover{color:var(--md-accent-bg-color);background-color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-clipboard{position:absolute;top:.4rem;right:.5em;z-index:1;width:1.5em;height:1.5em;color:var(--md-default-fg-color--lightest);border-radius:.1rem;cursor:pointer;transition:color 125ms}@media print{.md-clipboard{display:none}}.md-clipboard svg{width:1.125em;height:1.125em}pre:hover .md-clipboard{color:var(--md-default-fg-color--light)}pre .md-clipboard:focus,pre .md-clipboard:hover{color:var(--md-accent-fg-color)}.md-content{flex:1;max-width:100%}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-content{max-width:calc(100% - 12.1rem)}}@media screen and (min-width: 76.25em){.md-content{max-width:calc(100% - 12.1rem * 2)}}.md-content__inner{margin:0 .8rem 1.2rem;padding-top:.6rem}@media screen and (min-width: 76.25em){.md-content__inner{margin-right:1.2rem;margin-left:1.2rem}}.md-content__inner::before{display:block;height:.4rem;content:""}.md-content__inner>:last-child{margin-bottom:0}.md-content__button{float:right;margin:.4rem 0;margin-left:.4rem;padding:0}[dir=rtl] .md-content__button{float:left;margin-right:.4rem;margin-left:initial}[dir=rtl] .md-content__button svg{transform:scaleX(-1)}.md-typeset .md-content__button{color:var(--md-default-fg-color--lighter)}.md-content__button svg{display:inline;vertical-align:top}@media print{.md-content__button{display:none}}.md-dialog{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:fixed;right:.8rem;bottom:.8rem;left:initial;z-index:2;display:block;min-width:11.1rem;padding:.4rem .6rem;color:var(--md-default-bg-color);font-size:.7rem;background:var(--md-default-fg-color);border:none;border-radius:.1rem;transform:translateY(100%);opacity:0;transition:transform 0ms 400ms,opacity 400ms}[dir=rtl] .md-dialog{right:initial;left:.8rem}.md-dialog[data-md-state=open]{transform:translateY(0);opacity:1;transition:transform 400ms cubic-bezier(0.075, 0.85, 0.175, 1),opacity 400ms}@media print{.md-dialog{display:none}}.md-header{position:-webkit-sticky;position:sticky;top:0;right:0;left:0;z-index:2;height:2.4rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);box-shadow:0 0 .2rem rgba(0,0,0,0),0 .2rem .4rem rgba(0,0,0,0);transition:color 250ms,background-color 250ms}.no-js .md-header{box-shadow:none;transition:none}.md-header[data-md-state=shadow]{box-shadow:0 0 .2rem rgba(0,0,0,.1),0 .2rem .4rem rgba(0,0,0,.2);transition:color 250ms,background-color 250ms,box-shadow 250ms}@media print{.md-header{display:none}}.md-header-nav{display:flex;padding:0 .2rem}.md-header-nav__button{position:relative;z-index:1;margin:.2rem;padding:.4rem;cursor:pointer;transition:opacity 250ms}[dir=rtl] .md-header-nav__button svg{transform:scaleX(-1)}.md-header-nav__button:focus,.md-header-nav__button:hover{opacity:.7}.md-header-nav__button.md-logo{margin:.2rem;padding:.4rem}.md-header-nav__button.md-logo img,.md-header-nav__button.md-logo svg{display:block;width:1.2rem;height:1.2rem;fill:currentColor}.no-js .md-header-nav__button[for=__search]{display:none}@media screen and (min-width: 60em){.md-header-nav__button[for=__search]{display:none}}@media screen and (max-width: 76.1875em){.md-header-nav__button.md-logo{display:none}}@media screen and (min-width: 76.25em){.md-header-nav__button[for=__drawer]{display:none}}.md-header-nav__topic{position:absolute;width:100%;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms}.md-header-nav__topic+.md-header-nav__topic{z-index:-1;transform:translateX(1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__topic+.md-header-nav__topic{transform:translateX(-1.25rem)}.no-js .md-header-nav__topic{position:initial}.no-js .md-header-nav__topic+.md-header-nav__topic{display:none}.md-header-nav__title{flex-grow:1;padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-header-nav__title[data-md-state=active] .md-header-nav__topic{z-index:-1;transform:translateX(-1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__title[data-md-state=active] .md-header-nav__topic{transform:translateX(1.25rem)}.md-header-nav__title[data-md-state=active] .md-header-nav__topic+.md-header-nav__topic{z-index:0;transform:translateX(0);opacity:1;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:initial}.md-header-nav__title>.md-header-nav__ellipsis{position:relative;width:100%;height:100%}.md-header-nav__source{display:none}@media screen and (min-width: 60em){.md-header-nav__source{display:block;width:11.7rem;max-width:11.7rem;margin-left:1rem}[dir=rtl] .md-header-nav__source{margin-right:1rem;margin-left:initial}}@media screen and (min-width: 76.25em){.md-header-nav__source{margin-left:1.4rem}[dir=rtl] .md-header-nav__source{margin-right:1.4rem}}.md-hero{overflow:hidden;color:var(--md-primary-bg-color);font-size:1rem;background-color:var(--md-primary-fg-color);transition:background 250ms}.md-hero__inner{margin-top:1rem;padding:.8rem .8rem .4rem;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms;transition-delay:100ms}@media screen and (max-width: 76.1875em){.md-hero__inner{margin-top:2.4rem;margin-bottom:1.2rem}}[data-md-state=hidden] .md-hero__inner{transform:translateY(0.625rem);opacity:0;transition:transform 0ms 400ms,opacity 100ms 0ms;pointer-events:none}.md-hero--expand .md-hero__inner{margin-bottom:1.2rem}.md-footer{color:var(--md-default-bg-color);background-color:var(--md-default-fg-color)}@media print{.md-footer{display:none}}.md-footer-nav__inner{padding:.2rem;overflow:auto}.md-footer-nav__link{display:flex;padding-top:1.4rem;padding-bottom:.4rem;transition:opacity 250ms}@media screen and (min-width: 45em){.md-footer-nav__link{width:50%}}.md-footer-nav__link:focus,.md-footer-nav__link:hover{opacity:.7}.md-footer-nav__link--prev{float:left;width:25%}[dir=rtl] .md-footer-nav__link--prev{float:right}[dir=rtl] .md-footer-nav__link--prev svg{transform:scaleX(-1)}@media screen and (max-width: 44.9375em){.md-footer-nav__link--prev .md-footer-nav__title{display:none}}.md-footer-nav__link--next{float:right;width:75%;text-align:right}[dir=rtl] .md-footer-nav__link--next{float:left;text-align:left}[dir=rtl] .md-footer-nav__link--next svg{transform:scaleX(-1)}.md-footer-nav__title{position:relative;flex-grow:1;max-width:calc(100% - 2.4rem);padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-footer-nav__button{margin:.2rem;padding:.4rem}.md-footer-nav__direction{position:absolute;right:0;left:0;margin-top:-1rem;padding:0 1rem;color:var(--md-default-bg-color--light);font-size:.64rem}.md-footer-meta{background-color:var(--md-default-fg-color--lighter)}.md-footer-meta__inner{display:flex;flex-wrap:wrap;justify-content:space-between;padding:.2rem}html .md-footer-meta.md-typeset a{color:var(--md-default-bg-color--light)}html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover{color:var(--md-default-bg-color)}.md-footer-copyright{width:100%;margin:auto .6rem;padding:.4rem 0;color:var(--md-default-bg-color--lighter);font-size:.64rem}@media screen and (min-width: 45em){.md-footer-copyright{width:auto}}.md-footer-copyright__highlight{color:var(--md-default-bg-color--light)}.md-footer-social{margin:0 .4rem;padding:.2rem 0 .6rem}@media screen and (min-width: 45em){.md-footer-social{padding:.6rem 0}}.md-footer-social__link{display:inline-block;width:1.6rem;height:1.6rem;text-align:center}.md-footer-social__link::before{line-height:1.9}.md-footer-social__link svg{max-height:.8rem;vertical-align:-25%;fill:currentColor}.md-nav{font-size:.7rem;line-height:1.3}.md-nav__title{display:block;padding:0 .6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis}.md-nav__title .md-nav__button{display:none}.md-nav__title .md-nav__button img{width:100%;height:auto}.md-nav__title .md-nav__button.md-logo img,.md-nav__title .md-nav__button.md-logo svg{display:block;width:2.4rem;height:2.4rem}.md-nav__title .md-nav__button.md-logo svg{fill:currentColor}.md-nav__list{margin:0;padding:0;list-style:none}.md-nav__item{padding:0 .6rem}.md-nav__item:last-child{padding-bottom:.6rem}.md-nav__item .md-nav__item{padding-right:0}[dir=rtl] .md-nav__item .md-nav__item{padding-right:.6rem;padding-left:0}.md-nav__item .md-nav__item:last-child{padding-bottom:0}.md-nav__link{display:block;margin-top:.625em;overflow:hidden;text-overflow:ellipsis;cursor:pointer;transition:color 125ms;scroll-snap-align:start}html .md-nav__link[for=__toc]{display:none}html .md-nav__link[for=__toc]~.md-nav{display:none}.md-nav__link[data-md-state=blur]{color:var(--md-default-fg-color--light)}.md-nav__item .md-nav__link--active{color:var(--md-primary-fg-color)}.md-nav__item--nested>.md-nav__link{color:inherit}.md-nav__link:focus,.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav__source{display:none}@media screen and (max-width: 76.1875em){.md-nav{background-color:var(--md-default-bg-color)}.md-nav--primary,.md-nav--primary .md-nav{position:absolute;top:0;right:0;left:0;z-index:1;display:flex;flex-direction:column;height:100%}.md-nav--primary .md-nav__title,.md-nav--primary .md-nav__item{font-size:.8rem;line-height:1.5}.md-nav--primary .md-nav__title{position:relative;height:5.6rem;padding:3rem .8rem .2rem;color:var(--md-default-fg-color--light);font-weight:400;line-height:2.4rem;white-space:nowrap;background-color:var(--md-default-fg-color--lightest);cursor:pointer}.md-nav--primary .md-nav__title .md-nav__icon{position:absolute;top:.4rem;left:.4rem;display:block;width:1.2rem;height:1.2rem;margin:.2rem}[dir=rtl] .md-nav--primary .md-nav__title .md-nav__icon{right:.4rem;left:initial}.md-nav--primary .md-nav__title~.md-nav__list{overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory;touch-action:pan-y}.md-nav--primary .md-nav__title~.md-nav__list>.md-nav__item:first-child{border-top:0}.md-nav--primary .md-nav__title[for=__drawer]{position:relative;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{position:absolute;top:.2rem;left:.2rem;display:block;margin:.2rem;padding:.4rem;font-size:2.4rem}html [dir=rtl] .md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{right:.2rem;left:initial}.md-nav--primary .md-nav__list{flex:1}.md-nav--primary .md-nav__item{padding:0;border-top:.05rem solid var(--md-default-fg-color--lightest)}[dir=rtl] .md-nav--primary .md-nav__item{padding:0}.md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:2.4rem}[dir=rtl] .md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav--primary .md-nav__item--active>.md-nav__link{color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__item--active>.md-nav__link:focus,.md-nav--primary .md-nav__item--active>.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav--primary .md-nav__link{position:relative;margin-top:0;padding:.6rem .8rem}.md-nav--primary .md-nav__link .md-nav__icon{position:absolute;top:50%;right:.6rem;margin-top:-0.6rem;color:inherit;font-size:1.2rem}[dir=rtl] .md-nav--primary .md-nav__link .md-nav__icon{right:initial;left:.6rem}[dir=rtl] .md-nav--primary .md-nav__icon svg{transform:scale(-1)}.md-nav--primary .md-nav--secondary .md-nav__link{position:static}.md-nav--primary .md-nav--secondary .md-nav{position:static;background-color:transparent}.md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-left:1.4rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-right:1.4rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-left:2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-right:2rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-left:2.6rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-right:2.6rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-left:3.2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-right:3.2rem;padding-left:initial}.md-nav__toggle~.md-nav{display:flex;transform:translateX(100%);opacity:0;transition:transform 250ms cubic-bezier(0.8, 0, 0.6, 1),opacity 125ms 50ms}[dir=rtl] .md-nav__toggle~.md-nav{transform:translateX(-100%)}.md-nav__toggle:checked~.md-nav{transform:translateX(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 125ms 125ms}.md-nav__toggle:checked~.md-nav>.md-nav__list{-webkit-backface-visibility:hidden;backface-visibility:hidden}}@media screen and (max-width: 59.9375em){html .md-nav__link[for=__toc]{display:block;padding-right:2.4rem}html .md-nav__link[for=__toc]+.md-nav__link{display:none}html .md-nav__link[for=__toc]~.md-nav{display:flex}html [dir=rtl] .md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav__source{display:block;padding:0 .2rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color--dark)}}@media screen and (min-width: 60em){.md-nav--secondary .md-nav__title[for=__toc]{scroll-snap-align:start}.md-nav--secondary .md-nav__title .md-nav__icon{display:none}}@media screen and (min-width: 76.25em){.md-nav{transition:max-height 250ms cubic-bezier(0.86, 0, 0.07, 1)}.md-nav--primary .md-nav__title[for=__drawer]{scroll-snap-align:start}.md-nav--primary .md-nav__title .md-nav__icon{display:none}.md-nav__toggle~.md-nav{display:none}.md-nav__toggle:checked~.md-nav{display:block}.md-nav__item--nested>.md-nav>.md-nav__title{display:none}.md-nav__icon{float:right;height:.9rem;transition:transform 250ms}[dir=rtl] .md-nav__icon{float:left;transform:rotate(180deg)}.md-nav__icon svg{display:inline-block;width:.9rem;height:.9rem;vertical-align:-0.1rem}.md-nav__item--nested .md-nav__toggle:checked~.md-nav__link .md-nav__icon{transform:rotate(90deg)}}.md-search{position:relative}.no-js .md-search{display:none}@media screen and (min-width: 60em){.md-search{padding:.2rem 0}}.md-search__overlay{z-index:1;opacity:0}@media screen and (max-width: 59.9375em){.md-search__overlay{position:absolute;top:.2rem;left:-2.2rem;width:2rem;height:2rem;overflow:hidden;background-color:var(--md-default-bg-color);border-radius:1rem;transform-origin:center;transition:transform 300ms 100ms,opacity 200ms 200ms;pointer-events:none}[dir=rtl] .md-search__overlay{right:-2.2rem;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{opacity:1;transition:transform 400ms,opacity 100ms}}@media screen and (max-width: 29.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(45)}}@media screen and (min-width: 30em)and (max-width: 44.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(60)}}@media screen and (min-width: 45em)and (max-width: 59.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(75)}}@media screen and (min-width: 60em){.md-search__overlay{position:fixed;top:0;left:0;width:0;height:0;background-color:var(--md-default-fg-color--light);cursor:pointer;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}[dir=rtl] .md-search__overlay{right:0;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-search__inner{-webkit-backface-visibility:hidden;backface-visibility:hidden}@media screen and (max-width: 59.9375em){.md-search__inner{position:fixed;top:0;left:100%;z-index:2;width:100%;height:100%;transform:translateX(5%);opacity:0;transition:right 0ms 300ms,left 0ms 300ms,transform 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1),opacity 150ms 150ms}[data-md-toggle=search]:checked~.md-header .md-search__inner{left:0;transform:translateX(0);opacity:1;transition:right 0ms 0ms,left 0ms 0ms,transform 150ms 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms 150ms}[dir=rtl] [data-md-toggle=search]:checked~.md-header .md-search__inner{right:0;left:initial}html [dir=rtl] .md-search__inner{right:100%;left:initial;transform:translateX(-5%)}}@media screen and (min-width: 60em){.md-search__inner{position:relative;float:right;width:11.7rem;padding:.1rem 0;transition:width 250ms cubic-bezier(0.1, 0.7, 0.1, 1)}[dir=rtl] .md-search__inner{float:left}}@media screen and (min-width: 60em)and (max-width: 76.1875em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:23.4rem}}@media screen and (min-width: 76.25em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:34.4rem}}.md-search__form{position:relative}@media screen and (min-width: 60em){.md-search__form{border-radius:.1rem}}.md-search__input{position:relative;z-index:2;padding:0 2.2rem 0 3.6rem;text-overflow:ellipsis}[dir=rtl] .md-search__input{padding:0 3.6rem 0 2.2rem}.md-search__input::-webkit-input-placeholder{-webkit-transition:color 250ms;transition:color 250ms}.md-search__input::-moz-placeholder{-moz-transition:color 250ms;transition:color 250ms}.md-search__input::-ms-input-placeholder{-ms-transition:color 250ms;transition:color 250ms}.md-search__input::placeholder{transition:color 250ms}.md-search__input::-webkit-input-placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-moz-placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-ms-input-placeholder{color:var(--md-default-fg-color--light)}.md-search__input~.md-search__icon,.md-search__input::placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-ms-clear{display:none}@media screen and (max-width: 59.9375em){.md-search__input{width:100%;height:2.4rem;font-size:.9rem}}@media screen and (min-width: 60em){.md-search__input{width:100%;height:1.8rem;padding-left:2.2rem;color:inherit;font-size:.8rem;background-color:var(--md-default-fg-color--lighter);border-radius:.1rem;transition:color 250ms,background-color 250ms}[dir=rtl] .md-search__input{padding-right:2.2rem}.md-search__input+.md-search__icon{color:var(--md-primary-bg-color)}.md-search__input::-webkit-input-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::-moz-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::-ms-input-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::placeholder{color:var(--md-primary-bg-color--light)}.md-search__input:hover{background-color:var(--md-default-bg-color--lightest)}[data-md-toggle=search]:checked~.md-header .md-search__input{color:var(--md-default-fg-color);text-overflow:clip;background-color:var(--md-default-bg-color);border-radius:.1rem .1rem 0 0}[data-md-toggle=search]:checked~.md-header .md-search__input::-webkit-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input::-moz-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input::-ms-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::placeholder{color:var(--md-default-fg-color--light)}}.md-search__icon{position:absolute;z-index:2;width:1.2rem;height:1.2rem;cursor:pointer;transition:color 250ms,opacity 250ms}.md-search__icon:hover{opacity:.7}.md-search__icon[for=__search]{top:.3rem;left:.5rem}[dir=rtl] .md-search__icon[for=__search]{right:.5rem;left:initial}[dir=rtl] .md-search__icon[for=__search] svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search__icon[for=__search]{top:.6rem;left:.8rem}[dir=rtl] .md-search__icon[for=__search]{right:.8rem;left:initial}.md-search__icon[for=__search] svg:first-child{display:none}}@media screen and (min-width: 60em){.md-search__icon[for=__search]{pointer-events:none}.md-search__icon[for=__search] svg:last-child{display:none}}.md-search__icon[type=reset]{top:.3rem;right:.5rem;transform:scale(0.75);opacity:0;transition:transform 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:none}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.5rem}@media screen and (max-width: 59.9375em){.md-search__icon[type=reset]{top:.6rem;right:.8rem}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.8rem}}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]{transform:scale(1);opacity:1;pointer-events:initial}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]:hover{opacity:.7}.md-search__output{position:absolute;z-index:1;width:100%;overflow:hidden;border-radius:0 0 .1rem .1rem}@media screen and (max-width: 59.9375em){.md-search__output{top:2.4rem;bottom:0}}@media screen and (min-width: 60em){.md-search__output{top:1.9rem;opacity:0;transition:opacity 400ms}[data-md-toggle=search]:checked~.md-header .md-search__output{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.4);opacity:1}}.md-search__scrollwrap{height:100%;overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory;touch-action:pan-y}@media(-webkit-max-device-pixel-ratio: 1), (max-resolution: 1dppx){.md-search__scrollwrap{transform:translateZ(0)}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search__scrollwrap{width:23.4rem}}@media screen and (min-width: 76.25em){.md-search__scrollwrap{width:34.4rem}}@media screen and (min-width: 60em){.md-search__scrollwrap{max-height:0}[data-md-toggle=search]:checked~.md-header .md-search__scrollwrap{max-height:75vh}.md-search__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-search__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}}.md-search-result{color:var(--md-default-fg-color);word-break:break-word}.md-search-result__meta{padding:0 .8rem;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.8rem;background-color:var(--md-default-fg-color--lightest);scroll-snap-align:start}@media screen and (min-width: 60em){.md-search-result__meta{padding-left:2.2rem}[dir=rtl] .md-search-result__meta{padding-right:2.2rem;padding-left:initial}}.md-search-result__list{margin:0;padding:0;list-style:none;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-search-result__item{box-shadow:0 -0.05rem 0 var(--md-default-fg-color--lightest)}.md-search-result__link{display:block;outline:0;transition:background 250ms;scroll-snap-align:start}.md-search-result__link:focus,.md-search-result__link:hover{background-color:var(--md-accent-fg-color--transparent)}.md-search-result__link:focus .md-search-result__article::before,.md-search-result__link:hover .md-search-result__article::before{opacity:.7}.md-search-result__link:last-child .md-search-result__teaser{margin-bottom:.6rem}.md-search-result__article{position:relative;padding:0 .8rem;overflow:hidden}@media screen and (min-width: 60em){.md-search-result__article{padding-left:2.2rem}[dir=rtl] .md-search-result__article{padding-right:2.2rem;padding-left:.8rem}}.md-search-result__article--document .md-search-result__title{margin:.55rem 0;font-weight:400;font-size:.8rem;line-height:1.4}.md-search-result__icon{position:absolute;left:0;margin:.1rem;padding:.4rem;color:var(--md-default-fg-color--light)}[dir=rtl] .md-search-result__icon{right:0;left:initial}[dir=rtl] .md-search-result__icon svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search-result__icon{display:none}}.md-search-result__title{margin:.5em 0;font-weight:700;font-size:.64rem;line-height:1.4}.md-search-result__teaser{display:-webkit-box;max-height:1.65rem;margin:.5em 0;overflow:hidden;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.4;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:2}@media screen and (max-width: 44.9375em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}.md-search-result em{font-weight:700;font-style:normal;text-decoration:underline}@-webkit-keyframes md-sidebar__scrollwrap--hack{0%,99%{-webkit-scroll-snap-type:none;scroll-snap-type:none}100%{-webkit-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}}@keyframes md-sidebar__scrollwrap--hack{0%,99%{-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none}100%{-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}}.md-sidebar{position:-webkit-sticky;position:sticky;top:2.4rem;align-self:flex-start;width:12.1rem;padding:1.2rem 0;overflow:hidden}@media print{.md-sidebar{display:none}}@media screen and (max-width: 76.1875em){.md-sidebar--primary{position:fixed;top:0;left:-12.1rem;z-index:3;width:12.1rem;height:100%;background-color:var(--md-default-bg-color);transform:translateX(0);transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 250ms}[dir=rtl] .md-sidebar--primary{right:-12.1rem;left:initial}[data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.4);transform:translateX(12.1rem)}[dir=rtl] [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{transform:translateX(-12.1rem)}.md-sidebar--primary .md-sidebar__scrollwrap{overflow:hidden}}.md-sidebar--secondary{display:none;order:2}@media screen and (min-width: 60em){.md-sidebar--secondary{display:block}.md-sidebar--secondary .md-sidebar__scrollwrap{touch-action:pan-y}}.md-sidebar__scrollwrap{max-height:100%;margin:0 .2rem;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.js .md-sidebar__scrollwrap{-webkit-animation:md-sidebar__scrollwrap--hack 400ms forwards;animation:md-sidebar__scrollwrap--hack 400ms forwards}@media screen and (max-width: 76.1875em){.md-sidebar--primary .md-sidebar__scrollwrap{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none}}.md-sidebar__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@-webkit-keyframes md-source__facts--done{0%{height:0}100%{height:.65rem}}@keyframes md-source__facts--done{0%{height:0}100%{height:.65rem}}@-webkit-keyframes md-source__fact--done{0%{transform:translateY(100%);opacity:0}50%{opacity:0}100%{transform:translateY(0%);opacity:1}}@keyframes md-source__fact--done{0%{transform:translateY(100%);opacity:0}50%{opacity:0}100%{transform:translateY(0%);opacity:1}}.md-source{display:block;font-size:.65rem;line-height:1.2;white-space:nowrap;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:opacity 250ms}.md-source:hover{opacity:.7}.md-source__icon{display:inline-block;width:2.4rem;height:2.4rem;vertical-align:middle}.md-source__icon svg{margin-top:.6rem;margin-left:.6rem}[dir=rtl] .md-source__icon svg{margin-right:.6rem;margin-left:initial}.md-source__icon+.md-source__repository{margin-left:-2rem;padding-left:2rem}[dir=rtl] .md-source__icon+.md-source__repository{margin-right:-2rem;margin-left:initial;padding-right:2rem;padding-left:initial}.md-source__repository{display:inline-block;max-width:calc(100% - 1.2rem);margin-left:.6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis;vertical-align:middle}.md-source__facts{margin:0;padding:0;overflow:hidden;font-weight:700;font-size:.55rem;list-style-type:none;opacity:.75}[data-md-state=done] .md-source__facts{-webkit-animation:md-source__facts--done 250ms ease-in;animation:md-source__facts--done 250ms ease-in}.md-source__fact{float:left}[dir=rtl] .md-source__fact{float:right}[data-md-state=done] .md-source__fact{-webkit-animation:md-source__fact--done 400ms ease-out;animation:md-source__fact--done 400ms ease-out}.md-source__fact::before{margin:0 .1rem;content:"·"}.md-source__fact:first-child::before{display:none}.md-tabs{width:100%;overflow:auto;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);transition:background 250ms}.no-js .md-tabs{transition:none}@media screen and (max-width: 76.1875em){.md-tabs{display:none}}@media print{.md-tabs{display:none}}.md-tabs__list{margin:0;margin-left:.2rem;padding:0;white-space:nowrap;list-style:none;contain:content}[dir=rtl] .md-tabs__list{margin-right:.2rem;margin-left:initial}.md-tabs__item{display:inline-block;height:2.4rem;padding-right:.6rem;padding-left:.6rem}.md-tabs__link{display:block;margin-top:.8rem;font-size:.7rem;opacity:.7;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms}.no-js .md-tabs__link{transition:none}.md-tabs__link--active,.md-tabs__link:hover{color:inherit;opacity:1}.md-tabs__item:nth-child(2) .md-tabs__link{transition-delay:20ms}.md-tabs__item:nth-child(3) .md-tabs__link{transition-delay:40ms}.md-tabs__item:nth-child(4) .md-tabs__link{transition-delay:60ms}.md-tabs__item:nth-child(5) .md-tabs__link{transition-delay:80ms}.md-tabs__item:nth-child(6) .md-tabs__link{transition-delay:100ms}.md-tabs__item:nth-child(7) .md-tabs__link{transition-delay:120ms}.md-tabs__item:nth-child(8) .md-tabs__link{transition-delay:140ms}.md-tabs__item:nth-child(9) .md-tabs__link{transition-delay:160ms}.md-tabs__item:nth-child(10) .md-tabs__link{transition-delay:180ms}.md-tabs__item:nth-child(11) .md-tabs__link{transition-delay:200ms}.md-tabs__item:nth-child(12) .md-tabs__link{transition-delay:220ms}.md-tabs__item:nth-child(13) .md-tabs__link{transition-delay:240ms}.md-tabs__item:nth-child(14) .md-tabs__link{transition-delay:260ms}.md-tabs__item:nth-child(15) .md-tabs__link{transition-delay:280ms}.md-tabs__item:nth-child(16) .md-tabs__link{transition-delay:300ms}.md-tabs[data-md-state=hidden]{pointer-events:none}.md-tabs[data-md-state=hidden] .md-tabs__link{transform:translateY(50%);opacity:0;transition:color 250ms,transform 0ms 400ms,opacity 100ms}@media screen and (min-width: 76.25em){.md-tabs~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--nested{display:none}.md-tabs--active~.md-main .md-nav--primary .md-nav__title{display:block;padding:0 .6rem;pointer-events:none;scroll-snap-align:start}.md-tabs--active~.md-main .md-nav--primary .md-nav__title[for=__drawer]{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active{display:block;padding:0}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active>.md-nav__link{display:none}.md-tabs--active~.md-main .md-nav[data-md-level="1"]{display:block}.md-tabs--active~.md-main .md-nav[data-md-level="1"]>.md-nav__list>.md-nav__item{padding:0 .6rem}.md-tabs--active~.md-main .md-nav[data-md-level="1"] .md-nav .md-nav__title{display:none}}:root{--md-admonition-icon--note: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--abstract: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--info: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--tip: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--success: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--question: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--warning: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--failure: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--danger: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--bug: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--example: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--quote: url('data:image/svg+xml;charset=utf-8,')}.md-typeset .admonition,.md-typeset details{margin:1.5625em 0;padding:0 .6rem;overflow:hidden;font-size:.64rem;page-break-inside:avoid;border-left:.2rem solid #448aff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1)}[dir=rtl] .md-typeset .admonition,[dir=rtl] .md-typeset details{border-right:.2rem solid #448aff;border-left:none}@media print{.md-typeset .admonition,.md-typeset details{box-shadow:none}}html .md-typeset .admonition>:last-child,html .md-typeset details>:last-child{margin-bottom:.6rem}.md-typeset .admonition .admonition,.md-typeset details .admonition,.md-typeset .admonition details,.md-typeset details details{margin:1em 0}.md-typeset .admonition .md-typeset__scrollwrap,.md-typeset details .md-typeset__scrollwrap{margin:1em -0.6rem}.md-typeset .admonition .md-typeset__table,.md-typeset details .md-typeset__table{padding:0 .6rem}.md-typeset .admonition-title,.md-typeset summary{position:relative;margin:0 -0.6rem;padding:.4rem .6rem .4rem 2rem;font-weight:700;background-color:rgba(68,138,255,.1)}[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem .6rem}html .md-typeset .admonition-title:last-child,html .md-typeset summary:last-child{margin-bottom:0}.md-typeset .admonition-title::before,.md-typeset summary::before{position:absolute;left:.6rem;width:1rem;height:1rem;background-color:#448aff;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note);content:""}[dir=rtl] .md-typeset .admonition-title::before,[dir=rtl] .md-typeset summary::before{right:.6rem;left:initial}.md-typeset .admonition-title code,.md-typeset summary code{margin:initial;padding:initial;color:currentColor;background-color:transparent;border-radius:initial;box-shadow:none}.md-typeset .admonition.note,.md-typeset details.note{border-color:#448aff}.md-typeset .note>.admonition-title,.md-typeset .note>summary{background-color:rgba(68,138,255,.1)}.md-typeset .note>.admonition-title::before,.md-typeset .note>summary::before{background-color:#448aff;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note)}.md-typeset .admonition.abstract,.md-typeset details.abstract,.md-typeset .admonition.tldr,.md-typeset details.tldr,.md-typeset .admonition.summary,.md-typeset details.summary{border-color:#00b0ff}.md-typeset .abstract>.admonition-title,.md-typeset .abstract>summary,.md-typeset .tldr>.admonition-title,.md-typeset .tldr>summary,.md-typeset .summary>.admonition-title,.md-typeset .summary>summary{background-color:rgba(0,176,255,.1)}.md-typeset .abstract>.admonition-title::before,.md-typeset .abstract>summary::before,.md-typeset .tldr>.admonition-title::before,.md-typeset .tldr>summary::before,.md-typeset .summary>.admonition-title::before,.md-typeset .summary>summary::before{background-color:#00b0ff;-webkit-mask-image:var(--md-admonition-icon--abstract);mask-image:var(--md-admonition-icon--abstract)}.md-typeset .admonition.info,.md-typeset details.info,.md-typeset .admonition.todo,.md-typeset details.todo{border-color:#00b8d4}.md-typeset .info>.admonition-title,.md-typeset .info>summary,.md-typeset .todo>.admonition-title,.md-typeset .todo>summary{background-color:rgba(0,184,212,.1)}.md-typeset .info>.admonition-title::before,.md-typeset .info>summary::before,.md-typeset .todo>.admonition-title::before,.md-typeset .todo>summary::before{background-color:#00b8d4;-webkit-mask-image:var(--md-admonition-icon--info);mask-image:var(--md-admonition-icon--info)}.md-typeset .admonition.tip,.md-typeset details.tip,.md-typeset .admonition.important,.md-typeset details.important,.md-typeset .admonition.hint,.md-typeset details.hint{border-color:#00bfa5}.md-typeset .tip>.admonition-title,.md-typeset .tip>summary,.md-typeset .important>.admonition-title,.md-typeset .important>summary,.md-typeset .hint>.admonition-title,.md-typeset .hint>summary{background-color:rgba(0,191,165,.1)}.md-typeset .tip>.admonition-title::before,.md-typeset .tip>summary::before,.md-typeset .important>.admonition-title::before,.md-typeset .important>summary::before,.md-typeset .hint>.admonition-title::before,.md-typeset .hint>summary::before{background-color:#00bfa5;-webkit-mask-image:var(--md-admonition-icon--tip);mask-image:var(--md-admonition-icon--tip)}.md-typeset .admonition.success,.md-typeset details.success,.md-typeset .admonition.done,.md-typeset details.done,.md-typeset .admonition.check,.md-typeset details.check{border-color:#00c853}.md-typeset .success>.admonition-title,.md-typeset .success>summary,.md-typeset .done>.admonition-title,.md-typeset .done>summary,.md-typeset .check>.admonition-title,.md-typeset .check>summary{background-color:rgba(0,200,83,.1)}.md-typeset .success>.admonition-title::before,.md-typeset .success>summary::before,.md-typeset .done>.admonition-title::before,.md-typeset .done>summary::before,.md-typeset .check>.admonition-title::before,.md-typeset .check>summary::before{background-color:#00c853;-webkit-mask-image:var(--md-admonition-icon--success);mask-image:var(--md-admonition-icon--success)}.md-typeset .admonition.question,.md-typeset details.question,.md-typeset .admonition.faq,.md-typeset details.faq,.md-typeset .admonition.help,.md-typeset details.help{border-color:#64dd17}.md-typeset .question>.admonition-title,.md-typeset .question>summary,.md-typeset .faq>.admonition-title,.md-typeset .faq>summary,.md-typeset .help>.admonition-title,.md-typeset .help>summary{background-color:rgba(100,221,23,.1)}.md-typeset .question>.admonition-title::before,.md-typeset .question>summary::before,.md-typeset .faq>.admonition-title::before,.md-typeset .faq>summary::before,.md-typeset .help>.admonition-title::before,.md-typeset .help>summary::before{background-color:#64dd17;-webkit-mask-image:var(--md-admonition-icon--question);mask-image:var(--md-admonition-icon--question)}.md-typeset .admonition.warning,.md-typeset details.warning,.md-typeset .admonition.attention,.md-typeset details.attention,.md-typeset .admonition.caution,.md-typeset details.caution{border-color:#ff9100}.md-typeset .warning>.admonition-title,.md-typeset .warning>summary,.md-typeset .attention>.admonition-title,.md-typeset .attention>summary,.md-typeset .caution>.admonition-title,.md-typeset .caution>summary{background-color:rgba(255,145,0,.1)}.md-typeset .warning>.admonition-title::before,.md-typeset .warning>summary::before,.md-typeset .attention>.admonition-title::before,.md-typeset .attention>summary::before,.md-typeset .caution>.admonition-title::before,.md-typeset .caution>summary::before{background-color:#ff9100;-webkit-mask-image:var(--md-admonition-icon--warning);mask-image:var(--md-admonition-icon--warning)}.md-typeset .admonition.failure,.md-typeset details.failure,.md-typeset .admonition.missing,.md-typeset details.missing,.md-typeset .admonition.fail,.md-typeset details.fail{border-color:#ff5252}.md-typeset .failure>.admonition-title,.md-typeset .failure>summary,.md-typeset .missing>.admonition-title,.md-typeset .missing>summary,.md-typeset .fail>.admonition-title,.md-typeset .fail>summary{background-color:rgba(255,82,82,.1)}.md-typeset .failure>.admonition-title::before,.md-typeset .failure>summary::before,.md-typeset .missing>.admonition-title::before,.md-typeset .missing>summary::before,.md-typeset .fail>.admonition-title::before,.md-typeset .fail>summary::before{background-color:#ff5252;-webkit-mask-image:var(--md-admonition-icon--failure);mask-image:var(--md-admonition-icon--failure)}.md-typeset .admonition.danger,.md-typeset details.danger,.md-typeset .admonition.error,.md-typeset details.error{border-color:#ff1744}.md-typeset .danger>.admonition-title,.md-typeset .danger>summary,.md-typeset .error>.admonition-title,.md-typeset .error>summary{background-color:rgba(255,23,68,.1)}.md-typeset .danger>.admonition-title::before,.md-typeset .danger>summary::before,.md-typeset .error>.admonition-title::before,.md-typeset .error>summary::before{background-color:#ff1744;-webkit-mask-image:var(--md-admonition-icon--danger);mask-image:var(--md-admonition-icon--danger)}.md-typeset .admonition.bug,.md-typeset details.bug{border-color:#f50057}.md-typeset .bug>.admonition-title,.md-typeset .bug>summary{background-color:rgba(245,0,87,.1)}.md-typeset .bug>.admonition-title::before,.md-typeset .bug>summary::before{background-color:#f50057;-webkit-mask-image:var(--md-admonition-icon--bug);mask-image:var(--md-admonition-icon--bug)}.md-typeset .admonition.example,.md-typeset details.example{border-color:#651fff}.md-typeset .example>.admonition-title,.md-typeset .example>summary{background-color:rgba(101,31,255,.1)}.md-typeset .example>.admonition-title::before,.md-typeset .example>summary::before{background-color:#651fff;-webkit-mask-image:var(--md-admonition-icon--example);mask-image:var(--md-admonition-icon--example)}.md-typeset .admonition.quote,.md-typeset details.quote,.md-typeset .admonition.cite,.md-typeset details.cite{border-color:#9e9e9e}.md-typeset .quote>.admonition-title,.md-typeset .quote>summary,.md-typeset .cite>.admonition-title,.md-typeset .cite>summary{background-color:rgba(158,158,158,.1)}.md-typeset .quote>.admonition-title::before,.md-typeset .quote>summary::before,.md-typeset .cite>.admonition-title::before,.md-typeset .cite>summary::before{background-color:#9e9e9e;-webkit-mask-image:var(--md-admonition-icon--quote);mask-image:var(--md-admonition-icon--quote)}.codehilite .o,.highlight .o{color:inherit}.codehilite .ow,.highlight .ow{color:inherit}.codehilite .ge,.highlight .ge{color:#000}.codehilite .gr,.highlight .gr{color:#a00}.codehilite .gh,.highlight .gh{color:#999}.codehilite .go,.highlight .go{color:#888}.codehilite .gp,.highlight .gp{color:#555}.codehilite .gs,.highlight .gs{color:inherit}.codehilite .gu,.highlight .gu{color:#aaa}.codehilite .gt,.highlight .gt{color:#a00}.codehilite .gd,.highlight .gd{background-color:#fdd}.codehilite .gi,.highlight .gi{background-color:#dfd}.codehilite .k,.highlight .k{color:#3b78e7}.codehilite .kc,.highlight .kc{color:#a71d5d}.codehilite .kd,.highlight .kd{color:#3b78e7}.codehilite .kn,.highlight .kn{color:#3b78e7}.codehilite .kp,.highlight .kp{color:#a71d5d}.codehilite .kr,.highlight .kr{color:#3e61a2}.codehilite .kt,.highlight .kt{color:#3e61a2}.codehilite .c,.highlight .c{color:#999}.codehilite .cm,.highlight .cm{color:#999}.codehilite .cp,.highlight .cp{color:#666}.codehilite .c1,.highlight .c1{color:#999}.codehilite .ch,.highlight .ch{color:#999}.codehilite .cs,.highlight .cs{color:#999}.codehilite .na,.highlight .na{color:#c2185b}.codehilite .nb,.highlight .nb{color:#c2185b}.codehilite .bp,.highlight .bp{color:#3e61a2}.codehilite .nc,.highlight .nc{color:#c2185b}.codehilite .no,.highlight .no{color:#3e61a2}.codehilite .nd,.highlight .nd{color:#666}.codehilite .ni,.highlight .ni{color:#666}.codehilite .ne,.highlight .ne{color:#c2185b}.codehilite .nf,.highlight .nf{color:#c2185b}.codehilite .nl,.highlight .nl{color:#3b5179}.codehilite .nn,.highlight .nn{color:#ec407a}.codehilite .nt,.highlight .nt{color:#3b78e7}.codehilite .nv,.highlight .nv{color:#3e61a2}.codehilite .vc,.highlight .vc{color:#3e61a2}.codehilite .vg,.highlight .vg{color:#3e61a2}.codehilite .vi,.highlight .vi{color:#3e61a2}.codehilite .nx,.highlight .nx{color:#ec407a}.codehilite .m,.highlight .m{color:#e74c3c}.codehilite .mf,.highlight .mf{color:#e74c3c}.codehilite .mh,.highlight .mh{color:#e74c3c}.codehilite .mi,.highlight .mi{color:#e74c3c}.codehilite .il,.highlight .il{color:#e74c3c}.codehilite .mo,.highlight .mo{color:#e74c3c}.codehilite .s,.highlight .s{color:#0d904f}.codehilite .sb,.highlight .sb{color:#0d904f}.codehilite .sc,.highlight .sc{color:#0d904f}.codehilite .sd,.highlight .sd{color:#999}.codehilite .s2,.highlight .s2{color:#0d904f}.codehilite .se,.highlight .se{color:#183691}.codehilite .sh,.highlight .sh{color:#183691}.codehilite .si,.highlight .si{color:#183691}.codehilite .sx,.highlight .sx{color:#183691}.codehilite .sr,.highlight .sr{color:#009926}.codehilite .s1,.highlight .s1{color:#0d904f}.codehilite .ss,.highlight .ss{color:#0d904f}.codehilite .err,.highlight .err{color:#a61717}.codehilite .w,.highlight .w{color:transparent}.codehilite .hll,.highlight .hll{display:block;margin:0 -1.1764705882em;padding:0 1.1764705882em;background-color:rgba(255,235,59,.5)}.codehilitetable,.highlighttable{display:block;overflow:hidden}.codehilitetable tbody,.highlighttable tbody,.codehilitetable td,.highlighttable td{display:block;padding:0}.codehilitetable tr,.highlighttable tr{display:flex}.codehilitetable pre,.highlighttable pre{margin:0}.codehilitetable .linenos,.highlighttable .linenos{padding:.525rem 1.1764705882em;padding-right:0;font-size:.85em;background-color:var(--md-code-bg-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.codehilitetable .linenodiv,.highlighttable .linenodiv{padding-right:.5882352941em;box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest)}.codehilitetable .linenodiv pre,.highlighttable .linenodiv pre{color:var(--md-default-fg-color--lighter);text-align:right}.codehilitetable .code,.highlighttable .code{flex:1;overflow:hidden}.md-typeset .codehilitetable,.md-typeset .highlighttable{margin:1em 0;direction:ltr;border-radius:.1rem}.md-typeset .codehilitetable code,.md-typeset .highlighttable code{border-radius:0}@media screen and (max-width: 44.9375em){.md-typeset>.codehilite,.md-typeset>.highlight{margin:1em -0.8rem}.md-typeset>.codehilite .hll,.md-typeset>.highlight .hll{margin:0 -0.8rem;padding:0 .8rem}.md-typeset>.codehilite code,.md-typeset>.highlight code{border-radius:0}.md-typeset>.codehilitetable,.md-typeset>.highlighttable{margin:1em -0.8rem;border-radius:0}.md-typeset>.codehilitetable .hll,.md-typeset>.highlighttable .hll{margin:0 -0.8rem;padding:0 .8rem}}:root{--md-footnotes-icon: url('data:image/svg+xml;charset=utf-8,')}.md-typeset [id^="fnref:"]{display:inline-block}.md-typeset [id^="fnref:"]:target{margin-top:-3.8rem;padding-top:3.8rem;pointer-events:none}.md-typeset [id^="fn:"]::before{display:none;height:0;content:""}.md-typeset [id^="fn:"]:target::before{display:block;margin-top:-3.5rem;padding-top:3.5rem;pointer-events:none}.md-typeset .footnote{color:var(--md-default-fg-color--light);font-size:.64rem}.md-typeset .footnote ol{margin-left:0}.md-typeset .footnote li{transition:color 125ms}.md-typeset .footnote li:target{color:var(--md-default-fg-color)}.md-typeset .footnote li :first-child{margin-top:0}.md-typeset .footnote li:hover .footnote-backref,.md-typeset .footnote li:target .footnote-backref{transform:translateX(0);opacity:1}.md-typeset .footnote li:hover .footnote-backref:hover{color:var(--md-accent-fg-color)}.md-typeset .footnote-ref{display:inline-block;pointer-events:initial}.md-typeset .footnote-backref{display:inline-block;color:var(--md-primary-fg-color);font-size:0;vertical-align:text-bottom;transform:translateX(0.25rem);opacity:0;transition:color 250ms,transform 250ms 250ms,opacity 125ms 250ms}[dir=rtl] .md-typeset .footnote-backref{transform:translateX(-0.25rem)}.md-typeset .footnote-backref::before{display:inline-block;width:.8rem;height:.8rem;background-color:currentColor;-webkit-mask-image:var(--md-footnotes-icon);mask-image:var(--md-footnotes-icon);content:""}[dir=rtl] .md-typeset .footnote-backref::before svg{transform:scaleX(-1)}@media print{.md-typeset .footnote-backref{color:var(--md-primary-fg-color);transform:translateX(0);opacity:1}}.md-typeset .headerlink{display:inline-block;margin-left:.5rem;visibility:hidden;opacity:0;transition:color 250ms,visibility 0ms 500ms,opacity 125ms}[dir=rtl] .md-typeset .headerlink{margin-right:.5rem;margin-left:initial}html body .md-typeset .headerlink{color:var(--md-default-fg-color--lighter)}@media print{.md-typeset .headerlink{display:none}}.md-typeset :hover>.headerlink,.md-typeset :target>.headerlink,.md-typeset .headerlink:focus{visibility:visible;opacity:1;transition:color 250ms,visibility 0ms,opacity 125ms}.md-typeset :target>.headerlink,.md-typeset .headerlink:focus,.md-typeset .headerlink:hover{color:var(--md-accent-fg-color)}.md-typeset :target{scroll-margin-top:3.6rem}.md-typeset h3[id]:target,.md-typeset h2[id]:target,.md-typeset h1[id]:target{scroll-margin-top:initial}.md-typeset h3[id]::before,.md-typeset h2[id]::before,.md-typeset h1[id]::before{display:block;margin-top:-0.4rem;padding-top:.4rem;content:""}.md-typeset h3[id]:target::before,.md-typeset h2[id]:target::before,.md-typeset h1[id]:target::before{margin-top:-3.4rem;padding-top:3.4rem}.md-typeset h4[id]:target{scroll-margin-top:initial}.md-typeset h4[id]::before{display:block;margin-top:-0.45rem;padding-top:.45rem;content:""}.md-typeset h4[id]:target::before{margin-top:-3.45rem;padding-top:3.45rem}.md-typeset h6[id]:target,.md-typeset h5[id]:target{scroll-margin-top:initial}.md-typeset h6[id]::before,.md-typeset h5[id]::before{display:block;margin-top:-0.6rem;padding-top:.6rem;content:""}.md-typeset h6[id]:target::before,.md-typeset h5[id]:target::before{margin-top:-3.6rem;padding-top:3.6rem}.md-typeset .MJXc-display{margin:.75em 0;padding:.75em 0;overflow:auto;touch-action:auto}@media screen and (max-width: 44.9375em){.md-typeset>p>.MJXc-display{margin:.75em -0.8rem;padding:.25em .8rem}}.md-typeset .MathJax_CHTML{outline:0}.md-typeset del.critic,.md-typeset ins.critic,.md-typeset .critic.comment{padding:0 .25em;border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset del.critic{background-color:#fdd}.md-typeset ins.critic{background-color:#dfd}.md-typeset .critic.comment{color:#999}.md-typeset .critic.comment::before{content:"/* "}.md-typeset .critic.comment::after{content:" */"}.md-typeset .critic.block{display:block;margin:1em 0;padding-right:.8rem;padding-left:.8rem;overflow:auto;box-shadow:none}.md-typeset .critic.block :first-child{margin-top:.5em}.md-typeset .critic.block :last-child{margin-bottom:.5em}:root{--md-details-icon: url('data:image/svg+xml;charset=utf-8,')}.md-typeset details{display:block;padding-top:0;overflow:visible}.md-typeset details[open]>summary::after{transform:rotate(90deg)}.md-typeset details:not([open]){padding-bottom:0}.md-typeset details:not([open])>summary{border-bottom-right-radius:.1rem}.md-typeset details::after{display:table;content:""}.md-typeset summary{display:block;min-height:1rem;padding:.4rem 1.8rem .4rem 2rem;border-top-right-radius:.1rem;cursor:pointer}[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem 1.8rem}.md-typeset summary::-webkit-details-marker{display:none}.md-typeset summary::after{position:absolute;top:.4rem;right:.4rem;width:1rem;height:1rem;background-color:currentColor;-webkit-mask-image:var(--md-details-icon);mask-image:var(--md-details-icon);transform:rotate(0deg);transition:transform 250ms;content:""}[dir=rtl] .md-typeset summary::after{right:initial;left:.4rem;transform:rotate(180deg)}.md-typeset img.emojione,.md-typeset img.twemoji,.md-typeset img.gemoji{width:1.125em;vertical-align:-15%}.md-typeset span.twemoji{display:inline-block;height:1.125em;vertical-align:text-top}.md-typeset span.twemoji svg{width:1.125em;fill:currentColor}.highlight [data-linenos]::before{position:-webkit-sticky;position:sticky;left:-1.1764705882em;float:left;margin-right:1.1764705882em;margin-left:-1.1764705882em;padding-left:1.1764705882em;color:var(--md-default-fg-color--lighter);background-color:var(--md-code-bg-color);box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest);content:attr(data-linenos);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md-typeset .tabbed-content{display:none;order:99;width:100%;box-shadow:0 -0.05rem var(--md-default-fg-color--lightest)}.md-typeset .tabbed-content>.codehilite:only-child pre,.md-typeset .tabbed-content>.codehilitetable:only-child,.md-typeset .tabbed-content>.highlight:only-child pre,.md-typeset .tabbed-content>.highlighttable:only-child{margin:0}.md-typeset .tabbed-content>.codehilite:only-child pre>code,.md-typeset .tabbed-content>.codehilitetable:only-child>code,.md-typeset .tabbed-content>.highlight:only-child pre>code,.md-typeset .tabbed-content>.highlighttable:only-child>code{border-top-left-radius:0;border-top-right-radius:0}.md-typeset .tabbed-content>.tabbed-set{margin:0}.md-typeset .tabbed-set{position:relative;display:flex;flex-wrap:wrap;margin:1em 0;border-radius:.1rem}.md-typeset .tabbed-set>input{display:none}.md-typeset .tabbed-set>input:checked+label{color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-typeset .tabbed-set>input:checked+label+.tabbed-content{display:block}.md-typeset .tabbed-set>label{z-index:1;width:auto;padding:.6rem 1.25em .5rem;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;border-bottom:.1rem solid transparent;cursor:pointer;transition:color 125ms}html .md-typeset .tabbed-set>label:hover{color:var(--md-accent-fg-color)}:root{--md-tasklist-icon: url('data:image/svg+xml;charset=utf-8,');--md-tasklist-icon--checked: url('data:image/svg+xml;charset=utf-8,')}.md-typeset .task-list-item{position:relative;list-style-type:none}.md-typeset .task-list-item [type=checkbox]{position:absolute;top:.45em;left:-2em}[dir=rtl] .md-typeset .task-list-item [type=checkbox]{right:-2em;left:initial}.md-typeset .task-list-control .task-list-indicator::before{position:absolute;top:.15em;left:-1.5em;width:1.25em;height:1.25em;background-color:var(--md-default-fg-color--lightest);-webkit-mask-image:var(--md-tasklist-icon);mask-image:var(--md-tasklist-icon);content:""}[dir=rtl] .md-typeset .task-list-control .task-list-indicator::before{right:-1.5em;left:initial}.md-typeset .task-list-control [type=checkbox]:checked+.task-list-indicator::before{background-color:#00e676;-webkit-mask-image:var(--md-tasklist-icon--checked);mask-image:var(--md-tasklist-icon--checked)}.md-typeset .task-list-control [type=checkbox]{z-index:-1;opacity:0} +html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}html{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}body{margin:0}hr{box-sizing:content-box;overflow:visible}a,button,label,input{-webkit-tap-highlight-color:transparent}a{color:inherit;text-decoration:none}small{font-size:80%}sub,sup{position:relative;font-size:80%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}table{border-collapse:separate;border-spacing:0}td,th{font-weight:normal;vertical-align:top}button{margin:0;padding:0;font-size:inherit;background:transparent;border:0}input{border:0;outline:0}:root{--md-default-fg-color: hsla(0, 0%, 0%, 0.87);--md-default-fg-color--light: hsla(0, 0%, 0%, 0.54);--md-default-fg-color--lighter: hsla(0, 0%, 0%, 0.26);--md-default-fg-color--lightest: hsla(0, 0%, 0%, 0.07);--md-default-bg-color: hsla(0, 0%, 100%, 1);--md-default-bg-color--light: hsla(0, 0%, 100%, 0.7);--md-default-bg-color--lighter: hsla(0, 0%, 100%, 0.3);--md-default-bg-color--lightest: hsla(0, 0%, 100%, 0.12);--md-primary-fg-color: hsla(231deg, 48%, 48%, 1);--md-primary-fg-color--light: hsla(230deg, 44%, 64%, 1);--md-primary-fg-color--dark: hsla(232deg, 54%, 41%, 1);--md-primary-bg-color: var(--md-default-bg-color);--md-primary-bg-color--light: var(--md-default-bg-color--light);--md-accent-fg-color: hsla(231deg, 99%, 66%, 1);--md-accent-fg-color--transparent: hsla(231deg, 99%, 66%, 0.1);--md-accent-bg-color: var(--md-default-bg-color);--md-accent-bg-color--light: var(--md-default-bg-color--light);--md-code-bg-color: hsla(0, 0%, 96%, 1);--md-code-fg-color: hsla(200, 18%, 26%, 1)}.md-icon svg{display:block;width:1.2rem;height:1.2rem;margin:0 auto;fill:currentColor}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body,input{color:var(--md-default-fg-color);font-feature-settings:"kern","liga";font-family:-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,pre,kbd{color:var(--md-default-fg-color);font-feature-settings:"kern";font-family:SFMono-Regular,Consolas,Menlo,monospace}.md-typeset{font-size:.8rem;line-height:1.6;-webkit-print-color-adjust:exact;color-adjust:exact}.md-typeset p,.md-typeset ul,.md-typeset ol,.md-typeset blockquote{margin:1em 0}.md-typeset h1{margin:0 0 2rem;color:var(--md-default-fg-color--light);font-weight:300;font-size:1.5625rem;line-height:1.3;letter-spacing:-0.01em}.md-typeset h2{margin:2rem 0 .8rem;font-weight:300;font-size:1.25rem;line-height:1.4;letter-spacing:-0.01em}.md-typeset h3{margin:1.6rem 0 .8rem;font-weight:400;font-size:1rem;line-height:1.5;letter-spacing:-0.01em}.md-typeset h2+h3{margin-top:.8rem}.md-typeset h4{margin:.8rem 0;font-weight:700;font-size:.8rem;letter-spacing:-0.01em}.md-typeset h5,.md-typeset h6{margin:.8rem 0;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;letter-spacing:-0.01em}.md-typeset h5{text-transform:uppercase}.md-typeset hr{margin:1.5em 0;border-bottom:.05rem dotted var(--md-default-fg-color--lighter)}.md-typeset a{color:var(--md-primary-fg-color);word-break:break-word}.md-typeset a,.md-typeset a::before{transition:color 125ms}.md-typeset a:focus,.md-typeset a:hover{color:var(--md-accent-fg-color)}.md-typeset code,.md-typeset pre,.md-typeset kbd{color:var(--md-code-fg-color);direction:ltr}@media print{.md-typeset code,.md-typeset pre,.md-typeset kbd{white-space:pre-wrap}}.md-typeset code{padding:0 .2941176471em;font-size:.85em;word-break:break-word;background-color:var(--md-code-bg-color);border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset h1 code,.md-typeset h2 code,.md-typeset h3 code,.md-typeset h4 code,.md-typeset h5 code,.md-typeset h6 code{margin:initial;padding:initial;background-color:transparent;box-shadow:none}.md-typeset a>code{color:currentColor}.md-typeset pre{position:relative;margin:1em 0;line-height:1.4}.md-typeset pre>code{display:block;margin:0;padding:.525rem 1.1764705882em;overflow:auto;word-break:normal;box-shadow:none;-webkit-box-decoration-break:slice;box-decoration-break:slice;touch-action:auto;scrollbar-width:thin}.md-typeset pre>code::-webkit-scrollbar{width:.2rem;height:.2rem}.md-typeset pre>code::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-typeset pre>code::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@media screen and (max-width: 44.9375em){.md-typeset>pre{margin:1em -0.8rem}.md-typeset>pre code{border-radius:0}}.md-typeset kbd{display:inline-block;padding:0 .6666666667em;font-size:.75em;line-height:1.5;vertical-align:text-top;word-break:break-word;border-radius:.1rem;box-shadow:0 .1rem 0 .05rem var(--md-default-fg-color--lighter),0 .1rem 0 var(--md-default-fg-color--lighter),inset 0 -0.1rem .2rem var(--md-default-bg-color)}.md-typeset mark{padding:0 .25em;word-break:break-word;background-color:rgba(255,235,59,.5);border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset abbr{text-decoration:none;border-bottom:.05rem dotted var(--md-default-fg-color--light);cursor:help}.md-typeset small{opacity:.75}.md-typeset sup,.md-typeset sub{margin-left:.078125em}[dir=rtl] .md-typeset sup,[dir=rtl] .md-typeset sub{margin-right:.078125em;margin-left:initial}.md-typeset blockquote{padding-left:.6rem;color:var(--md-default-fg-color--light);border-left:.2rem solid var(--md-default-fg-color--lighter)}[dir=rtl] .md-typeset blockquote{padding-right:.6rem;padding-left:initial;border-right:.2rem solid var(--md-default-fg-color--lighter);border-left:initial}.md-typeset ul{list-style-type:disc}.md-typeset ul,.md-typeset ol{margin-left:.625em;padding:0}[dir=rtl] .md-typeset ul,[dir=rtl] .md-typeset ol{margin-right:.625em;margin-left:initial}.md-typeset ul ol,.md-typeset ol ol{list-style-type:lower-alpha}.md-typeset ul ol ol,.md-typeset ol ol ol{list-style-type:lower-roman}.md-typeset ul li,.md-typeset ol li{margin-bottom:.5em;margin-left:1.25em}[dir=rtl] .md-typeset ul li,[dir=rtl] .md-typeset ol li{margin-right:1.25em;margin-left:initial}.md-typeset ul li p,.md-typeset ul li blockquote,.md-typeset ol li p,.md-typeset ol li blockquote{margin:.5em 0}.md-typeset ul li:last-child,.md-typeset ol li:last-child{margin-bottom:0}.md-typeset ul li ul,.md-typeset ul li ol,.md-typeset ol li ul,.md-typeset ol li ol{margin:.5em 0 .5em .625em}[dir=rtl] .md-typeset ul li ul,[dir=rtl] .md-typeset ul li ol,[dir=rtl] .md-typeset ol li ul,[dir=rtl] .md-typeset ol li ol{margin-right:.625em;margin-left:initial}.md-typeset dd{margin:1em 0 1em 1.875em}[dir=rtl] .md-typeset dd{margin-right:1.875em;margin-left:initial}.md-typeset img,.md-typeset svg{max-width:100%;height:auto}.md-typeset iframe{max-width:100%}.md-typeset table:not([class]){display:inline-block;max-width:100%;overflow:auto;font-size:.64rem;background:var(--md-default-bg-color);border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1);touch-action:auto}.md-typeset table:not([class])+*{margin-top:1.5em}.md-typeset table:not([class]) th:not([align]),.md-typeset table:not([class]) td:not([align]){text-align:left}[dir=rtl] .md-typeset table:not([class]) th:not([align]),[dir=rtl] .md-typeset table:not([class]) td:not([align]){text-align:right}.md-typeset table:not([class]) th{min-width:5rem;padding:.6rem .8rem;color:var(--md-default-bg-color);vertical-align:top;background-color:var(--md-default-fg-color--light)}.md-typeset table:not([class]) td{padding:.6rem .8rem;vertical-align:top;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-typeset table:not([class]) tr{transition:background-color 125ms}.md-typeset table:not([class]) tr:hover{background-color:rgba(0,0,0,.035);box-shadow:0 .05rem 0 var(--md-default-bg-color) inset}.md-typeset table:not([class]) tr:first-child td{border-top:0}.md-typeset table:not([class]) a{word-break:normal}.md-typeset__scrollwrap{margin:1em -0.8rem;overflow-x:auto;touch-action:auto}.md-typeset__table{display:inline-block;margin-bottom:.5em;padding:0 .8rem}.md-typeset__table table{display:table;width:100%;margin:0;overflow:hidden}html{height:100%;overflow-x:hidden;font-size:125%;background-color:var(--md-default-bg-color)}@media screen and (min-width: 100em){html{font-size:137.5%}}@media screen and (min-width: 125em){html{font-size:150%}}body{position:relative;display:flex;flex-direction:column;width:100%;min-height:100%;font-size:.5rem}@media screen and (max-width: 59.9375em){body[data-md-state=lock]{position:fixed}}@media print{body{display:block}}hr{display:block;height:.05rem;padding:0;border:0}.md-grid{max-width:61rem;margin-right:auto;margin-left:auto}.md-container{display:flex;flex-direction:column;flex-grow:1}@media print{.md-container{display:block}}.md-main{flex-grow:1}.md-main__inner{display:flex;height:100%;margin-top:1.5rem}.md-ellipsis{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.md-toggle{display:none}.md-overlay{position:fixed;top:0;z-index:3;width:0;height:0;background-color:var(--md-default-fg-color--light);opacity:0;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}@media screen and (max-width: 76.1875em){[data-md-toggle=drawer]:checked~.md-overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-skip{position:fixed;z-index:-1;margin:.5rem;padding:.3rem .5rem;color:var(--md-default-bg-color);font-size:.64rem;background-color:var(--md-default-fg-color);border-radius:.1rem;transform:translateY(0.4rem);opacity:0}.md-skip:focus{z-index:10;transform:translateY(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 175ms 75ms}@page{margin:25mm}.md-announce{overflow:auto;background-color:var(--md-default-fg-color)}.md-announce__inner{margin:.6rem auto;padding:0 .8rem;color:var(--md-default-bg-color);font-size:.7rem}@media print{.md-announce{display:none}}.md-typeset .md-button{display:inline-block;padding:.625em 2em;color:var(--md-primary-fg-color);font-weight:700;border:.1rem solid currentColor;border-radius:.1rem;transition:color 125ms,background-color 125ms,border-color 125ms}.md-typeset .md-button--primary{color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);border-color:var(--md-primary-fg-color)}.md-typeset .md-button:focus,.md-typeset .md-button:hover{color:var(--md-accent-bg-color);background-color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-clipboard{position:absolute;top:.4rem;right:.5em;z-index:1;width:1.5em;height:1.5em;color:var(--md-default-fg-color--lightest);border-radius:.1rem;cursor:pointer;transition:color 125ms}@media print{.md-clipboard{display:none}}.md-clipboard svg{width:1.125em;height:1.125em}pre:hover .md-clipboard{color:var(--md-default-fg-color--light)}pre .md-clipboard:focus,pre .md-clipboard:hover{color:var(--md-accent-fg-color)}.md-content{flex:1;max-width:100%}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-content{max-width:calc(100% - 12.1rem)}}@media screen and (min-width: 76.25em){.md-content{max-width:calc(100% - 12.1rem * 2)}}.md-content__inner{margin:0 .8rem 1.2rem;padding-top:.6rem}@media screen and (min-width: 76.25em){.md-content__inner{margin-right:1.2rem;margin-left:1.2rem}}.md-content__inner::before{display:block;height:.4rem;content:""}.md-content__inner>:last-child{margin-bottom:0}.md-content__button{float:right;margin:.4rem 0;margin-left:.4rem;padding:0}[dir=rtl] .md-content__button{float:left;margin-right:.4rem;margin-left:initial}[dir=rtl] .md-content__button svg{transform:scaleX(-1)}.md-typeset .md-content__button{color:var(--md-default-fg-color--lighter)}.md-content__button svg{display:inline;vertical-align:top}@media print{.md-content__button{display:none}}.md-dialog{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:fixed;right:.8rem;bottom:.8rem;left:initial;z-index:2;display:block;min-width:11.1rem;padding:.4rem .6rem;color:var(--md-default-bg-color);font-size:.7rem;background:var(--md-default-fg-color);border:none;border-radius:.1rem;transform:translateY(100%);opacity:0;transition:transform 0ms 400ms,opacity 400ms}[dir=rtl] .md-dialog{right:initial;left:.8rem}.md-dialog[data-md-state=open]{transform:translateY(0);opacity:1;transition:transform 400ms cubic-bezier(0.075, 0.85, 0.175, 1),opacity 400ms}@media print{.md-dialog{display:none}}.md-header{position:-webkit-sticky;position:sticky;top:0;right:0;left:0;z-index:2;height:2.4rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);box-shadow:0 0 .2rem rgba(0,0,0,0),0 .2rem .4rem rgba(0,0,0,0);transition:color 250ms,background-color 250ms}.no-js .md-header{box-shadow:none;transition:none}.md-header[data-md-state=shadow]{box-shadow:0 0 .2rem rgba(0,0,0,.1),0 .2rem .4rem rgba(0,0,0,.2);transition:color 250ms,background-color 250ms,box-shadow 250ms}@media print{.md-header{display:none}}.md-header-nav{display:flex;padding:0 .2rem}.md-header-nav__button{position:relative;z-index:1;margin:.2rem;padding:.4rem;cursor:pointer;transition:opacity 250ms}[dir=rtl] .md-header-nav__button svg{transform:scaleX(-1)}.md-header-nav__button:focus,.md-header-nav__button:hover{opacity:.7}.md-header-nav__button.md-logo{margin:.2rem;padding:.4rem}.md-header-nav__button.md-logo img,.md-header-nav__button.md-logo svg{display:block;width:1.2rem;height:1.2rem;fill:currentColor}.no-js .md-header-nav__button[for=__search]{display:none}@media screen and (min-width: 60em){.md-header-nav__button[for=__search]{display:none}}@media screen and (max-width: 76.1875em){.md-header-nav__button.md-logo{display:none}}@media screen and (min-width: 76.25em){.md-header-nav__button[for=__drawer]{display:none}}.md-header-nav__topic{position:absolute;width:100%;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms}.md-header-nav__topic+.md-header-nav__topic{z-index:-1;transform:translateX(1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__topic+.md-header-nav__topic{transform:translateX(-1.25rem)}.no-js .md-header-nav__topic{position:initial}.no-js .md-header-nav__topic+.md-header-nav__topic{display:none}.md-header-nav__title{flex-grow:1;padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-header-nav__title[data-md-state=active] .md-header-nav__topic{z-index:-1;transform:translateX(-1.25rem);opacity:0;transition:transform 400ms cubic-bezier(1, 0.7, 0.1, 0.1),opacity 150ms;pointer-events:none}[dir=rtl] .md-header-nav__title[data-md-state=active] .md-header-nav__topic{transform:translateX(1.25rem)}.md-header-nav__title[data-md-state=active] .md-header-nav__topic+.md-header-nav__topic{z-index:0;transform:translateX(0);opacity:1;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:initial}.md-header-nav__title>.md-header-nav__ellipsis{position:relative;width:100%;height:100%}.md-header-nav__source{display:none}@media screen and (min-width: 60em){.md-header-nav__source{display:block;width:11.7rem;max-width:11.7rem}[dir=rtl] .md-header-nav__source{margin-left:initial}}.md-hero{overflow:hidden;color:var(--md-primary-bg-color);font-size:1rem;background-color:var(--md-primary-fg-color);transition:background 250ms}.md-hero__inner{margin-top:1rem;padding:.8rem .8rem .4rem;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms;transition-delay:100ms}@media screen and (max-width: 76.1875em){.md-hero__inner{margin-top:2.4rem;margin-bottom:1.2rem}}[data-md-state=hidden] .md-hero__inner{transform:translateY(0.625rem);opacity:0;transition:transform 0ms 400ms,opacity 100ms 0ms;pointer-events:none}.md-hero--expand .md-hero__inner{margin-bottom:1.2rem}.md-footer{color:var(--md-default-bg-color);background-color:var(--md-default-fg-color)}@media print{.md-footer{display:none}}.md-footer-nav__inner{padding:.2rem;overflow:auto}.md-footer-nav__link{display:flex;padding-top:1.4rem;padding-bottom:.4rem;transition:opacity 250ms}@media screen and (min-width: 45em){.md-footer-nav__link{width:50%}}.md-footer-nav__link:focus,.md-footer-nav__link:hover{opacity:.7}.md-footer-nav__link--prev{float:left;width:25%}[dir=rtl] .md-footer-nav__link--prev{float:right}[dir=rtl] .md-footer-nav__link--prev svg{transform:scaleX(-1)}@media screen and (max-width: 44.9375em){.md-footer-nav__link--prev .md-footer-nav__title{display:none}}.md-footer-nav__link--next{float:right;width:75%;text-align:right}[dir=rtl] .md-footer-nav__link--next{float:left;text-align:left}[dir=rtl] .md-footer-nav__link--next svg{transform:scaleX(-1)}.md-footer-nav__title{position:relative;flex-grow:1;max-width:calc(100% - 2.4rem);padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-footer-nav__button{margin:.2rem;padding:.4rem}.md-footer-nav__direction{position:absolute;right:0;left:0;margin-top:-1rem;padding:0 1rem;color:var(--md-default-bg-color--light);font-size:.64rem}.md-footer-meta{background-color:var(--md-default-fg-color--lighter)}.md-footer-meta__inner{display:flex;flex-wrap:wrap;justify-content:space-between;padding:.2rem}html .md-footer-meta.md-typeset a{color:var(--md-default-bg-color--light)}html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover{color:var(--md-default-bg-color)}.md-footer-copyright{width:100%;margin:auto .6rem;padding:.4rem 0;color:var(--md-default-bg-color--lighter);font-size:.64rem}@media screen and (min-width: 45em){.md-footer-copyright{width:auto}}.md-footer-copyright__highlight{color:var(--md-default-bg-color--light)}.md-footer-social{margin:0 .4rem;padding:.2rem 0 .6rem}@media screen and (min-width: 45em){.md-footer-social{padding:.6rem 0}}.md-footer-social__link{display:inline-block;width:1.6rem;height:1.6rem;text-align:center}.md-footer-social__link::before{line-height:1.9}.md-footer-social__link svg{max-height:.8rem;vertical-align:-25%;fill:currentColor}.md-nav{font-size:.7rem;line-height:1.3}.md-nav__title{display:block;padding:0 .6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis}.md-nav__title .md-nav__button{display:none}.md-nav__title .md-nav__button img{width:100%;height:auto}.md-nav__title .md-nav__button.md-logo img,.md-nav__title .md-nav__button.md-logo svg{display:block;width:2.4rem;height:2.4rem}.md-nav__title .md-nav__button.md-logo svg{fill:currentColor}.md-nav__list{margin:0;padding:0;list-style:none}.md-nav__item{padding:0 .6rem}.md-nav__item:last-child{padding-bottom:.6rem}.md-nav__item .md-nav__item{padding-right:0}[dir=rtl] .md-nav__item .md-nav__item{padding-right:.6rem;padding-left:0}.md-nav__item .md-nav__item:last-child{padding-bottom:0}.md-nav__link{display:block;margin-top:.625em;overflow:hidden;text-overflow:ellipsis;cursor:pointer;transition:color 125ms;scroll-snap-align:start}html .md-nav__link[for=__toc]{display:none}html .md-nav__link[for=__toc]~.md-nav{display:none}.md-nav__link[data-md-state=blur]{color:var(--md-default-fg-color--light)}.md-nav__item .md-nav__link--active{color:var(--md-primary-fg-color)}.md-nav__item--nested>.md-nav__link{color:inherit}.md-nav__link:focus,.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav__source{display:none}@media screen and (max-width: 76.1875em){.md-nav{background-color:var(--md-default-bg-color)}.md-nav--primary,.md-nav--primary .md-nav{position:absolute;top:0;right:0;left:0;z-index:1;display:flex;flex-direction:column;height:100%}.md-nav--primary .md-nav__title,.md-nav--primary .md-nav__item{font-size:.8rem;line-height:1.5}.md-nav--primary .md-nav__title{position:relative;height:5.6rem;padding:3rem .8rem .2rem;color:var(--md-default-fg-color--light);font-weight:400;line-height:2.4rem;white-space:nowrap;background-color:var(--md-default-fg-color--lightest);cursor:pointer}.md-nav--primary .md-nav__title .md-nav__icon{position:absolute;top:.4rem;left:.4rem;display:block;width:1.2rem;height:1.2rem;margin:.2rem}[dir=rtl] .md-nav--primary .md-nav__title .md-nav__icon{right:.4rem;left:initial}.md-nav--primary .md-nav__title~.md-nav__list{overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory;touch-action:pan-y}.md-nav--primary .md-nav__title~.md-nav__list>.md-nav__item:first-child{border-top:0}.md-nav--primary .md-nav__title[for=__drawer]{position:relative;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{position:absolute;top:.2rem;left:.2rem;display:block;margin:.2rem;padding:.4rem;font-size:2.4rem}html [dir=rtl] .md-nav--primary .md-nav__title[for=__drawer] .md-nav__button{right:.2rem;left:initial}.md-nav--primary .md-nav__list{flex:1}.md-nav--primary .md-nav__item{padding:0;border-top:.05rem solid var(--md-default-fg-color--lightest)}[dir=rtl] .md-nav--primary .md-nav__item{padding:0}.md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:2.4rem}[dir=rtl] .md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav--primary .md-nav__item--active>.md-nav__link{color:var(--md-primary-fg-color)}.md-nav--primary .md-nav__item--active>.md-nav__link:focus,.md-nav--primary .md-nav__item--active>.md-nav__link:hover{color:var(--md-accent-fg-color)}.md-nav--primary .md-nav__link{position:relative;margin-top:0;padding:.6rem .8rem}.md-nav--primary .md-nav__link .md-nav__icon{position:absolute;top:50%;right:.6rem;margin-top:-0.6rem;color:inherit;font-size:1.2rem}[dir=rtl] .md-nav--primary .md-nav__link .md-nav__icon{right:initial;left:.6rem}[dir=rtl] .md-nav--primary .md-nav__icon svg{transform:scale(-1)}.md-nav--primary .md-nav--secondary .md-nav__link{position:static}.md-nav--primary .md-nav--secondary .md-nav{position:static;background-color:transparent}.md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-left:1.4rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-right:1.4rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-left:2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-right:2rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-left:2.6rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-right:2.6rem;padding-left:initial}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-left:3.2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-right:3.2rem;padding-left:initial}.md-nav__toggle~.md-nav{display:flex;transform:translateX(100%);opacity:0;transition:transform 250ms cubic-bezier(0.8, 0, 0.6, 1),opacity 125ms 50ms}[dir=rtl] .md-nav__toggle~.md-nav{transform:translateX(-100%)}.md-nav__toggle:checked~.md-nav{transform:translateX(0);opacity:1;transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),opacity 125ms 125ms}.md-nav__toggle:checked~.md-nav>.md-nav__list{-webkit-backface-visibility:hidden;backface-visibility:hidden}}@media screen and (max-width: 59.9375em){html .md-nav__link[for=__toc]{display:block;padding-right:2.4rem}html .md-nav__link[for=__toc]+.md-nav__link{display:none}html .md-nav__link[for=__toc]~.md-nav{display:flex}html [dir=rtl] .md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav__source{display:block;padding:0 .2rem;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color--dark)}}@media screen and (min-width: 60em){.md-nav--secondary .md-nav__title[for=__toc]{scroll-snap-align:start}.md-nav--secondary .md-nav__title .md-nav__icon{display:none}}@media screen and (min-width: 76.25em){.md-nav{transition:max-height 250ms cubic-bezier(0.86, 0, 0.07, 1)}.md-nav--primary .md-nav__title[for=__drawer]{scroll-snap-align:start}.md-nav--primary .md-nav__title .md-nav__icon{display:none}.md-nav__toggle~.md-nav{display:none}.md-nav__toggle:checked~.md-nav{display:block}.md-nav__item--nested>.md-nav>.md-nav__title{display:none}.md-nav__icon{float:right;height:.9rem;transition:transform 250ms}[dir=rtl] .md-nav__icon{float:left;transform:rotate(180deg)}.md-nav__icon svg{display:inline-block;width:.9rem;height:.9rem;vertical-align:-0.1rem}.md-nav__item--nested .md-nav__toggle:checked~.md-nav__link .md-nav__icon{transform:rotate(90deg)}}.md-search{position:relative}.no-js .md-search{display:none}@media screen and (min-width: 60em){.md-search{padding:.2rem 0}}.md-search__overlay{z-index:1;opacity:0}@media screen and (max-width: 59.9375em){.md-search__overlay{position:absolute;top:.2rem;left:-2.2rem;width:2rem;height:2rem;overflow:hidden;background-color:var(--md-default-bg-color);border-radius:1rem;transform-origin:center;transition:transform 300ms 100ms,opacity 200ms 200ms;pointer-events:none}[dir=rtl] .md-search__overlay{right:-2.2rem;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{opacity:1;transition:transform 400ms,opacity 100ms}}@media screen and (max-width: 29.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(45)}}@media screen and (min-width: 30em)and (max-width: 44.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(60)}}@media screen and (min-width: 45em)and (max-width: 59.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{transform:scale(75)}}@media screen and (min-width: 60em){.md-search__overlay{position:fixed;top:0;left:0;width:0;height:0;background-color:var(--md-default-fg-color--light);cursor:pointer;transition:width 0ms 250ms,height 0ms 250ms,opacity 250ms}[dir=rtl] .md-search__overlay{right:0;left:initial}[data-md-toggle=search]:checked~.md-header .md-search__overlay{width:100%;height:100%;opacity:1;transition:width 0ms,height 0ms,opacity 250ms}}.md-search__inner{-webkit-backface-visibility:hidden;backface-visibility:hidden}@media screen and (max-width: 59.9375em){.md-search__inner{position:fixed;top:0;left:100%;z-index:2;width:100%;height:100%;transform:translateX(5%);opacity:0;transition:right 0ms 300ms,left 0ms 300ms,transform 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1),opacity 150ms 150ms}[data-md-toggle=search]:checked~.md-header .md-search__inner{left:0;transform:translateX(0);opacity:1;transition:right 0ms 0ms,left 0ms 0ms,transform 150ms 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms 150ms}[dir=rtl] [data-md-toggle=search]:checked~.md-header .md-search__inner{right:0;left:initial}html [dir=rtl] .md-search__inner{right:100%;left:initial;transform:translateX(-5%)}}@media screen and (min-width: 60em){.md-search__inner{position:relative;float:right;width:11.7rem;padding:.1rem 0;transition:width 250ms cubic-bezier(0.1, 0.7, 0.1, 1)}[dir=rtl] .md-search__inner{float:left}}@media screen and (min-width: 60em)and (max-width: 76.1875em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:23.4rem}}@media screen and (min-width: 76.25em){[data-md-toggle=search]:checked~.md-header .md-search__inner{width:34.4rem}}.md-search__form{position:relative}@media screen and (min-width: 60em){.md-search__form{border-radius:.1rem}}.md-search__input{position:relative;z-index:2;padding:0 2.2rem 0 3.6rem;text-overflow:ellipsis}[dir=rtl] .md-search__input{padding:0 3.6rem 0 2.2rem}.md-search__input::-webkit-input-placeholder{-webkit-transition:color 250ms;transition:color 250ms}.md-search__input::-moz-placeholder{-moz-transition:color 250ms;transition:color 250ms}.md-search__input::-ms-input-placeholder{-ms-transition:color 250ms;transition:color 250ms}.md-search__input::placeholder{transition:color 250ms}.md-search__input::-webkit-input-placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-moz-placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-ms-input-placeholder{color:var(--md-default-fg-color--light)}.md-search__input~.md-search__icon,.md-search__input::placeholder{color:var(--md-default-fg-color--light)}.md-search__input::-ms-clear{display:none}@media screen and (max-width: 59.9375em){.md-search__input{width:100%;height:2.4rem;font-size:.9rem}}@media screen and (min-width: 60em){.md-search__input{width:100%;height:1.8rem;padding-left:2.2rem;color:inherit;font-size:.8rem;background-color:var(--md-default-fg-color--lighter);border-radius:.1rem;transition:color 250ms,background-color 250ms}[dir=rtl] .md-search__input{padding-right:2.2rem}.md-search__input+.md-search__icon{color:var(--md-primary-bg-color)}.md-search__input::-webkit-input-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::-moz-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::-ms-input-placeholder{color:var(--md-primary-bg-color--light)}.md-search__input::placeholder{color:var(--md-primary-bg-color--light)}.md-search__input:hover{background-color:var(--md-default-bg-color--lightest)}[data-md-toggle=search]:checked~.md-header .md-search__input{color:var(--md-default-fg-color);text-overflow:clip;background-color:var(--md-default-bg-color);border-radius:.1rem .1rem 0 0}[data-md-toggle=search]:checked~.md-header .md-search__input::-webkit-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input::-moz-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input::-ms-input-placeholder{color:var(--md-default-fg-color--light)}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::placeholder{color:var(--md-default-fg-color--light)}}.md-search__icon{position:absolute;z-index:2;width:1.2rem;height:1.2rem;cursor:pointer;transition:color 250ms,opacity 250ms}.md-search__icon:hover{opacity:.7}.md-search__icon[for=__search]{top:.3rem;left:.5rem}[dir=rtl] .md-search__icon[for=__search]{right:.5rem;left:initial}[dir=rtl] .md-search__icon[for=__search] svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search__icon[for=__search]{top:.6rem;left:.8rem}[dir=rtl] .md-search__icon[for=__search]{right:.8rem;left:initial}.md-search__icon[for=__search] svg:first-child{display:none}}@media screen and (min-width: 60em){.md-search__icon[for=__search]{pointer-events:none}.md-search__icon[for=__search] svg:last-child{display:none}}.md-search__icon[type=reset]{top:.3rem;right:.5rem;transform:scale(0.75);opacity:0;transition:transform 150ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 150ms;pointer-events:none}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.5rem}@media screen and (max-width: 59.9375em){.md-search__icon[type=reset]{top:.6rem;right:.8rem}[dir=rtl] .md-search__icon[type=reset]{right:initial;left:.8rem}}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]{transform:scale(1);opacity:1;pointer-events:initial}[data-md-toggle=search]:checked~.md-header .md-search__input:not(:placeholder-shown)~.md-search__icon[type=reset]:hover{opacity:.7}.md-search__output{position:absolute;z-index:1;width:100%;overflow:hidden;border-radius:0 0 .1rem .1rem}@media screen and (max-width: 59.9375em){.md-search__output{top:2.4rem;bottom:0}}@media screen and (min-width: 60em){.md-search__output{top:1.9rem;opacity:0;transition:opacity 400ms}[data-md-toggle=search]:checked~.md-header .md-search__output{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.4);opacity:1}}.md-search__scrollwrap{height:100%;overflow-y:auto;background-color:var(--md-default-bg-color);box-shadow:inset 0 .05rem 0 var(--md-default-fg-color--lightest);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory;touch-action:pan-y}@media(-webkit-max-device-pixel-ratio: 1), (max-resolution: 1dppx){.md-search__scrollwrap{transform:translateZ(0)}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search__scrollwrap{width:23.4rem}}@media screen and (min-width: 76.25em){.md-search__scrollwrap{width:34.4rem}}@media screen and (min-width: 60em){.md-search__scrollwrap{max-height:0}[data-md-toggle=search]:checked~.md-header .md-search__scrollwrap{max-height:75vh}.md-search__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-search__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}}.md-search-result{color:var(--md-default-fg-color);word-break:break-word}.md-search-result__meta{padding:0 .8rem;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.8rem;background-color:var(--md-default-fg-color--lightest);scroll-snap-align:start}@media screen and (min-width: 60em){.md-search-result__meta{padding-left:2.2rem}[dir=rtl] .md-search-result__meta{padding-right:2.2rem;padding-left:initial}}.md-search-result__list{margin:0;padding:0;list-style:none;border-top:.05rem solid var(--md-default-fg-color--lightest)}.md-search-result__item{box-shadow:0 -0.05rem 0 var(--md-default-fg-color--lightest)}.md-search-result__link{display:block;outline:0;transition:background 250ms;scroll-snap-align:start}.md-search-result__link:focus,.md-search-result__link:hover{background-color:var(--md-accent-fg-color--transparent)}.md-search-result__link:focus .md-search-result__article::before,.md-search-result__link:hover .md-search-result__article::before{opacity:.7}.md-search-result__link:last-child .md-search-result__teaser{margin-bottom:.6rem}.md-search-result__article{position:relative;padding:0 .8rem;overflow:hidden}@media screen and (min-width: 60em){.md-search-result__article{padding-left:2.2rem}[dir=rtl] .md-search-result__article{padding-right:2.2rem;padding-left:.8rem}}.md-search-result__article--document .md-search-result__title{margin:.55rem 0;font-weight:400;font-size:.8rem;line-height:1.4}.md-search-result__icon{position:absolute;left:0;margin:.1rem;padding:.4rem;color:var(--md-default-fg-color--light)}[dir=rtl] .md-search-result__icon{right:0;left:initial}[dir=rtl] .md-search-result__icon svg{transform:scaleX(-1)}@media screen and (max-width: 59.9375em){.md-search-result__icon{display:none}}.md-search-result__title{margin:.5em 0;font-weight:700;font-size:.64rem;line-height:1.4}.md-search-result__teaser{display:-webkit-box;max-height:1.65rem;margin:.5em 0;overflow:hidden;color:var(--md-default-fg-color--light);font-size:.64rem;line-height:1.4;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:2}@media screen and (max-width: 44.9375em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}@media screen and (min-width: 60em)and (max-width: 76.1875em){.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}}.md-search-result em{font-weight:700;font-style:normal;text-decoration:underline}@-webkit-keyframes md-sidebar__scrollwrap--hack{0%,99%{-webkit-scroll-snap-type:none;scroll-snap-type:none}100%{-webkit-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}}@keyframes md-sidebar__scrollwrap--hack{0%,99%{-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none}100%{-webkit-scroll-snap-type:y mandatory;-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}}.md-sidebar{position:-webkit-sticky;position:sticky;top:2.4rem;align-self:flex-start;width:12.1rem;padding:1.2rem 0;overflow:hidden}@media print{.md-sidebar{display:none}}@media screen and (max-width: 76.1875em){.md-sidebar--primary{position:fixed;top:0;left:-12.1rem;z-index:3;width:12.1rem;height:100%;background-color:var(--md-default-bg-color);transform:translateX(0);transition:transform 250ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 250ms}[dir=rtl] .md-sidebar--primary{right:-12.1rem;left:initial}[data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.4);transform:translateX(12.1rem)}[dir=rtl] [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{transform:translateX(-12.1rem)}.md-sidebar--primary .md-sidebar__scrollwrap{overflow:hidden}}.md-sidebar--secondary{display:none;order:2}@media screen and (min-width: 60em){.md-sidebar--secondary{display:block}.md-sidebar--secondary .md-sidebar__scrollwrap{touch-action:pan-y}}.md-sidebar__scrollwrap{max-height:100%;margin:0 .2rem;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.js .md-sidebar__scrollwrap{-webkit-animation:md-sidebar__scrollwrap--hack 400ms forwards;animation:md-sidebar__scrollwrap--hack 400ms forwards}@media screen and (max-width: 76.1875em){.md-sidebar--primary .md-sidebar__scrollwrap{position:absolute;top:0;right:0;bottom:0;left:0;margin:0;-webkit-scroll-snap-type:none;-ms-scroll-snap-type:none;scroll-snap-type:none}}.md-sidebar__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb{background-color:var(--md-default-fg-color--lighter)}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:var(--md-accent-fg-color)}@-webkit-keyframes md-source__facts--done{0%{height:0}100%{height:.65rem}}@keyframes md-source__facts--done{0%{height:0}100%{height:.65rem}}@-webkit-keyframes md-source__fact--done{0%{transform:translateY(100%);opacity:0}50%{opacity:0}100%{transform:translateY(0%);opacity:1}}@keyframes md-source__fact--done{0%{transform:translateY(100%);opacity:0}50%{opacity:0}100%{transform:translateY(0%);opacity:1}}.md-source{display:block;font-size:.65rem;line-height:1.2;white-space:nowrap;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:opacity 250ms}.md-source:hover{opacity:.7}.md-source__icon{display:inline-block;width:2.4rem;height:2.4rem;vertical-align:middle}.md-source__icon svg{margin-top:.6rem;margin-left:.6rem}[dir=rtl] .md-source__icon svg{margin-right:.6rem;margin-left:initial}.md-source__icon+.md-source__repository{margin-left:-2rem;padding-left:2rem}[dir=rtl] .md-source__icon+.md-source__repository{margin-right:-2rem;margin-left:initial;padding-right:2rem;padding-left:initial}.md-source__repository{display:inline-block;max-width:calc(100% - 1.2rem);margin-left:.6rem;overflow:hidden;font-weight:700;text-overflow:ellipsis;vertical-align:middle}.md-source__facts{margin:0;padding:0;overflow:hidden;font-weight:700;font-size:.55rem;list-style-type:none;opacity:.75}[data-md-state=done] .md-source__facts{-webkit-animation:md-source__facts--done 250ms ease-in;animation:md-source__facts--done 250ms ease-in}.md-source__fact{float:left}[dir=rtl] .md-source__fact{float:right}[data-md-state=done] .md-source__fact{-webkit-animation:md-source__fact--done 400ms ease-out;animation:md-source__fact--done 400ms ease-out}.md-source__fact::before{margin:0 .1rem;content:"·"}.md-source__fact:first-child::before{display:none}.md-tabs{width:100%;overflow:auto;color:var(--md-primary-bg-color);background-color:var(--md-primary-fg-color);transition:background 250ms}.no-js .md-tabs{transition:none}@media screen and (max-width: 76.1875em){.md-tabs{display:none}}@media print{.md-tabs{display:none}}.md-tabs__list{margin:0;margin-left:.2rem;padding:0;white-space:nowrap;list-style:none;contain:content}[dir=rtl] .md-tabs__list{margin-right:.2rem;margin-left:initial}.md-tabs__item{display:inline-block;height:2.4rem;padding-right:.6rem;padding-left:.6rem}.md-tabs__link{display:block;margin-top:.8rem;font-size:.7rem;opacity:.7;transition:transform 400ms cubic-bezier(0.1, 0.7, 0.1, 1),opacity 250ms}.no-js .md-tabs__link{transition:none}.md-tabs__link--active,.md-tabs__link:hover{color:inherit;opacity:1}.md-tabs__item:nth-child(2) .md-tabs__link{transition-delay:20ms}.md-tabs__item:nth-child(3) .md-tabs__link{transition-delay:40ms}.md-tabs__item:nth-child(4) .md-tabs__link{transition-delay:60ms}.md-tabs__item:nth-child(5) .md-tabs__link{transition-delay:80ms}.md-tabs__item:nth-child(6) .md-tabs__link{transition-delay:100ms}.md-tabs__item:nth-child(7) .md-tabs__link{transition-delay:120ms}.md-tabs__item:nth-child(8) .md-tabs__link{transition-delay:140ms}.md-tabs__item:nth-child(9) .md-tabs__link{transition-delay:160ms}.md-tabs__item:nth-child(10) .md-tabs__link{transition-delay:180ms}.md-tabs__item:nth-child(11) .md-tabs__link{transition-delay:200ms}.md-tabs__item:nth-child(12) .md-tabs__link{transition-delay:220ms}.md-tabs__item:nth-child(13) .md-tabs__link{transition-delay:240ms}.md-tabs__item:nth-child(14) .md-tabs__link{transition-delay:260ms}.md-tabs__item:nth-child(15) .md-tabs__link{transition-delay:280ms}.md-tabs__item:nth-child(16) .md-tabs__link{transition-delay:300ms}.md-tabs[data-md-state=hidden]{pointer-events:none}.md-tabs[data-md-state=hidden] .md-tabs__link{transform:translateY(50%);opacity:0;transition:color 250ms,transform 0ms 400ms,opacity 100ms}@media screen and (min-width: 76.25em){.md-tabs~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--nested{display:none}.md-tabs--active~.md-main .md-nav--primary .md-nav__title{display:block;padding:0 .6rem;pointer-events:none;scroll-snap-align:start}.md-tabs--active~.md-main .md-nav--primary .md-nav__title[for=__drawer]{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active{display:block;padding:0}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active>.md-nav__link{display:none}.md-tabs--active~.md-main .md-nav[data-md-level="1"]{display:block}.md-tabs--active~.md-main .md-nav[data-md-level="1"]>.md-nav__list>.md-nav__item{padding:0 .6rem}.md-tabs--active~.md-main .md-nav[data-md-level="1"] .md-nav .md-nav__title{display:none}}:root{--md-admonition-icon--note: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--abstract: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--info: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--tip: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--success: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--question: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--warning: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--failure: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--danger: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--bug: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--example: url('data:image/svg+xml;charset=utf-8,');--md-admonition-icon--quote: url('data:image/svg+xml;charset=utf-8,')}.md-typeset .admonition,.md-typeset details{margin:1.5625em 0;padding:0 .6rem;overflow:hidden;font-size:.64rem;page-break-inside:avoid;border-left:.2rem solid #448aff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1)}[dir=rtl] .md-typeset .admonition,[dir=rtl] .md-typeset details{border-right:.2rem solid #448aff;border-left:none}@media print{.md-typeset .admonition,.md-typeset details{box-shadow:none}}html .md-typeset .admonition>:last-child,html .md-typeset details>:last-child{margin-bottom:.6rem}.md-typeset .admonition .admonition,.md-typeset details .admonition,.md-typeset .admonition details,.md-typeset details details{margin:1em 0}.md-typeset .admonition .md-typeset__scrollwrap,.md-typeset details .md-typeset__scrollwrap{margin:1em -0.6rem}.md-typeset .admonition .md-typeset__table,.md-typeset details .md-typeset__table{padding:0 .6rem}.md-typeset .admonition-title,.md-typeset summary{position:relative;margin:0 -0.6rem;padding:.4rem .6rem .4rem 2rem;font-weight:700;background-color:rgba(68,138,255,.1)}[dir=rtl] .md-typeset .admonition-title,[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem .6rem}html .md-typeset .admonition-title:last-child,html .md-typeset summary:last-child{margin-bottom:0}.md-typeset .admonition-title::before,.md-typeset summary::before{position:absolute;left:.6rem;width:1rem;height:1rem;background-color:#448aff;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note);content:""}[dir=rtl] .md-typeset .admonition-title::before,[dir=rtl] .md-typeset summary::before{right:.6rem;left:initial}.md-typeset .admonition-title code,.md-typeset summary code{margin:initial;padding:initial;color:currentColor;background-color:transparent;border-radius:initial;box-shadow:none}.md-typeset .admonition.note,.md-typeset details.note{border-color:#448aff}.md-typeset .note>.admonition-title,.md-typeset .note>summary{background-color:rgba(68,138,255,.1)}.md-typeset .note>.admonition-title::before,.md-typeset .note>summary::before{background-color:#448aff;-webkit-mask-image:var(--md-admonition-icon--note);mask-image:var(--md-admonition-icon--note)}.md-typeset .admonition.abstract,.md-typeset details.abstract,.md-typeset .admonition.tldr,.md-typeset details.tldr,.md-typeset .admonition.summary,.md-typeset details.summary{border-color:#00b0ff}.md-typeset .abstract>.admonition-title,.md-typeset .abstract>summary,.md-typeset .tldr>.admonition-title,.md-typeset .tldr>summary,.md-typeset .summary>.admonition-title,.md-typeset .summary>summary{background-color:rgba(0,176,255,.1)}.md-typeset .abstract>.admonition-title::before,.md-typeset .abstract>summary::before,.md-typeset .tldr>.admonition-title::before,.md-typeset .tldr>summary::before,.md-typeset .summary>.admonition-title::before,.md-typeset .summary>summary::before{background-color:#00b0ff;-webkit-mask-image:var(--md-admonition-icon--abstract);mask-image:var(--md-admonition-icon--abstract)}.md-typeset .admonition.info,.md-typeset details.info,.md-typeset .admonition.todo,.md-typeset details.todo{border-color:#00b8d4}.md-typeset .info>.admonition-title,.md-typeset .info>summary,.md-typeset .todo>.admonition-title,.md-typeset .todo>summary{background-color:rgba(0,184,212,.1)}.md-typeset .info>.admonition-title::before,.md-typeset .info>summary::before,.md-typeset .todo>.admonition-title::before,.md-typeset .todo>summary::before{background-color:#00b8d4;-webkit-mask-image:var(--md-admonition-icon--info);mask-image:var(--md-admonition-icon--info)}.md-typeset .admonition.tip,.md-typeset details.tip,.md-typeset .admonition.important,.md-typeset details.important,.md-typeset .admonition.hint,.md-typeset details.hint{border-color:#00bfa5}.md-typeset .tip>.admonition-title,.md-typeset .tip>summary,.md-typeset .important>.admonition-title,.md-typeset .important>summary,.md-typeset .hint>.admonition-title,.md-typeset .hint>summary{background-color:rgba(0,191,165,.1)}.md-typeset .tip>.admonition-title::before,.md-typeset .tip>summary::before,.md-typeset .important>.admonition-title::before,.md-typeset .important>summary::before,.md-typeset .hint>.admonition-title::before,.md-typeset .hint>summary::before{background-color:#00bfa5;-webkit-mask-image:var(--md-admonition-icon--tip);mask-image:var(--md-admonition-icon--tip)}.md-typeset .admonition.success,.md-typeset details.success,.md-typeset .admonition.done,.md-typeset details.done,.md-typeset .admonition.check,.md-typeset details.check{border-color:#00c853}.md-typeset .success>.admonition-title,.md-typeset .success>summary,.md-typeset .done>.admonition-title,.md-typeset .done>summary,.md-typeset .check>.admonition-title,.md-typeset .check>summary{background-color:rgba(0,200,83,.1)}.md-typeset .success>.admonition-title::before,.md-typeset .success>summary::before,.md-typeset .done>.admonition-title::before,.md-typeset .done>summary::before,.md-typeset .check>.admonition-title::before,.md-typeset .check>summary::before{background-color:#00c853;-webkit-mask-image:var(--md-admonition-icon--success);mask-image:var(--md-admonition-icon--success)}.md-typeset .admonition.question,.md-typeset details.question,.md-typeset .admonition.faq,.md-typeset details.faq,.md-typeset .admonition.help,.md-typeset details.help{border-color:#64dd17}.md-typeset .question>.admonition-title,.md-typeset .question>summary,.md-typeset .faq>.admonition-title,.md-typeset .faq>summary,.md-typeset .help>.admonition-title,.md-typeset .help>summary{background-color:rgba(100,221,23,.1)}.md-typeset .question>.admonition-title::before,.md-typeset .question>summary::before,.md-typeset .faq>.admonition-title::before,.md-typeset .faq>summary::before,.md-typeset .help>.admonition-title::before,.md-typeset .help>summary::before{background-color:#64dd17;-webkit-mask-image:var(--md-admonition-icon--question);mask-image:var(--md-admonition-icon--question)}.md-typeset .admonition.warning,.md-typeset details.warning,.md-typeset .admonition.attention,.md-typeset details.attention,.md-typeset .admonition.caution,.md-typeset details.caution{border-color:#ff9100}.md-typeset .warning>.admonition-title,.md-typeset .warning>summary,.md-typeset .attention>.admonition-title,.md-typeset .attention>summary,.md-typeset .caution>.admonition-title,.md-typeset .caution>summary{background-color:rgba(255,145,0,.1)}.md-typeset .warning>.admonition-title::before,.md-typeset .warning>summary::before,.md-typeset .attention>.admonition-title::before,.md-typeset .attention>summary::before,.md-typeset .caution>.admonition-title::before,.md-typeset .caution>summary::before{background-color:#ff9100;-webkit-mask-image:var(--md-admonition-icon--warning);mask-image:var(--md-admonition-icon--warning)}.md-typeset .admonition.failure,.md-typeset details.failure,.md-typeset .admonition.missing,.md-typeset details.missing,.md-typeset .admonition.fail,.md-typeset details.fail{border-color:#ff5252}.md-typeset .failure>.admonition-title,.md-typeset .failure>summary,.md-typeset .missing>.admonition-title,.md-typeset .missing>summary,.md-typeset .fail>.admonition-title,.md-typeset .fail>summary{background-color:rgba(255,82,82,.1)}.md-typeset .failure>.admonition-title::before,.md-typeset .failure>summary::before,.md-typeset .missing>.admonition-title::before,.md-typeset .missing>summary::before,.md-typeset .fail>.admonition-title::before,.md-typeset .fail>summary::before{background-color:#ff5252;-webkit-mask-image:var(--md-admonition-icon--failure);mask-image:var(--md-admonition-icon--failure)}.md-typeset .admonition.danger,.md-typeset details.danger,.md-typeset .admonition.error,.md-typeset details.error{border-color:#ff1744}.md-typeset .danger>.admonition-title,.md-typeset .danger>summary,.md-typeset .error>.admonition-title,.md-typeset .error>summary{background-color:rgba(255,23,68,.1)}.md-typeset .danger>.admonition-title::before,.md-typeset .danger>summary::before,.md-typeset .error>.admonition-title::before,.md-typeset .error>summary::before{background-color:#ff1744;-webkit-mask-image:var(--md-admonition-icon--danger);mask-image:var(--md-admonition-icon--danger)}.md-typeset .admonition.bug,.md-typeset details.bug{border-color:#f50057}.md-typeset .bug>.admonition-title,.md-typeset .bug>summary{background-color:rgba(245,0,87,.1)}.md-typeset .bug>.admonition-title::before,.md-typeset .bug>summary::before{background-color:#f50057;-webkit-mask-image:var(--md-admonition-icon--bug);mask-image:var(--md-admonition-icon--bug)}.md-typeset .admonition.example,.md-typeset details.example{border-color:#651fff}.md-typeset .example>.admonition-title,.md-typeset .example>summary{background-color:rgba(101,31,255,.1)}.md-typeset .example>.admonition-title::before,.md-typeset .example>summary::before{background-color:#651fff;-webkit-mask-image:var(--md-admonition-icon--example);mask-image:var(--md-admonition-icon--example)}.md-typeset .admonition.quote,.md-typeset details.quote,.md-typeset .admonition.cite,.md-typeset details.cite{border-color:#9e9e9e}.md-typeset .quote>.admonition-title,.md-typeset .quote>summary,.md-typeset .cite>.admonition-title,.md-typeset .cite>summary{background-color:rgba(158,158,158,.1)}.md-typeset .quote>.admonition-title::before,.md-typeset .quote>summary::before,.md-typeset .cite>.admonition-title::before,.md-typeset .cite>summary::before{background-color:#9e9e9e;-webkit-mask-image:var(--md-admonition-icon--quote);mask-image:var(--md-admonition-icon--quote)}.codehilite .o,.highlight .o{color:inherit}.codehilite .ow,.highlight .ow{color:inherit}.codehilite .ge,.highlight .ge{color:#000}.codehilite .gr,.highlight .gr{color:#a00}.codehilite .gh,.highlight .gh{color:#999}.codehilite .go,.highlight .go{color:#888}.codehilite .gp,.highlight .gp{color:#555}.codehilite .gs,.highlight .gs{color:inherit}.codehilite .gu,.highlight .gu{color:#aaa}.codehilite .gt,.highlight .gt{color:#a00}.codehilite .gd,.highlight .gd{background-color:#fdd}.codehilite .gi,.highlight .gi{background-color:#dfd}.codehilite .k,.highlight .k{color:#3b78e7}.codehilite .kc,.highlight .kc{color:#a71d5d}.codehilite .kd,.highlight .kd{color:#3b78e7}.codehilite .kn,.highlight .kn{color:#3b78e7}.codehilite .kp,.highlight .kp{color:#a71d5d}.codehilite .kr,.highlight .kr{color:#3e61a2}.codehilite .kt,.highlight .kt{color:#3e61a2}.codehilite .c,.highlight .c{color:#999}.codehilite .cm,.highlight .cm{color:#999}.codehilite .cp,.highlight .cp{color:#666}.codehilite .c1,.highlight .c1{color:#999}.codehilite .ch,.highlight .ch{color:#999}.codehilite .cs,.highlight .cs{color:#999}.codehilite .na,.highlight .na{color:#c2185b}.codehilite .nb,.highlight .nb{color:#c2185b}.codehilite .bp,.highlight .bp{color:#3e61a2}.codehilite .nc,.highlight .nc{color:#c2185b}.codehilite .no,.highlight .no{color:#3e61a2}.codehilite .nd,.highlight .nd{color:#666}.codehilite .ni,.highlight .ni{color:#666}.codehilite .ne,.highlight .ne{color:#c2185b}.codehilite .nf,.highlight .nf{color:#c2185b}.codehilite .nl,.highlight .nl{color:#3b5179}.codehilite .nn,.highlight .nn{color:#ec407a}.codehilite .nt,.highlight .nt{color:#3b78e7}.codehilite .nv,.highlight .nv{color:#3e61a2}.codehilite .vc,.highlight .vc{color:#3e61a2}.codehilite .vg,.highlight .vg{color:#3e61a2}.codehilite .vi,.highlight .vi{color:#3e61a2}.codehilite .nx,.highlight .nx{color:#ec407a}.codehilite .m,.highlight .m{color:#e74c3c}.codehilite .mf,.highlight .mf{color:#e74c3c}.codehilite .mh,.highlight .mh{color:#e74c3c}.codehilite .mi,.highlight .mi{color:#e74c3c}.codehilite .il,.highlight .il{color:#e74c3c}.codehilite .mo,.highlight .mo{color:#e74c3c}.codehilite .s,.highlight .s{color:#0d904f}.codehilite .sb,.highlight .sb{color:#0d904f}.codehilite .sc,.highlight .sc{color:#0d904f}.codehilite .sd,.highlight .sd{color:#999}.codehilite .s2,.highlight .s2{color:#0d904f}.codehilite .se,.highlight .se{color:#183691}.codehilite .sh,.highlight .sh{color:#183691}.codehilite .si,.highlight .si{color:#183691}.codehilite .sx,.highlight .sx{color:#183691}.codehilite .sr,.highlight .sr{color:#009926}.codehilite .s1,.highlight .s1{color:#0d904f}.codehilite .ss,.highlight .ss{color:#0d904f}.codehilite .err,.highlight .err{color:#a61717}.codehilite .w,.highlight .w{color:transparent}.codehilite .hll,.highlight .hll{display:block;margin:0 -1.1764705882em;padding:0 1.1764705882em;background-color:rgba(255,235,59,.5)}.codehilitetable,.highlighttable{display:block;overflow:hidden}.codehilitetable tbody,.highlighttable tbody,.codehilitetable td,.highlighttable td{display:block;padding:0}.codehilitetable tr,.highlighttable tr{display:flex}.codehilitetable pre,.highlighttable pre{margin:0}.codehilitetable .linenos,.highlighttable .linenos{padding:.525rem 1.1764705882em;padding-right:0;font-size:.85em;background-color:var(--md-code-bg-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.codehilitetable .linenodiv,.highlighttable .linenodiv{padding-right:.5882352941em;box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest)}.codehilitetable .linenodiv pre,.highlighttable .linenodiv pre{color:var(--md-default-fg-color--lighter);text-align:right}.codehilitetable .code,.highlighttable .code{flex:1;overflow:hidden}.md-typeset .codehilitetable,.md-typeset .highlighttable{margin:1em 0;direction:ltr;border-radius:.1rem}.md-typeset .codehilitetable code,.md-typeset .highlighttable code{border-radius:0}@media screen and (max-width: 44.9375em){.md-typeset>.codehilite,.md-typeset>.highlight{margin:1em -0.8rem}.md-typeset>.codehilite .hll,.md-typeset>.highlight .hll{margin:0 -0.8rem;padding:0 .8rem}.md-typeset>.codehilite code,.md-typeset>.highlight code{border-radius:0}.md-typeset>.codehilitetable,.md-typeset>.highlighttable{margin:1em -0.8rem;border-radius:0}.md-typeset>.codehilitetable .hll,.md-typeset>.highlighttable .hll{margin:0 -0.8rem;padding:0 .8rem}}:root{--md-footnotes-icon: url('data:image/svg+xml;charset=utf-8,')}.md-typeset [id^="fnref:"]{display:inline-block}.md-typeset [id^="fnref:"]:target{margin-top:-3.8rem;padding-top:3.8rem;pointer-events:none}.md-typeset [id^="fn:"]::before{display:none;height:0;content:""}.md-typeset [id^="fn:"]:target::before{display:block;margin-top:-3.5rem;padding-top:3.5rem;pointer-events:none}.md-typeset .footnote{color:var(--md-default-fg-color--light);font-size:.64rem}.md-typeset .footnote ol{margin-left:0}.md-typeset .footnote li{transition:color 125ms}.md-typeset .footnote li:target{color:var(--md-default-fg-color)}.md-typeset .footnote li :first-child{margin-top:0}.md-typeset .footnote li:hover .footnote-backref,.md-typeset .footnote li:target .footnote-backref{transform:translateX(0);opacity:1}.md-typeset .footnote li:hover .footnote-backref:hover{color:var(--md-accent-fg-color)}.md-typeset .footnote-ref{display:inline-block;pointer-events:initial}.md-typeset .footnote-backref{display:inline-block;color:var(--md-primary-fg-color);font-size:0;vertical-align:text-bottom;transform:translateX(0.25rem);opacity:0;transition:color 250ms,transform 250ms 250ms,opacity 125ms 250ms}[dir=rtl] .md-typeset .footnote-backref{transform:translateX(-0.25rem)}.md-typeset .footnote-backref::before{display:inline-block;width:.8rem;height:.8rem;background-color:currentColor;-webkit-mask-image:var(--md-footnotes-icon);mask-image:var(--md-footnotes-icon);content:""}[dir=rtl] .md-typeset .footnote-backref::before svg{transform:scaleX(-1)}@media print{.md-typeset .footnote-backref{color:var(--md-primary-fg-color);transform:translateX(0);opacity:1}}.md-typeset .headerlink{display:inline-block;margin-left:.5rem;visibility:hidden;opacity:0;transition:color 250ms,visibility 0ms 500ms,opacity 125ms}[dir=rtl] .md-typeset .headerlink{margin-right:.5rem;margin-left:initial}html body .md-typeset .headerlink{color:var(--md-default-fg-color--lighter)}@media print{.md-typeset .headerlink{display:none}}.md-typeset :hover>.headerlink,.md-typeset :target>.headerlink,.md-typeset .headerlink:focus{visibility:visible;opacity:1;transition:color 250ms,visibility 0ms,opacity 125ms}.md-typeset :target>.headerlink,.md-typeset .headerlink:focus,.md-typeset .headerlink:hover{color:var(--md-accent-fg-color)}.md-typeset :target{scroll-margin-top:3.6rem}.md-typeset h3[id]:target,.md-typeset h2[id]:target,.md-typeset h1[id]:target{scroll-margin-top:initial}.md-typeset h3[id]::before,.md-typeset h2[id]::before,.md-typeset h1[id]::before{display:block;margin-top:-0.4rem;padding-top:.4rem;content:""}.md-typeset h3[id]:target::before,.md-typeset h2[id]:target::before,.md-typeset h1[id]:target::before{margin-top:-3.4rem;padding-top:3.4rem}.md-typeset h4[id]:target{scroll-margin-top:initial}.md-typeset h4[id]::before{display:block;margin-top:-0.45rem;padding-top:.45rem;content:""}.md-typeset h4[id]:target::before{margin-top:-3.45rem;padding-top:3.45rem}.md-typeset h6[id]:target,.md-typeset h5[id]:target{scroll-margin-top:initial}.md-typeset h6[id]::before,.md-typeset h5[id]::before{display:block;margin-top:-0.6rem;padding-top:.6rem;content:""}.md-typeset h6[id]:target::before,.md-typeset h5[id]:target::before{margin-top:-3.6rem;padding-top:3.6rem}.md-typeset .MJXc-display{margin:.75em 0;padding:.75em 0;overflow:auto;touch-action:auto}@media screen and (max-width: 44.9375em){.md-typeset>p>.MJXc-display{margin:.75em -0.8rem;padding:.25em .8rem}}.md-typeset .MathJax_CHTML{outline:0}.md-typeset del.critic,.md-typeset ins.critic,.md-typeset .critic.comment{padding:0 .25em;border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset del.critic{background-color:#fdd}.md-typeset ins.critic{background-color:#dfd}.md-typeset .critic.comment{color:#999}.md-typeset .critic.comment::before{content:"/* "}.md-typeset .critic.comment::after{content:" */"}.md-typeset .critic.block{display:block;margin:1em 0;padding-right:.8rem;padding-left:.8rem;overflow:auto;box-shadow:none}.md-typeset .critic.block :first-child{margin-top:.5em}.md-typeset .critic.block :last-child{margin-bottom:.5em}:root{--md-details-icon: url('data:image/svg+xml;charset=utf-8,')}.md-typeset details{display:block;padding-top:0;overflow:visible}.md-typeset details[open]>summary::after{transform:rotate(90deg)}.md-typeset details:not([open]){padding-bottom:0}.md-typeset details:not([open])>summary{border-bottom-right-radius:.1rem}.md-typeset details::after{display:table;content:""}.md-typeset summary{display:block;min-height:1rem;padding:.4rem 1.8rem .4rem 2rem;border-top-right-radius:.1rem;cursor:pointer}[dir=rtl] .md-typeset summary{padding:.4rem 2rem .4rem 1.8rem}.md-typeset summary::-webkit-details-marker{display:none}.md-typeset summary::after{position:absolute;top:.4rem;right:.4rem;width:1rem;height:1rem;background-color:currentColor;-webkit-mask-image:var(--md-details-icon);mask-image:var(--md-details-icon);transform:rotate(0deg);transition:transform 250ms;content:""}[dir=rtl] .md-typeset summary::after{right:initial;left:.4rem;transform:rotate(180deg)}.md-typeset img.emojione,.md-typeset img.twemoji,.md-typeset img.gemoji{width:1.125em;vertical-align:-15%}.md-typeset span.twemoji{display:inline-block;height:1.125em;vertical-align:text-top}.md-typeset span.twemoji svg{width:1.125em;fill:currentColor}.highlight [data-linenos]::before{position:-webkit-sticky;position:sticky;left:-1.1764705882em;float:left;margin-right:1.1764705882em;margin-left:-1.1764705882em;padding-left:1.1764705882em;color:var(--md-default-fg-color--lighter);background-color:var(--md-code-bg-color);box-shadow:inset -0.05rem 0 var(--md-default-fg-color--lightest);content:attr(data-linenos);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md-typeset .tabbed-content{display:none;order:99;width:100%;box-shadow:0 -0.05rem var(--md-default-fg-color--lightest)}.md-typeset .tabbed-content>.codehilite:only-child pre,.md-typeset .tabbed-content>.codehilitetable:only-child,.md-typeset .tabbed-content>.highlight:only-child pre,.md-typeset .tabbed-content>.highlighttable:only-child{margin:0}.md-typeset .tabbed-content>.codehilite:only-child pre>code,.md-typeset .tabbed-content>.codehilitetable:only-child>code,.md-typeset .tabbed-content>.highlight:only-child pre>code,.md-typeset .tabbed-content>.highlighttable:only-child>code{border-top-left-radius:0;border-top-right-radius:0}.md-typeset .tabbed-content>.tabbed-set{margin:0}.md-typeset .tabbed-set{position:relative;display:flex;flex-wrap:wrap;margin:1em 0;border-radius:.1rem}.md-typeset .tabbed-set>input{display:none}.md-typeset .tabbed-set>input:checked+label{color:var(--md-accent-fg-color);border-color:var(--md-accent-fg-color)}.md-typeset .tabbed-set>input:checked+label+.tabbed-content{display:block}.md-typeset .tabbed-set>label{z-index:1;width:auto;padding:.6rem 1.25em .5rem;color:var(--md-default-fg-color--light);font-weight:700;font-size:.64rem;border-bottom:.1rem solid transparent;cursor:pointer;transition:color 125ms}html .md-typeset .tabbed-set>label:hover{color:var(--md-accent-fg-color)}:root{--md-tasklist-icon: url('data:image/svg+xml;charset=utf-8,');--md-tasklist-icon--checked: url('data:image/svg+xml;charset=utf-8,')}.md-typeset .task-list-item{position:relative;list-style-type:none}.md-typeset .task-list-item [type=checkbox]{position:absolute;top:.45em;left:-2em}[dir=rtl] .md-typeset .task-list-item [type=checkbox]{right:-2em;left:initial}.md-typeset .task-list-control .task-list-indicator::before{position:absolute;top:.15em;left:-1.5em;width:1.25em;height:1.25em;background-color:var(--md-default-fg-color--lightest);-webkit-mask-image:var(--md-tasklist-icon);mask-image:var(--md-tasklist-icon);content:""}[dir=rtl] .md-typeset .task-list-control .task-list-indicator::before{right:-1.5em;left:initial}.md-typeset .task-list-control [type=checkbox]:checked+.task-list-indicator::before{background-color:#00e676;-webkit-mask-image:var(--md-tasklist-icon--checked);mask-image:var(--md-tasklist-icon--checked)}.md-typeset .task-list-control [type=checkbox]{z-index:-1;opacity:0} /*# sourceMappingURL=main.127eade9.min.css.map*/ \ No newline at end of file diff --git a/docs/material/base.html b/docs/material/base.html index 976821032..b602738fd 100644 --- a/docs/material/base.html +++ b/docs/material/base.html @@ -74,6 +74,15 @@ {% endif %} {% endblock %} {% block extrahead %}{% endblock %} + {% set direction = config.theme.direction or lang.t('direction') %} {% if palette.primary or palette.accent %} diff --git a/docs/material/partials/header.html b/docs/material/partials/header.html index cbf782e47..1457fc0e9 100644 --- a/docs/material/partials/header.html +++ b/docs/material/partials/header.html @@ -35,6 +35,9 @@ {% include "partials/search.html" %} {% endif %} +
    + {% include "partials/language-change.html" %} +
    {% if config.repo_url %}
    {% include "partials/source.html" %} diff --git a/docs/material/partials/language-change.html b/docs/material/partials/language-change.html new file mode 100644 index 000000000..272891d71 --- /dev/null +++ b/docs/material/partials/language-change.html @@ -0,0 +1,46 @@ +
    + + + +
    + + + + + \ No newline at end of file From 7e872f0acd5cb0c8db3239d14cf43b438035f309 Mon Sep 17 00:00:00 2001 From: icyang <783991106@qq.com> Date: Fri, 22 May 2020 20:55:40 +0800 Subject: [PATCH 110/111] Add mod_auth_request to authorize clients based on thirdparty authorization service (#503) --- bfe_basic/common.go | 13 + bfe_modules/bfe_modules.go | 4 + .../auth_request_rule_load.go | 124 ++++++++ .../auth_request_rule_load_test.go | 67 ++++ .../mod_auth_request/auth_request_table.go | 58 ++++ .../mod_auth_request/conf_mod_auth_request.go | 85 ++++++ .../conf_mod_auth_request_test.go | 36 +++ .../mod_auth_request/mod_auth_request.go | 288 ++++++++++++++++++ .../mod_auth_request/mod_auth_request_test.go | 159 ++++++++++ .../mod_auth_request/auth_request_rule.data | 11 + .../auth_request_rule_no_config.data | 3 + .../auth_request_rule_no_version.data | 10 + .../auth_request_rule_test.data | 11 + .../mod_auth_request/mod_auth_request.conf | 7 + bfe_server/reverseproxy.go | 15 +- conf/bfe.conf | 1 + conf/mod_auth_request/auth_request_rule.data | 11 + conf/mod_auth_request/mod_auth_request.conf | 7 + go.mod | 2 +- go.sum | 2 + 20 files changed, 899 insertions(+), 15 deletions(-) create mode 100644 bfe_modules/mod_auth_request/auth_request_rule_load.go create mode 100644 bfe_modules/mod_auth_request/auth_request_rule_load_test.go create mode 100644 bfe_modules/mod_auth_request/auth_request_table.go create mode 100644 bfe_modules/mod_auth_request/conf_mod_auth_request.go create mode 100644 bfe_modules/mod_auth_request/conf_mod_auth_request_test.go create mode 100644 bfe_modules/mod_auth_request/mod_auth_request.go create mode 100644 bfe_modules/mod_auth_request/mod_auth_request_test.go create mode 100644 bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule.data create mode 100644 bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_config.data create mode 100644 bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_version.data create mode 100644 bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_test.data create mode 100644 bfe_modules/mod_auth_request/testdata/mod_auth_request/mod_auth_request.conf create mode 100644 conf/mod_auth_request/auth_request_rule.data create mode 100644 conf/mod_auth_request/mod_auth_request.conf diff --git a/bfe_basic/common.go b/bfe_basic/common.go index 9582f98e2..e4b8a0fd4 100644 --- a/bfe_basic/common.go +++ b/bfe_basic/common.go @@ -47,6 +47,19 @@ const ( GlobalProduct = "global" ) +// Hop-by-hop headers. These are removed when sent to the backend. +// http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html +var HopHeaders = []string{ + "Connection", + "Keep-Alive", + "Proxy-Authenticate", + "Proxy-Authorization", + "Te", // canonicalized version of "TE" + "Trailers", + "Transfer-Encoding", + "Upgrade", +} + // CreateInternalSrvErrResp returns a HTTP 500 response func CreateInternalSrvErrResp(request *Request) *bfe_http.Response { return CreateInternalResp(request, bfe_http.StatusInternalServerError) diff --git a/bfe_modules/bfe_modules.go b/bfe_modules/bfe_modules.go index 05f4532e9..b26ff87f1 100644 --- a/bfe_modules/bfe_modules.go +++ b/bfe_modules/bfe_modules.go @@ -21,6 +21,7 @@ import ( "github.com/baidu/bfe/bfe_modules/mod_access" "github.com/baidu/bfe/bfe_modules/mod_auth_basic" "github.com/baidu/bfe/bfe_modules/mod_auth_jwt" + "github.com/baidu/bfe/bfe_modules/mod_auth_request" "github.com/baidu/bfe/bfe_modules/mod_block" "github.com/baidu/bfe/bfe_modules/mod_compress" "github.com/baidu/bfe/bfe_modules/mod_doh" @@ -93,6 +94,9 @@ var moduleList = []bfe_module.BfeModule{ // mod_header mod_header.NewModuleHeader(), + // mod_auth_request + mod_auth_request.NewModuleAuthRequest(), + // mod_errors mod_errors.NewModuleErrors(), diff --git a/bfe_modules/mod_auth_request/auth_request_rule_load.go b/bfe_modules/mod_auth_request/auth_request_rule_load.go new file mode 100644 index 000000000..5f1b7e569 --- /dev/null +++ b/bfe_modules/mod_auth_request/auth_request_rule_load.go @@ -0,0 +1,124 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_request + +import ( + "encoding/json" + "fmt" + "os" +) + +import ( + "github.com/baidu/bfe/bfe_basic/condition" +) + +// rule loaded from file +type AuthRequestRuleFile struct { + Version string + Config ProductRuleRawList // product => raw rule list +} + +// rule conf parsed from rule file +type AuthRequestRuleConf struct { + Version string + Config ProductRuleList // product => rule list +} + +type AuthRequestRuleRaw struct { + Cond string // condition + Enable bool // whether enable auth reqeust +} + +type ProductRuleRawList map[string]RuleRawList // product => raw rule list +type RuleRawList []AuthRequestRuleRaw // raw rule list + +func AuthRequestRuleCheck(authRequestRuleFile *AuthRequestRuleFile) error { + if authRequestRuleFile == nil { + return fmt.Errorf("authRequestRuleFile is nil") + } + + if len(authRequestRuleFile.Version) == 0 { + return fmt.Errorf("no Version") + } + + if authRequestRuleFile.Config == nil { + return fmt.Errorf("no Config") + } + + return nil +} + +func ruleConvert(rawRule AuthRequestRuleRaw) (*AuthRequestRule, error) { + cond, err := condition.Build(rawRule.Cond) + if err != nil { + return nil, err + } + + var rule AuthRequestRule + rule.Cond = cond + rule.Enable = rawRule.Enable + + return &rule, nil +} + +func ruleListConvert(rawRuleList RuleRawList) (AuthRequestRuleList, error) { + ruleList := AuthRequestRuleList{} + for i, rawRule := range rawRuleList { + rule, err := ruleConvert(rawRule) + if err != nil { + return nil, fmt.Errorf("rule [%d] error: %v", i, err) + } + + ruleList = append(ruleList, *rule) + } + + return ruleList, nil +} + +func AuthRequestRuleFileLoad(filename string) (*AuthRequestRuleConf, error) { + var ruleFile AuthRequestRuleFile + var ruleConf AuthRequestRuleConf + + file, err := os.Open(filename) + if err != nil { + return nil, err + } + defer file.Close() + + decoder := json.NewDecoder(file) + + err = decoder.Decode(&ruleFile) + if err != nil { + return nil, err + } + + err = AuthRequestRuleCheck(&ruleFile) + if err != nil { + return nil, err + } + + ruleConf.Version = ruleFile.Version + ruleConf.Config = make(ProductRuleList) + + for product, ruleFileList := range ruleFile.Config { + ruleList, err := ruleListConvert(ruleFileList) + if err != nil { + return nil, fmt.Errorf("product[%s] rule error: %v", product, err) + } + ruleConf.Config[product] = ruleList + } + + return &ruleConf, nil +} diff --git a/bfe_modules/mod_auth_request/auth_request_rule_load_test.go b/bfe_modules/mod_auth_request/auth_request_rule_load_test.go new file mode 100644 index 000000000..a318a6828 --- /dev/null +++ b/bfe_modules/mod_auth_request/auth_request_rule_load_test.go @@ -0,0 +1,67 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_request + +import ( + "strings" + "testing" +) + +func TestAuthRequestRuleFileLoadCase1(t *testing.T) { + conf, err := AuthRequestRuleFileLoad("testdata/mod_auth_request/auth_request_rule.data") + if err != nil { + t.Fatalf("should have no error, but error is %v", err) + } + + expectVersion := "auth_request_rule_version" + if conf.Version != expectVersion { + t.Fatalf("Version should be %s, but it's %s", expectVersion, conf.Version) + } + + if conf.Config == nil { + t.Fatalf("Config should not be nil") + } + + ruleList, ok := conf.Config[expectProduct] + if !ok { + t.Fatalf("config should have product: %s", expectProduct) + } + + if len(ruleList) != 1 { + t.Fatalf("len(ruleList) should be 1, but it's %d", len(ruleList)) + } +} + +func TestAuthRequestRuleFileLoadCase2(t *testing.T) { + _, err := AuthRequestRuleFileLoad("testdata/mod_auth_request/auth_request_rule_no_version.data") + if err == nil { + t.Fatalf("should have error") + } + + if !strings.Contains(err.Error(), "no Version") { + t.Fatalf("error message is not expected: %v", err) + } +} + +func TestAuthRequestRuleFileLoadCase3(t *testing.T) { + _, err := AuthRequestRuleFileLoad("testdata/mod_auth_request/auth_request_rule_no_config.data") + if err == nil { + t.Fatalf("should have error") + } + + if !strings.Contains(err.Error(), "no Config") { + t.Fatalf("error message is not expected: %v", err) + } +} diff --git a/bfe_modules/mod_auth_request/auth_request_table.go b/bfe_modules/mod_auth_request/auth_request_table.go new file mode 100644 index 000000000..fc2f2313c --- /dev/null +++ b/bfe_modules/mod_auth_request/auth_request_table.go @@ -0,0 +1,58 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_request + +import ( + "sync" +) + +import ( + "github.com/baidu/bfe/bfe_basic/condition" +) + +type AuthRequestRuleTable struct { + lock sync.RWMutex + version string + productRule ProductRuleList // product => rule list +} + +type AuthRequestRule struct { + Cond condition.Condition + Enable bool +} + +type ProductRuleList map[string]AuthRequestRuleList // product => rule list +type AuthRequestRuleList []AuthRequestRule // rule list + +func NewAuthRequestRuleTable() *AuthRequestRuleTable { + t := new(AuthRequestRuleTable) + t.productRule = make(ProductRuleList) + return t +} + +func (t *AuthRequestRuleTable) Update(ruleConf *AuthRequestRuleConf) { + t.lock.Lock() + t.version = ruleConf.Version + t.productRule = ruleConf.Config + t.lock.Unlock() +} + +func (t *AuthRequestRuleTable) Search(product string) (AuthRequestRuleList, bool) { + t.lock.RLock() + ruleList, ok := t.productRule[product] + t.lock.RUnlock() + + return ruleList, ok +} diff --git a/bfe_modules/mod_auth_request/conf_mod_auth_request.go b/bfe_modules/mod_auth_request/conf_mod_auth_request.go new file mode 100644 index 000000000..72c286da1 --- /dev/null +++ b/bfe_modules/mod_auth_request/conf_mod_auth_request.go @@ -0,0 +1,85 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_request + +import ( + "fmt" + "net/url" +) + +import ( + "github.com/baidu/go-lib/log" + "gopkg.in/gcfg.v1" +) + +import ( + "github.com/baidu/bfe/bfe_util" +) + +const ( + defaultDataPath = "mod_auth_request/auth_request_rule.data" +) + +type ConfModAuthRequest struct { + Basic struct { + DataPath string // path of rule data + AuthAddress string // address of auth server + AuthTimeout int // timeout for auth request (in ms) + } + + Log struct { + OpenDebug bool + } +} + +func ConfLoad(filePath string, confRoot string) (*ConfModAuthRequest, error) { + var err error + var cfg ConfModAuthRequest + + err = gcfg.ReadFileInto(&cfg, filePath) + if err != nil { + return nil, err + } + + err = cfg.Check(confRoot) + if err != nil { + return nil, err + } + + return &cfg, nil +} + +func (cfg *ConfModAuthRequest) Check(confRoot string) error { + if len(cfg.Basic.DataPath) == 0 { + cfg.Basic.DataPath = defaultDataPath + log.Logger.Warn("ModAuthRequest.DataPath not set, use default value: %s", defaultDataPath) + } + + cfg.Basic.DataPath = bfe_util.ConfPathProc(cfg.Basic.DataPath, confRoot) + + if len(cfg.Basic.AuthAddress) == 0 { + return fmt.Errorf("ModAuthRequest.AuthAddress not set") + } + _, err := url.Parse(cfg.Basic.AuthAddress) + if err != nil { + return fmt.Errorf("ModAuthRequest.AuthAddress is not a correct url") + } + + if cfg.Basic.AuthTimeout <= 0 { + return fmt.Errorf("ModAuthRequest.AuthTimeout must > 0") + } + + return nil +} diff --git a/bfe_modules/mod_auth_request/conf_mod_auth_request_test.go b/bfe_modules/mod_auth_request/conf_mod_auth_request_test.go new file mode 100644 index 000000000..7769bf1db --- /dev/null +++ b/bfe_modules/mod_auth_request/conf_mod_auth_request_test.go @@ -0,0 +1,36 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_request + +import ( + "testing" +) + +// test for data path +func TestConfLoadCase1(t *testing.T) { + cfg, err := ConfLoad("testdata/mod_auth_request/mod_auth_request.conf", "testdata") + if err != nil { + t.Fatalf("shoule have no error, but error is %v", err) + } + + expectDataPath := "testdata/mod_auth_request/auth_request_rule_test.data" + if cfg.Basic.DataPath != expectDataPath { + t.Fatalf("cfg.Basic.DataPath shoule %s, but it's %s", expectDataPath, cfg.Basic.DataPath) + } + + if cfg.Log.OpenDebug != false { + t.Fatalf("cfg.Log.OpenDebug should be false") + } +} diff --git a/bfe_modules/mod_auth_request/mod_auth_request.go b/bfe_modules/mod_auth_request/mod_auth_request.go new file mode 100644 index 000000000..474034104 --- /dev/null +++ b/bfe_modules/mod_auth_request/mod_auth_request.go @@ -0,0 +1,288 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_request + +import ( + "errors" + "fmt" + "net/http" + "net/url" + "path/filepath" + "time" +) + +import ( + "github.com/baidu/go-lib/log" + "github.com/baidu/go-lib/web-monitor/delay_counter" + "github.com/baidu/go-lib/web-monitor/metrics" + "github.com/baidu/go-lib/web-monitor/web_monitor" +) + +import ( + "github.com/baidu/bfe/bfe_basic" + "github.com/baidu/bfe/bfe_http" + "github.com/baidu/bfe/bfe_module" +) + +const ( + ModAuthRequest = "mod_auth_request" + DiffInterval = 20 // interval for diff counter (in seconds) + DelayConterInterval = 60 // interval for moving current to past (in s) + DelayCounterBucketSize = 1 // size of delay counter bucket (in ms) + DelayCounterBucketNum = 20 // number of delay counter bucket +) + +var ( + openDebug = false + + ErrAuthRequest = errors.New("AUTH_REQ_FORBIDDEN") +) + +type ModuleAuthRequestState struct { + AuthRequestChecked *metrics.Counter + AuthRequestPass *metrics.Counter + AuthRequestForbidden *metrics.Counter + AuthRequestFail *metrics.Counter + AuthRequestUncertain *metrics.Counter +} + +type ModuleAuthRequest struct { + name string + conf *ConfModAuthRequest + ruleTable *AuthRequestRuleTable + + authClient http.Client // auth client, use default roundtrip + + state ModuleAuthRequestState // module state + metrics metrics.Metrics + + delay *delay_counter.DelayRecent // delay distribution for auth service +} + +func NewModuleAuthRequest() *ModuleAuthRequest { + m := new(ModuleAuthRequest) + m.name = ModAuthRequest + m.ruleTable = NewAuthRequestRuleTable() + + m.metrics.Init(&m.state, ModAuthRequest, DiffInterval) + + m.delay = new(delay_counter.DelayRecent) + m.delay.Init(DelayConterInterval, DelayCounterBucketSize, DelayCounterBucketNum) + m.delay.SetKeyPrefix(ModAuthRequest) + + return m +} + +func (m *ModuleAuthRequest) Name() string { + return m.name +} + +func (m *ModuleAuthRequest) loadRuleData(query url.Values) (string, error) { + // get file path + path := query.Get("path") + if path == "" { + // use default + path = m.conf.Basic.DataPath + } + + // load from config file + conf, err := AuthRequestRuleFileLoad(path) + if err != nil { + return "", fmt.Errorf("%s: AuthRequestRuleFileLoad(%s) error: %v", m.name, path, err) + } + + // update to rule table + m.ruleTable.Update(conf) + + _, fileName := filepath.Split(path) + return fmt.Sprintf("%s=%s", fileName, conf.Version), nil +} + +func removeHopHeaders(headers http.Header) { + for _, h := range bfe_basic.HopHeaders { + headers.Del(h) + } +} + +func (m *ModuleAuthRequest) createAuthRequest(originReq *bfe_basic.Request) *http.Request { + forwardReq, _ := http.NewRequest(http.MethodGet, m.conf.Basic.AuthAddress, nil) + + // copy header from origin request header + bfe_http.CopyHeader(bfe_http.Header(forwardReq.Header), originReq.HttpRequest.Header) + + // remove hop headers + removeHopHeaders(forwardReq.Header) + + if openDebug { + log.Logger.Info("%s: auth request header: [%v]", m.name, forwardReq.Header) + } + + return forwardReq +} + +func (m *ModuleAuthRequest) callAuthService(forwardReq *http.Request) (*http.Response, error) { + startTime := time.Now() + defer m.delay.AddBySub(startTime, time.Now()) + + resp, err := m.authClient.Do(forwardReq) + if err != nil { + log.Logger.Info("%s: auth request failed: %v", m.name, err) + return resp, err + } + + return resp, nil +} + +func (m *ModuleAuthRequest) checkAuthForbidden(resp *http.Response) bool { + // if the response code is 401 or 403, the access is denied + if resp.StatusCode == bfe_http.StatusUnauthorized || resp.StatusCode == bfe_http.StatusForbidden { + m.state.AuthRequestForbidden.Inc(1) + return true + } + + // if the service response code is 2XX, the access is allowed. + if resp.StatusCode/100 == 2 { + m.state.AuthRequestPass.Inc(1) + return false + } + + // if any other response code returned is considered an error + m.state.AuthRequestUncertain.Inc(1) + if openDebug { + log.Logger.Info("%s: auth response is not expected, resp code[%d]", resp.StatusCode) + } + return false +} + +// forward request to auth server +func (m *ModuleAuthRequest) forwardAuthServer(req *bfe_basic.Request) (bool, int) { + // create auth request + authReq := m.createAuthRequest(req) + + // call auth service + resp, err := m.callAuthService(authReq) + if err != nil { + m.state.AuthRequestFail.Inc(1) + return false, 0 + } + defer resp.Body.Close() + + if m.checkAuthForbidden(resp) { + return true, resp.StatusCode + } + + return false, 0 +} + +func (m *ModuleAuthRequest) authRequestHandler(req *bfe_basic.Request) (int, *bfe_http.Response) { + rules, ok := m.ruleTable.Search(req.Route.Product) + if !ok { + return bfe_module.BfeHandlerGoOn, nil + } + + for _, rule := range rules { + if rule.Enable && rule.Cond.Match(req) { + m.state.AuthRequestChecked.Inc(1) + + // check request is denied + if isDenied, code := m.forwardAuthServer(req); isDenied { + req.ErrCode = ErrAuthRequest + return bfe_module.BfeHandlerResponse, bfe_basic.CreateInternalResp(req, code) + } + } + } + + return bfe_module.BfeHandlerGoOn, nil +} + +func (m *ModuleAuthRequest) reloadHandlers() map[string]interface{} { + handlers := map[string]interface{}{ + m.name: m.loadRuleData, + } + return handlers +} + +func (m *ModuleAuthRequest) getState(params map[string][]string) ([]byte, error) { + s := m.metrics.GetAll() + return s.Format(params) +} + +func (m *ModuleAuthRequest) getStateDiff(params map[string][]string) ([]byte, error) { + s := m.metrics.GetDiff() + return s.Format(params) +} + +func (m *ModuleAuthRequest) getDelay(query url.Values) ([]byte, error) { + delay := m.delay + return delay.FormatOutput(query) +} + +// all monitor handlers +func (m *ModuleAuthRequest) monitorHandlers() map[string]interface{} { + handlers := map[string]interface{}{ + m.name: m.getState, + m.name + ".diff": m.getStateDiff, + m.name + ".delay": m.getDelay, + } + return handlers +} + +func (m *ModuleAuthRequest) init(conf *ConfModAuthRequest, cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHandlers) error { + var err error + + _, err = m.loadRuleData(nil) + if err != nil { + return err + } + + err = cbs.AddFilter(bfe_module.HandleAfterLocation, m.authRequestHandler) + if err != nil { + return fmt.Errorf("%s.Init(): AddFilter(m.authRequestHandler): %v", m.name, err) + } + + err = web_monitor.RegisterHandlers(whs, web_monitor.WebHandleMonitor, m.monitorHandlers()) + if err != nil { + return fmt.Errorf("%s.Init():RegisterHandlers(m.reloadHandlers): %v", m.name, err) + } + + err = web_monitor.RegisterHandlers(whs, web_monitor.WebHandleReload, m.reloadHandlers()) + if err != nil { + return fmt.Errorf("%s.Init():RegisterHandlers(m.reloadHandlers): %v", m.name, err) + } + + return nil +} + +func (m *ModuleAuthRequest) Init(cbs *bfe_module.BfeCallbacks, whs *web_monitor.WebHandlers, cr string) error { + var err error + var conf *ConfModAuthRequest + + confPath := bfe_module.ModConfPath(cr, m.name) + if conf, err = ConfLoad(confPath, cr); err != nil { + return fmt.Errorf("%s: conf load err %s", m.name, err.Error()) + } + + m.conf = conf + openDebug = conf.Log.OpenDebug + + m.authClient = http.Client{ + CheckRedirect: func(*http.Request, []*http.Request) error { + // disable redirect + return http.ErrUseLastResponse + }, + Timeout: time.Duration(m.conf.Basic.AuthTimeout) * time.Millisecond, + } + return m.init(conf, cbs, whs) +} diff --git a/bfe_modules/mod_auth_request/mod_auth_request_test.go b/bfe_modules/mod_auth_request/mod_auth_request_test.go new file mode 100644 index 000000000..1fc2375e1 --- /dev/null +++ b/bfe_modules/mod_auth_request/mod_auth_request_test.go @@ -0,0 +1,159 @@ +// Copyright (c) 2019 Baidu, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// bfe_http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package mod_auth_request + +import ( + "net/http" + "net/http/httptest" + "net/url" + "testing" +) + +import ( + "github.com/baidu/go-lib/web-monitor/web_monitor" +) + +import ( + "github.com/baidu/bfe/bfe_basic" + "github.com/baidu/bfe/bfe_http" + "github.com/baidu/bfe/bfe_module" +) + +const ( + expectProduct = "example_product" +) + +func TestLoadRuleData(t *testing.T) { + m := new(ModuleAuthRequest) + m.ruleTable = new(AuthRequestRuleTable) + + query := url.Values{ + "path": []string{"testdata/mod_auth_request/auth_request_rule.data"}, + } + + expectModVersion := "auth_request_rule.data=auth_request_rule_version" + modVersion, err := m.loadRuleData(query) + if err != nil { + t.Fatalf("should have no error, but error is %v", err) + } + + if modVersion != expectModVersion { + t.Fatalf("version shoule be %s, but it's %s", expectModVersion, modVersion) + } + + expectVersion := "auth_request_rule_version" + if m.ruleTable.version != expectVersion { + t.Fatalf("version shoule be %s, but it's %s", expectVersion, m.ruleTable.version) + } + + ruleList, ok := m.ruleTable.productRule[expectProduct] + if !ok { + t.Fatalf("config should have product: %s", expectProduct) + } + + if len(ruleList) != 1 { + t.Fatalf("len(ruleList) should be 1, but it's %d", len(ruleList)) + } +} + +func TestCreateAuthRequest(t *testing.T) { + m := NewModuleAuthRequest() + m.conf = new(ConfModAuthRequest) + m.conf.Basic.AuthAddress = "http://example.org/auth_request" + + req := new(bfe_basic.Request) + req.Session = new(bfe_basic.Session) + req.Route.Product = expectProduct + req.HttpRequest, _ = bfe_http.NewRequest("GET", "http://example.org", nil) + + // test for copy header + testCopyHeader := "X-Bfe-Test" + testCopyHeaderValue := "test" + req.HttpRequest.Header.Set(testCopyHeader, testCopyHeaderValue) + + // test for hop header + for _, h := range bfe_basic.HopHeaders { + req.HttpRequest.Header.Set(h, "hop") + } + + authReq := m.createAuthRequest(req) + + for _, h := range bfe_basic.HopHeaders { + if authReq.Header.Get(h) != "" { + t.Fatalf("auth request should not have header :%s", h) + } + } + + if authReq.Header.Get(testCopyHeader) != testCopyHeaderValue { + t.Fatalf("auth request should not have header :%s", testCopyHeaderValue) + } +} + +func TestCheckAuthForbidden(t *testing.T) { + m := NewModuleAuthRequest() + + resp := new(http.Response) + + resp.StatusCode = 401 + if !m.checkAuthForbidden(resp) { + t.Fatalf("checkAuthForbidden should true") + } + + resp.StatusCode = http.StatusCreated + if m.checkAuthForbidden(resp) { + t.Fatalf("checkAuthForbidden should false") + } + + resp.StatusCode = http.StatusMovedPermanently + if m.checkAuthForbidden(resp) { + t.Fatalf("checkAuthForbidden should false") + } +} + +func TestAuthRequestHandler(t *testing.T) { + m := NewModuleAuthRequest() + cb := bfe_module.NewBfeCallbacks() + wh := web_monitor.NewWebHandlers() + err := m.Init(cb, wh, "./testdata") + if err != nil { + t.Fatalf("Init() error: %v", err) + } + + ts := httptest.NewServer(http.HandlerFunc(func(writer http.ResponseWriter, request *http.Request) { + writer.WriteHeader(http.StatusUnauthorized) + })) + defer ts.Close() + + m.conf.Basic.AuthAddress = ts.URL + + // prepare request + req := new(bfe_basic.Request) + req.Session = new(bfe_basic.Session) + req.Route.Product = expectProduct + req.HttpRequest, err = bfe_http.NewRequest("GET", "http://example.org/auth_request", nil) + if err != nil { + t.Fatalf("bfe_http.NewRequest error: %v", err) + } + + action, resp := m.authRequestHandler(req) + if action != bfe_module.BfeHandlerResponse { + t.Fatalf("m.authRequestHandler should return %d, but it's %d", bfe_module.BfeHandlerResponse, action) + } + defer resp.Body.Close() + + if resp.StatusCode != http.StatusUnauthorized { + t.Fatalf("resp code should be %d, but it's %d", http.StatusUnauthorized, resp.StatusCode) + } +} diff --git a/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule.data b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule.data new file mode 100644 index 000000000..82d0b2acd --- /dev/null +++ b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule.data @@ -0,0 +1,11 @@ +{ + "Version": "auth_request_rule_version", + "Config": { + "example_product": [ + { + "Cond": "req_path_prefix_in(\"/auth_request\", false)", + "Enable": true + } + ] + } +} \ No newline at end of file diff --git a/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_config.data b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_config.data new file mode 100644 index 000000000..4d0da8d2f --- /dev/null +++ b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_config.data @@ -0,0 +1,3 @@ +{ + "Version": "auth_request_rule_version" +} \ No newline at end of file diff --git a/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_version.data b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_version.data new file mode 100644 index 000000000..9d6bbbeaf --- /dev/null +++ b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_no_version.data @@ -0,0 +1,10 @@ +{ + "Config": { + "example_product": [ + { + "Cond": "req_path_prefix_in(\"/auth_request\", false)", + "Enable": true + } + ] + } +} \ No newline at end of file diff --git a/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_test.data b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_test.data new file mode 100644 index 000000000..82d0b2acd --- /dev/null +++ b/bfe_modules/mod_auth_request/testdata/mod_auth_request/auth_request_rule_test.data @@ -0,0 +1,11 @@ +{ + "Version": "auth_request_rule_version", + "Config": { + "example_product": [ + { + "Cond": "req_path_prefix_in(\"/auth_request\", false)", + "Enable": true + } + ] + } +} \ No newline at end of file diff --git a/bfe_modules/mod_auth_request/testdata/mod_auth_request/mod_auth_request.conf b/bfe_modules/mod_auth_request/testdata/mod_auth_request/mod_auth_request.conf new file mode 100644 index 000000000..1448c18f6 --- /dev/null +++ b/bfe_modules/mod_auth_request/testdata/mod_auth_request/mod_auth_request.conf @@ -0,0 +1,7 @@ +[Basic] +DataPath = mod_auth_request/auth_request_rule_test.data +AuthAddress = http://10.199.189.26:8181 +AuthTimeout = 100 # in ms + +[Log] +OpenDebug = false \ No newline at end of file diff --git a/bfe_server/reverseproxy.go b/bfe_server/reverseproxy.go index 507c16995..fbbaf9dd1 100644 --- a/bfe_server/reverseproxy.go +++ b/bfe_server/reverseproxy.go @@ -73,19 +73,6 @@ func NewReverseProxy(server *BfeServer, state *ProxyState) *ReverseProxy { return rp } -// Hop-by-hop headers. These are removed when sent to the backend. -// http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html -var hopHeaders = []string{ - "Connection", - "Keep-Alive", - "Proxy-Authenticate", - "Proxy-Authorization", - "Te", // canonicalized version of "TE" - "Trailers", - "Transfer-Encoding", - "Upgrade", -} - // httpProtoSet set http proto for out request. func httpProtoSet(outreq *bfe_http.Request) { outreq.Proto = "HTTP/1.1" @@ -102,7 +89,7 @@ func hopByHopHeaderRemove(outreq, req *bfe_http.Request) { // is modifying the same underlying map from req (shallow // copied above) so we only copy it if necessary. copiedHeaders := false - for _, h := range hopHeaders { + for _, h := range bfe_basic.HopHeaders { if outreq.Header.Get(h) != "" { if !copiedHeaders { outreq.Header = make(bfe_http.Header, len(req.Header)) diff --git a/conf/bfe.conf b/conf/bfe.conf index e34f0bb33..eaf525471 100644 --- a/conf/bfe.conf +++ b/conf/bfe.conf @@ -56,6 +56,7 @@ Modules = mod_trace #Modules = mod_key_log Modules = mod_access Modules = mod_prison +#Modules = mod_auth_request # interval for get diff of proxy-state MonitorInterval = 20 diff --git a/conf/mod_auth_request/auth_request_rule.data b/conf/mod_auth_request/auth_request_rule.data new file mode 100644 index 000000000..c49198b69 --- /dev/null +++ b/conf/mod_auth_request/auth_request_rule.data @@ -0,0 +1,11 @@ +{ + "Version": "auth_request_version", + "Config": { + "example_product": [ + { + "Cond": "req_path_in(\"/auth_request\", false)", + "Enable": true + } + ] + } +} \ No newline at end of file diff --git a/conf/mod_auth_request/mod_auth_request.conf b/conf/mod_auth_request/mod_auth_request.conf new file mode 100644 index 000000000..2f71a87cc --- /dev/null +++ b/conf/mod_auth_request/mod_auth_request.conf @@ -0,0 +1,7 @@ +[Basic] +DataPath = mod_auth_request/auth_request_rule.data +AuthAddress = http://0.0.0.0 +AuthTimeout = 100 # ms + +[Log] +OpenDebug = false diff --git a/go.mod b/go.mod index 6f65cc62e..8e6f2d81c 100644 --- a/go.mod +++ b/go.mod @@ -27,7 +27,7 @@ require ( golang.org/x/crypto v0.0.0-20200117160349-530e935923ad golang.org/x/net v0.0.0-20200226121028-0de0cce0169b golang.org/x/sys v0.0.0-20200121082415-34d275377bf9 - golang.org/x/tools v0.0.0-20200416061724-5744cfde56ed // indirect + golang.org/x/tools v0.0.0-20200521211927-2b542361a4fc // indirect gopkg.in/gcfg.v1 v1.2.3 gopkg.in/square/go-jose.v2 v2.4.1 gopkg.in/warnings.v0 v0.1.2 // indirect diff --git a/go.sum b/go.sum index fa08d9be9..3694f49c4 100644 --- a/go.sum +++ b/go.sum @@ -157,6 +157,8 @@ golang.org/x/tools v0.0.0-20200413015812-1f08ef6002a8 h1:1TnYi6m8UoNpEKS1wxgR8Gc golang.org/x/tools v0.0.0-20200413015812-1f08ef6002a8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200416061724-5744cfde56ed h1:PoCteSKZ5i8y25HqKXNerIf2SJtKTwy6dMdrcG/ZJVc= golang.org/x/tools v0.0.0-20200416061724-5744cfde56ed/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200521211927-2b542361a4fc h1:6m2YO+AmBApbUOmhsghW+IfRyZOY4My4UYvQQrEpHfY= +golang.org/x/tools v0.0.0-20200521211927-2b542361a4fc/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= From 857f6570cdccef50ecc8012e411a6fe6067fffd4 Mon Sep 17 00:00:00 2001 From: yangsijie Date: Mon, 25 May 2020 17:59:29 +0800 Subject: [PATCH 111/111] Update CHANGELOG.md and VERSION.md --- CHANGELOG.md | 5 +++-- VERSION | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4358e495..8f25bc62a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unrelease] +## [v0.10.0] - 2020-05-25 ### Added +- mod_auth_request: authorize clients based on thirdparty authorization service - mod_trace: support tracing based on Elastic APM - mod_compress: support brotli algorithm - mod_rewrite: add HostSuffixReplace action @@ -162,7 +163,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Flexible plugin framework to extend functionality. Based on the framework, developer can add new features rapidly - Detailed built-in metrics available for service status monitor -[Unrelease]: https://github.com/baidu/bfe/compare/v0.9.0...HEAD +[v0.10.0]: https://github.com/baidu/bfe/compare/v0.9.0...v0.10.0 [v0.9.0]: https://github.com/baidu/bfe/compare/v0.8.0...v0.9.0 [v0.8.0]: https://github.com/baidu/bfe/compare/v0.7.0...v0.8.0 [v0.7.0]: https://github.com/baidu/bfe/compare/v0.6.0...v0.7.0 diff --git a/VERSION b/VERSION index 6054db199..78bc1abd1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.0-dev \ No newline at end of file +0.10.0