coralite 0.4.1 → 0.5.0

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 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
- - **-c or --templates**: The path to your templates directory containing reusable UI elements (e.g., `-c ./src/templates`).
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 pkg = JSON.parse(readFileSync(`./package.json`, 'utf-8'))
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
package/lib/coralite.js CHANGED
@@ -17,7 +17,8 @@ export const tokens = {}
17
17
  *
18
18
  * @param {Object} options
19
19
  * @param {string} [options.id] - Optional component id, if not defined, the id will be extracted from the first top level element with the id attribute
20
- * @param {Object.<string, (string | function)>} options.tokens - A map where keys are token names and values are either strings or functions representing the corresponding tokens' content or behavior.
20
+ * @param {Object.<string, (string | Function)>} options.tokens - Token names and values are either strings or functions representing the corresponding tokens' content or behavior.
21
+ * @param {Object.<string, Function>} options.slots - Middleware for slot content
21
22
  * @returns {Promise<Object.<string, string>>}
22
23
  */
23
24
  export async function defineComponent (options) {
package/lib/parse.js CHANGED
@@ -501,7 +501,7 @@ export async function createComponent ({
501
501
 
502
502
  // merge values from component script
503
503
  if (component.script) {
504
- const computedValues = await parseScript(component, values, components, document)
504
+ const computedValues = await parseScript(component, values, element, components, document)
505
505
 
506
506
  values = Object.assign(values, computedValues)
507
507
 
@@ -618,38 +618,19 @@ export async function createComponent ({
618
618
  *
619
619
  * @param {CoraliteModule} component - The Coralite module to parse
620
620
  * @param {CoraliteModuleValues} values - Replacement tokens for the component
621
+ * @param {CoraliteElement} element - Element
621
622
  * @param {Object.<string, CoraliteModule>} components - Mapping of other components that might be referenced
622
623
  * @param {CoraliteDocument} document - The current document being processed
623
624
  * @returns {Promise<Object.<string,(string|(CoraliteElement|CoraliteTextNode)[])>>}
624
- *
625
- * @example
626
- * ```
627
- * // Example usage:
628
- * const parsedResult = await parseScript({
629
- * id: 'my-component',
630
- * template: `<div>Hello World</div>`,
631
- * script: `export default function () {
632
- * return '<div>Hello World</div>';
633
- * }`,
634
- * tokens: { 'hello': 'Hello' }
635
- * }, {
636
- * 'my-component': {
637
- * id: 'my-component',
638
- * template: `<div>${tokens.hello}</div>`,
639
- * script: `export default function () {
640
- * return '<div>Hello</div>';
641
- * }`
642
- * }
643
- * }, document);
644
- * ```
645
625
  */
646
- export async function parseScript (component, values, components, document) {
626
+ export async function parseScript (component, values, element, components, document) {
647
627
  const contextifiedObject = vm.createContext({
648
628
  coralite: {
649
629
  tokens: values,
650
630
  /**
651
631
  * @param {Object} options
652
632
  * @param {Object.<string, (string | function)>} options.tokens
633
+ * @param {Object.<string, Function>} options.slots
653
634
  * @returns {Promise<Object.<string, string>>}
654
635
  */
655
636
  async defineComponent (options) {
@@ -668,6 +649,46 @@ export async function parseScript (component, values, components, document) {
668
649
  }
669
650
  }
670
651
 
652
+ // process computed slots
653
+ if (options.slots) {
654
+ for (const name in options.slots) {
655
+ if (Object.prototype.hasOwnProperty.call(options.slots, name)) {
656
+ const computedSlot = options.slots[name]
657
+ // slot content to compute
658
+ const slotContent = []
659
+ // new slot elements
660
+ const elementSlots = []
661
+
662
+ for (let i = 0; i < element.slots.length; i++) {
663
+ const slot = element.slots[i]
664
+
665
+ if (slot.name === name) {
666
+ // slot content to compute
667
+ slotContent.push(slot.node)
668
+ } else {
669
+ elementSlots.push(slot)
670
+ }
671
+ }
672
+
673
+ // compute slot nodes
674
+ const result = computedSlot(slotContent)
675
+
676
+ // append new slot nodes
677
+ for (let index = 0; index < result.length; index++) {
678
+ const node = result[index]
679
+
680
+ elementSlots.push({
681
+ name,
682
+ node
683
+ })
684
+ }
685
+
686
+ // update element slots
687
+ element.slots = elementSlots
688
+ }
689
+ }
690
+ }
691
+
671
692
  return values
672
693
  },
673
694
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coralite",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
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",
@@ -1,22 +0,0 @@
1
- changelog:
2
- categories:
3
- - title: Breaking Changes 🛠
4
- labels:
5
- - Semver-Major
6
- - breaking-change
7
- - title: Exciting New Features 🎉
8
- labels:
9
- - Semver-Minor
10
- - enhancement
11
- - title: 🏕 Features
12
- labels:
13
- - '*'
14
- exclude:
15
- labels:
16
- - dependencies
17
- - title: 👒 Dependencies
18
- labels:
19
- - dependencies
20
- - title: Other Changes
21
- labels:
22
- - "*"
@@ -1,45 +0,0 @@
1
- name: Publish
2
-
3
- on:
4
- release:
5
- types: [created]
6
-
7
- jobs:
8
- build:
9
- runs-on: ubuntu-latest
10
- steps:
11
- - name: Checkout
12
- uses: actions/checkout@v4
13
-
14
- - uses: pnpm/action-setup@v4
15
- name: Install pnpm
16
- with:
17
- version: 9
18
- run_install: false
19
-
20
- - name: Install Node.js
21
- uses: actions/setup-node@v4
22
- with:
23
- node-version: 22
24
- cache: "pnpm"
25
-
26
- - name: Install dependencies
27
- run: pnpm install
28
-
29
- - name: Lint
30
- run: pnpm run lint
31
-
32
-
33
- publish-npm:
34
- needs: build
35
- runs-on: ubuntu-latest
36
- steps:
37
- - uses: actions/checkout@v4
38
- - uses: actions/setup-node@v4
39
- with:
40
- node-version: 22
41
- registry-url: https://registry.npmjs.org/
42
- - run: npm publish
43
- env:
44
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
45
-
@@ -1,45 +0,0 @@
1
- name: Test e2e
2
-
3
- on:
4
- - push
5
- - pull_request
6
-
7
- jobs:
8
- test:
9
- timeout-minutes: 60
10
- runs-on: ubuntu-latest
11
-
12
- steps:
13
- - name: Checkout
14
- uses: actions/checkout@v4
15
-
16
- - uses: pnpm/action-setup@v4
17
- name: Install pnpm
18
- with:
19
- version: 9
20
- run_install: false
21
-
22
- - name: Install Node.js
23
- uses: actions/setup-node@v4
24
- with:
25
- node-version: 22
26
- cache: "pnpm"
27
-
28
- - name: Install dependencies
29
- run: pnpm install
30
-
31
- - name: Build HTML from templates
32
- run: pnpm run html
33
-
34
- - name: Install Playwright Browser
35
- run: pnpm exec playwright install firefox --with-deps
36
-
37
- - name: Run Playwright tests
38
- run: pnpm exec playwright test
39
-
40
- - uses: actions/upload-artifact@v4
41
- if: ${{ !cancelled() }}
42
- with:
43
- name: playwright-report
44
- path: playwright-report/
45
- retention-days: 30
@@ -1,30 +0,0 @@
1
- import { test, expect } from '@playwright/test'
2
-
3
- test('has title', async ({ page }) => {
4
- await page.goto('/')
5
-
6
- // Expect a title "to contain" a substring.
7
- await expect(page).toHaveTitle(/Home page/)
8
- })
9
-
10
- test('has compiled coralite-header custom element', async ({ page }) => {
11
- await page.goto('/')
12
-
13
- // Check if the custom coralite-header element exists and contains the expected text
14
- await expect(page.locator('body')).toMatchAriaSnapshot(`
15
- - text: Hello
16
- - banner: This is the mighty header
17
- - text: world
18
- `)
19
- })
20
-
21
- test('', async ({ page }) => {
22
- await page.goto('/about.html')
23
-
24
- await expect(page.locator('body')).toMatchAriaSnapshot(`
25
- - text: Hello
26
- - banner: This is the mighty header
27
- - text: world
28
- `)
29
- })
30
-
@@ -1,12 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta name="title" content="About">
5
- <title>About</title>
6
- </head>
7
- <body>
8
- <coralite-layout>
9
- test
10
- </coralite-layout>
11
- </body>
12
- </html>
@@ -1,21 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Blog posts</title>
7
- <coralite-head>
8
- <meta slot="meta" name="name" content="coralite">
9
- <meta slot="meta" name="description" content="look mum, no database!">
10
- <span>default slot</span>
11
- <span>default slot</span>
12
- </coralite-head>
13
- </head>
14
- <body>
15
- Hello
16
-
17
- <coralite-header></coralite-header>
18
- <coralite-posts path="blog"></coralite-posts>
19
- world
20
- </body>
21
- </html>
@@ -1,22 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Document</title>
7
- <meta name="title" content="Post 1">
8
- <meta name="author" content="Nemo">
9
- <meta name="image" content="image.png">
10
- <meta name="image_alt" content="Photo of a cat">
11
- <meta name="description" content="short description">
12
- <meta name="published_time" content="2025-01-08T20:23:07.645Z">
13
- </head>
14
- <body>
15
- Hello
16
-
17
- <coralite-header></coralite-header>
18
- <coralite-author name="Nemo" datetime="2025-01-08T20:23:07.645Z"></coralite-author>
19
-
20
- world
21
- </body>
22
- </html>
@@ -1,18 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Document</title>
7
- <meta name="title" content="Post 2">
8
- <meta name="author" content="Nemo">
9
- <meta name="image" content="image.png">
10
- <meta name="image_alt" content="Photo of a dog">
11
- <meta name="description" content="short description">
12
- <meta name="published_time" content="2025-01-09T20:23:07.645Z">
13
- </head>
14
- <body>
15
- <coralite-header></coralite-header>
16
- <coralite-author name="Nemo" datetime="2025-01-08T20:23:07.645Z"></coralite-author>
17
- </body>
18
- </html>
@@ -1,15 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Home page</title>
7
- </head>
8
- <body>
9
- Hello
10
-
11
- <coralite-header></coralite-header>
12
-
13
- world
14
- </body>
15
- </html>
@@ -1,24 +0,0 @@
1
- <template id="coralite-author">
2
- <span>{{ name }}</span>
3
- <time datetime="{{ datetime }}">
4
- {{ localeDate }}
5
- </time>
6
- </template>
7
-
8
- <script type="module">
9
- import { defineComponent, tokens } from 'coralite'
10
-
11
- export default defineComponent({
12
- id: 'coralite-author',
13
- tokens: {
14
- localeDate () {
15
- return new Date(tokens.datetime).toLocaleDateString('en-AU', {
16
- weekday: 'short',
17
- year: '2-digit',
18
- month: 'short',
19
- day: 'numeric'
20
- })
21
- }
22
- }
23
- })
24
- </script>
@@ -1,7 +0,0 @@
1
- <template id="coralite-head">
2
- <slot name="meta">default meta</slot>
3
- <slot name="css">default css</slot>
4
- <slot name="script">default script</slot>
5
- <slot name="empty"></slot>
6
- <slot>default value</slot>
7
- </template>
@@ -1,5 +0,0 @@
1
- <template id="coralite-header">
2
- <header>
3
- This is the mighty header
4
- </header>
5
- </template>
@@ -1,7 +0,0 @@
1
- <template id="coralite-post">
2
- <h2>{{ title }}</h2>
3
- <coralite-author name="{{ author }}" datetime="{{ published_time }}"></coralite-author>
4
- <img src="{{ image }}" alt="{{ image_alt }}">
5
- {{ description }}
6
- <coralite-header></coralite-header>
7
- </template>
@@ -1,29 +0,0 @@
1
- <template id="coralite-posts">
2
- {{ posts }}
3
- </template>
4
-
5
- <script type="module">
6
- import { defineComponent, tokens, aggregate } from 'coralite'
7
-
8
- export default defineComponent({
9
- id: 'coralite-posts',
10
- tokens: {
11
- posts () {
12
- return aggregate({
13
- path: tokens.path,
14
- componentId: 'coralite-post',
15
- pages: 10,
16
- sortBy: 'published_time',
17
- tokens: {
18
- aliases: {
19
- datetime: ['published_time']
20
- },
21
- values: {
22
- image: 'default.png'
23
- }
24
- }
25
- })
26
- }
27
- }
28
- })
29
- </script>
@@ -1,3 +0,0 @@
1
- <template id="coralite-title">
2
- <h1>{{ title }}</h1>
3
- </template>
@@ -1,5 +0,0 @@
1
- <template id="coralite-layout">
2
- <div>
3
- <slot></slot>
4
- </div>
5
- </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
- })
@@ -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>
@@ -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>