coralite 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/bin/coralite.js +2 -1
- package/docs/basic-templating.md +128 -0
- package/package.json +2 -2
- package/tests/e2e/index.spec.js +37 -1
- package/tests/fixtures/pages/blog/index.html +2 -2
- package/tests/fixtures/templates/components/head.html +12 -4
- package/tests/lib/coralite.spec.js +0 -27
- package/website/assets/logo.svg +0 -57
- package/website/assets/path1.svg +0 -22
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
coralite is a static site generator library built around the emerging [HTML modules proposal](https://github.com/WICG/webcomponents/blob/gh-pages/proposals/html-modules-explainer.md).
|
|
4
4
|
|
|
5
|
+
[Getting started: Basic templating](./docs/basic-templating.md)
|
|
6
|
+
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
7
9
|
Before using the Coralite CLI, ensure that it's installed on your system. You can install it globally using **npm**:
|
|
@@ -50,7 +52,7 @@ Replace `[options]` with the desired flags and arguments.
|
|
|
50
52
|
|
|
51
53
|
To generate a website using Coralite, you must provide three essential options:
|
|
52
54
|
|
|
53
|
-
- **-
|
|
55
|
+
- **-t or --templates**: The path to your templates directory containing reusable UI elements (e.g., `-c ./src/templates`).
|
|
54
56
|
- **-p or --pages**: The path to your pages directory where static HTML files reside (e.g., `-p ./src/pages`).
|
|
55
57
|
- **--output or -o**: The output directory for the generated site (e.g., `--output ./dist`).
|
|
56
58
|
|
package/bin/coralite.js
CHANGED
|
@@ -10,7 +10,8 @@ import { existsSync, mkdirSync, writeFileSync, readFileSync } from 'node:fs'
|
|
|
10
10
|
* @import { CoraliteModule } from '#types'
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
const
|
|
13
|
+
const pkgPath = new URL('../package.json', import.meta.url)
|
|
14
|
+
const pkg = JSON.parse(readFileSync(pkgPath, 'utf-8'))
|
|
14
15
|
const program = new Command()
|
|
15
16
|
|
|
16
17
|
program
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# Getting Started: Basic templating
|
|
2
|
+
|
|
3
|
+
This guide will walk you through creating your first page using Coralite, a static site generator built around HTML modules.
|
|
4
|
+
|
|
5
|
+
## Project Structure
|
|
6
|
+
|
|
7
|
+
Create a new project directory with the following structure:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
my-coralite-site/
|
|
11
|
+
├── src/
|
|
12
|
+
│ ├── templates/
|
|
13
|
+
│ │ ├── header.html
|
|
14
|
+
│ │ └── footer.html
|
|
15
|
+
│ └── pages/
|
|
16
|
+
│ └── index.html
|
|
17
|
+
└── dist/
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Creating Templates
|
|
21
|
+
|
|
22
|
+
Coralite uses HTML templates with mustache-style tokens for dynamic content. Let's create two basic templates:
|
|
23
|
+
|
|
24
|
+
### 1. Header Template (src/templates/header.html)
|
|
25
|
+
|
|
26
|
+
```html
|
|
27
|
+
<template id="coralite-header">
|
|
28
|
+
<h1>{{ title }}</h1>
|
|
29
|
+
<slot name="subtitle"></slot>
|
|
30
|
+
<slot></slot>
|
|
31
|
+
</template>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### 2. Footer Template (src/templates/footer.html)
|
|
35
|
+
|
|
36
|
+
```html
|
|
37
|
+
<template id="coralite-footer">
|
|
38
|
+
<footer>
|
|
39
|
+
Just keep swimming.
|
|
40
|
+
</footer>
|
|
41
|
+
</template>
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Building Your First Page
|
|
45
|
+
|
|
46
|
+
Create your main page in `src/pages/index.html`:
|
|
47
|
+
|
|
48
|
+
```html
|
|
49
|
+
<!DOCTYPE html>
|
|
50
|
+
<html lang="en">
|
|
51
|
+
<head>
|
|
52
|
+
<meta charset="UTF-8">
|
|
53
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
54
|
+
<title>My First Coralite Page</title>
|
|
55
|
+
</head>
|
|
56
|
+
<body>
|
|
57
|
+
<coralite-header title="Welcome to My Site">
|
|
58
|
+
<span slot="subtitle">A Coralite Creation</span>
|
|
59
|
+
<p>This is my first page built with Coralite!</p>
|
|
60
|
+
</coralite-header>
|
|
61
|
+
|
|
62
|
+
<coralite-footer></coralite-footer>
|
|
63
|
+
</body>
|
|
64
|
+
</html>
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Template Features
|
|
68
|
+
|
|
69
|
+
1. **Dynamic Content**: Use `{{ variableName }}` syntax to insert dynamic content passed through component attributes.
|
|
70
|
+
2. **Slots**:
|
|
71
|
+
- Named slots: Use `slot="name"` to target specific areas in your template
|
|
72
|
+
- Default slots: Content without a slot attribute goes into the default `<slot>`
|
|
73
|
+
|
|
74
|
+
## Building Your Site
|
|
75
|
+
|
|
76
|
+
Generate your site using the Coralite CLI:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
coralite --templates ./src/templates --pages ./src/pages --output ./dist
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
To preview changes without generating files, use the dry-run mode:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
coralite --templates ./src/templates --pages ./src/pages --output ./dist --dry
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Template Tips
|
|
89
|
+
|
|
90
|
+
1. Every template must have an `id` attribute that matches its usage in pages:
|
|
91
|
+
```html
|
|
92
|
+
<template id="coralite-header">
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
2. Component names in pages must match template IDs:
|
|
96
|
+
```html
|
|
97
|
+
<coralite-header title="My Title">
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
3. Data can be passed via attributes and accessed using mustache syntax:
|
|
101
|
+
```html
|
|
102
|
+
<!-- In your page -->
|
|
103
|
+
<coralite-header title="Hello World">
|
|
104
|
+
|
|
105
|
+
<!-- In your template -->
|
|
106
|
+
<h1>{{ title }}</h1>
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Next Steps
|
|
110
|
+
|
|
111
|
+
- Try creating more complex templates with multiple slots
|
|
112
|
+
- Explore nested components by using one component inside another
|
|
113
|
+
- Use the dry-run mode to debug template issues
|
|
114
|
+
- Check the [full documentation](https://github.com/tjdav/coralite) for advanced features
|
|
115
|
+
|
|
116
|
+
## Common Issues
|
|
117
|
+
|
|
118
|
+
1. If your templates aren't rendering, ensure:
|
|
119
|
+
- Template IDs match the component names in your pages
|
|
120
|
+
- All required attributes are provided
|
|
121
|
+
- The Node.js `--experimental-vm-modules` flag is enabled
|
|
122
|
+
|
|
123
|
+
2. Missing content might indicate:
|
|
124
|
+
- Incorrect slot names
|
|
125
|
+
- Missing slot definitions in templates
|
|
126
|
+
- Malformed template syntax
|
|
127
|
+
|
|
128
|
+
Remember to keep your templates modular and reusable for the best development experience with Coralite!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coralite",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "HTML modules static site generator",
|
|
5
5
|
"main": "./lib/coralite.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"license": "MPL-2.0",
|
|
26
26
|
"scripts": {
|
|
27
27
|
"commitmsg": "commitlint -e",
|
|
28
|
-
"format": "eslint --cache --fix .",
|
|
28
|
+
"lint-format": "eslint --cache --fix .",
|
|
29
29
|
"lint": "eslint --cache .",
|
|
30
30
|
"test-unit": "node --test test/lib/*",
|
|
31
31
|
"test-e2e": "playwright test",
|
package/tests/e2e/index.spec.js
CHANGED
|
@@ -18,13 +18,49 @@ test('has compiled coralite-header custom element', async ({ page }) => {
|
|
|
18
18
|
`)
|
|
19
19
|
})
|
|
20
20
|
|
|
21
|
-
test('', async ({ page }) => {
|
|
21
|
+
test('has custom element with default slot', async ({ page }) => {
|
|
22
22
|
await page.goto('/about.html')
|
|
23
23
|
|
|
24
|
+
await expect(page.locator('body')).toMatchAriaSnapshot(`
|
|
25
|
+
- text: test
|
|
26
|
+
`)
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
test('has aggregate content', async ({ page }) => {
|
|
30
|
+
await page.goto('/blog/index.html')
|
|
31
|
+
|
|
24
32
|
await expect(page.locator('body')).toMatchAriaSnapshot(`
|
|
25
33
|
- text: Hello
|
|
26
34
|
- banner: This is the mighty header
|
|
35
|
+
- heading "Post 1" [level=2]
|
|
36
|
+
- text: Nemo
|
|
37
|
+
- time: Wed, 8 Jan 25
|
|
38
|
+
- img "Photo of a cat"
|
|
39
|
+
- text: short description
|
|
40
|
+
- banner: This is the mighty header
|
|
41
|
+
- heading "Post 2" [level=2]
|
|
42
|
+
- text: Nemo
|
|
43
|
+
- time: Thu, 9 Jan 25
|
|
44
|
+
- img "Photo of a dog"
|
|
45
|
+
- text: short description
|
|
46
|
+
- banner: This is the mighty header
|
|
27
47
|
- text: world
|
|
28
48
|
`)
|
|
29
49
|
})
|
|
30
50
|
|
|
51
|
+
test('has named slots', async ({ page }) => {
|
|
52
|
+
await page.goto('/blog/index.html')
|
|
53
|
+
|
|
54
|
+
const metaName = page.locator('meta[name="name"]')
|
|
55
|
+
const metaDescription = page.locator('meta[name="description"]')
|
|
56
|
+
const metaDefaultHello = page.locator('meta[name="default-hello"]')
|
|
57
|
+
const metaDefaultWorld = page.locator('meta[name="default-world"]')
|
|
58
|
+
|
|
59
|
+
// named slots
|
|
60
|
+
await expect(metaName).toHaveAttribute('content', 'coralite')
|
|
61
|
+
await expect(metaDescription).toHaveAttribute('content', 'look mum, no database!')
|
|
62
|
+
// default slots
|
|
63
|
+
await expect(metaDefaultHello).toHaveAttribute('content', 'hello')
|
|
64
|
+
await expect(metaDefaultWorld).toHaveAttribute('content', 'world')
|
|
65
|
+
})
|
|
66
|
+
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<coralite-head>
|
|
8
8
|
<meta slot="meta" name="name" content="coralite">
|
|
9
9
|
<meta slot="meta" name="description" content="look mum, no database!">
|
|
10
|
-
<
|
|
11
|
-
<
|
|
10
|
+
<meta name="default-hello" content="hello">
|
|
11
|
+
<meta name="default-world" content="world">
|
|
12
12
|
</coralite-head>
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
<template id="coralite-head">
|
|
2
|
-
<slot name="meta">
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
<slot name="meta">
|
|
3
|
+
<meta name="meta" content="default">
|
|
4
|
+
</slot>
|
|
5
|
+
<slot name="css">
|
|
6
|
+
<link href="styles.css" rel="stylesheet">
|
|
7
|
+
</slot>
|
|
8
|
+
<slot name="script">
|
|
9
|
+
<script>
|
|
10
|
+
console.log('hello')
|
|
11
|
+
</script>
|
|
12
|
+
</slot>
|
|
5
13
|
<slot name="empty"></slot>
|
|
6
|
-
<slot
|
|
14
|
+
<slot></slot>
|
|
7
15
|
</template>
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { deepStrictEqual, strictEqual } from 'node:assert'
|
|
2
|
-
import { describe, it } from 'node:test'
|
|
3
|
-
import { getTokensFromString } from '#lib'
|
|
4
|
-
|
|
5
|
-
describe('Get tokens from string', function () {
|
|
6
|
-
it('should extract name token', function () {
|
|
7
|
-
const string = `<template id="template1">Hello {{ name }}! Wassup? <code>import { red } from 'lib.js'</code></template>`
|
|
8
|
-
const tokens = getTokensFromString(string)
|
|
9
|
-
|
|
10
|
-
strictEqual(tokens.length, 1)
|
|
11
|
-
deepStrictEqual(tokens[0], {
|
|
12
|
-
name: 'name',
|
|
13
|
-
content: '{{ name }}'
|
|
14
|
-
})
|
|
15
|
-
})
|
|
16
|
-
|
|
17
|
-
it('should extract name token', function () {
|
|
18
|
-
const string = `<template id="template1">Hello {{ name }}! Wassup? <code>import { red } from 'lib.js'</code></template>`
|
|
19
|
-
const tokens = getTokensFromString(string)
|
|
20
|
-
|
|
21
|
-
strictEqual(tokens.length, 1)
|
|
22
|
-
deepStrictEqual(tokens[0], {
|
|
23
|
-
name: 'name',
|
|
24
|
-
content: '{{ name }}'
|
|
25
|
-
})
|
|
26
|
-
})
|
|
27
|
-
})
|
package/website/assets/logo.svg
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
width="210mm"
|
|
6
|
-
height="297mm"
|
|
7
|
-
viewBox="0 0 210 297"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
xml:space="preserve"
|
|
11
|
-
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
|
12
|
-
sodipodi:docname="logo.svg"
|
|
13
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
-
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
17
|
-
id="namedview1"
|
|
18
|
-
pagecolor="#505050"
|
|
19
|
-
bordercolor="#eeeeee"
|
|
20
|
-
borderopacity="1"
|
|
21
|
-
inkscape:showpageshadow="0"
|
|
22
|
-
inkscape:pageopacity="0"
|
|
23
|
-
inkscape:pagecheckerboard="0"
|
|
24
|
-
inkscape:deskcolor="#505050"
|
|
25
|
-
inkscape:document-units="mm"
|
|
26
|
-
inkscape:zoom="0.70710678"
|
|
27
|
-
inkscape:cx="1715.4411"
|
|
28
|
-
inkscape:cy="-318.90516"
|
|
29
|
-
inkscape:window-width="2560"
|
|
30
|
-
inkscape:window-height="1371"
|
|
31
|
-
inkscape:window-x="0"
|
|
32
|
-
inkscape:window-y="0"
|
|
33
|
-
inkscape:window-maximized="1"
|
|
34
|
-
inkscape:current-layer="layer1"
|
|
35
|
-
showguides="true"><sodipodi:guide
|
|
36
|
-
position="110.89681,253.6422"
|
|
37
|
-
orientation="1,0"
|
|
38
|
-
id="guide1"
|
|
39
|
-
inkscape:locked="false" /></sodipodi:namedview><defs
|
|
40
|
-
id="defs1" /><g
|
|
41
|
-
inkscape:label="Layer 1"
|
|
42
|
-
inkscape:groupmode="layer"
|
|
43
|
-
id="layer1"><path
|
|
44
|
-
style="fill:#000000"
|
|
45
|
-
d="m 298.57278,-42.548343 -1.57193,-0.95101 -8.46667,-4.82686 -8.46666,-4.82685 -7.54063,-4.25358 -7.54062,-4.25357 -9.92188,-5.54313 -9.92187,-5.54312 -0.83747,-0.7842 -0.83748,-0.7842 -0.29184,-1.08381 -0.29184,-1.08381 0.071,-34.349607 0.071,-34.34961 0.45352,-0.82838 0.45352,-0.82838 0.74506,-0.62683 0.74505,-0.62683 3.69622,-2.09811 3.69622,-2.09811 5.29166,-3.03444 5.29167,-3.03444 7.14375,-4.10268 7.14375,-4.10269 4.49791,-2.55913 4.49792,-2.55913 5.82083,-3.39734 5.82084,-3.39733 2.4974,-1.31786 1.40074,-2e-5 c 2.86306,1.50973 6.36082,3.41854 9.45889,5.21825 l 8.3388,4.84409 18.91771,10.78535 18.9177,10.78535 0.84627,0.80042 0.84627,0.80042 0.27821,1.29725 0.27821,1.29724 -0.006,33.91979 -0.006,33.919787 -0.49105,1.05833 -0.49104,1.05833 -0.89221,0.81561 -0.8922,0.8156 -10.05417,5.64853 -10.05417,5.64852 -17.05914,9.7416 -17.05915,9.7416 h -1.47725 -1.47725 z m -10.07626,-28.1711 c -4.18857,-0.51534 -7.77638,-1.17424 -10.84552,-2.53296 -2.92767,-1.2961 -5.36699,-3.24983 -8.06878,-5.47912 -0.94895,-0.89498 -1.34047,-3.57834 0.005,-4.97691 1.34533,-1.39856 3.76756,-1.16911 4.92419,-0.27754 l 4.37699,4.02218 c 3.86085,2.30005 8.30646,2.74342 12.6829,3.2415 1.12639,-0.19663 1.56927,-0.94448 1.32865,-2.24354 -1.88926,-1.88481 -3.92259,-3.6124 -5.93549,-5.3617 -2.95933,-2.86246 -6.11886,-5.27287 -9.85143,-7.02012 -7.50215,-0.56709 -13.13233,-2.0385 -18.58347,-6.33354 -0.63866,-0.58882 -0.58007,-2.610077 0.39438,-3.820617 0.97445,-1.21054 3.30629,-1.58259 4.48868,-0.94795 l 1.79605,1.30939 c 1.9763,1.476157 5.23436,3.310727 7.71354,2.827177 l 0.38902,-0.14928 c -0.2606,-1.02271 -0.97521,-1.785997 -1.54093,-2.645167 -0.51971,-0.82928 -1.27764,-1.60239 -2.1114,-2.20081 -0.83377,-0.59842 -1.64526,-0.90244 -2.5306,-1.25733 -1.85425,-0.84855 -3.2686,-1.87817 -4.85167,-3.70328 -1.58306,-1.82511 -3.05131,-4.5981 -4.30168,-7.08018 -0.75466,-3.36601 2.78893,-5.94414 5.70784,-3.02773 l 1.31327,2.46697 c 0.64344,1.68533 1.69338,2.86145 2.91215,4.12628 l 1.59888,1.65931 c 0.44025,0.17148 0.66734,0.0958 1.08174,-0.0661 0.84942,-1.81566 0.35088,-3.71933 0.0963,-5.60376 -0.0771,-0.72919 0.25197,-2.94957 2.76903,-3.2113 2.51706,-0.26173 4.13752,1.51643 3.83534,5.44163 -0.52005,8.56828 -0.26417,10.4647 2.97336,13.27877 0.74309,0.645897 2.30507,0.527127 2.8468,0.23536 0.54173,-0.29177 2.10712,-2.70109 2.10712,-2.70109 1.21222,-3.1555 1.37903,-10.89808 -0.65124,-12.90162 l -3.04271,-1.78178 -3.0427,-1.78178 c -9.66534,-5.24713 -18.86526,-11.36145 -28.69225,-16.30833 h -0.13983 -0.13984 v 28.70397 28.703977 l 0.99219,0.62357 0.99218,0.62357 4.8948,2.77803 4.89479,2.77804 10.71562,6.04275 10.71563,6.04275 7.40833,4.20767 7.40834,4.20767 0.26458,0.25535 0.26458,0.25534 0.0767,-7.35561 0.0767,-7.35562 c -0.57447,-4.95323 -5.68058,-5.29653 -9.71606,-5.70649 z m 40.98193,6.54806 24.01094,-13.71052 v -28.821247 -28.82126 h -0.15091 -0.15091 l -2.93408,1.62115 -2.93407,1.62114 -2.93429,1.71817 -2.93428,1.71817 -6.48229,3.70518 -6.4823,3.70518 -5.23307,3.04119 -5.23308,3.04118 -0.25377,0.47418 -0.25377,0.47417 c -0.26941,4.96868 -1.09667,9.64087 -3.47683,14.07358 -1.69223,3.712857 -5.30682,5.714467 -8.70147,7.705777 l -0.54736,1.02276 0.1514,5.10296 1.45693,1.08607 c 5.67445,-2.83566 1.54564,-1.93404 13.38272,-9.83269 3.07431,-2.97393 4.88489,-6.766477 5.93014,-10.879157 v -10.37529 c 0.13391,-1.41756 1.94903,-2.7093 3.40012,-2.69712 1.06101,0.009 3.43024,1.04801 3.22824,3.03314 l -0.34835,5.38821 0.90433,0.75053 c 3.33504,-1.51403 4.69062,-5.0797 6.26629,-8.16827 0.97075,-1.53729 2.7696,-1.71246 3.80687,-1.24363 1.04653,0.47303 2.57757,1.58139 2.12235,3.72429 -1.46348,3.32572 -3.24133,6.51266 -5.86172,9.07156 -1.73969,1.7013 -4.10964,2.52776 -6.25726,3.60737 -1.51107,1.38197 -2.53112,3.0008 -3.40807,4.838067 l 0.56672,0.90442 c 1.48661,0.28482 2.67301,-0.0267 4.02291,-0.66867 2.1239,-0.69205 3.44563,-2.465717 4.9658,-4.013347 1.26664,-1.11381 3.28221,-0.93637 4.3817,0.15604 1.01689,1.01035 2.22424,2.490017 0.51147,4.790587 -2.60642,2.57748 -5.8419,4.41711 -9.3084,5.57628 -3.03449,0.84327 -6.28531,0.66144 -9.41735,0.8293 -5.67408,2.56503 -10.77555,6.67564 -14.90465,11.3215 -0.12583,0.95067 0.60449,1.62337 1.10001,2.38125 8.33436,-0.31258 11.28603,-1.13059 17.53711,-7.21661 1.55169,-1.24954 2.98403,-0.69057 4.09457,0.23271 0.97058,0.80691 2.15291,2.67844 0.33502,5.13182 -3.0026,3.14278 -6.80257,5.16246 -10.87168,6.58737 -5.11102,1.61153 -5.75631,0.6512 -14.34832,2.58785 -1.45383,0.90224 -2.43548,2.05077 -3.28667,3.52477 l -0.0808,7.89358 -0.0808,7.89357 0.34535,-0.0884 0.34536,-0.0884 z m -31.15468,-22.09368 v -10.59474 -10.594737 c -1.21811,-0.809 -2.297,-1.551 -3.48536,-2.26664 -0.89719,-0.53464 -1.78527,-1.08465 -2.68586,-1.61357 -0.31275,3.34128 0.44282,6.84642 -0.80526,10.00488 -0.99294,3.487347 -3.6408,4.276487 -4.22057,7.307357 0.0134,1.23318 0.71869,1.80546 1.05187,2.12602 3.23777,2.84588 5.88297,5.14625 8.02851,6.61953 0.64135,0.29443 1.72516,-0.27102 2.11667,-0.9881 z m 12.43534,-24.938637 -2.70426,1.60096 -2.70427,1.60096 -0.54459,1.01758 v 5.74979 c 0.36869,0.71878 0.89171,0.93045 1.56908,0.635 3.24646,-2.5687 4.4255,-6.5793 4.38404,-10.60429 z m 42.46569,-31.82138 -0.004,-0.15227 -0.004,-0.15227 -48.10265,-27.64896 h -0.15409 -0.15408 l -0.012,31.08854 c 0,2.08154 -0.7647,3.48702 -3.13224,3.50919 -3.06395,-0.10276 -3.52357,-1.91844 -3.52357,-5.15623 0.0746,-6.60115 -0.0784,-12.80544 -0.0784,-29.43495 -14.16045,8.03959 -27.12211,15.92816 -48.02187,27.55611 v 0.17795 0.17794 c 0,-0.17794 51.72983,29.49604 51.44512,29.49604 h 0.28471 c -0.28471,0 51.45707,-29.46109 51.45707,-29.46109 z m -54.7635,25.88921 -0.006,-12.03019 c 0.34808,-1.15737 1.99053,-1.99921 3.36254,-1.9775 1.16883,0.0185 2.92444,1.15781 2.98746,2.7459 l -0.008,11.09643 c -0.95461,1.07394 -1.64367,1.8698 -3.02106,1.90043 -1.67841,0.0373 -2.14819,-0.64251 -3.31494,-1.73507 z m -12.52508,-6.92125 -0.31569,-1.24334 c -0.11483,-1.1976 -1.14333,-2.4324 -1.58426,-2.60131 -2.5898,-1.11888 -4.50207,-3.31215 -6.27131,-5.44384 0,0 -2.5337,-4.29153 -2.8068,-5.83127 -0.2731,-1.53974 -0.4918,-3.67807 1.29544,-4.69356 1.56481,-1.03909 3.09017,-0.40037 4.06329,0.59164 0.22935,0.2338 0.59072,0.63992 0.83322,1.54495 1.2604,3.99784 1.87196,5.21392 4.34289,7.53236 1.8928,0.47066 1.95147,-0.36269 2.18882,-1.16123 l -0.37803,-13.84185 c 0.2388,-1.11462 0.96833,-2.74078 3.19205,-2.77147 1.60472,-0.27199 2.55717,1.09367 3.33001,2.27321 l -0.0348,16.42737 c -0.008,0.49315 -0.14139,0.59992 -0.40939,1.60011 -1.21143,4.52112 -1.38432,4.48276 -1.14026,7.56628 l 0.18134,2.29125 -0.35232,1.11008 h -0.32455 -0.32455 z m 24.67877,2.48135 0.31631,-5.34968 -1.44627,-4.49792 -0.2227,-17.4625 c 0,-2.38787 1.9467,-3.22837 3.25251,-3.18388 1.60631,0.0547 3.21089,0.96188 3.21089,2.37032 l -0.35191,14.04273 c 0.0754,1.12281 0.71202,1.622 1.90993,1.49755 l 0.98333,-0.65074 c 2.46876,-1.7082 3.16023,-5.36831 4.04009,-8.1083 0.42784,-1.16565 2.38625,-1.71294 3.76761,-1.36012 1.30785,0.33406 2.72705,1.89604 2.32151,3.27907 -0.74484,3.03808 -2.10117,6.48213 -4.56128,9.26878 -0.92742,1.29941 -2.19183,2.10943 -3.47617,3.00939 -1.23785,0.67732 -2.07858,1.44717 -2.82604,2.58937 l -0.34385,2.15447 -0.49476,0.30898 -0.49476,0.30899 -2.31215,1.32576 -2.31214,1.32576 c -0.5695,0.24074 -0.88955,-0.0486 -0.96015,-0.86803 z"
|
|
46
|
-
id="path1"
|
|
47
|
-
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccsczccccccczcccczzczccccccczcszccccccccccccccccccccccccccccccccccccccccccccccsccccscccccccsccccccsccccccccccccccccccccccccccccccccccccccccccccsccsccccczcscccccccsccccccccccscccccsccccccccccc" /><text
|
|
48
|
-
xml:space="preserve"
|
|
49
|
-
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:83.8112px;line-height:2;font-family:'Edu AU VIC WA NT Pre';-inkscape-font-specification:'Edu AU VIC WA NT Pre Semi-Bold';text-align:center;text-decoration-color:#000000;letter-spacing:-0.402293px;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#000000;stroke-width:1.43066"
|
|
50
|
-
x="549.49823"
|
|
51
|
-
y="-72.142212"
|
|
52
|
-
id="text1"><tspan
|
|
53
|
-
sodipodi:role="line"
|
|
54
|
-
id="tspan1"
|
|
55
|
-
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-family:'Edu AU VIC WA NT Pre';-inkscape-font-specification:'Edu AU VIC WA NT Pre Semi-Bold';stroke-width:1.43066"
|
|
56
|
-
x="549.29706"
|
|
57
|
-
y="-72.142212">Coralite</tspan></text></g></svg>
|
package/website/assets/path1.svg
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
width="479.0517mm"
|
|
6
|
-
height="138.19606mm"
|
|
7
|
-
viewBox="0 0 479.0517 138.19606"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
xml:space="preserve"
|
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
-
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
13
|
-
id="defs1" /><g
|
|
14
|
-
id="layer1"
|
|
15
|
-
transform="translate(-242.88389,179.7934)"><path
|
|
16
|
-
style="fill:#000000"
|
|
17
|
-
d="m 298.57278,-42.548343 -1.57193,-0.95101 -8.46667,-4.82686 -8.46666,-4.82685 -7.54063,-4.25358 -7.54062,-4.25357 -9.92188,-5.54313 -9.92187,-5.54312 -0.83747,-0.7842 -0.83748,-0.7842 -0.29184,-1.08381 -0.29184,-1.08381 0.071,-34.349607 0.071,-34.34961 0.45352,-0.82838 0.45352,-0.82838 0.74506,-0.62683 0.74505,-0.62683 3.69622,-2.09811 3.69622,-2.09811 5.29166,-3.03444 5.29167,-3.03444 7.14375,-4.10268 7.14375,-4.10269 4.49791,-2.55913 4.49792,-2.55913 5.82083,-3.39734 5.82084,-3.39733 2.4974,-1.31786 1.40074,-2e-5 c 2.86306,1.50973 6.36082,3.41854 9.45889,5.21825 l 8.3388,4.84409 18.91771,10.78535 18.9177,10.78535 0.84627,0.80042 0.84627,0.80042 0.27821,1.29725 0.27821,1.29724 -0.006,33.91979 -0.006,33.919787 -0.49105,1.05833 -0.49104,1.05833 -0.89221,0.81561 -0.8922,0.8156 -10.05417,5.64853 -10.05417,5.64852 -17.05914,9.7416 -17.05915,9.7416 h -1.47725 -1.47725 z m -10.07626,-28.1711 c -4.18857,-0.51534 -7.77638,-1.17424 -10.84552,-2.53296 -2.92767,-1.2961 -5.36699,-3.24983 -8.06878,-5.47912 -0.94895,-0.89498 -1.34047,-3.57834 0.005,-4.97691 1.34533,-1.39856 3.76756,-1.16911 4.92419,-0.27754 l 4.37699,4.02218 c 3.86085,2.30005 8.30646,2.74342 12.6829,3.2415 1.12639,-0.19663 1.56927,-0.94448 1.32865,-2.24354 -1.88926,-1.88481 -3.92259,-3.6124 -5.93549,-5.3617 -2.95933,-2.86246 -6.11886,-5.27287 -9.85143,-7.02012 -7.50215,-0.56709 -13.13233,-2.0385 -18.58347,-6.33354 -0.63866,-0.58882 -0.58007,-2.610077 0.39438,-3.820617 0.97445,-1.21054 3.30629,-1.58259 4.48868,-0.94795 l 1.79605,1.30939 c 1.9763,1.476157 5.23436,3.310727 7.71354,2.827177 l 0.38902,-0.14928 c -0.2606,-1.02271 -0.97521,-1.785997 -1.54093,-2.645167 -0.51971,-0.82928 -1.27764,-1.60239 -2.1114,-2.20081 -0.83377,-0.59842 -1.64526,-0.90244 -2.5306,-1.25733 -1.85425,-0.84855 -3.2686,-1.87817 -4.85167,-3.70328 -1.58306,-1.82511 -3.05131,-4.5981 -4.30168,-7.08018 -0.75466,-3.36601 2.78893,-5.94414 5.70784,-3.02773 l 1.31327,2.46697 c 0.64344,1.68533 1.69338,2.86145 2.91215,4.12628 l 1.59888,1.65931 c 0.44025,0.17148 0.66734,0.0958 1.08174,-0.0661 0.84942,-1.81566 0.35088,-3.71933 0.0963,-5.60376 -0.0771,-0.72919 0.25197,-2.94957 2.76903,-3.2113 2.51706,-0.26173 4.13752,1.51643 3.83534,5.44163 -0.52005,8.56828 -0.26417,10.4647 2.97336,13.27877 0.74309,0.645897 2.30507,0.527127 2.8468,0.23536 0.54173,-0.29177 2.10712,-2.70109 2.10712,-2.70109 1.21222,-3.1555 1.37903,-10.89808 -0.65124,-12.90162 l -3.04271,-1.78178 -3.0427,-1.78178 c -9.66534,-5.24713 -18.86526,-11.36145 -28.69225,-16.30833 h -0.13983 -0.13984 v 28.70397 28.703977 l 0.99219,0.62357 0.99218,0.62357 4.8948,2.77803 4.89479,2.77804 10.71562,6.04275 10.71563,6.04275 7.40833,4.20767 7.40834,4.20767 0.26458,0.25535 0.26458,0.25534 0.0767,-7.35561 0.0767,-7.35562 c -0.57447,-4.95323 -5.68058,-5.29653 -9.71606,-5.70649 z m 40.98193,6.54806 24.01094,-13.71052 v -28.821247 -28.82126 h -0.15091 -0.15091 l -2.93408,1.62115 -2.93407,1.62114 -2.93429,1.71817 -2.93428,1.71817 -6.48229,3.70518 -6.4823,3.70518 -5.23307,3.04119 -5.23308,3.04118 -0.25377,0.47418 -0.25377,0.47417 c -0.26941,4.96868 -1.09667,9.64087 -3.47683,14.07358 -1.69223,3.712857 -5.30682,5.714467 -8.70147,7.705777 l -0.54736,1.02276 0.1514,5.10296 1.45693,1.08607 c 5.67445,-2.83566 1.54564,-1.93404 13.38272,-9.83269 3.07431,-2.97393 4.88489,-6.766477 5.93014,-10.879157 v -10.37529 c 0.13391,-1.41756 1.94903,-2.7093 3.40012,-2.69712 1.06101,0.009 3.43024,1.04801 3.22824,3.03314 l -0.34835,5.38821 0.90433,0.75053 c 3.33504,-1.51403 4.69062,-5.0797 6.26629,-8.16827 0.97075,-1.53729 2.7696,-1.71246 3.80687,-1.24363 1.04653,0.47303 2.57757,1.58139 2.12235,3.72429 -1.46348,3.32572 -3.24133,6.51266 -5.86172,9.07156 -1.73969,1.7013 -4.10964,2.52776 -6.25726,3.60737 -1.51107,1.38197 -2.53112,3.0008 -3.40807,4.838067 l 0.56672,0.90442 c 1.48661,0.28482 2.67301,-0.0267 4.02291,-0.66867 2.1239,-0.69205 3.44563,-2.465717 4.9658,-4.013347 1.26664,-1.11381 3.28221,-0.93637 4.3817,0.15604 1.01689,1.01035 2.22424,2.490017 0.51147,4.790587 -2.60642,2.57748 -5.8419,4.41711 -9.3084,5.57628 -3.03449,0.84327 -6.28531,0.66144 -9.41735,0.8293 -5.67408,2.56503 -10.77555,6.67564 -14.90465,11.3215 -0.12583,0.95067 0.60449,1.62337 1.10001,2.38125 8.33436,-0.31258 11.28603,-1.13059 17.53711,-7.21661 1.55169,-1.24954 2.98403,-0.69057 4.09457,0.23271 0.97058,0.80691 2.15291,2.67844 0.33502,5.13182 -3.0026,3.14278 -6.80257,5.16246 -10.87168,6.58737 -5.11102,1.61153 -5.75631,0.6512 -14.34832,2.58785 -1.45383,0.90224 -2.43548,2.05077 -3.28667,3.52477 l -0.0808,7.89358 -0.0808,7.89357 0.34535,-0.0884 0.34536,-0.0884 z m -31.15468,-22.09368 v -10.59474 -10.594737 c -1.21811,-0.809 -2.297,-1.551 -3.48536,-2.26664 -0.89719,-0.53464 -1.78527,-1.08465 -2.68586,-1.61357 -0.31275,3.34128 0.44282,6.84642 -0.80526,10.00488 -0.99294,3.487347 -3.6408,4.276487 -4.22057,7.307357 0.0134,1.23318 0.71869,1.80546 1.05187,2.12602 3.23777,2.84588 5.88297,5.14625 8.02851,6.61953 0.64135,0.29443 1.72516,-0.27102 2.11667,-0.9881 z m 12.43534,-24.938637 -2.70426,1.60096 -2.70427,1.60096 -0.54459,1.01758 v 5.74979 c 0.36869,0.71878 0.89171,0.93045 1.56908,0.635 3.24646,-2.5687 4.4255,-6.5793 4.38404,-10.60429 z m 42.46569,-31.82138 -0.004,-0.15227 -0.004,-0.15227 -48.10265,-27.64896 h -0.15409 -0.15408 l -0.012,31.08854 c 0,2.08154 -0.7647,3.48702 -3.13224,3.50919 -3.06395,-0.10276 -3.52357,-1.91844 -3.52357,-5.15623 0.0746,-6.60115 -0.0784,-12.80544 -0.0784,-29.43495 -14.16045,8.03959 -27.12211,15.92816 -48.02187,27.55611 v 0.17795 0.17794 c 0,-0.17794 51.72983,29.49604 51.44512,29.49604 h 0.28471 c -0.28471,0 51.45707,-29.46109 51.45707,-29.46109 z m -54.7635,25.88921 -0.006,-12.03019 c 0.34808,-1.15737 1.99053,-1.99921 3.36254,-1.9775 1.16883,0.0185 2.92444,1.15781 2.98746,2.7459 l -0.008,11.09643 c -0.95461,1.07394 -1.64367,1.8698 -3.02106,1.90043 -1.67841,0.0373 -2.14819,-0.64251 -3.31494,-1.73507 z m -12.52508,-6.92125 -0.31569,-1.24334 c -0.11483,-1.1976 -1.14333,-2.4324 -1.58426,-2.60131 -2.5898,-1.11888 -4.50207,-3.31215 -6.27131,-5.44384 0,0 -2.5337,-4.29153 -2.8068,-5.83127 -0.2731,-1.53974 -0.4918,-3.67807 1.29544,-4.69356 1.56481,-1.03909 3.09017,-0.40037 4.06329,0.59164 0.22935,0.2338 0.59072,0.63992 0.83322,1.54495 1.2604,3.99784 1.87196,5.21392 4.34289,7.53236 1.8928,0.47066 1.95147,-0.36269 2.18882,-1.16123 l -0.37803,-13.84185 c 0.2388,-1.11462 0.96833,-2.74078 3.19205,-2.77147 1.60472,-0.27199 2.55717,1.09367 3.33001,2.27321 l -0.0348,16.42737 c -0.008,0.49315 -0.14139,0.59992 -0.40939,1.60011 -1.21143,4.52112 -1.38432,4.48276 -1.14026,7.56628 l 0.18134,2.29125 -0.35232,1.11008 h -0.32455 -0.32455 z m 24.67877,2.48135 0.31631,-5.34968 -1.44627,-4.49792 -0.2227,-17.4625 c 0,-2.38787 1.9467,-3.22837 3.25251,-3.18388 1.60631,0.0547 3.21089,0.96188 3.21089,2.37032 l -0.35191,14.04273 c 0.0754,1.12281 0.71202,1.622 1.90993,1.49755 l 0.98333,-0.65074 c 2.46876,-1.7082 3.16023,-5.36831 4.04009,-8.1083 0.42784,-1.16565 2.38625,-1.71294 3.76761,-1.36012 1.30785,0.33406 2.72705,1.89604 2.32151,3.27907 -0.74484,3.03808 -2.10117,6.48213 -4.56128,9.26878 -0.92742,1.29941 -2.19183,2.10943 -3.47617,3.00939 -1.23785,0.67732 -2.07858,1.44717 -2.82604,2.58937 l -0.34385,2.15447 -0.49476,0.30898 -0.49476,0.30899 -2.31215,1.32576 -2.31214,1.32576 c -0.5695,0.24074 -0.88955,-0.0486 -0.96015,-0.86803 z"
|
|
18
|
-
id="path1" /><path
|
|
19
|
-
d="m 408.49003,-72.100306 q -5.90869,0 -10.60212,-2.640053 -4.69343,-2.681959 -7.79444,-7.543008 -3.10102,-4.902956 -4.19056,-11.565946 -1.08955,-6.704897 0.33524,-14.750777 1.38289,-7.62681 3.60389,-14.03837 2.22099,-6.45346 5.40582,-11.48214 3.18482,-5.07057 7.37538,-8.63255 4.19056,-3.56198 9.47067,-5.40582 5.32201,-1.84385 11.77547,-1.84385 5.61535,0 10.64403,1.84385 5.02867,1.80194 9.764,6.24393 1.96957,1.76004 2.59815,3.93913 0.67049,2.13718 -1.04764,3.85531 -1.71813,1.71813 -3.89722,1.29908 -2.17909,-0.41906 -4.19056,-2.17909 -3.10102,-3.01721 -6.45346,-4.27438 -3.35245,-1.25716 -7.50111,-1.25716 -4.65152,0 -8.46493,1.5086 -3.7715,1.46669 -6.78871,4.27437 -2.97529,2.76577 -5.2801,6.7049 -2.2629,3.93912 -3.85532,8.84208 -1.59241,4.90295 -2.59814,10.64402 -1.00574,5.9925 -0.58668,10.937362 0.46096,4.902956 2.09528,8.506837 1.67622,3.603882 4.31627,5.573445 2.64006,1.927658 5.99251,1.927658 5.36391,0 10.39258,-2.514336 5.02868,-2.556242 9.00971,-6.830613 2.09528,-2.220997 3.64579,-3.059109 1.59241,-0.838112 2.97529,-0.838112 2.09528,0 3.18483,1.089546 1.13145,1.04764 1.17336,2.556241 0,1.424791 -0.83812,2.849581 -0.83811,1.382885 -3.0591,3.855316 -5.1963,5.699161 -12.23644,9.05161 -7.04014,3.352448 -14.37362,3.352448 z m 50.63872,0.419056 q -6.53727,0 -10.26687,-4.86105 -3.7296,-4.902955 -3.7296,-13.24217 0,-7.584914 2.38862,-13.15836 2.43052,-5.57344 6.78871,-8.59065 4.40009,-3.0172 10.30878,-3.0172 1.04764,0 2.43052,0.20953 1.42479,0.16762 2.76577,0.41905 1.34098,0.20953 2.09528,0.37715 0.25143,0 1.00573,0.16763 0.79621,0.12571 2.89149,0.50286 2.13719,0.37715 6.32775,1.21527 2.38862,0.50286 3.56197,1.88575 1.17336,1.38288 1.17336,3.14292 0,2.80767 -1.88575,4.19056 -1.88575,1.34098 -4.73534,1.13145 l -0.96382,-0.16762 q 0.16762,0.54477 0.25143,1.21526 0.0838,0.628584 0.0838,1.340979 0,5.489634 -1.67622,10.434495 -1.63432,4.902955 -4.4839,8.674459 -2.84958,3.771504 -6.57918,5.950595 -3.6877,2.179092 -7.75254,2.179092 z m 0.83811,-9.303044 q 2.64006,0 4.81915,-2.47243 2.22099,-2.514336 3.56197,-6.57918 1.34098,-4.106749 1.34098,-8.925893 0,-3.101013 -1.5505,-4.735333 -1.55051,-1.63432 -4.19056,-1.63432 -2.72387,0 -4.81915,1.92766 -2.05337,1.88575 -3.22673,5.405822 -1.13145,3.478165 -1.13145,8.255403 0,4.022938 1.38288,6.411557 1.42479,2.346714 3.81341,2.346714 z m 43.93391,8.842082 q -2.05338,0 -3.64579,-1.340979 -1.59241,-1.382885 -1.17336,-3.81341 l 3.93913,-22.419497 q 0.12572,-0.628582 0.0838,-1.299072 -0.0419,-0.7124 -0.20953,-1.29907 -0.16762,-0.58668 -0.46096,-0.96383 -0.29334,-0.37715 -0.7543,-0.37715 -1.00573,0 -1.63432,0.46096 -0.58668,0.46096 -1.04764,1.21526 l -1.59241,2.262902 q -0.83811,1.257168 -1.80194,2.09528 -0.92192,0.796207 -1.96956,0.796207 -1.71813,0 -3.10102,-1.04764 -1.34098,-1.089546 -1.34098,-3.268639 0,-1.00573 0.46096,-2.64005 0.46096,-1.67623 2.09528,-3.64579 2.55625,-3.22673 5.07058,-4.98676 2.55624,-1.76004 6.11822,-1.63432 2.80767,0.0419 5.19629,1.21526 2.43053,1.17336 4.02294,3.26864 1.63432,2.09528 1.96956,4.94486 3.22674,-4.77724 5.99251,-7.33348 2.76577,-2.55625 4.98676,-2.55625 1.92766,0 2.72387,0.75431 0.7962,0.71239 1.34098,1.46669 0.58667,0.7543 1.80194,0.7543 1.17335,0 2.38862,-0.7543 1.25716,-0.7543 1.88575,-1.21526 1.17335,-0.7543 2.89148,-0.83811 1.76004,-0.0838 3.14292,0.88002 1.38289,0.96382 1.38289,3.22673 0,1.59241 -0.79621,2.64005 -0.7543,1.00573 -1.84384,1.67622 -1.04764,0.62859 -2.01147,1.13145 -1.67623,0.92193 -3.81341,1.84385 -2.13719,0.92192 -3.52007,0.92192 -1.67623,0 -2.9753,-0.67049 -1.29907,-0.67049 -2.38862,-1.34097 -1.08955,-0.67049 -2.09528,-0.67049 -0.79621,0 -2.2629,1.29907 -1.4667,1.25717 -3.64579,4.232465 -2.17909,2.933392 -5.02867,8.00397 l -2.55624,14.541244 q -0.37715,2.220997 -2.17909,3.352448 -1.76004,1.131451 -3.64579,1.131451 z m 47.16058,0.544773 q -4.02294,0 -6.7049,-2.179091 -2.64005,-2.220997 -3.60388,-6.285841 -0.92192,-4.106749 0.0838,-9.680194 1.34098,-7.501102 4.52581,-12.948835 3.22673,-5.44772 7.83635,-8.42302 4.65152,-2.9753 10.22496,-2.9753 h 12.6974 q 2.55624,0 3.43626,1.67623 0.92192,1.63431 0.41906,4.35818 l -3.39436,19.905158 q -0.20953,1.215263 -0.29334,2.220997 -0.0419,1.005735 0.0419,1.760035 0.12571,0.754301 0.37715,1.215263 0.29334,0.419056 0.7543,0.419056 0.79621,0 1.5086,-0.460962 0.7124,-0.502867 1.25717,-1.257168 l 1.55051,-2.262902 q 0.83811,-1.257168 1.76003,-2.053375 0.96383,-0.838112 2.01147,-0.838112 1.76004,0 3.05911,1.089546 1.34098,1.04764 1.34098,3.226731 0,1.005735 -0.46096,2.681959 -0.41906,1.634318 -2.05338,3.645787 -2.51433,3.184826 -5.07058,4.902955 -2.51433,1.71813 -6.0344,1.71813 -4.73534,0 -7.20777,-3.352448 -2.47243,-3.352448 -2.89148,-8.171592 l 0.0419,-0.921924 q -2.64005,4.274372 -5.2382,7.165858 -2.59814,2.891487 -5.07057,4.358183 -2.47244,1.466696 -4.90296,1.466696 z m 2.84958,-9.261138 q 1.55051,0 3.98103,-2.598147 2.47243,-2.640053 5.32201,-7.543009 2.89149,-4.944861 5.65726,-11.859287 l 0.41906,-2.01147 h -5.53154 q -2.93339,0 -5.40583,1.88576 -2.47243,1.88575 -4.23246,5.280101 -1.76004,3.352448 -2.55624,7.920159 -0.67049,3.981032 0.0419,6.453462 0.7543,2.472431 2.30481,2.472431 z m 51.97971,8.716365 q -3.22673,0 -5.44773,-1.550507 -2.17909,-1.550507 -3.43626,-4.064844 -1.21526,-2.514336 -1.5505,-5.531539 -0.33525,-3.059109 0.16762,-6.076312 l 9.93163,-56.572566 q 0.41905,-2.22099 1.96956,-3.10101 1.55051,-0.92192 3.26864,-0.92192 2.22099,0 3.93912,1.38288 1.71813,1.38289 1.25717,3.93913 l -9.764,55.441108 q -0.25144,1.424791 -0.37715,2.681959 -0.0838,1.215262 0,2.09528 0.0838,0.880017 0.37715,1.382885 0.29333,0.502867 0.7543,0.502867 0.83811,0 1.5505,-0.460962 0.7124,-0.502867 1.21527,-1.257168 l 1.5505,-2.262902 q 0.83812,-1.257168 1.80194,-2.053375 0.96383,-0.838112 2.01147,-0.838112 1.71813,0 3.05911,1.089546 1.34098,1.04764 1.34098,3.226731 0,1.005735 -0.46096,2.681959 -0.41906,1.634318 -2.05337,3.645787 -2.55625,3.184826 -5.07058,4.902955 -2.51434,1.71813 -6.03441,1.71813 z m 31.69728,-50.286718 q -2.2629,0 -3.93913,-1.63432 -1.67622,-1.67623 -1.67622,-4.06485 0,-2.2629 1.63432,-3.93912 1.63432,-1.71813 3.98103,-1.71813 2.221,0 3.98103,1.63432 1.80194,1.59241 1.80194,4.02293 0,2.38862 -1.71813,4.06485 -1.67622,1.63432 -4.06484,1.63432 z m -1.76003,50.286718 q -3.18483,0 -5.40583,-1.508602 -2.17909,-1.508601 -3.43626,-3.981032 -1.25716,-2.514336 -1.63432,-5.489634 -0.33524,-3.017203 0.12572,-6.034406 l 3.64579,-20.366124 q 0.0838,-0.7543 0.67049,-1.84384 0.62858,-1.08955 1.92766,-1.88576 1.34098,-0.83811 3.56197,-0.83811 2.51434,0 3.6877,1.38289 1.17335,1.34098 0.7543,3.72959 l -3.52007,19.821354 q -0.33525,1.927658 -0.41906,3.436259 -0.0419,1.508602 0.20953,2.346714 0.29334,0.838112 0.92192,0.838112 0.83811,0 1.55051,-0.460962 0.71239,-0.502867 1.21526,-1.257168 l 1.55051,-2.262902 q 0.83811,-1.257168 1.80194,-2.053375 0.96383,-0.838112 2.01147,-0.838112 1.71813,0 3.05911,1.089546 1.34098,1.04764 1.34098,3.226731 0,1.005735 -0.46097,2.681959 -0.41905,1.634318 -2.05337,3.645787 -2.55624,3.184826 -5.07058,4.902955 -2.51433,1.71813 -6.0344,1.71813 z m 32.07454,0 q -3.18483,0 -5.40583,-1.508602 -2.17909,-1.508601 -3.47816,-3.939126 -1.25717,-2.472431 -1.63432,-5.447728 -0.33525,-2.975298 0.16762,-5.950596 l 2.80768,-16.091746 h -5.86679 q -2.59814,0 -3.93912,-1.25717 -1.34098,-1.25717 -1.34098,-3.22673 0,-1.96957 1.34098,-3.22674 1.34098,-1.29907 3.89722,-1.29907 h 7.5011 l 3.89722,-22.20997 q 0.33525,-1.84384 1.88575,-2.84958 1.59242,-1.04764 3.31055,-1.04764 1.46669,0 2.80767,0.46096 1.34098,0.46096 2.09528,1.55051 0.7543,1.04764 0.41906,2.89149 l -3.7296,21.20423 h 6.95633 q 2.64005,0 3.98103,1.29907 1.34098,1.25717 1.34098,3.22674 0,1.96956 -1.34098,3.22673 -1.34098,1.25717 -3.98103,1.25717 h -8.50684 l -2.89149,16.385085 q -0.25143,1.299074 -0.33524,2.430525 -0.0419,1.131452 0.0419,1.969564 0.0838,0.838112 0.33524,1.299073 0.25143,0.460962 0.7543,0.460962 0.83811,0 1.55051,-0.460962 0.71239,-0.502867 1.21526,-1.257168 l 1.59241,-2.262902 q 0.83812,-1.257168 1.76004,-2.053375 0.96383,-0.838112 1.96956,-0.838112 1.76004,0 3.10102,1.089546 1.34098,1.04764 1.34098,3.226731 0,1.005735 -0.46097,2.681959 -0.41905,1.634318 -2.09528,3.645787 -2.51433,3.184826 -5.07057,4.902955 -2.51434,1.71813 -5.9925,1.71813 z m 32.61939,0.754301 q -6.36966,0 -9.6802,-3.729599 -3.26864,-3.771504 -3.26864,-10.769739 0,-5.741068 1.92766,-10.937362 1.92766,-5.238199 5.1963,-9.303039 3.31054,-4.06485 7.5011,-6.36966 4.23247,-2.34671 8.84208,-2.34671 5.40582,0 8.12969,2.2629 2.76577,2.26291 2.76577,6.57918 0,2.01147 -0.92193,3.89722 -0.88001,1.88576 -2.59814,3.64579 -1.67623,1.760036 -4.02294,3.43626 -2.34671,1.634318 -5.2382,3.268637 -2.01147,1.173356 -5.02867,2.723864 -3.01721,1.508601 -6.16013,3.017203 0,0.712395 0.0838,1.340979 0.0838,0.586679 0.20952,1.131451 0.29334,1.299074 1.08955,2.220997 0.79621,0.880018 1.92766,0.880018 2.05337,0 4.10675,-1.089546 2.09528,-1.131451 3.72959,-3.14292 1.84385,-2.137185 3.81341,-2.723864 2.01147,-0.586678 3.60389,0.628584 0.7962,0.586679 1.29907,1.71813 0.54477,1.089545 0.29334,2.640053 -0.20953,1.508601 -1.71813,3.352448 -2.89149,3.52007 -7.12395,5.61535 -4.19056,2.053375 -8.75827,2.053375 z m -1.34098,-23.509043 q 1.29907,-0.670489 2.64005,-1.42479 1.34098,-0.754301 2.64005,-1.466696 2.47243,-1.42479 4.19056,-2.68196 1.71813,-1.29907 2.68196,-2.38862 0.96383,-1.13145 0.96383,-2.05337 0,-0.67049 -0.41906,-1.21526 -0.41905,-0.58668 -1.21526,-0.58668 -2.55624,0 -4.81914,1.5505 -2.221,1.50861 -3.93913,4.19056 -1.67622,2.640057 -2.72386,6.076316 z"
|
|
20
|
-
id="text1"
|
|
21
|
-
style="font-weight:600;font-size:83.8112px;line-height:2;font-family:'Edu AU VIC WA NT Pre';-inkscape-font-specification:'Edu AU VIC WA NT Pre Semi-Bold';text-align:center;letter-spacing:-0.402293px;text-anchor:middle;fill:#000000;stroke-width:1.43066"
|
|
22
|
-
aria-label="Coralite" /></g></svg>
|