Compare commits

..

227 Commits

Author SHA1 Message Date
Siyuan 3eb8139435 hide cloud account id 2025-09-26 15:16:57 +00:00
Siyuan dd9032157a change no network screen height 2025-09-26 14:51:10 +00:00
Siyuan 99a05dbc88 add lock to usb state 2025-09-26 13:21:47 +00:00
Siyuan c166602481 make docker build enabled by default 2025-09-26 13:09:24 +00:00
Siyuan 713becd53d feat: add supervisor and error dump 2025-09-26 12:56:57 +00:00
Siyuan 83b0c7985d feat: move native binary to cgo 2025-09-26 11:20:32 +00:00
Marc Brooks 8f4081a5b1
Cleaning up action versions (#828) 2025-09-26 11:22:17 +02:00
Aveline 359778967f
chore: remove msgpack from gin dependency (#833) 2025-09-26 08:52:07 +02:00
Adam Shiervani 703625d59a
fix: faster paste speed (#824)
* fix: update delay handling in PasteModal component

- Changed default delay value to 20 and adjusted validation to allow values between 0 and 65534.
- Cleaned up code formatting for better readability.

* fix: formatting
2025-09-25 10:26:11 +02:00
Marc Brooks cb24ef6d4f
Update UI dependencies (#819) 2025-09-24 12:16:02 +02:00
Siyuan Miao fe77acd5f0 chore: bump to 0.4.8 2025-09-22 12:51:19 +02:00
Aveline 83caa8f82d
feat: get local version only (#813) 2025-09-19 13:45:59 +02:00
Adam Shiervani 27750b9cc2
feat: re-add keyboard and keypress report handlers to RPC (#811) 2025-09-18 17:33:08 +02:00
Adam Shiervani 5112bef19c
fix: remove unnecessary grow-0 utility from in keyboard (#810) 2025-09-18 17:02:08 +02:00
Siyuan Miao 1ffdca4fd6 build: use immediate assignment for VERSION_DEV and other vars 2025-09-18 15:41:39 +02:00
Siyuan Miao c6dba4d59f chore: bump to 0.4.7 2025-09-18 13:53:08 +02:00
Aveline afb146d78c
feat: release keyPress automatically (#796)
* feat: release keyPress automatically

* send keepalive when pressing the key

* remove logging

* clean up logging

* chore: use unreliable channel to send keepalive events

* chore: use ordered unreliable channel for pointer events

* chore: adjust auto release key interval

* chore: update logging for kbdAutoReleaseLock

* chore: update comment for KEEPALIVE_INTERVAL

* fix: should cancelAutorelease when pressed is true

* fix: handshake won't happen if webrtc reconnects

* chore: add trace log for writeWithTimeout

* chore: add timeout for KeypressReport

* chore: use the proper key to send release command

* refactor: simplify HID RPC keyboard input handling and improve key state management

- Updated `handleHidRPCKeyboardInput` to return errors directly instead of keys down state.
- Refactored `rpcKeyboardReport` and `rpcKeypressReport` to return errors instead of states.
- Introduced a queue for managing key down state updates in the `Session` struct to prevent input handling stalls.
- Adjusted the `UpdateKeysDown` method to handle state changes more efficiently.
- Removed unnecessary logging and commented-out code for clarity.

* refactor: enhance keyboard auto-release functionality and key state management

* fix: correct Windows default auto-repeat delay comment from 1ms to 1s

* refactor: send keypress as early as possible

* refactor: replace console.warn with console.info for HID RPC channel events

* refactor: remove unused NewKeypressKeepAliveMessage function from HID RPC

* fix: handle error in key release process and log warnings

* fix: log warning on keypress report failure

* fix: update auto-release keyboard interval to 225

* refactor: enhance keep-alive handling and jitter compensation in HID RPC

- Implemented staleness guard to ignore outdated keep-alive packets.
- Added jitter compensation logic to adjust timer extensions based on packet arrival times.
- Introduced new methods for managing keep-alive state and reset functionality in the Session struct.
- Updated auto-release delay mechanism to use dynamic durations based on keep-alive timing.
- Adjusted keep-alive interval in the UI to improve responsiveness.

* gofmt

* clean up code

* chore: use dynamic duration for scheduleAutoRelease

* Use harcoded timer reset value for now

* fix: prevent nil pointer dereference when stopping timers in Close method

* refactor: remove nil check for kbdAutoReleaseTimers in DelayAutoReleaseWithDuration

* refactor: optimize dependencies in useHidRpc hooks

* refactor: streamline keep-alive timer management in useKeyboard hook

* refactor: clarify comments in useKeyboard hook for resetKeyboardState function

* refactor: reduce keysDownStateQueueSize

* refactor: close and reset keysDownStateQueue in newSession function

* chore: resolve conflicts

* resolve conflicts

---------

Co-authored-by: Adam Shiervani <adam.shiervani@gmail.com>
2025-09-18 13:35:47 +02:00
Aveline 72e3013337
feat: send all paste keystrokes to backend (#789)
* feat: send all paste keystrokes to backend

* feat: cancel paste mode

* wip: send macro using hidRPC channel

* add delay

* feat: allow paste progress to be cancelled

* allow user to override delay

* chore: clear keysDownState

* fix: use currentSession.reportHidRPCKeyboardMacroState

* fix: jsonrpc.go:1142:21: Error return value is not checked (errcheck)

* fix: performance issue of Uint8Array concat

* chore: hide delay option when debugMode isn't enabled

* feat: use clientSide macro if backend doesn't support macros

* fix: update keysDownState handling

* minor issues

* refactor

* fix: send duplicated keyDownState

* chore: add max length for paste text

---------

Co-authored-by: Adam Shiervani <adam.shiervani@gmail.com>
2025-09-18 13:00:57 +02:00
Marc 25b102ac34
fix: ensure that security-key backed SSH keys are supported (#807) 2025-09-17 12:14:45 +02:00
Aveline 5c94c6c87f
chore: upgrade jetkvm native and fix the params of fadeIn / fadeOut (#808) 2025-09-17 01:38:23 +02:00
Marc Brooks cf679978be
fix(timesync): ensure that auto-update waits for time sync (#609)
- Added check to not attempt auto update if time sync is needed and not yet successful (delays 30 second to recheck).
- Added resync of time when DHCP or link state changes if online
- Added conditional* fallback from configured* NTP servers to the IP-named NTP servers, and then to the DNS named ones if that fails
- Added conditional* fallback from the configured* HTTP servers to the default DNS named ones.
- Uses the configuration* option for how many queries to run in parallel
- Added known static IPs for time servers (in case DNS resolution isn't up yet)
- Added time.cloudflare.com to fall-back NTP servers
- Added fallback to NTP via hostnames
- Logs the resultant time (and mode)
2025-09-16 15:37:02 +02:00
Marc Brooks 80a8b9e9e3
feat: Adds IPv6 disabling feature (#803)
* Allow disabling IPv6

Simply ignores any IPv6 addresses in the lease and doesn't offer them to the RPC
Also fixed display issue for IPv6 link local address.
Fixes https://github.com/orgs/jetkvm/projects/7/views/1?pane=issue&itemId=122761546&issue=jetkvm%7Ckvm%7C685

* Don't listen on disabled addresses in mDNS or web server.

* We have to set the IPv4 and IPv6 modes on the server.
2025-09-16 12:44:56 +02:00
Aveline 1717549578
fix: goroutine leak issue of cloudBlink (#801)
* fix: goroutine leak issue of cloudBlink

* chore: add lock and allow context to be cancelled earlier
2025-09-12 18:30:35 +02:00
Aveline 37b1a8bf34
docs: update pprof section of DEVELOPMENT.md (#802) 2025-09-12 11:11:28 +02:00
Marc Brooks ca8b06f4cf
chore: enhance the gzip and cacheable handling of static files
Add SVG and ICO to cacheable files.
Emit robots.txt directly.
Recognize WOFF2 (font) files as assets (so the get the immutable treatment)
Pre-gzip the entire /static/ directory (not just /static/assets/) and include SVG, ICO, and HTML files
Ensure fonts.css is processed by vite/rollup so that the preload and css reference the same immutable files (which get long-cached with hashes)
Add CircularXXWeb-Black to the preload list as it is used in the hot-path.
Handle system-driven color-scheme changes from dark to light correctly.
2025-09-12 08:41:41 +02:00
Aveline 33e099f258
update netboot.xyz-multiarch.iso to 2.0.88 (#799)
* chore: update netboot.xyz-multiarch.iso to 2.0.88

* feat: add script to update netboot.xyz iso
2025-09-12 08:41:17 +02:00
Aveline ea068414dc
feat: validate ssh public key before saving (#794)
* feat: validate ssh public key before saving

* fix: TestValidSSHKeyTypes
2025-09-11 23:32:40 +02:00
Adam Shiervani 8d1a66806c
refactor(ui): Don't fetch KeybardAndMouse Icon on every re-render (#795) 2025-09-11 19:57:35 +02:00
Aveline 6202e3cafa
chore: serve pre-compressed static files (#793) 2025-09-11 19:17:15 +02:00
dependabot[bot] c866230711
build(deps-dev): bump vite (#788)
Bumps the npm_and_yarn group with 1 update in the /ui directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `vite` from 7.1.4 to 7.1.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.1.5/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 7.1.5
  dependency-type: direct:development
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 12:07:52 +02:00
Marc Brooks c8dd84c6b7
fix/Jiggler settings not saving (#786)
Ensure the jiggler config loads the defaults so they can be saved.
Ensure the file.Sync occurs before acknowledging save.
Also fixup the old KeyboardLayout to use en-US not en_US
2025-09-09 14:48:49 +02:00
Adam Shiervani c98592a412
feat(ui): Enhance EDID settings with loading state (#691)
* feat(ui): Enhance EDID settings with loading state and Fieldset component

* fix(ui): Improve notifications and adjust styling in custom EDID component

* fix(ui): specify JsonRpcResponse type
2025-09-08 11:38:49 +02:00
Marc Brooks 8fbad0112e
fix(ui): Don't render a button in a button (#782)
Gets rid of warning at initial page load.
2025-09-08 11:06:08 +02:00
Claus Holst 8a90555fad
Update URL Mount entries for Ubuntu, Fedora and Arch Linux (#783) 2025-09-08 11:02:46 +02:00
Adam Shiervani a7db0e8408
Enhance connection stats sidebar (#748)
* feat: add Metric component for data visualization

* refactor: update ConnectionStatsSidebar to use Metric component for improved data visualization

* feat: add someIterable utility function and update Metric components for consistent metric handling

- Introduced `someIterable` function to check for the presence of a metric in an iterable.
- Updated `CustomTooltip` and `Metric` components to use `metric` instead of `stat` for improved clarity.
- Refactored `StatChart` to align with the new metric naming convention.

* refactor: rename variable for clarity in Metric component

* docs: add JSDoc comments to createChartArray function in Metric component for better documentation

* feat: do an actual avg reference calc

* feat: Dont collect stats without a video track

* refactor: rename variables for clarity
2025-09-08 10:59:36 +02:00
Aveline bcc307b147
feat: hid rpc channel (#755)
* feat: use hidRpcChannel to save bandwidth

* chore: simplify handshake of hid rpc

* add logs

* chore: add timeout when writing to hid endpoints

* fix issues

* chore: show hid rpc version

* refactor hidrpc marshal / unmarshal

* add queues for keyboard / mouse event

* chore: change logging level of JSONRPC send event to trace

* minor changes related to logging

* fix: nil check

* chore: add comments and remove unused code

* add useMouse

* chore: log msg data only when debug or trace mode

* chore: make tslint happy

* chore: unlock keyboardStateLock before calling onKeysDownChange

* chore: remove keyPressReportApiAvailable

* chore: change version handle

* chore: clean up unused functions

* remove comments
2025-09-04 22:27:56 +02:00
Marc Brooks e8ef82e582
feat(ui) Fix the CapsLock and Shift key for VirtualKeyboard (#779)
* feat(ui) Fix the CapsLock and Shift key for VirtualKeyboard

* PR feedback: Default LED state in store
2025-09-04 22:26:51 +02:00
Marc Brooks 5f3dd89d55
Upgrade vite and react-router (#778)
| Package                           | From | To       |
|----------------------------------|-----------|---------|
react-router                       | ( new ) | 7.8.2 |
react-router-dom             | 6.22.3 | ( del ) |
@vitejs/plugin-react-swc | 3.10.2 | 4.0.1 |
vite                                      | 6.3.5   | 7.1.4 |
2025-09-04 12:20:01 +02:00
Marc Brooks 1dda6184da
Bumps recharts to 3.1.2 (#777)
* Upgrade UI packages

| Package                                     | From     | To         |
|-----------------------------------|----------|----------|
| dayjs                                           | 1.1.13   | 1.11.18 |
| react-simple-keyboard               | 3.8.115 | 3.8.119 |
| @types/react                              | 19.1.11 | 19.1.12 |
| @types/react-dom                     | 19.1.8   | 19.1.9   |
|  @types/semver                         | 7.7.0      | 7.7.1    |
| @types/validator                        | 13.15.2 | 13.15.3 |
| @typescript-eslint/eslint-plugin | 8.41.0   | 8.42.0   |
| @typescript-eslint/parser           | 8.41.0   | 8.42.0   |

Also fixed lint warning about the missing autocomplete on the password field

* Upgrade recharts to 3.1.2

This is a major version jump, builds and runs correctly
2025-09-04 12:07:19 +02:00
Marc Brooks 825d0311d6
Upgrade UI packages (#776)
| Package                                     | From     | To         |
|-----------------------------------|----------|----------|
| dayjs                                           | 1.1.13   | 1.11.18 |
| react-simple-keyboard               | 3.8.115 | 3.8.119 |
| @types/react                              | 19.1.11 | 19.1.12 |
| @types/react-dom                     | 19.1.8   | 19.1.9   |
|  @types/semver                         | 7.7.0      | 7.7.1    |
| @types/validator                        | 13.15.2 | 13.15.3 |
| @typescript-eslint/eslint-plugin | 8.41.0   | 8.42.0   |
| @typescript-eslint/parser           | 8.41.0   | 8.42.0   |

Also fixed lint warning about the missing autocomplete on the password field
2025-09-04 12:02:59 +02:00
Aveline f3fe78af5d
chore: upgrade deps (#780) 2025-09-04 11:40:49 +02:00
dependabot[bot] d0b3781aaa
build(deps): bump actions/checkout from 4 to 5 (#759)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 11:19:00 +02:00
Adam Shiervani c68e15bf89
Clean up Virtual Keyboard styling (#761)
* Clean up Virtual Keyboard styling

Make the header a bit taller
Add keyboard layout name to header
Make the detached keyboard render smaller key text so you can read them.
Updated the settings text for keyboard layout.

* Add the key graphics and missing keys

* style(ui): add cursor-pointer class to Button component for better UX

* refactor(ui): Improve header styling and detach bug

- Remove unused AttachIcon and related SVG asset.
- Replace icon usage with a styled LinkButton to improve consistency.
- Simplify and reformat VirtualKeyboard component for better readability.

* refactor(ui): Hide keyboard layout settings on mobile and fix minor styling

---------

Co-authored-by: Marc Brooks <IDisposable@gmail.com>
2025-09-03 11:33:07 +02:00
Marc Brooks 94521ef6db
chore/Deprecate browser mount (#752)
* chore/Deprecate browser mount

No longer supported.

* Remove device-side go code

* Removed diskChannel and localFile

* Removed RemoteVirtualMediaState.WebRTC

Also removed dead go code (to make that lint happy!)
2025-08-28 23:46:55 +02:00
Marc Brooks 66cccfe9e1
Add application icon for Safari and saved-bookmarks (#749) 2025-08-28 12:01:04 +02:00
Adam Shiervani a42384fed6
enhancement: add new EDID for DELL iDRAC (#693) 2025-08-27 10:16:17 +02:00
Marc Brooks 3ec243255b
Add ability to track modifier state on the device (#725)
Remove LED sync source option and add keypress reporting while still working with devices that haven't been upgraded
We return the modifiers as the valid bitmask so that the VirtualKeyboard and InfoBar can represent the correct keys as down. This is important when we have strokes like Left-Control + Right-Control + Keypad-1 (used in switching KVMs and such).
Fix handling of modifier keys in client and also removed the extraneous resetKeyboardState.
Manage state to eliminate rerenders by judicious use of useMemo.
Centralized keyboard layout and localized display maps
Move keyboardOptions to useKeyboardLayouts
Added translations for display maps.
Add documentation on the legacy support.

Return the KeysDownState from keyboardReport
Clear out the hidErrorRollOver once sent to reset the keyboard to nothing down.
Handles the returned KeysDownState from keyboardReport
Now passes all logic through handleKeyPress.
If we get a state back from a keyboardReport, use it and also enable keypressReport because we now know it's an upgraded device.
Added exposition on isoCode management

Fix de-DE chars to reflect German E2 keyboard.
https://kbdlayout.info/kbdgre2/overview+virtualkeys

Ran go modernize
Morphs Interface{} to any
Ranges over SplitSeq and FieldSeq for iterating splits
Used min for end calculation remote_mount.Read
Used range 16 in wol.createMagicPacket
DID NOT apply the Omitempty cleanup.

Strong typed in the typescript realm.
Cleanup react state management to enable upgrading Zustand
2025-08-26 17:09:35 +02:00
Marc Brooks 05bf61152b
feature/Faster loading (#746)
* feature/Faster loading

This refactors all the hot-path components for an already-setup JetKVM so that we only
lazy-load the components off the main path. This greatly reduces the initial .JS size at
initial page load from a single file of

dist/assets/index-D4LZBdmN.js                          1,969.46 kB │ gzip: 570.08 kB

To these files, of which the hot-path only loads the 963.29 kB index for a savings of
just over a megabyte (180kb savings in gzip).

dist/assets/login-DA9KVVX1.js                                     0.64 kB │ gzip:   0.40 kB
dist/assets/signup-Bb_VCzY1.js                                    0.67 kB │ gzip:   0.40 kB
dist/assets/devices._id.settings.macros.add-DpBnq5E0.js           0.82 kB │ gzip:   0.55 kB
dist/assets/devices._id.settings.appearance-VHd5B2H2.js           0.91 kB │ gzip:   0.52 kB
dist/assets/devices._id.settings.general.reboot-DsRBP5Dd.js       1.01 kB │ gzip:   0.52 kB
dist/assets/UpdateInProgressStatusCard-DJCdJo-z.js                1.05 kB │ gzip:   0.54 kB
dist/assets/devices._id.other-session-BpXjEP6K.js                 1.09 kB │ gzip:   0.56 kB
dist/assets/devices.already-adopted-BC1xoKrN.js                   1.16 kB │ gzip:   0.57 kB
dist/assets/Checkbox-DGO277w5.js                                  1.24 kB │ gzip:   0.64 kB
dist/assets/devices._id.settings.keyboard-Cno0kaUr.js             1.59 kB │ gzip:   0.81 kB
dist/assets/devices._id.settings.general._index-CNW0Pj5B.js       1.71 kB │ gzip:   0.76 kB
dist/assets/devices._id.settings.macros.edit-BYQGw2CJ.js          1.92 kB │ gzip:   1.00 kB
dist/assets/ConfirmDialog-lzerZkf7.js                             2.77 kB │ gzip:   1.13 kB
dist/assets/AuthLayout-H4vGP3TU.js                                2.96 kB │ gzip:   1.41 kB
dist/assets/AutoHeight-B-TU1fRg.js                                4.07 kB │ gzip:   1.63 kB
dist/assets/devices._id.settings.video-O3qJWstQ.js                5.68 kB │ gzip:   2.17 kB
dist/assets/devices._id.settings.advanced-Drd_iPzw.js             5.98 kB │ gzip:   2.08 kB
dist/assets/devices._id.settings.macros-D3unB0uf.js               6.05 kB │ gzip:   2.13 kB
dist/assets/devices._id.settings.access.local-auth-BltQI66N.js    6.17 kB │ gzip:   1.54 kB
dist/assets/devices._id.settings.mouse-CAwDHqxl.js               10.02 kB │ gzip:   3.59 kB
dist/assets/devices._id.settings.general.update-jkzXML1U.js      10.22 kB │ gzip:   2.67 kB
dist/assets/devices._id.settings.hardware-B7v3lfwA.js            10.41 kB │ gzip:   3.03 kB
dist/assets/devices._id.settings.network-CJYfzFt2.js             25.23 kB │ gzip:   7.21 kB
dist/assets/devices._id.mount-4AT1reig.js                        43.92 kB │ gzip:  19.81 kB
dist/assets/MacroForm-BQpdQgFn.js                                49.75 kB │ gzip:  16.25 kB
dist/assets/connectionStats-NM-PZeH3.js                         400.14 kB │ gzip: 110.33 kB
dist/assets/Terminal-Dgo3sfr-.js                                425.05 kB │ gzip: 109.49 kB
dist/assets/index-w6H2Mz3f.js                                   963.29 kB │ gzip: 294.20 kB

* Remove feral async declarations on things that have no await
2025-08-26 16:55:08 +02:00
Marc Brooks d952480c2a
fix: useJsonRpc "any" issue
PR #743 didn't have all the files included in the commit.
Mea culpa, many apologies.
2025-08-24 11:40:43 +02:00
Alex Ballas 8e27cd6b60
chore: ensure that rpc messages get processed sequentially and avoid phantom and repeated key presses (#744) 2025-08-22 20:15:46 +02:00
Marc Brooks bb87fb5a1a
fix: compiler error (#743)
Using { send } gives the resp a type instead of any
2025-08-22 12:15:27 +02:00
Adam Shiervani 8527b1eff1
feat: improve custom jiggler settings and add timezone support (#742)
* feat: add timezone support to jiggler and fix custom settings persistence

- Add timezone field to JigglerConfig with comprehensive IANA timezone list
- Fix custom settings not loading current values
- Remove business hours preset, add as examples in custom settings
- Improve error handling for invalid cron expressions

* fix: format jiggler.go with gofmt

* fix: add embedded timezone data and validation

- Import time/tzdata to embed timezone database in binary
- Add timezone validation in runJigglerCronTab() to gracefully fallback to UTC
- Add timezone to debug logging in rpcSetJigglerConfig
- Fixes 'unknown time zone' errors when system lacks timezone data

* refactor: add timezone field comments from jiggler options

* chore: move tzdata to backend

* refactor: fix JigglerSetting linting

- Adjusted useEffect dependency to include send function for better data fetching
- Modified layout classes for improved responsiveness and consistency
- Cleaned up code formatting for better readability

---------

Co-authored-by: Siyuan Miao <i@xswan.net>
2025-08-19 16:50:42 +02:00
Serhii 9f573200b1
Update mount list for new Debian 13 release (#739)
* Update mount list for new Debian 13 release

* Keep Debian 12 Bookworm as old-stable release
2025-08-18 11:20:20 +02:00
Marc Brooks 608f69db13
Lint fix from last merge. (#733) 2025-08-13 11:13:42 +02:00
jackislanding f7b8efde7c
Added crontab scheduler for jiggler (#316) 2025-08-12 20:50:03 +02:00
Marc Brooks 33ac9fe0b6
chore(ui)/package upgrades (#724)
| Package                          | From     | To           |
| -------------------------------- | ----------- | ------------ |
| @headlessui/react        | 2.2.4     | 2.2.7        |
| framer-motion              | 12.23.3 | 12.23.12 |
| react                                | 19.1.0   | 19.1.1     |
| react-dom                       | 19.1.0   | 19.1.1    |
| react-simple-keyboard | 3.8.93   | 3.8.106  |
|@eslint/js                         | 9.30.1   | 9.32.0    |
| @types/react                  | 19.1.8   | 19.1.9    |
| @types/react-dom         | 19.1.8   | 19.1.9   |
|eslint                                 | 9.30.1   | 9.32.0    |
|eslint-config-prettier       | 10.1.5   | 10.1.8   |
| typescript                         |  5.8.3    | 5.9.2     |
2025-08-12 11:24:05 +02:00
Silke pilon 55fbd6c359 docs: add comprehensive DEVELOPMENT.md for JetKVM (#692)
* docs: add comprehensive DEVELOPMENT.md for JetKVM

Add a detailed development guide covering setup, project structure,
and workflows for both full device and frontend-only development.

Include prerequisites, build commands, deployment scripts, environment
variables, and testing instructions to streamline onboarding and
contributions.

This improves developer experience and standardizes development
practices across the project.

* docs: clean up DEVELOPMENT.md by removing outdated sections

Remove the Custom Build Tags and Release Process sections to simplify
the documentation and avoid confusion with deprecated build and release
instructions. Focus the document on current performance profiling steps.

* docs: rewrite DEVELOPMENT.md for clearer setup and usage

Revise the JetKVM development guide to improve clarity and usability.
Simplify the introduction and reorganize prerequisites and setup steps
to help new developers get started quickly. Add explicit instructions for
cloning, tool verification, deployment, and testing. Streamline common
tasks sections with clear commands for UI and backend development,
testing, and log viewing. Update project layout overview for easier
navigation. These changes reduce onboarding friction and enhance the
developer experience.

* docs: remove duplicate "Get Started" header in DEVELOPMENT.md

Clean up the DEVELOPMENT.md file by deleting the repeated
"Get Started" header

* docs: add recommended development environment section

Add guidance recommending Linux or macOS for development and suggest
using WSL on Windows to ensure compatibility with shell scripts and
build tools. This improves the developer experience and reduces setup
issues across different operating systems.

* docs: add links to prerequisites in DEVELOPMENT.md

Update DEVELOPMENT.md to URLs for Go, Node.js, Git, and SSH
access prerequisites. This improves clarity and helps developers quickly
find installation resources.
2025-07-16 00:04:41 +02:00
Aveline cff3ddad29
chore: add issue templates (#686)
* chore: add issue templates

* chore: add remote device info
2025-07-14 18:10:49 +02:00
Marc Brooks b4525b8760
chore/ Fix go lint error (#683) 2025-07-11 23:41:05 +02:00
Marc Brooks 5a3ce2d6ec
chore(ui) Upgrade packages (#682) 2025-07-11 23:41:01 +02:00
Ben Kochie f1953fddbc
chore: add metrics for configuration and WOL (#193)
* Configuration load success/timestamp.
* Wake-on-Lan packets/errors.

Signed-off-by: SuperQ <superq@gmail.com>
2025-07-11 18:14:32 +02:00
Marc Brooks 9ba97ebe67
chore(ui): Clean new keyboard option (#495)
Fixed the Tailwind CSS syntax for `in` (nested) selector
Added missing React dependency for `useEffect`
2025-07-11 17:56:03 +02:00
Marc Brooks 5fb8d866ba
refactor(ui): Refactor the keyboardLayouts (#497)
Add missing keyboard mappings for most layouts
Change  pasteModel.tsx to use the new structure and vastly clarified the way that keys are emitted.
Make each layout export just the KeyboardLayout object (which is a package of isoCode, name, and chars)
Made keyboardLayouts.ts export a function to select keyboard by `isoCode`, export the keyboards as label . value pairs (for a select list) and the list of keyboards.
Changed devices.$id.settings.keyboard.tsx use the exported keyboard option list.
2025-07-11 17:49:06 +02:00
rmschooley 3359f8fca4
Remove Out Endpoint Descriptors from Absolute Mouse and Relative Mouse (#542)
* Update hid_mouse_absolute.go

Added attribute to remove unnecessary out endpoint.

* Update hid_mouse_relative.go

Added attribute to remove unnecessary out endpoint.

* Update hid_keyboard.go

Added attribute to explicitly keep currently needed out endpoint and to make listed attributes consistent across the keyboard and mouse devices.

---------

Co-authored-by: Aveline <352441+ym@users.noreply.github.com>
2025-07-11 17:43:37 +02:00
Daniel Collins ef95643a86
Implement HTTP proxy option (#515). (#521)
This commit adds a "Proxy" field to the network settings screen, which
can be used to specify a HTTP proxy for any outgoing requests from the
device.
2025-07-11 17:43:22 +02:00
Daniel Collins 1fc603b553
Add -i/--install option to dev_deploy.sh (#527)
Running `dev_deploy.sh -i` will build the app in release mode and
install it to the device for longer term development/testing or just
running a custom variant of the app.
2025-07-11 17:09:49 +02:00
Bradley Wilson-Hunt aada3d95e0
feat(metrics): adding prometheus metrics for dc power extension (#556) 2025-07-11 17:04:41 +02:00
Aveline d704fcc6c7
feat: add command to show version (#604)
* feat: add -version flag for jetkvm_app

* move code to kvm package
2025-07-11 11:32:46 +02:00
Siyuan Miao ab3dda6dee chore(network): fix linting error errcheck 2025-07-11 11:30:02 +02:00
Marc Brooks 4a23f22a55
chore: upgrade ui packages (#571)
Move to current on all non-major upgrades
Fixes the tainted hardware WebGL video renderer if video settings are at default (1.0) values

## Runtime

|  Package | From  | To  |
|---|---|---|
| @headlessui/react | 2.2.3 | 2.2.4 |
| @vitejs/plugin-basic-ssl | 2.0.0 | 2.1.0 |
| cva | 1.0.0-beta.3 | 1.0.0-beta.4 |
| focus-trap-react | 11.0.3 | 11.0.4 |
| framer-motion | 12.11.5 | 12.23.0 |
| react-simple-keyboard | 3.8.72 | 3.8.89 |
| tailwind-merge | 3.3.0 | 3.3.1 |
| validator | 13.15.0 | 13.15.15 |

## Dev

|  Package | From  | To  |
|---|---|---|
| @eslint/compat | 1.2.9 | 1.3.1 |
| @eslint/js | 9.26.0 | 9.30.1 |
| @tailwindcss/postcss | 4.1.7 | 4.1.11 |
| @tailwindcss/vite | 4.1.8 | 4.1.10 |
| @types/react | 19.1.4 | 19.1.8  |
| @types/react-dom | 19.1.5 | 19.1.6 |
| @types/validator | 13.15.0 | 13.15.2 |
| @typescript-eslint/eslint-plugin | 8.32.1 | 8.34.0 |
| @typescript-eslint/parser | 8.32.1 | 8.35.1  |
| @vitejs/plugin-react-swc | 3.9.0 | 3.10.2 |
| eslint | 9.26.0 | 9.30.1 |
| globals | 16.1.0 | 16.3.0 |
| postcss  | 8.5.3 | 8.5.6 |
| prettier | 3.5.3 | 3.6.2 |
| prettier-plugin-tailwindcss | 0.6.11 | 0.6.13 |
| tailwindcss | 4.1.7 | 4.1.11 |
2025-07-11 08:06:17 +02:00
Marc Brooks 11a095c0f6
feat(ntp): enhances time sync with DHCP NTP and custom servers (#625)
* Ensure the mDNS mode is set every time network state changes

Eliminates (mostly) duplicate code

* Add custom NTP and HTTP time sync servers

Since the ordering may have been previously defaulted and saved as "ntp,http", but that was being ignored and fallback-defaults were being used, in Ordering, `ntp` means use the fallback NTP servers, and `http` means use the fallback HTTP URLs. Thus `ntp_user_provided` and `http_user_provided` are the user specified static lists.

* Add support for using DHCP-provided NTP server
2025-07-11 08:04:19 +02:00
Aveline 584768bacf
chore: remove /device/ui-config.js endpoint (#678) 2025-07-10 12:04:47 +02:00
adammkelly 488276f3a8
feat(ui): reboot device (#421) (#505) 2025-07-10 00:02:13 +02:00
Patrick Hofmann 7267347261
feat(dc-power-extension): power restore mode in DCPowerControl component (#672)
* DC-extension: Supporting to set the power restore mode in DCPowerControl component

* fixing lint issue
2025-07-09 23:58:46 +02:00
Marc Brooks 393bc122d4
chore: fix the base usb configuration (#610)
In reviewing the config.go settings for idProduct and bcdDevice are not formatted correctly. All examples on GitHub have 0x0104 and 0x0100 respectively. The idProduct value gets overwritten with valid values when you change the configuration (because they are correct in the options), but until you do the USB initialization will not be correct.
2025-07-09 23:57:51 +02:00
Marc Brooks 6d13e1be12
chore: remove ActionBar-Ctrl-Alt-Del (#669) 2025-07-09 23:53:44 +02:00
Siyuan Miao bde0a086ab chore: bump to 0.4.7 2025-07-03 19:03:46 +02:00
Aveline 9c9335da31
chore: typo 'supression' should be 'suppression' (#671) 2025-07-03 17:28:00 +02:00
dependabot[bot] 090e0b4b47
build(deps): bump actions/setup-go from 4.2.1 to 5.5.0 (#666)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4.2.1 to 5.5.0.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](https://github.com/actions/setup-go/compare/v4.2.1...v5.5.0)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:21:11 +02:00
dependabot[bot] 48a7a638a3
build(deps): bump github.com/pion/webrtc/v4 from 4.1.2 to 4.1.3 (#667)
Bumps [github.com/pion/webrtc/v4](https://github.com/pion/webrtc) from 4.1.2 to 4.1.3.
- [Release notes](https://github.com/pion/webrtc/releases)
- [Changelog](https://github.com/pion/webrtc/blob/master/.goreleaser.yml)
- [Commits](https://github.com/pion/webrtc/compare/v4.1.2...v4.1.3)

---
updated-dependencies:
- dependency-name: github.com/pion/webrtc/v4
  dependency-version: 4.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:21:04 +02:00
dependabot[bot] e4f6a713a5
build(deps): bump github.com/Masterminds/semver/v3 from 3.3.1 to 3.4.0 (#668)
Bumps [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver) from 3.3.1 to 3.4.0.
- [Release notes](https://github.com/Masterminds/semver/releases)
- [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Masterminds/semver/compare/v3.3.1...v3.4.0)

---
updated-dependencies:
- dependency-name: github.com/Masterminds/semver/v3
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-03 17:19:27 +02:00
Aveline 9fcf74b398
fix(display): reset display state after native binary is restarted (#654)
* fix(usbgadget): add lock for logWithSupression

* fix(display): reset display state after native binary is restarted
2025-07-03 17:18:09 +02:00
Marc Brooks 353099001f
build: upgrade packages and move to GitHub runner
* Move to GitHub runner for build action

Lint action

* Move to go 1.24.4

* Upgrade go packages

 github.com/coreos/go-oidc/v3  v3.11.0 -> v3.14.1
github.com/creack/pty v1.1.23 -> v1.1.24
github.com/gwatts/rootcerts  v0.0.0-20240401182218-3ab9db955caf -> v0.0.0-20250601184604-370a9a75f341
github.com/pion/logging v0.2.3 -> v0.2.4
github.com/pion/webrtc/v4 v4.0.16 -> v4.1.2
github.com/prometheus/common v0.62.0 -> v0.65.0
github.com/vishvananda/netlink v1.3.1 -> v1.3.1
go.bug.st/serial v1.6.2 -> v1.6.4
2025-07-01 13:39:41 +02:00
Aveline 73f5659618
fix(usbgadget): add lock for logWithSupression (#653) 2025-07-01 12:54:38 +02:00
iain MacDonnell 960f555790
fix: ensure certStore is initialised when adding custom cert (#639)
Fixes: #612
2025-06-30 18:58:39 +02:00
Siyuan Miao fe127ed41c chore: bump version to 0.4.6 2025-06-25 13:28:09 +02:00
Aveline 3e7d8fb0f5
feat(usbgadget): suppress duplicate error logs (#630). 2025-06-20 18:52:37 +02:00
Marc Brooks 0d7f47c109
fix(ui) firefox permissions error handling (#631) 2025-06-20 14:24:54 +02:00
iain MacDonnell 254c001572
fix: keyboard_layout default config (en-US/en_US) (#633) 2025-06-20 14:13:36 +02:00
Aveline 6f037a832d
feat(native): restart jetkvm_native automatically (#629) 2025-06-20 14:08:19 +02:00
Marc Brooks ccba27cedd
chore(mDNS): ensure the mDNS mode is set every time network state changes (#624)
Eliminates (mostly) duplicate code
2025-06-19 09:29:21 +02:00
ronskvm cf9c6e5cc8
chore(hid): change absolute mouse usb interface descriptor's subclass field to zero
Changed absolute mouse usb interface descriptor's subclass field to zero.
2025-06-19 09:11:21 +02:00
Siyuan Miao ffeaf8cced ui(actionBar): remove Ctrl + Alt + Del in favor of Keyboard Macros 2025-06-19 00:35:17 +02:00
Caedis a1ed28c676
build: allow the versions in the Makefile to be overwritten with ENV variables (#619) 2025-06-16 11:30:57 +02:00
Aveline 1674a6666c
fix(ui/cloud): missing SettingsNetworkRoute (#608) 2025-06-13 19:42:09 +02:00
Siyuan Miao 772527849f chore: bump version to 0.4.4 2025-06-13 00:51:09 +02:00
Aveline 19871517ec
fix(timesync): queryMultipleHttp hanging if all servers are unreachable (#605) 2025-06-13 00:49:26 +02:00
Aveline b822b73a03
chore: use pure Go resolver and remove CGO_ENABLED=0 (#603) 2025-06-12 14:04:51 +02:00
Ben Kochie 58ade3b551
fix: Update metric naming (#602)
Fix up metric names to follow best practice naming conventions[0].

[0]: https://prometheus.io/docs/practices/naming/

Signed-off-by: SuperQ <superq@gmail.com>
2025-06-12 13:41:43 +02:00
Siyuan Miao 3cc119c646 chore: bump version to 0.4.3 2025-06-12 09:35:34 +02:00
Aveline c494cf26ef
chore: disable cgo (#601) 2025-06-12 09:29:31 +02:00
Aveline 4bfbc66ea7
chore: upgrade go from 1.24.3 to 1.24.4 (#600) 2025-06-12 08:53:58 +02:00
dependabot[bot] 0636cc9aff
build(deps): bump github.com/hanwen/go-fuse/v2 from 2.5.1 to 2.8.0 (#590)
Bumps [github.com/hanwen/go-fuse/v2](https://github.com/hanwen/go-fuse) from 2.5.1 to 2.8.0.
- [Commits](https://github.com/hanwen/go-fuse/compare/v2.5.1...v2.8.0)

---
updated-dependencies:
- dependency-name: github.com/hanwen/go-fuse/v2
  dependency-version: 2.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:50:14 +02:00
dependabot[bot] 4f6026e182
build(deps): bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1 (#593)
Bumps [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver) from 3.3.0 to 3.3.1.
- [Release notes](https://github.com/Masterminds/semver/releases)
- [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Masterminds/semver/compare/v3.3.0...v3.3.1)

---
updated-dependencies:
- dependency-name: github.com/Masterminds/semver/v3
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:49:56 +02:00
dependabot[bot] 89f3bc8c40
build(deps): bump github.com/go-jose/go-jose/v4 in the go_modules group (#596)
Bumps the go_modules group with 1 update: [github.com/go-jose/go-jose/v4](https://github.com/go-jose/go-jose).


Updates `github.com/go-jose/go-jose/v4` from 4.0.2 to 4.0.5
- [Release notes](https://github.com/go-jose/go-jose/releases)
- [Changelog](https://github.com/go-jose/go-jose/blob/main/CHANGELOG.md)
- [Commits](https://github.com/go-jose/go-jose/compare/v4.0.2...v4.0.5)

---
updated-dependencies:
- dependency-name: github.com/go-jose/go-jose/v4
  dependency-version: 4.0.5
  dependency-type: indirect
  dependency-group: go_modules
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:46:11 +02:00
dependabot[bot] 91171d9bf7
build(deps): bump golang.org/x/net from 0.40.0 to 0.41.0 (#580)
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.40.0 to 0.41.0.
- [Commits](https://github.com/golang/net/compare/v0.40.0...v0.41.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-version: 0.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:45:05 +02:00
dependabot[bot] 0d955a8d95
build(deps): bump github.com/beevik/ntp from 1.3.1 to 1.4.3 (#585)
Bumps [github.com/beevik/ntp](https://github.com/beevik/ntp) from 1.3.1 to 1.4.3.
- [Release notes](https://github.com/beevik/ntp/releases)
- [Changelog](https://github.com/beevik/ntp/blob/main/RELEASE_NOTES.md)
- [Commits](https://github.com/beevik/ntp/compare/v1.3.1...v1.4.3)

---
updated-dependencies:
- dependency-name: github.com/beevik/ntp
  dependency-version: 1.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:42:59 +02:00
dependabot[bot] a40d26ab9b
build(deps): bump github.com/prometheus/procfs from 0.15.1 to 0.16.1 (#592)
Bumps [github.com/prometheus/procfs](https://github.com/prometheus/procfs) from 0.15.1 to 0.16.1.
- [Release notes](https://github.com/prometheus/procfs/releases)
- [Commits](https://github.com/prometheus/procfs/compare/v0.15.1...v0.16.1)

---
updated-dependencies:
- dependency-name: github.com/prometheus/procfs
  dependency-version: 0.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:42:25 +02:00
dependabot[bot] 9bd587b52e
build(deps): bump github.com/prometheus/client_golang (#588)
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.21.0 to 1.22.0.
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prometheus/client_golang/compare/v1.21.0...v1.22.0)

---
updated-dependencies:
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:42:14 +02:00
dependabot[bot] 7ef9a7ba93
build(deps): bump github.com/gin-contrib/logger from 1.2.5 to 1.2.6 (#589)
Bumps [github.com/gin-contrib/logger](https://github.com/gin-contrib/logger) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/gin-contrib/logger/releases)
- [Changelog](https://github.com/gin-contrib/logger/blob/master/.goreleaser.yaml)
- [Commits](https://github.com/gin-contrib/logger/compare/v1.2.5...v1.2.6)

---
updated-dependencies:
- dependency-name: github.com/gin-contrib/logger
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:42:08 +02:00
dependabot[bot] bfbc1a5a57
build(deps): bump actions/setup-go from 4 to 5 (#577)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](https://github.com/actions/setup-go/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-12 08:40:53 +02:00
Ben Kochie abb4350316
chore: enable dependabot (#256)
Enable dependabot to auto-update dependencies.
* Update montly to avoid too much PR noise.
* Enable updates for Go modules.
* Enable updates for GitHub Actions.
* Enable updates for NPM in /ui.

Signed-off-by: SuperQ <superq@gmail.com>
2025-06-12 08:36:31 +02:00
Marc Brooks 52825da68d
Upgrade pion modules to fix CVE (#572)
Fixes #570

## Required

|  Package | From  | To  |
|---|---|---|
| github.com/pion/logging | v0.2.2 | v0.2.3 |
| github.com/pion/wrbrtc/v4 | v4.0.0 | v4.0.16 |

## Indirect

|  Package | From  | To  |
|---|---|---|
| github.com/pion/datachannel | v1.5.9 | v1.5.10 |
| github.com/pion/dtls | v3.0.3 | v3.0.6 |
| github.com/pion/ice/v4 | v4.0.2 | v4.0.10 |
| github.com/pion/interceptor | v0.1.37 | v0.1.40 |
| github.com/pion/rtcp | v1.2.14 | v1.2.15 |
| github.com/pion/rtp | v1.8.9 | v1.8.18 |
| github.com/pion/sctp | v1.8.33 | v1.8.39 |
| github.com/pion/sdp | v3.0.9| v3.0.13 |
| github.com/pion/srtp | v3.0.4 | v3.0.5 |
| github.com/pion/turn | v4.0.0 | v4.0.2 |
2025-06-12 08:34:19 +02:00
ariedel87 9d2abd9fb0
feat(video): add video enhancement settings for saturation, brightness, and contrast (#557) 2025-06-04 18:44:37 +02:00
Siyuan Miao 52dd675e52 chore: fix eslint errors 2025-06-03 02:19:57 +02:00
John e95e30e48c
Re-add scroll blocking/throttling (#544) 2025-06-03 01:51:38 +02:00
John eaa58492ab
fix: Log spam when using a web terminal #547 (#550) 2025-06-03 01:51:30 +02:00
Marc Brooks f4bb47c544
fix(ui): Fix full-screen keyboard lock issues. (#535)
When the keyboard lock is supposed to be active (in full-screen mode), hitting the escape key (NOT long-pressing) should NOT dismiss the full-screen mode, and should send the Escape key through to the remote.

- Added awaits to the browser calls that need to complete in order.
- Cleaned up (mostly) duplicate code in the Absolute/Relative mouse handling
- Ensure we don't overrun any existing keyboard lock or pointer lock
- Release the keyboard lock when leaving full-screen
- Per standards, we need to acquire the keyboard and pointer locks before entering full-screen or the user may get multiple messages about exiting.
- Fixed all the missing/excess React dependencies.
- Moved the pointer lock bar up so it is visible.
- Somewhere along the way, the prompt to click the video when in relative-mouse-mode stopped being visible, restored it's visibility
- Fixed all the "should be readonly" warnings.
2025-06-03 01:28:35 +02:00
Alex Ballas a7693df92c
fix: the screen doesn't dim or turn off
* Fix for #531

Fix for https://github.com/jetkvm/kvm/issues/531

* typo

* Skip processing if lease hasn't changed to avoid unnecessary wake-ups

* Add comment to clarify the need to stop the tickers
2025-06-03 01:28:14 +02:00
Marc Brooks 8d77d75294
chore(ui): Clean up warnings (#536) 2025-05-30 15:01:32 +02:00
Alex Goodkind 718b343713
feat: add local web server loopback mode configuration (#511)
* feat: add local web server loopback mode configuration

- Introduced a new configuration option `LocalWebServerLoopbackOnly` to restrict the web server to listen only on the loopback interface.
- Added RPC methods `rpcGetLocalWebServerLoopbackOnly` and `rpcSetLocalWebServerLoopbackOnly` for retrieving and updating this setting.
- Updated the web server startup logic to bind to the appropriate address based on the new configuration.
- Modified the `LocalDevice` struct to include the loopback setting in the response.

* remove extra logs

* chore: add VSCode extensions for improved development environment

* refactor: rename LocalWebServerLoopbackOnly to LocalLoopbackOnly

- Updated the configuration struct and related RPC methods to use the new name `LocalLoopbackOnly` for clarity.
- Adjusted the web server binding logic and device response structure to reflect this change.

* feat: add loopback-only mode functionality to UI

- Implemented a new setting for enabling loopback-only mode, restricting web interface access to localhost.
- Added a confirmation dialog to warn users before enabling this feature.
- Updated the ConfirmDialog component to accept React nodes for the description prop.
- Refactored imports and adjusted component structure for clarity.

* refactor: optimize device settings handlers for better performance

- Refactored the `handleDevChannelChange` and `handleLoopbackOnlyModeChange` functions to use `useCallback` for improved performance and to prevent unnecessary re-renders.
- Consolidated the logic for applying loopback-only mode into a separate `applyLoopbackOnlyMode` function, enhancing code clarity and maintainability.
- Updated the confirmation flow for enabling loopback-only mode to ensure user warnings are displayed appropriately.
2025-05-27 17:28:51 +02:00
Marc Brooks 1f7c5c94d8
feat(ui): Add Ctrl+Alt+Del to the action bar (#498)
Since this is the sort of thing we do all the time, make it one-click away
2025-05-25 14:19:42 +02:00
Marc Brooks 55d7f22c47
chore(ui): Removed unused DeviceSettingState (#496)
Now that we don't do any mouse/trackpad sensitivity settings, this whole interface is unused.
2025-05-25 14:19:31 +02:00
Aveline a28676cd94
feat(websecure): add support for ed25519 certificates (#513) 2025-05-25 11:09:58 +02:00
ariedel87 2ec061b3a8
feat(Keyboard): Hide Pressed Keys (#518) 2025-05-25 11:09:48 +02:00
Alex Goodkind 7e64a529f8
chore: add VSCode extensions for improved development environment (#509) 2025-05-23 14:38:15 +02:00
Marc Brooks 1b5062c504
fix(ui): Default the keyboardLayout to en-US if not set (#512)
The recent fix to PasteModal will silently fail a paste if the keyboardLayout hasn't been selected in the settings yet, then when you look in Settings it looks like it's set to Belgian, but it's really just blank. Set it to default to en-US in both these places so it works like it did previously.

Fixes #492
2025-05-23 13:21:53 +02:00
Aveline c1d771cced
feat: allow user to disable keyboard LED synchronization (#507)
* feat: allow user to disable keyboard LED synchronization

* Update ui/src/hooks/stores.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-05-23 00:59:02 +02:00
adammkelly 019934d33e
chore(ui): Allow mac address copying (#504) (#506) 2025-05-23 00:56:50 +02:00
Aveline 0c5c69f2d3
feat: sync keyboard led status (#502) 2025-05-23 00:12:18 +02:00
Siyuan Miao 0cee284561 chore: bump version to 0.4.1 2025-05-22 11:17:00 +02:00
Siyuan Miao 2272247668 chore: fix linter issues 2025-05-22 11:16:30 +02:00
Aveline 21e30c60ea
fix: display scaling broken (#499) 2025-05-22 11:01:28 +02:00
Aveline 25e30f6420
refactor: remove init functions (#489) 2025-05-22 10:29:16 +02:00
Daniel Lorch b91a995918
feat(ui): enable multiple keyboard layouts for "paste text" to remote host (#405)
* Enable multiple keyboard layouts for paste text from host

* Trema is the more robust method for capital umlauts

* Improve error handling and pre-loading

* Improve accent handling

* Remove obscure Alt-Gr keys, unsure if they are supported everywhere

* Add Swiss French

* Change line ordering

* Fix whitespace

* Add French (France)

* Add English (UK)

* Add Swedish

* Add Spanish

* Fix fr_FR special characters

* Add more keys to Spanish

* Remove default value shift: false

* Add Norwegian

* Operator precedence 🤦

* Add Italian

* Add Czech

* Move guard statements outside of loop

* Move language name definitions into the keyboard layout files

* Change the locale names to their native language

German->Deutsch et. al.

* Move hold key handling into Go backend analogous to https://www.kernel.org/doc/Documentation/usb/gadget_hid.txt

* Remove trailing whitespace

* Fix

* Add Belgisch Nederlands

* Add JSONRPC handling

* Use useSettingsStore

* Revert "Move hold key handling into Go backend analogous to https://www.kernel.org/doc/Documentation/usb/gadget_hid.txt"

This reverts commit 146cee9309.

* Move FeatureFlag to navigation

* Fix: flip Y/Z

* Add useEffect dependencies

* Embolden language

* Add to useCallback dependencies

---------

Co-authored-by: Marc Brooks <IDisposable@gmail.com>
2025-05-21 17:40:48 +02:00
Marc Brooks 590c606bb1
Handle panics when calling the RPCHandler instead of dying (#488)
Added a wrapper around the callRPCHandler function to recover from panic and translate that to and error so that the RPC thread doesn't just die when something malformed comes in. This should keep the Jet flying.
2025-05-21 15:18:11 +02:00
Siyuan Miao a60e1a5e98 chore: bump version to 0.4.0 2025-05-20 20:38:00 +02:00
Siyuan Miao 4e90883bf8 build: enable trimpath for both dev and prod releases 2025-05-20 20:28:40 +02:00
Adam Shiervani 8eaa86ae45
style(ui): update styling for access and network settings components (#487)
* style(ui): update styling for access and network settings components

* fix(ui): simplify conditional rendering in network settings component
2025-05-20 20:26:24 +02:00
Siyuan Miao 354941b54d build: add trimpath to go build command 2025-05-20 20:18:21 +02:00
Aveline 4b91c758fa
chore: upgrade golang to 1.24.3 and nodejs to 22.x (#483) 2025-05-20 19:08:10 +02:00
Adam Shiervani 222a8470a5
refactor: network settings UI (#486)
* feat(ui): update prettier configuration and quote styles

- Add cx to tailwind functions
- Set tailwind stylesheet path
- Convert single quotes to double quotes in CSS
- Add prettier ignore comments for animation utilities

* refactor(ui): extract network information into separate components

- Create DhcpLeaseCard component
- Create Ipv6NetworkCard component

* style(ui): refine component styling and layout

- Add padding to AutoHeight component
- Improve lifetime label display format
- Enhance network information card layouts

* style(ui): enhance checkbox and radio button styling

- Update Checkbox component to use form-checkbox class
- Refactor radio button classes for consistency across components

* style(ui): Add opacity for fade-in animations

* refactor(ui): enhance Modal and network settings components

- Add stable scrollbar gutter to Modal component
- Refactor custom domain input handling and layout adjustments
2025-05-20 15:22:08 +02:00
Aveline 860327bfcd
chore: always return local version if update check fails (#485) 2025-05-20 14:57:57 +02:00
Aveline 66fbda864a
chore: reset usb after updating config (#482)
* fix(usbgadget): do not panic if a change isn't found

* chore(usbgadget): rebind usb after updating config
2025-05-20 01:29:16 +02:00
Aveline a0f6d01465
fix(usbgadget): do not panic if a change isn't found (#481)
* fix(usbgadget): do not panic if a change isn't found

* chore(usbgadget): rebind usb after updating config
2025-05-20 00:34:32 +02:00
Siyuan Miao b4dd4961fc fix: jetkvm_app path is now bin/jetkvm_app 2025-05-19 23:59:10 +02:00
Aveline eeb103adf9
fix: configFS might not be mounted if the directory exists (#479) 2025-05-19 23:59:02 +02:00
Siyuan Miao 8cf6b40dc3 build: set up golang (smoketest) 2025-05-19 23:25:30 +02:00
Siyuan Miao c6b05d4abe build: add device-tests 2025-05-19 23:23:38 +02:00
Siyuan Miao 51814dcc5e fix: add missing files for building unit tests 2025-05-19 23:05:12 +02:00
Aveline 5ba08de566
fix: unit test not returning error when test fails
* fix: unit test not returning error when test fails

* chore: add unit test to smoketest.yml

* fix: make linter happy
2025-05-19 22:51:11 +02:00
Adam Shiervani 3f320e50f7
refactor: remove scroll sensitivity functionality and clean up related code (#477)
- Removed scroll sensitivity state and associated functions from jsonrpc.go and WebRTCVideo component.
- Cleaned up device settings store by eliminating unused scroll sensitivity logic.
- Updated mouse settings route to reflect the removal of scroll sensitivity feature.
- Simplified mouse wheel event handling in WebRTCVideo component.
2025-05-19 22:44:53 +02:00
Aveline 7a9fb7cbb1
chore(usbgadget): update usbgadget config only when needed (#474) 2025-05-19 21:48:43 +02:00
rmschooley 0a4a1af80e
Improve/Simplify Mouse Wheel Scroll Behavior (#470)
* Improve/Simplify Mouse Wheel Scroll Behavior

* Update hid_mouse_absolute.go

Attempt to fix line reported as improperly formatted by lint.

* Update utils.go

Removed abs() function since lint states it is no longer used.
2025-05-19 13:03:33 +02:00
Julian Zander fc3dbcd820
chore: add Go Report Card
Add Go Report Card
2025-05-19 08:53:01 +02:00
Siyuan Miao 17baf1647f chore: append package name to build script 2025-05-16 20:30:41 +02:00
Siyuan Miao 840743fcf7 fix: golang test report input argument 2025-05-16 20:04:54 +02:00
Marc Brooks 3ec1bdf388
chore(ui): Patch-bump packages and use tailwind upgrade (#456)
* chore(ui): Patch bump in tailwind related packages and framer-motion

tailwind: [4.1.6 -> 4.1.7](https://github.com/tailwindlabs/tailwindcss/compare/v4.1.6...v4.1.7)
@tailwindcss/postcss: 4.1.6 -> 4.1.7
@tailwindcss/vite: 4.1.6 -> 4.1.7

Also patch-bump of:
framer-motion: [12.11.0 -> 12.11.4](https://github.com/motiondivision/motion/compare/v12.11.0...v12.11.4)

No source changes seemingly needed, have not rerun the migrate.

* chore(ui): Run tailwind upgrade and review changes

Ran the `npx @tailwindcss/upgrade` and accepted the changes that seemed safe.

They're things like:
- `data-[closed]:translate-y-9` -> `data-closed:translate-y-8` ()swaps the square bracket syntax to a `-` modifier)
- `bg-gradient-to-*` -> `bg-linear-to-*`
- `/[*%]` -> `/*` (swap square bracket syntax for inline)
- `theme(*.*)` -> `var(--*-*)` (theme styles are exposed as variables with hyphens for dots now)
- `[background-size:*]` -> `bg-size[*]` (move the square brackets inside tag)
- `[.active_&]:` -> `in[.active]:` (new syntax for parent query)
- `!class` -> `class!` (e.g. _!overflow-visible_ to _overflow-visible!_, for [important flag](https://tailwindcss.com/docs/styling-with-utility-classes#using-the-important-flag style)
- `w-[1px]` -> `w-px` (that's a new syntax for a 1px width)
- `h-[1px]` -> `h-px` (that's a new syntax for a 1px height)
- moved `html` and `html, body` global settings in the _index.css_

Also killed off an unused `import` and blank css class.
Also picked up the two `flex-grow` -> `grow` that I missed last pass, oops.
2025-05-16 19:59:57 +02:00
Aveline fea89a0d23
chore: run golang tests 2025-05-16 19:53:01 +02:00
Marc Brooks d54568642b
fix(ui): Fix regression on Shift-Backspace not being handled (#454)
This keystroke is valid and means "delete to the right" on MacOS.
2025-05-16 12:38:56 +02:00
Marc Brooks c9068af568
Update devcontainer.json to match ui package.json (#457)
Missed that we upgraded the ui's package.json, need to _also_ update the devcontainer.json to matching verison 22.15.0
2025-05-16 12:37:54 +02:00
Adam Shiervani 033bdcd645
fix(ui): Adjust EmptyCard icon size and tweak SettingsMacros (#452) 2025-05-15 17:31:20 +02:00
Adam Shiervani baf85dcbec
refactor: Migrate from tailwind.js config to Tailwind CSS config (#451)
* refactor: Migrate from tailwind.js config to Tailwind CSS configuration and improve component styling

- Removed extensive theme and animation configurations from tailwind.config.js, migrating them to index.css for better organization.
- Updated components to utilize CSS variables for grid layouts and animations, enhancing maintainability.
- Adjusted various components to reflect the new CSS structure, ensuring consistent styling across the application.
- Improved accessibility and responsiveness in several UI components, including headers and popovers.
- Fixed minor styling issues and optimized class usage for better performance.

* style: use default tailwindcss/forms options

* refactor(Header): remove unused LuUser icon import
2025-05-15 17:13:16 +02:00
Marc Brooks c9dd3cd926
feat(ui): Enhance Virtual Keyboard for US (#449)
* feat(ui): Add Ctrl+Alt-Backspace combination key to Virtual Keyboard

Fixes #445 (somewhat)

* fix(ui): Correct virtual keyboard display when shift key is down.

Somewhere along the way, the handling of the shift-key state for letters and numbers was lost and we stopped displaying the capital/symbol for the key.
Also update page up and page down to have the space in the on-screen key.

* feat(ui): Add missing keys for virtual keyboard

Enable insert, delete, numpad equal, print scree, scroll lock, pause, system request, break keys.
2025-05-15 17:05:53 +02:00
Marc Brooks 7ccb8e617c
chore: Upgrade UI vite and tailwind packages (#443)
* chore: Upgrade UI vite and tailwind packages

Vite 5.2.0 -> 6.3.5
@vitejs/plugin-basic-ssl 1.2.0 -> 2.0.0
cva: 1.0.0-beta.1 -> 1.0.0-beta.3
focus-trap-react 10.2.3 -> 11.0.3
framer-motion 11.15.0 -> 12.11.0
@tailwindcss/postcss 4.1.6
@tailwindcss/vite 4.1.6
tailwind 3.4.17 -> 4.1.6
tailwind-merge 2.5.5 -> 3.3.0

Minor updates:
@headlessui/react 2.2.2 -> 2.2.3
@types/react 19.1.3 -> 19.1.4
@types/react-dom 19.1.3 -> 19.1.5
@typescript-eslint/eslint-plugin 8.32.0 -> 8.32.1
@typescript-eslint/parser 8.32.0 -> 8.32.1
react-simple-keyboard 3.8.71 -> 3.8.72

The new version of vite required an Node 22.15 (since that's current LTS and node 21.x is EOL)

The changes to css due to the tailwind 3 to 4 upgrade were done following [the upgrade guide](https://tailwindcss.com/docs/upgrade-guide#changes-from-v3)

Done in this order (important):
`shadow-sm` -> `shadow-xs`
`shadow` -> `shadown-sm`
`rounded` -> `rounded-sm`
`outline-none` -> `outline-hidden`
`32rem_32rem_at_center` -> `center_at_32rem_32rem` (revised order of gradient props)
`ring-1 ring-black ring-opacity-5` -> `ring-1 ring-black/50`
`flex-shrink-0` -> `shrink-0`
`flex-grow-0` -> `grow-0`
`outline outline-1` -> `outline-1`

ALSO removed the **extra** `opacity-0` on the video element (trips up latest tailwind causing the video to be invisible)

FocusTrap is now not exported as the default, so change those imports

headlessui's Menu completely changed, so upgrade to the new syntax which necessitated a reorganization of the Header.tsx to enable the "menu" to still work

* Update eslint config and fix errors
2025-05-15 14:21:03 +02:00
Adam Shiervani 340babac24
feat(network): enhance network settings UI (#364)
* feat(network): enhance network settings UI with domain management and improved layout

- Added custom domain input and selection options for DHCP and local domains.
- Improved layout for displaying network settings, including DHCP lease information and IPv6 addresses.
- Refactored state management for network settings and added handlers for hostname and domain changes.
- Updated the display of network settings to enhance user experience and accessibility.

* Re-add save button

* fix: add ConfirmDialog for renewing DHCP lease and improve network settings layout

- Integrated ConfirmDialog component to confirm DHCP lease renewal.
- Enhanced the layout of network settings, including better organization of IPv4 and IPv6 information.
- Updated state management for displaying network settings and lease information.
- Improved user experience with clearer descriptions and structured UI elements.

* Fix lint errors

* fix: useRef TS2554

---------

Co-authored-by: Siyuan Miao <i@xswan.net>
2025-05-14 17:25:56 +02:00
Marc Brooks 2aa7b8569f
feat: Reset optionally reset USB HID in dev-deploy (#440)
Adds `--reset-usb-hid` command to delete the configured USB HID device before running.
2025-05-14 11:17:29 +02:00
Aveline 19bd161a7f
chore: update jetkvm_native binary (4e2ce48) (#442) 2025-05-13 21:49:42 +02:00
Aveline 38252de03c
chore: create images folder when starting the application (#437) 2025-05-13 21:13:21 +02:00
Aveline 63c2272c45
feat(usb_mass_storage): mount as disk (#333)
* feat(usb_mass_storage): mount as disk

* chore: try to set initial virtual media state from sysfs

* chore(usb-mass-storage): fix inquiry_string
2025-05-12 19:07:27 +02:00
Marc Brooks 8ee0532f0e
Update npm packages for the UI (#432)
Upgraded most packages to current as of 2025-05-09 for almost everything.
Remove the erroneous extra dependency to old xterm package since the correct @xterm/xterm package was already included (suspect a bad merge) and it was causing issues with react 19.1.
Switched to using the hooks exposed in the usehooks-ts package (this package was already referenced, suspect a bad merge) removing our private copies of useInterval, useIsMounted, useResizeObserver which are identical.
Added import of JSX from react now needed because NPX is not in global scope in react 19.x.
Explicitly cast the ref of included elements due to change in react 19.x
2025-05-12 19:00:49 +02:00
Daniel Lorch d0faf03239
Fix: Alt Gr not recognized (#399)
* Fix: Alt-Gr not recognized

* Proper fix for Alt-Gr not being recognized

* Add comment on codes and modifiers

* Add comment on paste box

* Remove comment

* Improve description

* Wording...

* Formatting...

* Improve description again
2025-05-12 18:59:32 +02:00
Qishuai Liu 77b4c1c531
ntp: fix panic on NTP query error and add IPv6 server for IPv6-only support (#424)
* fix(ntp): prevent panic on NTP query error and add IPv6 server in defaultNTPServers

* fix(ntp): make sure queryMultipleNTP finish if all servers failed
2025-05-11 17:19:22 +02:00
John 5f8b451cd7
fix: absolute mouse scroll (#434)
Co-authored-by: wup-one <wup@deepspace.game>
2025-05-11 17:19:07 +02:00
Peder Toftegaard Olsen 5a4f1766b7
feat: UI for changing display orientation
* Added UI for changing display orientation.

* Fixed lint issue.
2025-05-11 17:17:41 +02:00
Siyuan Miao d79f359c43 chore: bump version to 0.4.0 2025-04-16 02:17:09 +02:00
Aveline 189b84380b
network enhanecment / refactor (#361)
* chore(network): improve connectivity check

* refactor(network): rewrite network and timesync component

* feat(display): show cloud connection status

* chore: change logging verbosity

* chore(websecure): update log message

* fix(ota): validate root certificate when downloading update

* feat(ui): add network settings tab

* fix(display): cloud connecting animation

* fix: golintci issues

* feat: add network settings tab

* feat(timesync): query servers in parallel

* refactor(network): move to internal/network package

* feat(timesync): add metrics

* refactor(log): move log to internal/logging package

* refactor(mdms): move mdns to internal/mdns package

* feat(developer): add pprof endpoint

* feat(logging): add a simple logging streaming endpoint

* fix(mdns): do not start mdns until network is up

* feat(network): allow users to update network settings from ui

* fix(network): handle errors when net.IPAddr is nil

* fix(mdns): scopedLogger SIGSEGV

* fix(dhcp): watch directory instead of file to catch fsnotify.Create event

* refactor(nbd): move platform-specific code to different files

* refactor(native): move platform-specific code to different files

* chore: fix linter issues

* chore(dev_deploy): allow to override PION_LOG_TRACE
2025-04-16 01:39:23 +02:00
Aveline 2b2a14204d
feat: implement pointer-lock and keyboard-lock (#352)
* feat: implement pointer-lock and keyboard-lock

* feat: Add Pointer lock functionality and SSL support in dev mode

- Introduced @vitejs/plugin-basic-ssl for enabling SSL in development.
- Added a new script `dev:ssl` to run the development server with SSL.
- Implemented pointer lock feature in the WebRTCVideo component, enhancing user interaction.
- Added a PointerLockBar component to guide users on enabling mouse control.
- Cleaned up the VideoOverlay and WebRTCVideo components for better readability and functionality.

---------

Co-authored-by: Adam Shiervani <adam.shiervani@gmail.com>
2025-04-16 01:34:53 +02:00
Simão Gomes Viana 440f85f091
VideoOverlay: add missing word to adapter line (#355)
THe sentence was incomplete without "ensure".
2025-04-16 00:28:52 +02:00
Ben Kochie 009b0abbe9
refactor: update golintci-lint and linter issues
* Update golangci-lint

Update golangci-lint to v2.

Signed-off-by: SuperQ <superq@gmail.com>

* Fixup various linter issues.

Signed-off-by: SuperQ <superq@gmail.com>

---------

Signed-off-by: SuperQ <superq@gmail.com>
2025-04-13 03:55:30 +02:00
Siyuan Miao 951e673e0c chore(ntp): add logging for time sync errors 2025-04-11 18:55:31 +02:00
Siyuan Miao edca8a4cb5 fix(log): segmentation violation when err is nil 2025-04-11 18:49:08 +02:00
Aveline 87ee954e70
chore(log): move each component to its own logger (#353) 2025-04-11 18:38:34 +02:00
Siyuan Miao 94e83249ef chore(cloud): use request id from the cloud 2025-04-11 16:03:46 +02:00
Siyuan Miao f98eaddf15 chore(log): ntp logger 2025-04-11 13:12:14 +02:00
Siyuan Miao 8888d13824 chore(log): add nbdLogger 2025-04-11 13:08:52 +02:00
Siyuan Miao 334b3bee60 chore: fix linting issue 2025-04-11 13:05:03 +02:00
Siyuan Miao 0ba7902f82 chore: update logging 2025-04-11 12:55:36 +02:00
Siyuan Miao 924b55059f chore(log): add wolLogger 2025-04-11 08:14:44 +02:00
Siyuan Miao 6489421605 fix(ota): verifyFile missing arguments 2025-04-11 08:05:35 +02:00
Siyuan Miao e08ff425c3 chore(log): add webRtcLogger 2025-04-11 08:05:04 +02:00
Siyuan Miao d5f8e51a14 chore(log): add terminalLogger 2025-04-11 07:58:11 +02:00
Siyuan Miao 612c50bfe2 chore(log): add serialLogger 2025-04-11 07:56:18 +02:00
Siyuan Miao 48a917fd76 chore(log): add otaLogger 2025-04-11 07:49:03 +02:00
Siyuan Miao 5f7dded973 chore(log): add watchdogLogger 2025-04-11 07:42:47 +02:00
Siyuan Miao 04aa35249a chore(log): add jsonRpcLogger 2025-04-11 07:41:21 +02:00
Siyuan Miao 82c018a2f6 feat(tls): #330 2025-04-11 00:43:58 +02:00
Siyuan Miao 4c37f7e079 refactor: use structured logging 2025-04-11 00:43:46 +02:00
Andrew Davis 8f6e64fd9c Add keyboard macros (#305)
* add jsonrpc keyboard macro get/set

* add ui keyboard macros settings and macro bar

* use notifications component and handle jsonrpc errors

* cleanup settings menu

* return error rather than truncate steps in validation

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* feat(ui): add className prop to Checkbox component to allow custom styling

* use existing components and CTA

* extract display key mappings

* create generic combobox component

* remove macro description

* cleanup styles and macro list

* create sortable list component

* split up macro routes

* remove sortable list and simplify

* cleanup macrobar

* use and add info to fieldlabel

* add useCallback optimizations

* add confirm dialog component

* cleanup delete buttons

* revert info on field label

* cleanup combobox focus

* cleanup icons

* set default label for delay

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-04-11 00:43:46 +02:00
Adam Shiervani 76efa56083 chore(dev_deploy): update logging for websocket in deployment script (#348) 2025-04-11 00:43:46 +02:00
Aveline dc1ce03697 chore(websocket): logging and metrics improvement (#347)
* chore(websocket): only show warning if websocket is closed abnormally

* chore(websocket): add counter for ping requests received
2025-04-11 00:43:46 +02:00
Aveline 66a3352e5d feat(websocket): handle ping messages sent from react and add logging (#346) 2025-04-11 00:43:46 +02:00
Adam Shiervani 9c758b6d57 fix(ui): adjust layout and z-index for improved UI consistency in KvmIdRoute (#345) 2025-04-11 00:43:46 +02:00
Adam Shiervani 647250c32b fix(ui): update WebRTCVideo component to properly animate on peer connection state (#343) 2025-04-11 00:43:46 +02:00
Ben Kochie 3f20c23ea1 fix: Shell linting (#328)
Cleanup various shell linting issues
* Use `/usr/bin/env` consistently for better platform compatibility.
* SC2317 (info): Command appears to be unreachable.
* SC2002 (style): Useless cat.

Signed-off-by: SuperQ <superq@gmail.com>
2025-04-11 00:43:45 +02:00
Adam Shiervani b94de38510 fix(ui): increase z-index for Modal component to improve layering (#341) 2025-04-11 00:43:45 +02:00
Adam Shiervani 1505ca1bc1 fix(dev_device): update JETKVM_PROXY_URL to use WebSocket protocol (#342) 2025-04-11 00:43:45 +02:00
Adam Shiervani 960ef230ba Don't block new PC if connection is stable. No need to (#340) 2025-04-11 00:43:45 +02:00
Adam Shiervani 98af805089 refactor: remove unnecessary whitespace in setupRouter function 2025-04-11 00:43:45 +02:00
Adam Shiervani 84b35d5deb re-add old signaling for when upgrading 2025-04-11 00:43:45 +02:00
Siyuan Miao 652e845d83 fix(ota): certificate signed by unknown authority 2025-04-09 20:25:26 +02:00
Adam Shiervani 1a30977085
Feat/Trickle ice (#336)
* feat(cloud): Use Websocket signaling in cloud mode

* refactor: Enhance WebRTC signaling and connection handling

* refactor: Improve WebRTC connection management and logging in KvmIdRoute

* refactor: Update PeerConnectionDisconnectedOverlay to use Card component for better UI structure

* refactor: Standardize metric naming and improve websocket logging

* refactor: Rename WebRTC signaling functions and update deployment script for debug version

* fix: Handle error when writing new ICE candidate to WebRTC signaling channel

* refactor: Rename signaling handler function for clarity

* refactor: Remove old http local http endpoint

* refactor: Improve metric help text and standardize comparison operator in KvmIdRoute

* chore(websocket): use MetricVec instead of Metric to store metrics

* fix conflicts

* fix: use wss when the page is served over https

* feat: Add app version header and update WebRTC signaling endpoint

* fix: Handle error when writing device metadata to WebRTC signaling channel

---------

Co-authored-by: Siyuan Miao <i@xswan.net>
2025-04-09 00:10:38 +02:00
Aveline fa1b11b228
chore(ota): allow a longer timeout when downloading packages (#332) 2025-04-08 00:43:03 +02:00
Aveline abc6d92331
feat(cloud): disconnect from cloud immediately when cloud URL changes… (#326) 2025-04-07 14:19:43 +02:00
Siyuan Miao 73e715117e feat(cloud): disconnect from cloud immediately when cloud URL changes or user requests to deregister 2025-04-04 13:16:38 +02:00
Adam Shiervani 8268b20f32
refactor: Update WebRTC connection handling and overlays (#320)
* refactor: Update WebRTC connection handling and overlays

* fix: Update comments for WebRTC connection handling in KvmIdRoute

* chore: Clean up import statements in devices.$id.tsx
2025-04-03 19:32:14 +02:00
Aveline 1a26431147
chore(cloud): websocket client improvements (#323) 2025-04-03 19:28:37 +02:00
Siyuan Miao f3b5011d65 feat(cloud): add metrics for cloud connections 2025-04-03 19:06:21 +02:00
Siyuan Miao 1e9adf81d4 chore: skip websocket client if net isn't up or time sync hasn't complete 2025-04-03 18:16:41 +02:00
Aveline 65e4a58ad9
chore: Update README Discord Link (#308) 2025-03-31 06:05:30 +02:00
Cameron Fleming df0d083a28
chore: Update README Discord Link
Corrects Discord link in the help section.
2025-03-29 21:13:59 +00:00
Aveline 1f8f885a1d
chore: Enable more linters (#255) 2025-03-28 10:21:49 +01:00
SuperQ aed453cc8c
chore: Enable more linters
Enable more golangci-lint linters.
* `forbidigo` to stop use of non-logger console printing.
* `goimports` to make sure `import` blocks are formatted nicely.
* `misspell` to catch spelling mistakes.
* `whitespace` to catch whitespace issues.

Signed-off-by: SuperQ <superq@gmail.com>
2025-03-26 18:41:09 +01:00
Aveline edafe996a9
chore: fix linting issues of web_tls.go (#287) 2025-03-26 18:32:55 +01:00
Aveline a9180c972c
chore: move smoketest to private repo (#291) 2025-03-26 18:02:03 +01:00
Adam Shiervani a3580b5465
Improve error handling when `RTCPeerConnection` throws (#289)
* fix(WebRTC): improve error handling during peer connection creation and add connection error overlay

* refactor: update peer connection state handling and improve type definitions across components
2025-03-25 14:54:04 +01:00
Siyuan Miao 1b8954e9f3 chore: fix linting issues of web_tls.go 2025-03-24 23:20:08 +01:00
88 changed files with 858 additions and 74925 deletions

View File

@ -37,7 +37,7 @@ jobs:
restore-keys: |
jetkvm-cgo-${{ hashFiles('internal/native/cgo/**/*.c', 'internal/native/cgo/**/*.h', 'internal/native/cgo/**/*.patch', 'internal/native/cgo/**/*.txt', 'internal/native/cgo/**/*.sh', '!internal/native/cgo/build/**') }}
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "22"
cache: "npm"

View File

@ -22,16 +22,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@fa96338abe5531f6e34c5cc0bbe28c1a533d5505 # v4.2.1
uses: actions/setup-go@v5
with:
go-version: 1.24.4
go-version: oldstable
- name: Create empty resource directory
run: |
mkdir -p static && touch static/.gitkeep
- name: Lint
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v7.0.0
uses: golangci/golangci-lint-action@v8
with:
args: --verbose
version: v2.0.2
version: v2.1

View File

@ -19,7 +19,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "22"
cache: "npm"

View File

@ -1,8 +0,0 @@
{
"hash": "10b5fb8d",
"configHash": "fd609f12",
"lockfileHash": "e3b0c442",
"browserHash": "4bebaebb",
"optimized": {},
"chunks": {}
}

View File

@ -1,3 +0,0 @@
{
"type": "module"
}

View File

@ -3,6 +3,5 @@
"cva",
"cx"
],
"cmake.sourceDirectory": "/Users/aveline/Projects/JetKVM/ymjk/internal/native/cgo",
"git.ignoreLimitWarning": true
}

View File

@ -12,8 +12,7 @@ BUILDKIT_FLAVOR := arm-rockchip830-linux-uclibcgnueabihf
BUILDKIT_PATH ?= /opt/jetkvm-native-buildkit
SKIP_NATIVE_IF_EXISTS ?= 0
SKIP_UI_BUILD ?= 0
GO_BUILD_ARGS := -tags netgo -tags timetzdata
GO_BUILD_ARGS := -tags netgo,timetzdata,nomsgpack
GO_RELEASE_BUILD_ARGS := -trimpath $(GO_BUILD_ARGS)
GO_LDFLAGS := \
-s -w \
@ -41,7 +40,7 @@ BIN_DIR := $(shell pwd)/bin
TEST_DIRS := $(shell find . -name "*_test.go" -type f -exec dirname {} \; | sort -u)
build_native:
@if [ "$(SKIP_NATIVE_IF_EXISTS)" = "1" ] && [ -f "internal/native/lib/libjknative.a" ]; then \
@if [ "$(SKIP_NATIVE_IF_EXISTS)" = "1" ] && [ -f "internal/native/cgo/lib/libjknative.a" ]; then \
echo "libjknative.a already exists, skipping native build..."; \
else \
echo "Building native..."; \

View File

@ -3,18 +3,37 @@ package main
import (
"flag"
"fmt"
"io"
"os"
"os/exec"
"os/signal"
"path/filepath"
"syscall"
"time"
"github.com/erikdubbelboer/gspt"
"github.com/jetkvm/kvm"
)
const (
envChildID = "JETKVM_CHILD_ID"
errorDumpDir = "/userdata/jetkvm/"
errorDumpStateFile = ".has_error_dump"
errorDumpTemplate = "jetkvm-%s.log"
)
func program() {
gspt.SetProcTitle(os.Args[0] + " [app]")
kvm.Main()
}
func main() {
versionPtr := flag.Bool("version", false, "print version and exit")
versionJsonPtr := flag.Bool("version-json", false, "print version as json and exit")
versionJSONPtr := flag.Bool("version-json", false, "print version as json and exit")
flag.Parse()
if *versionPtr || *versionJsonPtr {
versionData, err := kvm.GetVersionData(*versionJsonPtr)
if *versionPtr || *versionJSONPtr {
versionData, err := kvm.GetVersionData(*versionJSONPtr)
if err != nil {
fmt.Printf("failed to get version data: %v\n", err)
os.Exit(1)
@ -23,5 +42,129 @@ func main() {
return
}
kvm.Main()
childID := os.Getenv(envChildID)
switch childID {
case "":
doSupervise()
case kvm.GetBuiltAppVersion():
program()
default:
fmt.Printf("Invalid build version: %s != %s\n", childID, kvm.GetBuiltAppVersion())
os.Exit(1)
}
}
func supervise() error {
// check binary path
binPath, err := os.Executable()
if err != nil {
return fmt.Errorf("failed to get executable path: %w", err)
}
// check if binary is same as current binary
if info, statErr := os.Stat(binPath); statErr != nil {
return fmt.Errorf("failed to get executable info: %w", statErr)
// check if binary is empty
} else if info.Size() == 0 {
return fmt.Errorf("binary is empty")
// check if it's executable
} else if info.Mode().Perm()&0111 == 0 {
return fmt.Errorf("binary is not executable")
}
// run the child binary
cmd := exec.Command(binPath)
cmd.Env = append(os.Environ(), []string{envChildID + "=" + kvm.GetBuiltAppVersion()}...)
cmd.Args = os.Args
logFile, err := os.CreateTemp("", "jetkvm-stdout.log")
defer func() {
// we don't care about the errors here
_ = logFile.Close()
_ = os.Remove(logFile.Name())
}()
if err != nil {
return fmt.Errorf("failed to create log file: %w", err)
}
// Use io.MultiWriter to write to both the original streams and our buffers
cmd.Stdout = io.MultiWriter(os.Stdout, logFile)
cmd.Stderr = io.MultiWriter(os.Stderr, logFile)
if startErr := cmd.Start(); startErr != nil {
return fmt.Errorf("failed to start command: %w", startErr)
}
go func() {
sigChan := make(chan os.Signal, 1)
signal.Notify(sigChan, syscall.SIGTERM)
sig := <-sigChan
_ = cmd.Process.Signal(sig)
}()
gspt.SetProcTitle(os.Args[0] + " [sup]")
cmdErr := cmd.Wait()
if cmdErr == nil {
return nil
}
if exiterr, ok := cmdErr.(*exec.ExitError); ok {
createErrorDump(logFile)
os.Exit(exiterr.ExitCode())
}
return nil
}
func createErrorDump(logFile *os.File) {
logFile.Close()
// touch the error dump state file
if err := os.WriteFile(filepath.Join(errorDumpDir, errorDumpStateFile), []byte{}, 0644); err != nil {
return
}
fileName := fmt.Sprintf(errorDumpTemplate, time.Now().Format("20060102150405"))
filePath := filepath.Join(errorDumpDir, fileName)
if err := os.Rename(logFile.Name(), filePath); err == nil {
fmt.Printf("error dump created: %s\n", filePath)
return
}
fnSrc, err := os.Open(logFile.Name())
if err != nil {
return
}
defer fnSrc.Close()
fnDst, err := os.Create(filePath)
if err != nil {
return
}
defer fnDst.Close()
buf := make([]byte, 1024*1024)
for {
n, err := fnSrc.Read(buf)
if err != nil && err != io.EOF {
return
}
if n == 0 {
break
}
if _, err := fnDst.Write(buf[:n]); err != nil {
return
}
}
fmt.Printf("error dump created: %s\n", filePath)
}
func doSupervise() {
err := supervise()
if err == nil {
return
}
}

BIN
cprof.out

Binary file not shown.

View File

@ -26,6 +26,14 @@ const (
backlightControlClass string = "/sys/class/backlight/backlight/brightness"
)
func switchToMainScreen() {
if networkState.IsUp() {
nativeInstance.SwitchToScreenIfDifferent("home_screen")
} else {
nativeInstance.SwitchToScreenIfDifferent("no_network_screen")
}
}
func updateDisplay() {
nativeInstance.UpdateLabelIfChanged("home_info_ipv4_addr", networkState.IPv4String())
nativeInstance.UpdateLabelAndChangeVisibility("home_info_ipv6_addr", networkState.IPv6String())

8
go.mod
View File

@ -12,11 +12,9 @@ require (
github.com/gin-contrib/logger v1.2.6
github.com/gin-gonic/gin v1.10.1
github.com/go-co-op/gocron/v2 v2.16.5
github.com/google/gopacket v1.1.19
github.com/google/uuid v1.6.0
github.com/guregu/null/v6 v6.0.0
github.com/gwatts/rootcerts v0.0.0-20250901182336-dc5ae18bd79f
github.com/jellydator/ttlcache/v3 v3.4.0
github.com/pion/logging v0.2.4
github.com/pion/mdns/v2 v2.0.7
github.com/pion/webrtc/v4 v4.1.4
@ -40,6 +38,7 @@ require (
replace github.com/pojntfx/go-nbd v0.3.2 => github.com/chemhack/go-nbd v0.0.0-20241006125820-59e45f5b1e7b
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bytedance/sonic v1.13.3 // indirect
github.com/bytedance/sonic/loader v0.2.4 // indirect
@ -47,15 +46,19 @@ require (
github.com/cloudwego/base64x v0.1.5 // indirect
github.com/creack/goselect v0.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/erikdubbelboer/gspt v0.0.0-20210805194459-ce36a5128377 // indirect
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
github.com/gin-contrib/sse v1.1.0 // indirect
github.com/go-jose/go-jose/v4 v4.1.0 // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.26.0 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect
github.com/jonboulle/clockwork v0.5.0 // indirect
github.com/jpillora/overseer v1.1.6 // indirect
github.com/jpillora/s3 v1.1.4 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
@ -89,7 +92,6 @@ require (
github.com/wlynxg/anet v0.0.5 // indirect
golang.org/x/arch v0.18.0 // indirect
golang.org/x/oauth2 v0.30.0 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/text v0.28.0 // indirect
google.golang.org/protobuf v1.36.8 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect

30
go.sum
View File

@ -1,5 +1,7 @@
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d h1:G0m3OIz70MZUWq3EgK3CesDbo8upS2Vm9/P3FtgI+Jk=
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
github.com/andybalholm/brotli v1.1.1 h1:PR2pgnyFznKEugtsUo0xLdDop5SKXd5Qf5ysW+7XdTA=
github.com/andybalholm/brotli v1.1.1/go.mod h1:05ib4cKhjx3OQYUY22hTVd34Bc8upXjOLL2rKwwZBoA=
github.com/beevik/ntp v1.4.3 h1:PlbTvE5NNy4QHmA4Mg57n7mcFTmr1W1j3gcK7L1lqho=
@ -32,6 +34,8 @@ github.com/creack/pty v1.1.24/go.mod h1:08sCNb52WyoAwi2QDyzUCTgcvVFhUzewun7wtTfv
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/erikdubbelboer/gspt v0.0.0-20210805194459-ce36a5128377 h1:gT+RM6gdTIAzMT7HUvmT5mL8SyG8Wx7iS3+L0V34Km4=
github.com/erikdubbelboer/gspt v0.0.0-20210805194459-ce36a5128377/go.mod h1:v6o7m/E9bfvm79dE1iFiF+3T7zLBnrjYjkWMa1J+Hv0=
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=
github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
github.com/gabriel-vasile/mimetype v1.4.9 h1:5k+WDwEsD9eTLL8Tz3L0VnmVh9QxGjRmjBvAG7U/oYY=
@ -46,6 +50,8 @@ github.com/go-co-op/gocron/v2 v2.16.5 h1:j228Jxk7bb9CF8LKR3gS+bK3rcjRUINjlVI+ZMp
github.com/go-co-op/gocron/v2 v2.16.5/go.mod h1:zAfC/GFQ668qHxOVl/D68Jh5Ce7sDqX6TJnSQyRkRBc=
github.com/go-jose/go-jose/v4 v4.1.0 h1:cYSYxd3pw5zd2FSXk2vGdn9igQU2PS8MuxrCOCl0FdY=
github.com/go-jose/go-jose/v4 v4.1.0/go.mod h1:GG/vqmYm3Von2nYiB2vGTXzdoNKE5tix5tuc6iAd+sw=
github.com/go-ole/go-ole v1.2.4 h1:nNBDSCOigTSiarFpYE9J/KtEA1IOW4CNeqT9TQDqCxI=
github.com/go-ole/go-ole v1.2.4/go.mod h1:XCwSNxSkXRo4vlyPy93sltvi/qJq0jqQhjqQNIwKuxM=
github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s=
github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA=
@ -60,8 +66,6 @@ github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5x
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
github.com/google/gopacket v1.1.19 h1:ves8RnFZPGiFnTS0uPQStjwru6uO6h+nlr9j6fL7kF8=
github.com/google/gopacket v1.1.19/go.mod h1:iJ8V8n6KS+z2U1A8pUwu8bW5SyEMkXJB8Yo/Vo+TKTo=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc h1:GN2Lv3MGO7AS6PrRoT6yV5+wkrOpcszoIsO4+4ds248=
@ -70,10 +74,12 @@ github.com/guregu/null/v6 v6.0.0 h1:N14VRS+4di81i1PXRiprbQJ9EM9gqBa0+KVMeS/QSjQ=
github.com/guregu/null/v6 v6.0.0/go.mod h1:hrMIhIfrOZeLPZhROSn149tpw2gHkidAqxoXNyeX3iQ=
github.com/gwatts/rootcerts v0.0.0-20250901182336-dc5ae18bd79f h1:08t2PbrkDgW2+mwCQ3jhKUBrCM9Bc9SeH5j2Dst3B+0=
github.com/gwatts/rootcerts v0.0.0-20250901182336-dc5ae18bd79f/go.mod h1:5Kt9XkWvkGi2OHOq0QsGxebHmhCcqJ8KCbNg/a6+n+g=
github.com/jellydator/ttlcache/v3 v3.4.0 h1:YS4P125qQS0tNhtL6aeYkheEaB/m8HCqdMMP4mnWdTY=
github.com/jellydator/ttlcache/v3 v3.4.0/go.mod h1:Hw9EgjymziQD3yGsQdf1FqFdpp7YjFMd4Srg5EJlgD4=
github.com/jonboulle/clockwork v0.5.0 h1:Hyh9A8u51kptdkR+cqRpT1EebBwTn1oK9YfGYbdFz6I=
github.com/jonboulle/clockwork v0.5.0/go.mod h1:3mZlmanh0g2NDKO5TWZVJAfofYk64M7XN3SzBPjZF60=
github.com/jpillora/overseer v1.1.6 h1:3ygYfNcR3FfOr22miu3vR1iQcXKMHbmULBh98rbkIyo=
github.com/jpillora/overseer v1.1.6/go.mod h1:aPXQtxuVb9PVWRWTXpo+LdnC/YXQ0IBLNXqKMJmgk88=
github.com/jpillora/s3 v1.1.4 h1:YCCKDWzb/Ye9EBNd83ATRF/8wPEy0xd43Rezb6u6fzc=
github.com/jpillora/s3 v1.1.4/go.mod h1:yedE603V+crlFi1Kl/5vZJaBu9pUzE9wvKegU/lF2zs=
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo=
@ -164,6 +170,8 @@ github.com/rs/xid v1.6.0 h1:fV591PaemRlL6JfRxGDEPl69wICngIQ3shQtzfy2gxU=
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY=
github.com/rs/zerolog v1.34.0/go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ=
github.com/smartystreets/assertions v1.0.1/go.mod h1:kHHU4qYBaI3q23Pp3VPrmWhuIUrLW/7eUrw0BU5VaoM=
github.com/smartystreets/gunit v1.1.3/go.mod h1:EH5qMBab2UclzXUcpR8b93eHsIlp9u+pDQIRp5DZNzQ=
github.com/sourcegraph/tf-dag v0.2.2-0.20250131204052-3e8ff1477b4f h1:VgoRCP1efSCEZIcF2THLQ46+pIBzzgNiaUBe9wEDwYU=
github.com/sourcegraph/tf-dag v0.2.2-0.20250131204052-3e8ff1477b4f/go.mod h1:pzro7BGorij2WgrjEammtrkbo3+xldxo+KaGLGUiD+Q=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
@ -194,23 +202,12 @@ go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
golang.org/x/arch v0.18.0 h1:WN9poc33zL4AzGxqf8VtpKUnGvMi8O9lhNyBMF/85qc=
golang.org/x/arch v0.18.0/go.mod h1:bdwinDaKcfZUGpH09BB7ZmOfhalA8lQdzl62l8gGWsk=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.41.0 h1:WKYxWedPGCTVVl5+WHSSrOBT0O8lx32+zxmHxijgXp4=
golang.org/x/crypto v0.41.0/go.mod h1:pO5AFd7FA68rFak7rOAGVuygIISepHftHnr8dr6+sUc=
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
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.43.0 h1:lat02VYK2j4aLzMzecihNvTlJNQUq316m2Mr9rnM6YE=
golang.org/x/net v0.43.0/go.mod h1:vhO1fvI4dGsIjh73sWfUVjj3N7CA9WkKJNQm2svM6Jg=
golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI=
golang.org/x/oauth2 v0.30.0/go.mod h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
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-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
@ -220,11 +217,8 @@ golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
golang.org/x/term v0.34.0 h1:O/2T7POpk0ZZ7MAzMeWFSg6S5IpWd/RXDlM9hgM3DR4=
golang.org/x/term v0.34.0/go.mod h1:5jC53AEywhIVebHgPVeg0mj8OD3VO9OzclacVrqpaAw=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng=
golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU=
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/protobuf v1.36.8 h1:xHScyCOEuuwZEc6UtSOvPbAT4zRh0xcNRYekJwfqyMc=
google.golang.org/protobuf v1.36.8/go.mod h1:fuxRtAxBytpl4zzqUh6/eyUujkJdNiuEkXntxiD/uRU=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

BIN
gotestsum

Binary file not shown.

View File

@ -1,3 +1,7 @@
build
deps
ui_index.c
ui_index.c
include/lvgl
lib
# Makefile is generated by CMake
Makefile

File diff suppressed because it is too large Load Diff

View File

@ -411,4 +411,10 @@ int jetkvm_video_init() {
void jetkvm_video_shutdown() {
video_shutdown();
}
void jetkvm_crash() {
// let's call a function that will crash the program
int* p = 0;
*p = 0;
}

View File

@ -26,6 +26,7 @@ void jetkvm_set_indev_handler(jetkvm_indev_handler_t *handler);
void jetkvm_set_rpc_handler(jetkvm_rpc_handler_t *handler);
void jetkvm_call_rpc_handler(const char *method, const char *params);
void jetkvm_set_video_state_handler(jetkvm_video_state_handler_t *handler);
void jetkvm_crash();
void jetkvm_ui_set_var(const char *name, const char *value);
const char *jetkvm_ui_get_var(const char *name);

View File

@ -14,6 +14,8 @@
// #define DISP_BUF_SIZE (300 * 240 * 2)
// static lv_color_t buf[DISP_BUF_SIZE];
lv_display_t *disp = NULL;
indev_handler_t *indev_handler = NULL;
void lvgl_set_indev_handler(indev_handler_t *handler) {
@ -34,7 +36,7 @@ void lvgl_init(u_int16_t rotation) {
lv_init();
/*Linux frame buffer device init*/
lv_display_t *disp = lv_linux_fbdev_create();
disp = lv_linux_fbdev_create();
// lv_display_set_physical_resolution(disp, 240, 300);
lv_display_set_resolution(disp, 240, 300);
lv_linux_fbdev_set_file(disp, "/dev/fb0");
@ -62,16 +64,19 @@ void lvgl_tick(void) {
ui_tick();
}
void lvgl_set_rotation(lv_display_t *disp, u_int16_t rotation) {
void lvgl_set_rotation(lv_display_t *disp_ref, u_int16_t rotation) {
if (disp_ref == NULL) {
disp_ref = disp;
}
log_info("setting rotation to %d", rotation);
if (rotation == 0) {
lv_display_set_rotation(disp, LV_DISP_ROTATION_0);
lv_display_set_rotation(disp_ref, LV_DISP_ROTATION_0);
} else if (rotation == 90) {
lv_display_set_rotation(disp, LV_DISP_ROTATION_90);
lv_display_set_rotation(disp_ref, LV_DISP_ROTATION_90);
} else if (rotation == 180) {
lv_display_set_rotation(disp, LV_DISP_ROTATION_180);
lv_display_set_rotation(disp_ref, LV_DISP_ROTATION_180);
} else if (rotation == 270) {
lv_display_set_rotation(disp, LV_DISP_ROTATION_270);
lv_display_set_rotation(disp_ref, LV_DISP_ROTATION_270);
} else {
log_error("invalid rotation %d", rotation);
}

View File

@ -365,7 +365,7 @@ void *run_video_stream(void *arg)
{
log_error("VIDIOC_REQBUFS failed: %s", strerror(errno));
close(video_dev_fd);
return errno;
return (void *)errno;
}
log_info("VIDIOC_REQBUFS successful");
@ -389,7 +389,7 @@ void *run_video_stream(void *arg)
log_error("VIDIOC_QUERYBUF failed: %s", strerror(errno));
req.count = i;
close(video_dev_fd);
return errno;
return (void *)errno;
}
log_info("VIDIOC_QUERYBUF successful for buffer %d", i);
@ -401,7 +401,7 @@ void *run_video_stream(void *arg)
{
log_error("get mb blk failed!");
close(video_dev_fd);
return -1;
return ;
}
log_info("Got memory block for buffer %d", i);
@ -412,7 +412,7 @@ void *run_video_stream(void *arg)
{
log_error("RK_MPI_MB_Handle2Fd failed!");
close(video_dev_fd);
return -1;
return (void *)errno;
}
log_info("Converted memory block to file descriptor for buffer %d", i);
planes_buffer->m.fd = buf_fd;
@ -431,7 +431,7 @@ void *run_video_stream(void *arg)
{
log_error("VIDIOC_QBUF failed: %s", strerror(errno));
close(video_dev_fd);
return errno;
return (void *)errno;
}
log_info("VIDIOC_QBUF successful for buffer %d", i);
}
@ -439,7 +439,8 @@ void *run_video_stream(void *arg)
if (ioctl(video_dev_fd, VIDIOC_STREAMON, &type) < 0)
{
log_error("VIDIOC_STREAMON failed: %s", strerror(errno));
goto cleanup;
close(video_dev_fd);
return (void *)errno;
}
struct v4l2_plane tmp_plane;

View File

@ -11,8 +11,8 @@ import (
)
/*
#cgo LDFLAGS: -Llib -ljknative -llvgl
#cgo CFLAGS: -Iinclude
#cgo LDFLAGS: -Lcgo/lib -ljknative -llvgl
#cgo CFLAGS: -Icgo/include
#include "ctrl.h"
#include <stdlib.h>
@ -389,3 +389,9 @@ func videoSetEDID(edid string) error {
C.jetkvm_video_set_edid(edidCStr)
return nil
}
// DO NOT USE THIS FUNCTION IN PRODUCTION
// This is only for testing purposes
func crash() {
C.jetkvm_crash()
}

View File

@ -122,3 +122,7 @@ func videoSetEDID(edid string) error {
panicPlatformNotSupported()
return nil
}
func crash() {
panicPlatformNotSupported()
}

View File

@ -116,6 +116,8 @@ func (n *Native) UpdateLabelIfChanged(objName string, newText string) {
// UpdateLabelAndChangeVisibility updates the label and changes the visibility of the object
func (n *Native) UpdateLabelAndChangeVisibility(objName string, newText string) {
n.UpdateLabelIfChanged(objName, newText)
containerName := objName + "_container"
if newText == "" {
_, _ = n.UIObjHide(objName)
@ -124,8 +126,6 @@ func (n *Native) UpdateLabelAndChangeVisibility(objName string, newText string)
_, _ = n.UIObjShow(objName)
_, _ = n.UIObjShow(containerName)
}
n.UpdateLabelIfChanged(objName, newText)
}
// SwitchToScreenIf switches to the screen if the screen name is different from the current screen and the screen name is in the shouldSwitch list
@ -134,7 +134,7 @@ func (n *Native) SwitchToScreenIf(screenName string, shouldSwitch []string) {
if currentScreen == screenName {
return
}
if !slices.Contains(shouldSwitch, currentScreen) {
if len(shouldSwitch) > 0 && !slices.Contains(shouldSwitch, currentScreen) {
n.lD.Trace().Str("from", currentScreen).Str("to", screenName).Msg("skipping screen switch")
return
}

File diff suppressed because one or more lines are too long

View File

@ -1,8 +1,8 @@
{
"navigation": {
"selectedUserPageObject": "[jetkvm.eez-project]:/userPages/8",
"selectedActionObject": "[jetkvm.eez-project]:/actions/12",
"selectedGlobalVariableObject": "[jetkvm.eez-project]:/variables/globalVariables/1",
"selectedUserPageObject": "[jetkvm.eez-project]:/userPages/6",
"selectedActionObject": "[jetkvm.eez-project]:/actions/0",
"selectedGlobalVariableObject": "[jetkvm.eez-project]:/variables/globalVariables/3",
"selectedStyleObject": "[jetkvm.eez-project]:/lvglStyles/styles/8",
"selectedThemeObject": "[jetkvm.eez-project]:/themes/0",
"selectedFontObject": "[jetkvm.eez-project]:/fonts/4",
@ -29,8 +29,8 @@
},
{
"type": "border",
"selected": 2,
"size": 271.5,
"selected": 3,
"size": 182.5,
"location": "right",
"children": [
{
@ -161,7 +161,7 @@
{
"type": "tabset",
"id": "#866013c9-9929-419e-8558-7f3c1e727002",
"weight": 1,
"weight": 1.2098765432098766,
"enableClose": false,
"children": [
{
@ -177,7 +177,7 @@
{
"type": "tabset",
"id": "#46c178b1-94d1-46fc-8562-72f305c3655c",
"weight": 1,
"weight": 0.7901234567901234,
"enableClose": false,
"children": [
{
@ -195,69 +195,24 @@
{
"type": "tabset",
"id": "EDITORS",
"weight": 52.479136828866125,
"selected": 5,
"weight": 49.64170733710455,
"enableDeleteWhenEmpty": false,
"enableClose": false,
"children": [
{
"type": "tab",
"id": "#2b774476-9ef3-4363-83f8-8b478f163b02",
"name": "MenuAdvancedScreen",
"id": "#f70195bf-98bb-4fe3-acbf-f8580cb4fd56",
"name": "NetworkInfoScreen",
"component": "editor",
"config": {
"objectPath": "[jetkvm.eez-project]:/userPages/4",
"objectPath": "[jetkvm.eez-project]:/userPages/6",
"permanent": false
},
"icon": "svg:page"
},
{
"type": "tab",
"id": "#7bbd8382-ea41-467d-8ad3-4312a2d47266",
"name": "ResetConfigScreen",
"component": "editor",
"config": {
"objectPath": "[jetkvm.eez-project]:/userPages/8",
"permanent": true
},
"icon": "svg:page"
},
{
"type": "tab",
"id": "#c8dece00-e490-46b8-8a14-5dcfa8bbce36",
"name": "StatusScreen",
"component": "editor",
"config": {
"objectPath": "[jetkvm.eez-project]:/userPages/7",
"permanent": true
},
"icon": "svg:page"
},
{
"type": "tab",
"id": "#e9afee88-d3be-4069-aa77-22930d1efcf3",
"name": "HomeScreen",
"component": "editor",
"config": {
"objectPath": "[jetkvm.eez-project]:/userPages/1",
"permanent": true
},
"icon": "svg:page"
},
{
"type": "tab",
"id": "#f5a057a5-977c-46be-8702-5447d603a34f",
"name": "HomeScreen",
"component": "editor",
"config": {
"objectPath": "[jetkvm.eez-project]:/userPages/2",
"permanent": true
},
"icon": "svg:page"
},
{
"type": "tab",
"id": "#8af97439-79ee-4705-be34-53ca8814f3a0",
"id": "#8ddd116a-4495-4979-875c-6f06fde11b7a",
"name": "Settings",
"component": "editor",
"config": {
@ -266,14 +221,35 @@
"permanent": false
},
"icon": "material:settings"
},
{
"type": "tab",
"id": "#7f1336ef-7971-4cd7-be76-b0f17e2f0902",
"name": "RebootScreen",
"component": "editor",
"config": {
"objectPath": "[jetkvm.eez-project]:/userPages/9",
"permanent": true
},
"icon": "svg:page"
},
{
"type": "tab",
"id": "#633c9852-5a6f-4c94-8d5b-349fffdb6d42",
"name": "HomeScreen",
"component": "editor",
"config": {
"objectPath": "[jetkvm.eez-project]:/userPages/2",
"permanent": true
},
"icon": "svg:page"
}
],
"active": true
]
},
{
"type": "row",
"id": "#ee319cf9-6145-49e4-b40e-1d999be897c8",
"weight": 21.78379264594443,
"weight": 24.621222137706013,
"children": [
{
"type": "tabset",
@ -288,7 +264,8 @@
"enableClose": false,
"icon": "svg:properties"
}
]
],
"active": true
},
{
"type": "tabset",
@ -1145,9 +1122,7 @@
"0": {
"0": {
"0": {
"0": {
"$selected": true
},
"0": {},
"1": {
"0": {}
}
@ -1229,6 +1204,10 @@
},
"1": {
"0": {
"0": {
"$selected": true
},
"2": {},
"3": {}
}
}
@ -1237,8 +1216,8 @@
},
"transform": {
"translate": {
"x": -181,
"y": -256.3828125
"x": -217,
"y": -231.3828125
},
"scale": 1
},
@ -1300,14 +1279,14 @@
"selection": {
"0": {
"0": {
"0": {},
"0": {
"0": {},
"1": {}
},
"1": {
"0": {
"0": {
"1": {}
},
"2": {
"1": {}
"1": {
"$selected": true
}
}
}
@ -1316,8 +1295,8 @@
},
"transform": {
"translate": {
"x": -10.425644531250029,
"y": -122
"x": -150,
"y": -120
},
"scale": 1
},
@ -1332,16 +1311,23 @@
"selection": {
"0": {
"0": {
"0": {},
"1": {},
"$selected": true
"0": {
"0": {}
},
"1": {
"0": {
"0": {
"$selected": true
}
}
}
}
}
},
"transform": {
"translate": {
"x": -180,
"y": -207
"x": -173,
"y": -238
},
"scale": 1
},
@ -1362,13 +1348,14 @@
"1": {
"0": {
"0": {
"0": {
"$selected": true
}
"0": {}
},
"1": {},
"2": {
"0": {}
"0": {
"0": {},
"$selected": true
}
}
}
}
@ -1388,6 +1375,68 @@
"secondToPx": 200,
"scrollLeft": 0
}
},
"[jetkvm.eez-project]:/userPages/9[flow-state]": {
"selection": {
"0": {
"0": {
"0": {},
"1": {
"0": {
"1": {
"0": {
"$selected": true
}
}
}
}
}
}
},
"transform": {
"translate": {
"x": -150,
"y": -120
},
"scale": 1
},
"timeline": {
"isEditorActive": false,
"position": 0,
"secondToPx": 200,
"scrollLeft": 0
}
},
"[jetkvm.eez-project]:/userPages/10[flow-state]": {
"selection": {
"0": {
"0": {
"0": {},
"1": {
"0": {
"1": {
"0": {
"$selected": true
}
}
}
}
}
}
},
"transform": {
"translate": {
"x": -150,
"y": -120
},
"scale": 1
},
"timeline": {
"isEditorActive": false,
"position": 0,
"secondToPx": 200,
"scrollLeft": 0
}
}
},
"activeOutputSection": 0,
@ -1403,10 +1452,10 @@
"logsPanelFilter": "all",
"selectedStylePropertyName": "",
"lvglPart": "MAIN",
"lvglState": "DEFAULT",
"lvglState": "CHECKED",
"lvglExpandedPropertiesGroup": [
"POSITION AND SIZE",
"LAYOUT"
"MISCELLANEOUS",
"TEXT"
],
"showInactiveFlowsInDebugger": true,
"globalFlowZoom": true,

View File

@ -75,65 +75,96 @@ void action_about_screen_gesture(lv_event_t * e) {
// user_data doesn't seem to be working, so we use a global variable here
static uint32_t t_reset_config;
static uint32_t t_reboot;
static bool b_reboot = false;
static bool b_reset_config = false;
static bool b_reboot_lock = false;
static bool b_reset_config_lock = false;
const int RESET_CONFIG_HOLD_TIME = 10;
const int REBOOT_HOLD_TIME = 5;
void action_reset_config(lv_event_t * e) {
typedef struct {
uint32_t *start_time;
bool *completed;
bool *lock;
int hold_time_seconds;
const char *rpc_method;
lv_obj_t *button_obj;
lv_obj_t *spinner_obj;
lv_obj_t *label_obj;
const char *default_text;
} hold_action_config_t;
static void handle_hold_action(lv_event_t *e, hold_action_config_t *config) {
lv_event_code_t event_code = lv_event_get_code(e);
if (event_code == LV_EVENT_PRESSED) {
t_reset_config = lv_tick_get();
*(config->start_time) = lv_tick_get();
}
else if (event_code == LV_EVENT_PRESSING) {
int remaining_time = RESET_CONFIG_HOLD_TIME * 1000 - lv_tick_elaps(t_reset_config);
if (remaining_time <= 0) {
lv_obj_add_flag(objects.reset_config_button, LV_OBJ_FLAG_HIDDEN);
lv_obj_clear_flag(objects.reset_config_spinner, LV_OBJ_FLAG_HIDDEN);
ui_call_rpc_handler("resetConfig", NULL);
b_reset_config = true;
int remaining_time = config->hold_time_seconds * 1000 - lv_tick_elaps(*(config->start_time));
if (remaining_time <= 0) {
if (*(config->lock)) {
return;
}
if (config->button_obj && config->spinner_obj) {
lv_obj_add_flag(config->button_obj, LV_OBJ_FLAG_HIDDEN);
lv_obj_clear_flag(config->spinner_obj, LV_OBJ_FLAG_HIDDEN);
}
ui_call_rpc_handler(config->rpc_method, NULL);
*(config->lock) = true;
*(config->completed) = true;
} else {
b_reset_config = false;
*(config->completed) = false;
char buf[100];
int remaining_time_seconds = remaining_time / 1000;
if (remaining_time_seconds <= 1) {
remaining_time_seconds = 1;
}
sprintf(buf, "Press and hold for %d seconds", remaining_time_seconds);
lv_label_set_text(objects.reset_config_label, buf);
sprintf(buf, "Press and hold for\n%d seconds", remaining_time_seconds);
lv_label_set_text(config->label_obj, buf);
}
} else if (event_code == LV_EVENT_RELEASED) {
if (!b_reset_config) {
lv_label_set_text(objects.reset_config_label, "Press and hold for 10 seconds");
if (*(config->lock)) {
*(config->lock) = false;
}
if (!*(config->completed)) {
lv_label_set_text(config->label_obj, config->default_text);
}
}
}
void action_reboot(lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
void action_reset_config(lv_event_t * e) {
hold_action_config_t config = {
.start_time = &t_reset_config,
.completed = &b_reset_config,
.lock = &b_reset_config_lock,
.hold_time_seconds = RESET_CONFIG_HOLD_TIME,
.rpc_method = "resetConfig",
.button_obj = objects.reset_config_button,
.spinner_obj = objects.reset_config_spinner,
.label_obj = objects.reset_config_label,
.default_text = "Press and hold for\n10 seconds"
};
if (event_code == LV_EVENT_PRESSED) {
t_reboot = lv_tick_get();
}
else if (event_code == LV_EVENT_PRESSING) {
int remaining_time = REBOOT_HOLD_TIME * 1000 - lv_tick_elaps(t_reboot);
if (remaining_time <= 0) {
ui_call_rpc_handler("reboot", NULL);
b_reboot = false;
} else {
b_reboot = false;
char buf[100];
int remaining_time_seconds = remaining_time / 1000;
if (remaining_time_seconds <= 1) {
remaining_time_seconds = 1;
}
sprintf(buf, "Press and hold for %d seconds", remaining_time_seconds);
lv_label_set_text(objects.reboot_label, buf);
}
} else if (event_code == LV_EVENT_RELEASED) {
if (!b_reboot) {
lv_label_set_text(objects.reboot_label, "Press and hold for 5 seconds");
}
}
handle_hold_action(e, &config);
}
void action_reboot(lv_event_t * e) {
hold_action_config_t config = {
.start_time = &t_reboot,
.completed = &b_reboot,
.lock = &b_reboot_lock,
.hold_time_seconds = REBOOT_HOLD_TIME,
.rpc_method = "reboot",
.button_obj = NULL, // No button/spinner for reboot
.spinner_obj = NULL,
.label_obj = objects.reboot_label,
.default_text = "Press and hold for\n5 seconds"
};
handle_hold_action(e, &config);
}

View File

@ -115,6 +115,7 @@ void create_screen_no_network_screen() {
lv_obj_set_style_border_width(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_radius(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_clear_flag(obj, LV_OBJ_FLAG_CLICKABLE);
lv_obj_set_scrollbar_mode(obj, LV_SCROLLBAR_MODE_OFF);
add_style_flex_start(obj);
{
lv_obj_t *parent_obj = obj;
@ -151,8 +152,8 @@ void create_screen_no_network_screen() {
// NoNetworkContentContainer
lv_obj_t *obj = lv_obj_create(parent_obj);
objects.no_network_content_container = obj;
lv_obj_set_pos(obj, 0, 0);
lv_obj_set_size(obj, LV_PCT(100), LV_PCT(60));
lv_obj_set_pos(obj, 0, 20);
lv_obj_set_size(obj, LV_PCT(100), LV_PCT(75));
lv_obj_set_style_pad_left(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
@ -166,6 +167,7 @@ void create_screen_no_network_screen() {
lv_obj_set_style_flex_main_place(obj, LV_FLEX_ALIGN_CENTER, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_flex_cross_place(obj, LV_FLEX_ALIGN_CENTER, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_flex_track_place(obj, LV_FLEX_ALIGN_CENTER, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_margin_top(obj, 200, LV_PART_MAIN | LV_STATE_CHECKED);
{
lv_obj_t *parent_obj = obj;
{
@ -327,6 +329,7 @@ void create_screen_home_screen() {
lv_obj_set_pos(obj, LV_PCT(0), LV_PCT(0));
lv_obj_set_size(obj, LV_PCT(98), 17);
lv_label_set_long_mode(obj, LV_LABEL_LONG_DOT);
lv_obj_add_flag(obj, LV_OBJ_FLAG_HIDDEN);
add_style_label_font16(obj);
lv_obj_set_style_text_align(obj, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_label_set_text(obj, "fe80::ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff");
@ -1654,6 +1657,7 @@ void create_screen_status_screen() {
lv_obj_set_style_bg_opa(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_border_width(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_radius(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_add_flag(obj, LV_OBJ_FLAG_HIDDEN);
lv_obj_clear_flag(obj, LV_OBJ_FLAG_SCROLLABLE);
add_style_flex_column_start(obj);
lv_obj_set_style_pad_right(obj, 10, LV_PART_MAIN | LV_STATE_DEFAULT);
@ -2123,6 +2127,76 @@ void create_screen_reboot_screen() {
void tick_screen_reboot_screen() {
}
void create_screen_rebooting_screen() {
lv_obj_t *obj = lv_obj_create(0);
objects.rebooting_screen = obj;
lv_obj_set_pos(obj, 0, 0);
lv_obj_set_size(obj, 300, 240);
add_style_flex_column_space_between(obj);
lv_obj_set_style_bg_color(obj, lv_color_hex(0xff000000), LV_PART_MAIN | LV_STATE_DEFAULT);
{
lv_obj_t *parent_obj = obj;
{
lv_obj_t *obj = lv_obj_create(parent_obj);
lv_obj_set_pos(obj, 0, 0);
lv_obj_set_size(obj, LV_PCT(100), LV_PCT(100));
lv_obj_set_style_pad_left(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_border_width(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_radius(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
add_style_flex_start(obj);
{
lv_obj_t *parent_obj = obj;
{
lv_obj_t *obj = lv_obj_create(parent_obj);
lv_obj_set_pos(obj, 0, 0);
lv_obj_set_size(obj, LV_PCT(100), LV_PCT(100));
lv_obj_set_style_pad_left(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_border_width(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_radius(obj, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
add_style_flex_center(obj);
{
lv_obj_t *parent_obj = obj;
{
// RebootInProgressLogo
lv_obj_t *obj = lv_image_create(parent_obj);
objects.reboot_in_progress_logo = obj;
lv_obj_set_pos(obj, 0, 0);
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
lv_image_set_src(obj, &img_boot_logo_2);
lv_obj_set_style_transform_width(obj, 174, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_transform_height(obj, 49, LV_PART_MAIN | LV_STATE_DEFAULT);
}
{
// RebootInProgressLabel
lv_obj_t *obj = lv_label_create(parent_obj);
objects.reboot_in_progress_label = obj;
lv_obj_set_pos(obj, LV_PCT(0), LV_PCT(0));
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
add_style_label_font16(obj);
lv_obj_set_style_text_align(obj, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_obj_set_style_text_font(obj, &ui_font_font_book16, LV_PART_MAIN | LV_STATE_DEFAULT);
lv_label_set_text(obj, "Rebooting device ...");
}
}
}
}
}
}
tick_screen_rebooting_screen();
}
void tick_screen_rebooting_screen() {
}
typedef void (*tick_screen_func_t)();
@ -2137,6 +2211,7 @@ tick_screen_func_t tick_screen_funcs[] = {
tick_screen_status_screen,
tick_screen_reset_config_screen,
tick_screen_reboot_screen,
tick_screen_rebooting_screen,
};
void tick_screen(int screen_index) {
tick_screen_funcs[screen_index]();
@ -2160,4 +2235,5 @@ void create_screens() {
create_screen_status_screen();
create_screen_reset_config_screen();
create_screen_reboot_screen();
create_screen_rebooting_screen();
}

View File

@ -18,6 +18,7 @@ typedef struct _objects_t {
lv_obj_t *status_screen;
lv_obj_t *reset_config_screen;
lv_obj_t *reboot_screen;
lv_obj_t *rebooting_screen;
lv_obj_t *boot_logo;
lv_obj_t *boot_screen_version;
lv_obj_t *no_network_header_container;
@ -98,6 +99,8 @@ typedef struct _objects_t {
lv_obj_t *reboot_label;
lv_obj_t *reboot_config_button;
lv_obj_t *obj1;
lv_obj_t *reboot_in_progress_logo;
lv_obj_t *reboot_in_progress_label;
} objects_t;
extern objects_t objects;
@ -113,6 +116,7 @@ enum ScreensEnum {
SCREEN_ID_STATUS_SCREEN = 8,
SCREEN_ID_RESET_CONFIG_SCREEN = 9,
SCREEN_ID_REBOOT_SCREEN = 10,
SCREEN_ID_REBOOTING_SCREEN = 11,
};
void create_screen_boot_screen();
@ -144,6 +148,9 @@ void tick_screen_reset_config_screen();
void create_screen_reboot_screen();
void tick_screen_reboot_screen();
void create_screen_rebooting_screen();
void tick_screen_rebooting_screen();
void tick_screen_by_id(enum ScreensEnum screenId);
void tick_screen(int screen_index);

View File

@ -1,4 +1,5 @@
#include <string.h>
#include <stdio.h>
#include <lvgl.h>
#include "vars.h"

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -99,3 +99,20 @@ func (n *Native) Start() {
close(n.ready)
}
// DoNotUseThisIsForCrashTestingOnly
// will crash the program in cgo code
func (n *Native) DoNotUseThisIsForCrashTestingOnly() {
defer func() {
if r := recover(); r != nil {
n.l.Error().Msg("recovered from crash")
}
}()
crash()
}
// GetLVGLVersion returns the LVGL version
func GetLVGLVersion() string {
return uiGetLVGLVersion()
}

View File

@ -175,6 +175,8 @@ func rpcGetDeviceID() (string, error) {
func rpcReboot(force bool) error {
logger.Info().Msg("Got reboot request from JSONRPC, rebooting...")
nativeInstance.SwitchToScreenIfDifferent("rebooting_screen")
args := []string{}
if force {
args = append(args, "-f")
@ -184,6 +186,7 @@ func rpcReboot(force bool) error {
err := cmd.Start()
if err != nil {
logger.Error().Err(err).Msg("failed to reboot")
switchToMainScreen()
return fmt.Errorf("failed to reboot: %w", err)
}

View File

@ -1,6 +1,8 @@
package kvm
import (
"os"
"sync"
"time"
"github.com/Masterminds/semver/v3"
@ -8,7 +10,10 @@ import (
"github.com/pion/webrtc/v4/pkg/media"
)
var nativeInstance *native.Native
var (
nativeInstance *native.Native
nativeCmdLock = sync.Mutex{}
)
func initNative(systemVersion *semver.Version, appVersion *semver.Version) {
nativeInstance = native.NewNative(native.NativeOptions{
@ -25,6 +30,9 @@ func initNative(systemVersion *semver.Version, appVersion *semver.Version) {
wakeDisplay(false, "indev_event")
},
OnRpcEvent: func(event string) {
nativeCmdLock.Lock()
defer nativeCmdLock.Unlock()
nativeLogger.Trace().Str("event", event).Msg("rpc event received")
switch event {
case "resetConfig":
@ -49,4 +57,8 @@ func initNative(systemVersion *semver.Version, appVersion *semver.Version) {
},
})
nativeInstance.Start()
if os.Getenv("JETKVM_CRASH_TESTING") == "1" {
nativeInstance.DoNotUseThisIsForCrashTestingOnly()
}
}

View File

@ -69,6 +69,13 @@ function build_docker_image() {
msg_err "Error: Docker is not installed"
exit 1
fi
DOCKER_BIN=$(which docker)
if echo "$DOCKER_BIN" | grep -q "snap"; then
msg_warn "Docker was installed using snap, this may cause issues with the build."
msg_warn "Please consider installing Docker Engine from: https://docs.docker.com/engine/install/ubuntu/"
fi
prepare_docker_build_context
pushd "${DOCKER_BUILD_CONTEXT_DIR}" > /dev/null
msg_info "▶ Building docker image ..."

View File

@ -16,6 +16,7 @@ show_help() {
echo " --run-go-tests-only Run go tests and exit"
echo " --skip-ui-build Skip frontend/UI build"
echo " --skip-native-build Skip native build"
echo " --disable-docker Disable docker build"
echo " -i, --install Build for release and install the app"
echo " --help Display this help message"
echo
@ -36,7 +37,7 @@ LOG_TRACE_SCOPES="${LOG_TRACE_SCOPES:-jetkvm,cloud,websocket,native,jsonrpc}"
RUN_GO_TESTS=false
RUN_GO_TESTS_ONLY=false
INSTALL_APP=false
BUILD_IN_DOCKER=false
BUILD_IN_DOCKER=true
DOCKER_BUILD_DEBUG=false
DOCKER_BUILD_TAG=ghcr.io/jetkvm/buildkit:latest
@ -63,8 +64,8 @@ while [[ $# -gt 0 ]]; do
RESET_USB_HID_DEVICE=true
shift
;;
--build-in-docker)
BUILD_IN_DOCKER=true
--disable-docker)
BUILD_IN_DOCKER=false
shift
;;
--docker-build-debug)
@ -117,12 +118,23 @@ fi
# Build the development version on the host
# When using `make build_release`, the frontend will be built regardless of the `SKIP_UI_BUILD` flag
# check if static/index.html exists
if [[ "$SKIP_UI_BUILD" = true && ! -f "static/index.html" ]]; then
msg_warn "static/index.html does not exist, forcing UI build"
SKIP_UI_BUILD=false
fi
if [[ "$SKIP_UI_BUILD" = false && "$JETKVM_INSIDE_DOCKER" != 1 ]]; then
msg_info "▶ Building frontend"
make frontend SKIP_UI_BUILD=0
SKIP_UI_BUILD_RELEASE=1
fi
if [[ "$SKIP_UI_BUILD_RELEASE" = 0 && "$BUILD_IN_DOCKER" = true ]]; then
msg_info "UI build is skipped when building in Docker"
SKIP_UI_BUILD_RELEASE=1
fi
if [ "$RUN_GO_TESTS" = true ]; then
msg_info "▶ Building go tests"
make build_dev_test

View File

@ -1,59 +0,0 @@
{"Time":"2025-05-16T20:06:50.904437+02:00","Action":"start","Package":"github.com/jetkvm/kvm"}
{"Time":"2025-05-16T20:06:50.904512+02:00","Action":"output","Package":"github.com/jetkvm/kvm","Output":"? \tgithub.com/jetkvm/kvm\t[no test files]\n"}
{"Time":"2025-05-16T20:06:50.904531+02:00","Action":"skip","Package":"github.com/jetkvm/kvm","Elapsed":0}
{"Time":"2025-05-16T20:06:50.916238+02:00","Action":"start","Package":"github.com/jetkvm/kvm/cmd"}
{"Time":"2025-05-16T20:06:50.91626+02:00","Action":"output","Package":"github.com/jetkvm/kvm/cmd","Output":"? \tgithub.com/jetkvm/kvm/cmd\t[no test files]\n"}
{"Time":"2025-05-16T20:06:50.916272+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/cmd","Elapsed":0}
{"Time":"2025-05-16T20:06:51.071519+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/confparser"}
{"Time":"2025-05-16T20:06:51.071566+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/logging"}
{"Time":"2025-05-16T20:06:51.071596+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/logging","Output":"? \tgithub.com/jetkvm/kvm/internal/logging\t[no test files]\n"}
{"Time":"2025-05-16T20:06:51.07161+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/mdns"}
{"Time":"2025-05-16T20:06:51.071611+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/internal/logging","Elapsed":0}
{"Time":"2025-05-16T20:06:51.071621+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/mdns","Output":"? \tgithub.com/jetkvm/kvm/internal/mdns\t[no test files]\n"}
{"Time":"2025-05-16T20:06:51.071629+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/internal/mdns","Elapsed":0}
{"Time":"2025-05-16T20:06:51.071645+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/network"}
{"Time":"2025-05-16T20:06:51.071667+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/network","Output":"? \tgithub.com/jetkvm/kvm/internal/network\t[no test files]\n"}
{"Time":"2025-05-16T20:06:51.071676+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/internal/network","Elapsed":0}
{"Time":"2025-05-16T20:06:51.071677+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/timesync"}
{"Time":"2025-05-16T20:06:51.071684+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/timesync","Output":"? \tgithub.com/jetkvm/kvm/internal/timesync\t[no test files]\n"}
{"Time":"2025-05-16T20:06:51.071687+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/udhcpc"}
{"Time":"2025-05-16T20:06:51.071688+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/internal/timesync","Elapsed":0}
{"Time":"2025-05-16T20:06:51.071709+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/usbgadget"}
{"Time":"2025-05-16T20:06:51.071715+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/usbgadget","Output":"? \tgithub.com/jetkvm/kvm/internal/usbgadget\t[no test files]\n"}
{"Time":"2025-05-16T20:06:51.071721+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/internal/usbgadget","Elapsed":0}
{"Time":"2025-05-16T20:06:51.071722+02:00","Action":"start","Package":"github.com/jetkvm/kvm/internal/websecure"}
{"Time":"2025-05-16T20:06:51.071739+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/websecure","Output":"? \tgithub.com/jetkvm/kvm/internal/websecure\t[no test files]\n"}
{"Time":"2025-05-16T20:06:51.071744+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/internal/websecure","Elapsed":0}
{"Time":"2025-05-16T20:06:51.071747+02:00","Action":"start","Package":"github.com/jetkvm/kvm/resource"}
{"Time":"2025-05-16T20:06:51.071752+02:00","Action":"output","Package":"github.com/jetkvm/kvm/resource","Output":"? \tgithub.com/jetkvm/kvm/resource\t[no test files]\n"}
{"Time":"2025-05-16T20:06:51.071755+02:00","Action":"skip","Package":"github.com/jetkvm/kvm/resource","Elapsed":0}
{"Time":"2025-05-16T20:06:51.270727+02:00","Action":"run","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateConfig"}
{"Time":"2025-05-16T20:06:51.270772+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateConfig","Output":"=== RUN TestValidateConfig\n"}
{"Time":"2025-05-16T20:06:51.27085+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateConfig","Output":"--- PASS: TestValidateConfig (0.00s)\n"}
{"Time":"2025-05-16T20:06:51.270864+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateConfig","Elapsed":0}
{"Time":"2025-05-16T20:06:51.270873+02:00","Action":"run","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskRequiredIfStatic"}
{"Time":"2025-05-16T20:06:51.270879+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskRequiredIfStatic","Output":"=== RUN TestValidateIPv4StaticConfigNetmaskRequiredIfStatic\n"}
{"Time":"2025-05-16T20:06:51.270882+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskRequiredIfStatic","Output":"--- PASS: TestValidateIPv4StaticConfigNetmaskRequiredIfStatic (0.00s)\n"}
{"Time":"2025-05-16T20:06:51.270886+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskRequiredIfStatic","Elapsed":0}
{"Time":"2025-05-16T20:06:51.270889+02:00","Action":"run","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskNotRequiredIfStatic"}
{"Time":"2025-05-16T20:06:51.2709+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskNotRequiredIfStatic","Output":"=== RUN TestValidateIPv4StaticConfigNetmaskNotRequiredIfStatic\n"}
{"Time":"2025-05-16T20:06:51.270906+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskNotRequiredIfStatic","Output":"--- PASS: TestValidateIPv4StaticConfigNetmaskNotRequiredIfStatic (0.00s)\n"}
{"Time":"2025-05-16T20:06:51.27091+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigNetmaskNotRequiredIfStatic","Elapsed":0}
{"Time":"2025-05-16T20:06:51.270914+02:00","Action":"run","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigRequiredIf"}
{"Time":"2025-05-16T20:06:51.270918+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigRequiredIf","Output":"=== RUN TestValidateIPv4StaticConfigRequiredIf\n"}
{"Time":"2025-05-16T20:06:51.270925+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigRequiredIf","Output":"--- PASS: TestValidateIPv4StaticConfigRequiredIf (0.00s)\n"}
{"Time":"2025-05-16T20:06:51.270927+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigRequiredIf","Elapsed":0}
{"Time":"2025-05-16T20:06:51.270929+02:00","Action":"run","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigValidateType"}
{"Time":"2025-05-16T20:06:51.270932+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigValidateType","Output":"=== RUN TestValidateIPv4StaticConfigValidateType\n"}
{"Time":"2025-05-16T20:06:51.270991+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigValidateType","Output":"--- PASS: TestValidateIPv4StaticConfigValidateType (0.00s)\n"}
{"Time":"2025-05-16T20:06:51.270995+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/confparser","Test":"TestValidateIPv4StaticConfigValidateType","Elapsed":0}
{"Time":"2025-05-16T20:06:51.270997+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Output":"PASS\n"}
{"Time":"2025-05-16T20:06:51.271289+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/confparser","Output":"ok \tgithub.com/jetkvm/kvm/internal/confparser\t0.200s\n"}
{"Time":"2025-05-16T20:06:51.272057+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/confparser","Elapsed":0.201}
{"Time":"2025-05-16T20:06:51.42069+02:00","Action":"run","Package":"github.com/jetkvm/kvm/internal/udhcpc","Test":"TestUnmarshalDHCPCLease"}
{"Time":"2025-05-16T20:06:51.420713+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/udhcpc","Test":"TestUnmarshalDHCPCLease","Output":"=== RUN TestUnmarshalDHCPCLease\n"}
{"Time":"2025-05-16T20:06:51.420737+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/udhcpc","Test":"TestUnmarshalDHCPCLease","Output":"--- PASS: TestUnmarshalDHCPCLease (0.00s)\n"}
{"Time":"2025-05-16T20:06:51.420743+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/udhcpc","Test":"TestUnmarshalDHCPCLease","Elapsed":0}
{"Time":"2025-05-16T20:06:51.420748+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/udhcpc","Output":"PASS\n"}
{"Time":"2025-05-16T20:06:51.421071+02:00","Action":"output","Package":"github.com/jetkvm/kvm/internal/udhcpc","Output":"ok \tgithub.com/jetkvm/kvm/internal/udhcpc\t0.349s\n"}
{"Time":"2025-05-16T20:06:51.422515+02:00","Action":"pass","Package":"github.com/jetkvm/kvm/internal/udhcpc","Elapsed":0.351}

View File

@ -1,84 +0,0 @@
import { LLDPNeighbor } from "../hooks/stores";
// import { LifeTimeLabel } from "../routes/devices.$id.settings.network";
import { GridCard } from "./Card";
export default function LLDPNeighCard({
neighbors,
}: {
neighbors: LLDPNeighbor[];
}) {
return (
<GridCard>
<div className="animate-fadeIn p-4 text-black opacity-0 animation-duration-500 dark:text-white">
<div className="space-y-4">
<h3 className="text-base font-bold text-slate-900 dark:text-white">
LLDP Neighbors
</h3>
<div className="space-y-3 pt-2">
{neighbors.map(neighbor => (
<div className="space-y-3" key={neighbor.mac}>
<h4 className="text-sm font-semibold font-mono">{neighbor.mac}</h4>
<div
className="rounded-md rounded-l-none border border-slate-500/10 border-l-blue-700/50 bg-white p-4 pl-4 backdrop-blur-sm dark:bg-transparent"
>
<div className="grid grid-cols-2 gap-x-8 gap-y-4">
<div className="col-span-2 flex flex-col justify-between">
<span className="text-sm text-slate-600 dark:text-slate-400">
Interface
</span>
<span className="text-sm font-medium">{neighbor.port_description}</span>
</div>
{neighbor.system_name && (
<div className="flex flex-col justify-between">
<span className="text-sm text-slate-600 dark:text-slate-400">
System Name
</span>
<span className="text-sm font-medium">{neighbor.system_name}</span>
</div>
)}
{neighbor.system_description && (
<div className="col-span-2 flex flex-col justify-between">
<span className="text-sm text-slate-600 dark:text-slate-400">
System Description
</span>
<span className="text-sm font-medium">{neighbor.system_description}</span>
</div>
)}
{neighbor.port_id && (
<div className="flex flex-col justify-between">
<span className="text-sm text-slate-600 dark:text-slate-400">
Port ID
</span>
<span className="text-sm font-medium">
{neighbor.port_id}
</span>
</div>
)}
{neighbor.port_description && (
<div className="flex flex-col justify-between">
<span className="text-sm text-slate-600 dark:text-slate-400">
Port Description
</span>
<span className="text-sm font-medium">
{neighbor.port_description}
</span>
</div>
)}
</div>
</div>
</div>
))}
</div>
</div>
</div>
</GridCard>
);
}

View File

@ -723,7 +723,7 @@ export type IPv6Mode =
| "link_local"
| "unknown";
export type IPv4Mode = "disabled" | "static" | "dhcp" | "unknown";
export type LLDPMode = "disabled" | "basic" | "all" | "tx_only" | "rx_only" | "unknown";
export type LLDPMode = "disabled" | "basic" | "all" | "unknown";
export type mDNSMode = "disabled" | "auto" | "ipv4_only" | "ipv6_only" | "unknown";
export type TimeSyncMode =
| "ntp_only"
@ -744,19 +744,6 @@ export interface NetworkSettings {
time_sync_mode: TimeSyncMode;
}
export interface LLDPNeighbor {
mac: string;
source: string;
chassis_id: string;
port_id: string;
port_description: string;
system_name: string;
system_description: string;
ttl: number | null;
management_address: string | null;
values: Record<string, string>;
}
export const useNetworkStateStore = create<NetworkState>((set, get) => ({
setNetworkState: (state: NetworkState) => set(state),
setDhcpLease: (lease: NetworkState["dhcp_lease"]) => set({ dhcp_lease: lease }),

View File

@ -7,7 +7,6 @@ import {
IPv4Mode,
IPv6Mode,
LLDPMode,
LLDPNeighbor,
mDNSMode,
NetworkSettings,
NetworkState,
@ -30,7 +29,6 @@ import AutoHeight from "../components/AutoHeight";
import DhcpLeaseCard from "../components/DhcpLeaseCard";
import { SettingsItem } from "./devices.$id.settings";
import LLDPNeighCard from "../components/LLDPNeighCard";
dayjs.extend(relativeTime);
@ -91,14 +89,6 @@ export default function SettingsNetworkRoute() {
const [customDomain, setCustomDomain] = useState<string>("");
const [selectedDomainOption, setSelectedDomainOption] = useState<string>("dhcp");
const [lldpNeighbors, setLldpNeighbors] = useState<LLDPNeighbor[] | undefined>(undefined);
useEffect(() => {
send("getLLDPNeighbors", {}, resp => {
if ("error" in resp) return;
setLldpNeighbors(resp.result as LLDPNeighbor[]);
});
}, [send]);
useEffect(() => {
if (networkSettings.domain && networkSettingsLoaded) {
// Check if the domain is one of the predefined options
@ -143,7 +133,7 @@ export default function SettingsNetworkRoute() {
if ("error" in resp) {
notifications.error(
"Failed to save network settings: " +
(resp.error.data ? resp.error.data : resp.error.message),
(resp.error.data ? resp.error.data : resp.error.message),
);
setNetworkSettingsLoaded(true);
return;
@ -440,7 +430,7 @@ export default function SettingsNetworkRoute() {
</SettingsItem>
<AutoHeight>
{!networkSettingsLoaded &&
!(networkState?.ipv6_addresses && networkState.ipv6_addresses.length > 0) ? (
!(networkState?.ipv6_addresses && networkState.ipv6_addresses.length > 0) ? (
<GridCard>
<div className="p-4">
<div className="space-y-4">
@ -466,49 +456,22 @@ export default function SettingsNetworkRoute() {
)}
</AutoHeight>
</div>
<div className="space-y-4">
<SettingsItem title="LLDP" description="Configure the LLDP mode">
<div className="hidden space-y-4">
<SettingsItem
title="LLDP"
description="Control which TLVs will be sent over Link Layer Discovery Protocol"
>
<SelectMenuBasic
size="SM"
value={networkSettings.lldp_mode}
onChange={e => handleLldpModeChange(e.target.value)}
options={filterUnknown([
{ value: "disabled", label: "Disabled" },
{ value: "tx_only", label: "Tx only" },
{ value: "rx_only", label: "Rx only" },
{ value: "basic", label: "Tx Minimal + Rx" },
{ value: "all", label: "Tx Detailed + Rx" },
{ value: "enabled", label: "Enabled" },
{ value: "basic", label: "Basic" },
{ value: "all", label: "All" },
])}
/>
</SettingsItem>
<AutoHeight>
{lldpNeighbors === undefined ? (
<GridCard>
<div className="p-4">
<div className="space-y-4">
<h3 className="text-base font-bold text-slate-900 dark:text-white">
LLDP Neighbors
</h3>
<div className="animate-pulse space-y-3">
<div className="h-4 w-1/3 rounded bg-slate-200 dark:bg-slate-700" />
<div className="h-4 w-1/2 rounded bg-slate-200 dark:bg-slate-700" />
<div className="h-4 w-1/3 rounded bg-slate-200 dark:bg-slate-700" />
</div>
</div>
</div>
</GridCard>
) : lldpNeighbors.length > 0 ? (
<LLDPNeighCard neighbors={lldpNeighbors} />
) : (
<EmptyCard
IconElm={LuEthernetPort}
headline="LLDP Neighbors"
description="No LLDP neighbors found"
/>
)}
</AutoHeight>
</div>
</Fieldset>
<ConfirmDialog

View File

@ -1,33 +0,0 @@
SET(SOURCES ui_Settings_Overview_Screen.c
ui_Home_Screen.c
ui_Manual_Dhcp_Wizard_Screen.c
ui_Status_Screen.c
ui_About_Screen.c
ui_Reset_Device_Screen.c
ui_Network_Screen.c
ui_Network_Setup_Failed_Screen.c
ui_No_Network_Screen.c
ui_Boot_Screen.c
ui.c
ui_comp_hook.c
ui_helpers.c
ui_img_352891484.c
ui_img_jetkvm_png.c
ui_img_cloud_png.c
ui_img_usb_png.c
ui_img_hdmi_png.c
ui_img_1318103182.c
ui_img_2138704335.c
ui_img_536642073.c
ui_img_1582207408.c
ui_img_ethernet_png.c
ui_img_1796371062.c
ui_img_cloud_disconnected_png.c
ui_img_d2_png.c
fonts/ui_font_Font_Bold_30.c
fonts/ui_font_Font_Book_16.c
fonts/ui_font_Font_Book_18.c
fonts/ui_font_Font_Book_20.c
fonts/ui_font_Font_Book_24.c)
add_library(ui ${SOURCES})

View File

@ -1,31 +0,0 @@
ui_Settings_Overview_Screen.c
ui_Home_Screen.c
ui_Manual_Dhcp_Wizard_Screen.c
ui_Status_Screen.c
ui_About_Screen.c
ui_Reset_Device_Screen.c
ui_Network_Screen.c
ui_Network_Setup_Failed_Screen.c
ui_No_Network_Screen.c
ui_Boot_Screen.c
ui.c
ui_comp_hook.c
ui_helpers.c
ui_img_352891484.c
ui_img_jetkvm_png.c
ui_img_cloud_png.c
ui_img_usb_png.c
ui_img_hdmi_png.c
ui_img_1318103182.c
ui_img_2138704335.c
ui_img_536642073.c
ui_img_1582207408.c
ui_img_ethernet_png.c
ui_img_1796371062.c
ui_img_cloud_disconnected_png.c
ui_img_d2_png.c
fonts/ui_font_Font_Bold_30.c
fonts/ui_font_Font_Book_16.c
fonts/ui_font_Font_Book_18.c
fonts/ui_font_Font_Book_20.c
fonts/ui_font_Font_Book_24.c

View File

@ -1,60 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#include "ui_helpers.h"
///////////////////// VARIABLES ////////////////////
// EVENTS
lv_obj_t *ui____initial_actions0;
// IMAGES AND IMAGE SETS
///////////////////// TEST LVGL SETTINGS ////////////////////
#if LV_COLOR_DEPTH != 16
#error "LV_COLOR_DEPTH should be 16bit to match SquareLine Studio's settings"
#endif
#if LV_COLOR_16_SWAP !=0
#error "LV_COLOR_16_SWAP should be 0 to match SquareLine Studio's settings"
#endif
///////////////////// ANIMATIONS ////////////////////
///////////////////// FUNCTIONS ////////////////////
///////////////////// SCREENS ////////////////////
void ui_init( void )
{
lv_disp_t *dispp = lv_disp_get_default();
lv_theme_t *theme = lv_theme_basic_init(dispp);
lv_disp_set_theme(dispp, theme);
ui_Settings_Overview_Screen_screen_init();
ui_Home_Screen_screen_init();
ui_Manual_Dhcp_Wizard_Screen_screen_init();
ui_Status_Screen_screen_init();
ui_About_Screen_screen_init();
ui_Reset_Device_Screen_screen_init();
ui_Network_Screen_screen_init();
ui_Network_Setup_Failed_Screen_screen_init();
ui_No_Network_Screen_screen_init();
ui_Boot_Screen_screen_init();
ui____initial_actions0 = lv_obj_create(NULL);
lv_disp_load_scr( ui_Settings_Overview_Screen);
}
void ui_destroy( void )
{ui_Settings_Overview_Screen_screen_destroy();
ui_Home_Screen_screen_destroy();
ui_Manual_Dhcp_Wizard_Screen_screen_destroy();
ui_Status_Screen_screen_destroy();
ui_About_Screen_screen_destroy();
ui_Reset_Device_Screen_screen_destroy();
ui_Network_Screen_screen_destroy();
ui_Network_Setup_Failed_Screen_screen_destroy();
ui_No_Network_Screen_screen_destroy();
ui_Boot_Screen_screen_destroy();
}

View File

@ -1,65 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef _SQUARELINE_PROJECT_UI_H
#define _SQUARELINE_PROJECT_UI_H
#ifdef __cplusplus
extern "C" {
#endif
#include "lvgl/lvgl.h"
#include "ui_helpers.h"
#include "ui_events.h"
///////////////////// SCREENS ////////////////////
#include "screens/ui_Settings_Overview_Screen.h"
#include "screens/ui_Home_Screen.h"
#include "screens/ui_Manual_Dhcp_Wizard_Screen.h"
#include "screens/ui_Status_Screen.h"
#include "screens/ui_About_Screen.h"
#include "screens/ui_Reset_Device_Screen.h"
#include "screens/ui_Network_Screen.h"
#include "screens/ui_Network_Setup_Failed_Screen.h"
#include "screens/ui_No_Network_Screen.h"
#include "screens/ui_Boot_Screen.h"
///////////////////// VARIABLES ////////////////////
// EVENTS
extern lv_obj_t *ui____initial_actions0;
// IMAGES AND IMAGE SETS
LV_IMG_DECLARE( ui_img_352891484); // assets/back-caret.png
LV_IMG_DECLARE( ui_img_jetkvm_png); // assets/jetkvm.png
LV_IMG_DECLARE( ui_img_cloud_png); // assets/cloud.png
LV_IMG_DECLARE( ui_img_usb_png); // assets/usb.png
LV_IMG_DECLARE( ui_img_hdmi_png); // assets/hdmi.png
LV_IMG_DECLARE( ui_img_1318103182); // assets/back-icon.png
LV_IMG_DECLARE( ui_img_2138704335); // assets/x-icon.png
LV_IMG_DECLARE( ui_img_536642073); // assets/check-icon.png
LV_IMG_DECLARE( ui_img_1582207408); // assets/arrow-icon.png
LV_IMG_DECLARE( ui_img_ethernet_png); // assets/ethernet.png
LV_IMG_DECLARE( ui_img_1796371062); // assets/boot-logo-2.png
LV_IMG_DECLARE( ui_img_cloud_disconnected_png); // assets/cloud_disconnected.png
LV_IMG_DECLARE( ui_img_d2_png); // assets/d2.png
// FONTS
LV_FONT_DECLARE( ui_font_Font_Bold_30);
LV_FONT_DECLARE( ui_font_Font_Book_16);
LV_FONT_DECLARE( ui_font_Font_Book_18);
LV_FONT_DECLARE( ui_font_Font_Book_20);
LV_FONT_DECLARE( ui_font_Font_Book_24);
// UI INIT
void ui_init(void);
void ui_destroy(void);
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,188 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_About_Screen;
lv_obj_t *ui_About_Container_0;
lv_obj_t *ui_About_Container_1;
lv_obj_t *ui_About_Header_Back_Button;
lv_obj_t *ui_About_Header_Back_Button_Icon;
lv_obj_t *ui_About_Header_Page_Name_Label;
lv_obj_t *ui_About_Container_2;
lv_obj_t *ui_About_Content_Operating_System_Version_Headline_Label;
lv_obj_t *ui_About_Content_Operating_System_Version_ContentLabel;
lv_obj_t *ui_About_Container_3;
lv_obj_t *ui_About_Content_App_Version_Headline_Label;
lv_obj_t *ui_About_Content_App_Version_Content_Label;
// event funtions
void ui_event_About_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
void ui_event_About_Header_Back_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
// build funtions
void ui_About_Screen_screen_init(void)
{
ui_About_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_About_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_About_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_About_Screen, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_About_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_About_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_About_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_About_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_About_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_About_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_About_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_About_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Container_0 = lv_obj_create(ui_About_Screen);
lv_obj_remove_style_all(ui_About_Container_0);
lv_obj_set_width( ui_About_Container_0, lv_pct(100));
lv_obj_set_height( ui_About_Container_0, LV_SIZE_CONTENT); /// 100
lv_obj_set_x( ui_About_Container_0, 75 );
lv_obj_set_y( ui_About_Container_0, -33 );
lv_obj_set_align( ui_About_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_About_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_About_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_About_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_About_Container_0, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_About_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Container_1 = lv_obj_create(ui_About_Container_0);
lv_obj_remove_style_all(ui_About_Container_1);
lv_obj_set_width( ui_About_Container_1, lv_pct(100));
lv_obj_set_height( ui_About_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_About_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_About_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_About_Container_1, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_About_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_About_Header_Back_Button = lv_btn_create(ui_About_Container_1);
lv_obj_set_width( ui_About_Header_Back_Button, 32);
lv_obj_set_height( ui_About_Header_Back_Button, 32);
lv_obj_set_align( ui_About_Header_Back_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_About_Header_Back_Button, 10000, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_About_Header_Back_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_About_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_About_Header_Back_Button, 100000, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_About_Header_Back_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_About_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_About_Header_Back_Button_Icon = lv_img_create(ui_About_Header_Back_Button);
lv_img_set_src(ui_About_Header_Back_Button_Icon, &ui_img_352891484);
lv_obj_set_width( ui_About_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 8
lv_obj_set_height( ui_About_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 12
lv_obj_set_align( ui_About_Header_Back_Button_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_About_Header_Back_Button_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_About_Header_Back_Button_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_About_Header_Page_Name_Label = lv_label_create(ui_About_Container_1);
lv_obj_set_width( ui_About_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_About_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_About_Header_Page_Name_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_About_Header_Page_Name_Label,"About");
lv_obj_set_style_text_color(ui_About_Header_Page_Name_Label, lv_color_hex(0x1D4ED8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_About_Header_Page_Name_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_About_Header_Page_Name_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Container_2 = lv_obj_create(ui_About_Screen);
lv_obj_remove_style_all(ui_About_Container_2);
lv_obj_set_width( ui_About_Container_2, lv_pct(100));
lv_obj_set_height( ui_About_Container_2, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_About_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_About_Container_2,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_About_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_About_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_About_Container_2, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_About_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Content_Operating_System_Version_Headline_Label = lv_label_create(ui_About_Container_2);
lv_obj_set_width( ui_About_Content_Operating_System_Version_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_About_Content_Operating_System_Version_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_About_Content_Operating_System_Version_Headline_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_About_Content_Operating_System_Version_Headline_Label,"Operating System");
lv_obj_set_style_text_color(ui_About_Content_Operating_System_Version_Headline_Label, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_About_Content_Operating_System_Version_Headline_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_About_Content_Operating_System_Version_Headline_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Content_Operating_System_Version_ContentLabel = lv_label_create(ui_About_Container_2);
lv_obj_set_width( ui_About_Content_Operating_System_Version_ContentLabel, lv_pct(100));
lv_obj_set_height( ui_About_Content_Operating_System_Version_ContentLabel, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_About_Content_Operating_System_Version_ContentLabel, LV_ALIGN_CENTER );
lv_label_set_text(ui_About_Content_Operating_System_Version_ContentLabel,"Linux 5.4.0-139-generic");
lv_obj_set_style_text_color(ui_About_Content_Operating_System_Version_ContentLabel, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_About_Content_Operating_System_Version_ContentLabel, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_About_Content_Operating_System_Version_ContentLabel, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Container_3 = lv_obj_create(ui_About_Screen);
lv_obj_remove_style_all(ui_About_Container_3);
lv_obj_set_width( ui_About_Container_3, lv_pct(100));
lv_obj_set_height( ui_About_Container_3, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_About_Container_3, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_About_Container_3,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_About_Container_3, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_About_Container_3, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_clip_corner(ui_About_Container_3, false, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_About_Container_3, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_About_Container_3, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Content_App_Version_Headline_Label = lv_label_create(ui_About_Container_3);
lv_obj_set_width( ui_About_Content_App_Version_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_About_Content_App_Version_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_About_Content_App_Version_Headline_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_About_Content_App_Version_Headline_Label,"JetKVM");
lv_obj_set_style_text_color(ui_About_Content_App_Version_Headline_Label, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_About_Content_App_Version_Headline_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_About_Content_App_Version_Headline_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_About_Content_App_Version_Content_Label = lv_label_create(ui_About_Container_3);
lv_obj_set_width( ui_About_Content_App_Version_Content_Label, lv_pct(100));
lv_obj_set_height( ui_About_Content_App_Version_Content_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_About_Content_App_Version_Content_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_About_Content_App_Version_Content_Label,"v1.0.4");
lv_obj_set_style_text_color(ui_About_Content_App_Version_Content_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_About_Content_App_Version_Content_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_About_Content_App_Version_Content_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_add_event_cb(ui_About_Header_Back_Button, ui_event_About_Header_Back_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_About_Screen, ui_event_About_Screen, LV_EVENT_ALL, NULL);
}
void ui_About_Screen_screen_destroy(void)
{
if (ui_About_Screen) lv_obj_del(ui_About_Screen);
// NULL screen variables
ui_About_Screen= NULL;
ui_About_Container_0= NULL;
ui_About_Container_1= NULL;
ui_About_Header_Back_Button= NULL;
ui_About_Header_Back_Button_Icon= NULL;
ui_About_Header_Page_Name_Label= NULL;
ui_About_Container_2= NULL;
ui_About_Content_Operating_System_Version_Headline_Label= NULL;
ui_About_Content_Operating_System_Version_ContentLabel= NULL;
ui_About_Container_3= NULL;
ui_About_Content_App_Version_Headline_Label= NULL;
ui_About_Content_App_Version_Content_Label= NULL;
}

View File

@ -1,37 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_ABOUT_SCREEN_H
#define UI_ABOUT_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_About_Screen
extern void ui_About_Screen_screen_init(void);
extern void ui_About_Screen_screen_destroy(void);
extern void ui_event_About_Screen( lv_event_t * e);
extern lv_obj_t *ui_About_Screen;
extern lv_obj_t *ui_About_Container_0;
extern lv_obj_t *ui_About_Container_1;
extern void ui_event_About_Header_Back_Button( lv_event_t * e);
extern lv_obj_t *ui_About_Header_Back_Button;
extern lv_obj_t *ui_About_Header_Back_Button_Icon;
extern lv_obj_t *ui_About_Header_Page_Name_Label;
extern lv_obj_t *ui_About_Container_2;
extern lv_obj_t *ui_About_Content_Operating_System_Version_Headline_Label;
extern lv_obj_t *ui_About_Content_Operating_System_Version_ContentLabel;
extern lv_obj_t *ui_About_Container_3;
extern lv_obj_t *ui_About_Content_App_Version_Headline_Label;
extern lv_obj_t *ui_About_Content_App_Version_Content_Label;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,99 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Boot_Screen;
lv_obj_t *ui_Boot_Container_0;
lv_obj_t *ui_Boot_Container_1;
lv_obj_t *ui_Boot_Logo;
lv_obj_t *ui_Boot_Screen_Version;
// event funtions
void ui_event_Boot_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_LEFT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
// build funtions
void ui_Boot_Screen_screen_init(void)
{
ui_Boot_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_Boot_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Boot_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Boot_Screen, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Boot_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Boot_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Boot_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Boot_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Boot_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Boot_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Boot_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Boot_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Boot_Container_0 = lv_obj_create(ui_Boot_Screen);
lv_obj_remove_style_all(ui_Boot_Container_0);
lv_obj_set_width( ui_Boot_Container_0, lv_pct(100));
lv_obj_set_height( ui_Boot_Container_0, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Boot_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Boot_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Boot_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Boot_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Boot_Container_0, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Boot_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Boot_Container_1 = lv_obj_create(ui_Boot_Container_0);
lv_obj_remove_style_all(ui_Boot_Container_1);
lv_obj_set_width( ui_Boot_Container_1, lv_pct(100));
lv_obj_set_flex_grow( ui_Boot_Container_1, 1);
lv_obj_set_x( ui_Boot_Container_1, 19 );
lv_obj_set_y( ui_Boot_Container_1, -5 );
lv_obj_set_align( ui_Boot_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Boot_Container_1,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Boot_Container_1, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_Boot_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Boot_Logo = lv_img_create(ui_Boot_Container_1);
lv_img_set_src(ui_Boot_Logo, &ui_img_1796371062);
lv_obj_set_width( ui_Boot_Logo, LV_SIZE_CONTENT); /// 174
lv_obj_set_height( ui_Boot_Logo, LV_SIZE_CONTENT); /// 49
lv_obj_set_align( ui_Boot_Logo, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Boot_Logo, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Boot_Logo, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Boot_Screen_Version = lv_label_create(ui_Boot_Container_1);
lv_obj_set_width( ui_Boot_Screen_Version, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Boot_Screen_Version, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Boot_Screen_Version, LV_ALIGN_CENTER );
lv_label_set_text(ui_Boot_Screen_Version,"0.0.1-dev");
lv_obj_set_style_text_color(ui_Boot_Screen_Version, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Boot_Screen_Version, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Boot_Screen_Version, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Boot_Screen_Version, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Boot_Screen_Version, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Boot_Screen_Version, 10, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Boot_Screen_Version, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_add_event_cb(ui_Boot_Screen, ui_event_Boot_Screen, LV_EVENT_ALL, NULL);
}
void ui_Boot_Screen_screen_destroy(void)
{
if (ui_Boot_Screen) lv_obj_del(ui_Boot_Screen);
// NULL screen variables
ui_Boot_Screen= NULL;
ui_Boot_Container_0= NULL;
ui_Boot_Container_1= NULL;
ui_Boot_Logo= NULL;
ui_Boot_Screen_Version= NULL;
}

View File

@ -1,29 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_BOOT_SCREEN_H
#define UI_BOOT_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Boot_Screen
extern void ui_Boot_Screen_screen_init(void);
extern void ui_Boot_Screen_screen_destroy(void);
extern void ui_event_Boot_Screen( lv_event_t * e);
extern lv_obj_t *ui_Boot_Screen;
extern lv_obj_t *ui_Boot_Container_0;
extern lv_obj_t *ui_Boot_Container_1;
extern lv_obj_t *ui_Boot_Logo;
extern lv_obj_t *ui_Boot_Screen_Version;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,324 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Home_Screen;
lv_obj_t *ui_Home_Container_0;
lv_obj_t *ui_Home_Container_1;
lv_obj_t *ui_Home_Header_Logo;
lv_obj_t *ui_Home_Container_2;
lv_obj_t *ui_Home_Header_Cloud_Status_Icon;
lv_obj_t *ui_Home_Header_Cloud_Status_Label;
lv_obj_t *ui_Home_Container_3;
lv_obj_t *ui_Home_Content_Ip;
lv_obj_t *ui_Home_Content_IPv6;
lv_obj_t *ui_Home_Content_Mac;
lv_obj_t *ui_Divider;
lv_obj_t *ui_Status_Area;
lv_obj_t *ui_USB_Status1;
lv_obj_t *ui_USB_Inidicator;
lv_obj_t *ui_Home_Footer_Usb_Icon;
lv_obj_t *ui_Home_Footer_Usb_Icon_Label;
lv_obj_t *ui_Home_Footer_Usb_Status_Label;
lv_obj_t *ui_HDMI_Status;
lv_obj_t *ui_HDMI_Indicator;
lv_obj_t *ui_Home_Footer_Hdmi_Icon;
lv_obj_t *ui_Home_Footer_Hdmi_Icon_Label;
lv_obj_t *ui_Home_Footer_Hdmi_Status_Label;
// event funtions
void ui_event_Home_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_LONG_PRESSED) {
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
// build funtions
void ui_Home_Screen_screen_init(void)
{
ui_Home_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_Home_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Home_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Home_Screen, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Home_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Home_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Home_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Home_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Home_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Home_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Home_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Home_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Container_0 = lv_obj_create(ui_Home_Screen);
lv_obj_remove_style_all(ui_Home_Container_0);
lv_obj_set_width( ui_Home_Container_0, lv_pct(100));
lv_obj_set_height( ui_Home_Container_0, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Home_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Home_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Home_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Home_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Home_Container_0, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Home_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Container_1 = lv_obj_create(ui_Home_Container_0);
lv_obj_remove_style_all(ui_Home_Container_1);
lv_obj_set_width( ui_Home_Container_1, lv_pct(100));
lv_obj_set_height( ui_Home_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Home_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Home_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Home_Container_1, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Home_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Home_Header_Logo = lv_img_create(ui_Home_Container_1);
lv_img_set_src(ui_Home_Header_Logo, &ui_img_jetkvm_png);
lv_obj_set_width( ui_Home_Header_Logo, LV_SIZE_CONTENT); /// 116
lv_obj_set_height( ui_Home_Header_Logo, LV_SIZE_CONTENT); /// 32
lv_obj_set_x( ui_Home_Header_Logo, -2 );
lv_obj_set_y( ui_Home_Header_Logo, 0 );
lv_obj_set_align( ui_Home_Header_Logo, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Home_Header_Logo, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Home_Header_Logo, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Home_Container_2 = lv_obj_create(ui_Home_Container_1);
lv_obj_remove_style_all(ui_Home_Container_2);
lv_obj_set_width( ui_Home_Container_2, LV_SIZE_CONTENT); /// 100
lv_obj_set_height( ui_Home_Container_2, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Home_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Home_Container_2,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Home_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Home_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Home_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Home_Container_2, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Header_Cloud_Status_Icon = lv_img_create(ui_Home_Container_2);
lv_img_set_src(ui_Home_Header_Cloud_Status_Icon, &ui_img_cloud_png);
lv_obj_set_width( ui_Home_Header_Cloud_Status_Icon, 22);
lv_obj_set_height( ui_Home_Header_Cloud_Status_Icon, 22);
lv_obj_set_align( ui_Home_Header_Cloud_Status_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Home_Header_Cloud_Status_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Home_Header_Cloud_Status_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Home_Header_Cloud_Status_Label = lv_label_create(ui_Home_Container_2);
lv_obj_set_width( ui_Home_Header_Cloud_Status_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Home_Header_Cloud_Status_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Home_Header_Cloud_Status_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Home_Header_Cloud_Status_Label,"2 active");
lv_obj_set_style_text_color(ui_Home_Header_Cloud_Status_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Header_Cloud_Status_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Header_Cloud_Status_Label, &ui_font_Font_Book_16, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Container_3 = lv_obj_create(ui_Home_Container_0);
lv_obj_remove_style_all(ui_Home_Container_3);
lv_obj_set_width( ui_Home_Container_3, lv_pct(100));
lv_obj_set_height( ui_Home_Container_3, LV_SIZE_CONTENT); /// 50
lv_obj_set_x( ui_Home_Container_3, -1 );
lv_obj_set_y( ui_Home_Container_3, -8 );
lv_obj_set_align( ui_Home_Container_3, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Home_Container_3,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Home_Container_3, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Home_Container_3, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Home_Content_Ip = lv_label_create(ui_Home_Container_3);
lv_obj_set_width( ui_Home_Content_Ip, lv_pct(100));
lv_obj_set_height( ui_Home_Content_Ip, LV_SIZE_CONTENT); /// 1
lv_obj_set_x( ui_Home_Content_Ip, 0 );
lv_obj_set_y( ui_Home_Content_Ip, -34 );
lv_obj_set_align( ui_Home_Content_Ip, LV_ALIGN_CENTER );
lv_label_set_text(ui_Home_Content_Ip,"0.0.0.0");
lv_obj_set_style_text_color(ui_Home_Content_Ip, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Content_Ip, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Content_Ip, &ui_font_Font_Bold_30, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Home_Content_Ip, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_USER_1 );
lv_obj_set_style_text_opa(ui_Home_Content_Ip, 255, LV_PART_MAIN| LV_STATE_USER_1);
lv_obj_set_style_text_font(ui_Home_Content_Ip, &ui_font_Font_Bold_30, LV_PART_MAIN| LV_STATE_USER_1);
lv_obj_set_style_text_font(ui_Home_Content_Ip, &ui_font_Font_Bold_30, LV_PART_MAIN| LV_STATE_USER_2);
ui_Home_Content_IPv6 = lv_label_create(ui_Home_Container_3);
lv_obj_set_width( ui_Home_Content_IPv6, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Home_Content_IPv6, LV_SIZE_CONTENT); /// 1
lv_obj_set_x( ui_Home_Content_IPv6, 0 );
lv_obj_set_y( ui_Home_Content_IPv6, 2 );
lv_obj_set_align( ui_Home_Content_IPv6, LV_ALIGN_CENTER );
lv_label_set_text(ui_Home_Content_IPv6,"");
lv_obj_add_flag( ui_Home_Content_IPv6, LV_OBJ_FLAG_HIDDEN ); /// Flags
lv_obj_set_style_text_color(ui_Home_Content_IPv6, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Content_IPv6, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Content_IPv6, &ui_font_Font_Book_16, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Content_Mac = lv_label_create(ui_Home_Container_3);
lv_obj_set_width( ui_Home_Content_Mac, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Home_Content_Mac, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Home_Content_Mac, LV_ALIGN_CENTER );
lv_label_set_text(ui_Home_Content_Mac,"9a:23:b9:84:ef:20");
lv_obj_set_style_text_color(ui_Home_Content_Mac, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Content_Mac, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Content_Mac, &ui_font_Font_Book_16, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Divider = lv_obj_create(ui_Home_Screen);
lv_obj_remove_style_all(ui_Divider);
lv_obj_set_height( ui_Divider, 1);
lv_obj_set_width( ui_Divider, lv_pct(100));
lv_obj_set_x( ui_Divider, -57 );
lv_obj_set_y( ui_Divider, 39 );
lv_obj_set_align( ui_Divider, LV_ALIGN_CENTER );
lv_obj_clear_flag( ui_Divider, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_bg_color(ui_Divider, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Divider, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Area = lv_obj_create(ui_Home_Screen);
lv_obj_remove_style_all(ui_Status_Area);
lv_obj_set_width( ui_Status_Area, lv_pct(100));
lv_obj_set_height( ui_Status_Area, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Status_Area, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Status_Area,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Status_Area, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Status_Area, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_USB_Status1 = lv_obj_create(ui_Status_Area);
lv_obj_remove_style_all(ui_USB_Status1);
lv_obj_set_width( ui_USB_Status1, lv_pct(50));
lv_obj_set_height( ui_USB_Status1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_USB_Status1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_USB_Status1,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_USB_Status1, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_USB_Status1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_USB_Status1, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_USB_Status1, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_USB_Inidicator = lv_obj_create(ui_USB_Status1);
lv_obj_remove_style_all(ui_USB_Inidicator);
lv_obj_set_width( ui_USB_Inidicator, lv_pct(100));
lv_obj_set_height( ui_USB_Inidicator, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_USB_Inidicator, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_USB_Inidicator,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_USB_Inidicator, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_USB_Inidicator, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_USB_Inidicator, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_USB_Inidicator, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Footer_Usb_Icon = lv_img_create(ui_USB_Inidicator);
lv_img_set_src(ui_Home_Footer_Usb_Icon, &ui_img_usb_png);
lv_obj_set_width( ui_Home_Footer_Usb_Icon, LV_SIZE_CONTENT); /// 20
lv_obj_set_height( ui_Home_Footer_Usb_Icon, LV_SIZE_CONTENT); /// 20
lv_obj_set_align( ui_Home_Footer_Usb_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Home_Footer_Usb_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Home_Footer_Usb_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Home_Footer_Usb_Icon_Label = lv_label_create(ui_USB_Inidicator);
lv_obj_set_width( ui_Home_Footer_Usb_Icon_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Home_Footer_Usb_Icon_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Home_Footer_Usb_Icon_Label, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Home_Footer_Usb_Icon_Label,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Home_Footer_Usb_Icon_Label, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_label_set_text(ui_Home_Footer_Usb_Icon_Label,"USB");
lv_obj_set_style_text_color(ui_Home_Footer_Usb_Icon_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Footer_Usb_Icon_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Footer_Usb_Icon_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Footer_Usb_Status_Label = lv_label_create(ui_USB_Status1);
lv_obj_set_width( ui_Home_Footer_Usb_Status_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Home_Footer_Usb_Status_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Home_Footer_Usb_Status_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Home_Footer_Usb_Status_Label,"Connected");
lv_obj_set_style_text_color(ui_Home_Footer_Usb_Status_Label, lv_color_hex(0x22C55E), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Footer_Usb_Status_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Footer_Usb_Status_Label, &ui_font_Font_Book_16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Home_Footer_Usb_Status_Label, lv_color_hex(0x22C55E), LV_PART_MAIN | LV_STATE_USER_1 );
lv_obj_set_style_text_opa(ui_Home_Footer_Usb_Status_Label, 255, LV_PART_MAIN| LV_STATE_USER_1);
lv_obj_set_style_text_color(ui_Home_Footer_Usb_Status_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_USER_2 );
lv_obj_set_style_text_opa(ui_Home_Footer_Usb_Status_Label, 255, LV_PART_MAIN| LV_STATE_USER_2);
ui_HDMI_Status = lv_obj_create(ui_Status_Area);
lv_obj_remove_style_all(ui_HDMI_Status);
lv_obj_set_width( ui_HDMI_Status, lv_pct(50));
lv_obj_set_height( ui_HDMI_Status, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_HDMI_Status, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_HDMI_Status,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_HDMI_Status, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_END, LV_FLEX_ALIGN_END);
lv_obj_clear_flag( ui_HDMI_Status, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_HDMI_Status, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_HDMI_Status, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_HDMI_Indicator = lv_obj_create(ui_HDMI_Status);
lv_obj_remove_style_all(ui_HDMI_Indicator);
lv_obj_set_width( ui_HDMI_Indicator, lv_pct(100));
lv_obj_set_height( ui_HDMI_Indicator, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_HDMI_Indicator, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_HDMI_Indicator,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_HDMI_Indicator, LV_FLEX_ALIGN_END, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_HDMI_Indicator, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_HDMI_Indicator, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_HDMI_Indicator, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Footer_Hdmi_Icon = lv_img_create(ui_HDMI_Indicator);
lv_img_set_src(ui_Home_Footer_Hdmi_Icon, &ui_img_hdmi_png);
lv_obj_set_width( ui_Home_Footer_Hdmi_Icon, LV_SIZE_CONTENT); /// 20
lv_obj_set_height( ui_Home_Footer_Hdmi_Icon, LV_SIZE_CONTENT); /// 20
lv_obj_set_align( ui_Home_Footer_Hdmi_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Home_Footer_Hdmi_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Home_Footer_Hdmi_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Home_Footer_Hdmi_Icon_Label = lv_label_create(ui_HDMI_Indicator);
lv_obj_set_width( ui_Home_Footer_Hdmi_Icon_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Home_Footer_Hdmi_Icon_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Home_Footer_Hdmi_Icon_Label, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Home_Footer_Hdmi_Icon_Label,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Home_Footer_Hdmi_Icon_Label, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_label_set_text(ui_Home_Footer_Hdmi_Icon_Label,"HDMI");
lv_obj_set_style_text_color(ui_Home_Footer_Hdmi_Icon_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Footer_Hdmi_Icon_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Footer_Hdmi_Icon_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Home_Footer_Hdmi_Status_Label = lv_label_create(ui_HDMI_Status);
lv_obj_set_width( ui_Home_Footer_Hdmi_Status_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Home_Footer_Hdmi_Status_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Home_Footer_Hdmi_Status_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Home_Footer_Hdmi_Status_Label,"Connected");
lv_obj_set_style_text_color(ui_Home_Footer_Hdmi_Status_Label, lv_color_hex(0x22C55E), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Home_Footer_Hdmi_Status_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Home_Footer_Hdmi_Status_Label, &ui_font_Font_Book_16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Home_Footer_Hdmi_Status_Label, lv_color_hex(0x22C55E), LV_PART_MAIN | LV_STATE_USER_1 );
lv_obj_set_style_text_opa(ui_Home_Footer_Hdmi_Status_Label, 255, LV_PART_MAIN| LV_STATE_USER_1);
lv_obj_set_style_text_color(ui_Home_Footer_Hdmi_Status_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_USER_2 );
lv_obj_set_style_text_opa(ui_Home_Footer_Hdmi_Status_Label, 255, LV_PART_MAIN| LV_STATE_USER_2);
lv_obj_add_event_cb(ui_Home_Screen, ui_event_Home_Screen, LV_EVENT_ALL, NULL);
}
void ui_Home_Screen_screen_destroy(void)
{
if (ui_Home_Screen) lv_obj_del(ui_Home_Screen);
// NULL screen variables
ui_Home_Screen= NULL;
ui_Home_Container_0= NULL;
ui_Home_Container_1= NULL;
ui_Home_Header_Logo= NULL;
ui_Home_Container_2= NULL;
ui_Home_Header_Cloud_Status_Icon= NULL;
ui_Home_Header_Cloud_Status_Label= NULL;
ui_Home_Container_3= NULL;
ui_Home_Content_Ip= NULL;
ui_Home_Content_IPv6= NULL;
ui_Home_Content_Mac= NULL;
ui_Divider= NULL;
ui_Status_Area= NULL;
ui_USB_Status1= NULL;
ui_USB_Inidicator= NULL;
ui_Home_Footer_Usb_Icon= NULL;
ui_Home_Footer_Usb_Icon_Label= NULL;
ui_Home_Footer_Usb_Status_Label= NULL;
ui_HDMI_Status= NULL;
ui_HDMI_Indicator= NULL;
ui_Home_Footer_Hdmi_Icon= NULL;
ui_Home_Footer_Hdmi_Icon_Label= NULL;
ui_Home_Footer_Hdmi_Status_Label= NULL;
}

View File

@ -1,47 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_HOME_SCREEN_H
#define UI_HOME_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Home_Screen
extern void ui_Home_Screen_screen_init(void);
extern void ui_Home_Screen_screen_destroy(void);
extern void ui_event_Home_Screen( lv_event_t * e);
extern lv_obj_t *ui_Home_Screen;
extern lv_obj_t *ui_Home_Container_0;
extern lv_obj_t *ui_Home_Container_1;
extern lv_obj_t *ui_Home_Header_Logo;
extern lv_obj_t *ui_Home_Container_2;
extern lv_obj_t *ui_Home_Header_Cloud_Status_Icon;
extern lv_obj_t *ui_Home_Header_Cloud_Status_Label;
extern lv_obj_t *ui_Home_Container_3;
extern lv_obj_t *ui_Home_Content_Ip;
extern lv_obj_t *ui_Home_Content_IPv6;
extern lv_obj_t *ui_Home_Content_Mac;
extern lv_obj_t *ui_Divider;
extern lv_obj_t *ui_Status_Area;
extern lv_obj_t *ui_USB_Status1;
extern lv_obj_t *ui_USB_Inidicator;
extern lv_obj_t *ui_Home_Footer_Usb_Icon;
extern lv_obj_t *ui_Home_Footer_Usb_Icon_Label;
extern lv_obj_t *ui_Home_Footer_Usb_Status_Label;
extern lv_obj_t *ui_HDMI_Status;
extern lv_obj_t *ui_HDMI_Indicator;
extern lv_obj_t *ui_Home_Footer_Hdmi_Icon;
extern lv_obj_t *ui_Home_Footer_Hdmi_Icon_Label;
extern lv_obj_t *ui_Home_Footer_Hdmi_Status_Label;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,557 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Manual_Dhcp_Wizard_Screen;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_0;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_1;
lv_obj_t *ui_Manual_Dhcp_Wizard_Header_IP_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Header_IP_Type;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_2;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_3;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_4;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_1;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_2;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_3;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_5;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_4;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_5;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_6;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_6;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_7;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_8;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_9;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_7;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_10;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_11;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_12;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Container_8;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm;
lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label;
// event funtions
void ui_event_Manual_Dhcp_Wizard_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_LEFT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
void ui_event_Manual_Dhcp_Wizard_Content_Number_Button_Cancel( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Network_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Network_Screen_screen_init);
}
}
// build funtions
void ui_Manual_Dhcp_Wizard_Screen_screen_init(void)
{
ui_Manual_Dhcp_Wizard_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_Manual_Dhcp_Wizard_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Screen, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Manual_Dhcp_Wizard_Screen, 36, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Manual_Dhcp_Wizard_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Manual_Dhcp_Wizard_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Manual_Dhcp_Wizard_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Container_0 = lv_obj_create(ui_Manual_Dhcp_Wizard_Screen);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_0);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_0, lv_pct(100));
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Container_0, lv_pct(100));
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_0, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Container_1 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_0);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_1);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_1, lv_pct(100));
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Container_1, LV_SIZE_CONTENT); /// 40
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_1, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_END, LV_FLEX_ALIGN_END);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Manual_Dhcp_Wizard_Header_IP_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Container_1);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Header_IP_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Header_IP_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Header_IP_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Header_IP_Label,"192.168.255.255");
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Header_IP_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Header_IP_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_letter_space(ui_Manual_Dhcp_Wizard_Header_IP_Label, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_line_space(ui_Manual_Dhcp_Wizard_Header_IP_Label, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Header_IP_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Header_IP_Type = lv_label_create(ui_Manual_Dhcp_Wizard_Container_1);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Header_IP_Type, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Header_IP_Type, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Header_IP_Type, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Header_IP_Type,"Subnet");
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Header_IP_Type, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Header_IP_Type, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Header_IP_Type, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Container_2 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_0);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_2);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_2, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Container_2, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_2,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_2, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Container_3 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_2);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_3);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Container_3, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Container_3, 1);
lv_obj_set_x( ui_Manual_Dhcp_Wizard_Container_3, -25 );
lv_obj_set_y( ui_Manual_Dhcp_Wizard_Container_3, -36 );
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_3, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_3,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_3, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_3, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_3, 7, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_3, 7, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Container_4 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_3);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_4);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_4, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Container_4, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_4, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_4,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_4, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_4, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_4, 7, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Content_Number_Button_1 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_4);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_1, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_1, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_1, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_1, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_1);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label,"1");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_2 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_4);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_2, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_2, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_2, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_2, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_2);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label,"2");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_3 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_4);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_3, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_3, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_3, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_3, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_3);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label,"3");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Container_5 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_3);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_5);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_5, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Container_5, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_5, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_5,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_5, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_5, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_5, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_5, 7, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Content_Number_Button_4 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_5);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_4, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_4, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_4, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_4, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_4);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label,"4");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_5 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_5);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_5, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_5, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_5, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_5, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_5);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label,"5");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_6 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_5);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_6, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_6, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_6, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_6, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_6);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label,"6");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Container_6 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_3);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_6);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_6, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Container_6, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_6, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_6,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_6, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_6, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_6, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_6, 7, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Content_Number_Button_7 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_6);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_7, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_7, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_7, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_7, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_7);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label,"7");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_8 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_6);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_8, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_8, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_8, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_8, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_8);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label,"8");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_9 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_6);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_9, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_9, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_9, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_9, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_9);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label,"9");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Container_7 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_3);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_7);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_7, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Container_7, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_7, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_7,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_7, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_7, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_7, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_7, 7, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Content_Number_Button_10 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_7);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_10, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_10, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_10, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_10, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_10);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label,".");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_11 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_7);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_11, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_11, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_11, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_11, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label = lv_label_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_11);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label, LV_SIZE_CONTENT); /// 0
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label,"0");
lv_obj_set_style_text_font(ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label, lv_color_hex(0x808080), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label, 0, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_12 = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_7);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_12, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_12, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_12, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_12, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label = lv_img_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_12);
lv_img_set_src(ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label, &ui_img_1318103182);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label, LV_SIZE_CONTENT); /// 17
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label, LV_SIZE_CONTENT); /// 17
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Manual_Dhcp_Wizard_Container_8 = lv_obj_create(ui_Manual_Dhcp_Wizard_Container_2);
lv_obj_remove_style_all(ui_Manual_Dhcp_Wizard_Container_8);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Container_8, 52);
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Container_8, lv_pct(100));
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Container_8, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Manual_Dhcp_Wizard_Container_8,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Manual_Dhcp_Wizard_Container_8, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Container_8, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Manual_Dhcp_Wizard_Container_8, 7, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Manual_Dhcp_Wizard_Container_8, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_8);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label = lv_img_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel);
lv_img_set_src(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label, &ui_img_2138704335);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label, LV_SIZE_CONTENT); /// 25
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label, LV_SIZE_CONTENT); /// 24
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm = lv_btn_create(ui_Manual_Dhcp_Wizard_Container_8);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, lv_pct(100));
lv_obj_set_flex_grow( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, 1);
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_border_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_border_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label = lv_img_create(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm);
lv_img_set_src(ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label, &ui_img_536642073);
lv_obj_set_width( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label, LV_SIZE_CONTENT); /// 19
lv_obj_set_height( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label, LV_SIZE_CONTENT); /// 14
lv_obj_set_align( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_add_event_cb(ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, ui_event_Manual_Dhcp_Wizard_Content_Number_Button_Cancel, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Manual_Dhcp_Wizard_Screen, ui_event_Manual_Dhcp_Wizard_Screen, LV_EVENT_ALL, NULL);
}
void ui_Manual_Dhcp_Wizard_Screen_screen_destroy(void)
{
if (ui_Manual_Dhcp_Wizard_Screen) lv_obj_del(ui_Manual_Dhcp_Wizard_Screen);
// NULL screen variables
ui_Manual_Dhcp_Wizard_Screen= NULL;
ui_Manual_Dhcp_Wizard_Container_0= NULL;
ui_Manual_Dhcp_Wizard_Container_1= NULL;
ui_Manual_Dhcp_Wizard_Header_IP_Label= NULL;
ui_Manual_Dhcp_Wizard_Header_IP_Type= NULL;
ui_Manual_Dhcp_Wizard_Container_2= NULL;
ui_Manual_Dhcp_Wizard_Container_3= NULL;
ui_Manual_Dhcp_Wizard_Container_4= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_1= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_2= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_3= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label= NULL;
ui_Manual_Dhcp_Wizard_Container_5= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_4= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_5= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_6= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label= NULL;
ui_Manual_Dhcp_Wizard_Container_6= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_7= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_8= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_9= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label= NULL;
ui_Manual_Dhcp_Wizard_Container_7= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_10= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_11= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_12= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label= NULL;
ui_Manual_Dhcp_Wizard_Container_8= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm= NULL;
ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label= NULL;
}

View File

@ -1,65 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_MANUAL_DHCP_WIZARD_SCREEN_H
#define UI_MANUAL_DHCP_WIZARD_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Manual_Dhcp_Wizard_Screen
extern void ui_Manual_Dhcp_Wizard_Screen_screen_init(void);
extern void ui_Manual_Dhcp_Wizard_Screen_screen_destroy(void);
extern void ui_event_Manual_Dhcp_Wizard_Screen( lv_event_t * e);
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Screen;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_0;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_1;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Header_IP_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Header_IP_Type;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_2;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_3;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_4;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_1;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_1_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_2;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_2_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_3;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_3_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_5;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_4;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_4_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_5;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_5_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_6;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_6_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_6;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_7;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_7_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_8;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_8_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_9;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_9_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_7;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_10;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_10_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_11;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_11_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_12;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_12_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Container_8;
extern void ui_event_Manual_Dhcp_Wizard_Content_Number_Button_Cancel( lv_event_t * e);
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Cancel_Label;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm;
extern lv_obj_t *ui_Manual_Dhcp_Wizard_Content_Number_Button_Confirm_Label;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,272 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Network_Screen;
lv_obj_t *ui_Network_Container_0;
lv_obj_t *ui_Network_Container_1;
lv_obj_t *ui_Network_Header_Back_Button;
lv_obj_t *ui_Network_Header_Back_Button_Icon;
lv_obj_t *ui_Network_Header_Page_Name_Label;
lv_obj_t *ui_Network_Content_Section_Headline;
lv_obj_t *ui_Network_Container_2;
lv_obj_t *ui_Network_Content_IP_Automatic_Button;
lv_obj_t *ui_Network_Content_IP_Automatic_Button_Label;
lv_obj_t *ui_Network_Content_IP_Automatic_Button_Checkbox_Icon;
lv_obj_t *ui_Network_Content_IP_Divider;
lv_obj_t *ui_Network_Content_IP_Manual_Button;
lv_obj_t *ui_Network_Content_IP_Manual_Button_Label;
lv_obj_t *ui_Network_Content_IP_Manual_Button_Checkbox_Icon;
lv_obj_t *ui_Network_Content_Configure_Manually_Button;
lv_obj_t *ui_Network_Content_Configure_Manually_Button_Label;
// event funtions
void ui_event_Network_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
void ui_event_Network_Header_Back_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
void ui_event_Network_Content_Configure_Manually_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Manual_Dhcp_Wizard_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Manual_Dhcp_Wizard_Screen_screen_init);
}
}
// build funtions
void ui_Network_Screen_screen_init(void)
{
ui_Network_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_Network_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Network_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Screen, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Network_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Network_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Network_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Network_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Network_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Network_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Network_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Container_0 = lv_obj_create(ui_Network_Screen);
lv_obj_remove_style_all(ui_Network_Container_0);
lv_obj_set_width( ui_Network_Container_0, lv_pct(100));
lv_obj_set_height( ui_Network_Container_0, LV_SIZE_CONTENT); /// 100
lv_obj_set_x( ui_Network_Container_0, 75 );
lv_obj_set_y( ui_Network_Container_0, -33 );
lv_obj_set_align( ui_Network_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Network_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Network_Container_0, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Network_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Container_1 = lv_obj_create(ui_Network_Container_0);
lv_obj_remove_style_all(ui_Network_Container_1);
lv_obj_set_width( ui_Network_Container_1, lv_pct(100));
lv_obj_set_height( ui_Network_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Network_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Network_Container_1, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_Network_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Network_Header_Back_Button = lv_btn_create(ui_Network_Container_1);
lv_obj_set_width( ui_Network_Header_Back_Button, 32);
lv_obj_set_height( ui_Network_Header_Back_Button, 32);
lv_obj_set_align( ui_Network_Header_Back_Button, LV_ALIGN_CENTER );
lv_obj_add_state( ui_Network_Header_Back_Button, LV_STATE_PRESSED ); /// States
lv_obj_set_style_radius(ui_Network_Header_Back_Button, 10000, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Network_Header_Back_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Network_Header_Back_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Network_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Network_Header_Back_Button_Icon = lv_img_create(ui_Network_Header_Back_Button);
lv_img_set_src(ui_Network_Header_Back_Button_Icon, &ui_img_352891484);
lv_obj_set_width( ui_Network_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 8
lv_obj_set_height( ui_Network_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 12
lv_obj_set_align( ui_Network_Header_Back_Button_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Network_Header_Back_Button_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Network_Header_Back_Button_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Network_Header_Page_Name_Label = lv_label_create(ui_Network_Container_1);
lv_obj_set_width( ui_Network_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Network_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Header_Page_Name_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Network_Header_Page_Name_Label,"Network");
lv_obj_set_style_text_color(ui_Network_Header_Page_Name_Label, lv_color_hex(0x1D4ED8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Header_Page_Name_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Header_Page_Name_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Content_Section_Headline = lv_label_create(ui_Network_Screen);
lv_obj_set_width( ui_Network_Content_Section_Headline, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Network_Content_Section_Headline, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Content_Section_Headline, LV_ALIGN_CENTER );
lv_label_set_text(ui_Network_Content_Section_Headline,"IPv4 Settings");
lv_obj_set_style_text_color(ui_Network_Content_Section_Headline, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Content_Section_Headline, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Content_Section_Headline, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Container_2 = lv_obj_create(ui_Network_Screen);
lv_obj_remove_style_all(ui_Network_Container_2);
lv_obj_set_width( ui_Network_Container_2, lv_pct(100));
lv_obj_set_height( ui_Network_Container_2, LV_SIZE_CONTENT); /// 500
lv_obj_set_align( ui_Network_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Container_2,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Network_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_radius(ui_Network_Container_2, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_clip_corner(ui_Network_Container_2, true, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Network_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Network_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Content_IP_Automatic_Button = lv_btn_create(ui_Network_Container_2);
lv_obj_set_width( ui_Network_Content_IP_Automatic_Button, lv_pct(100));
lv_obj_set_height( ui_Network_Content_IP_Automatic_Button, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Network_Content_IP_Automatic_Button, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Content_IP_Automatic_Button,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Network_Content_IP_Automatic_Button, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START);
lv_obj_set_style_radius(ui_Network_Content_IP_Automatic_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Network_Content_IP_Automatic_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Content_IP_Automatic_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Network_Content_IP_Automatic_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Network_Content_IP_Automatic_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Network_Content_IP_Automatic_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Network_Content_IP_Automatic_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Network_Content_IP_Automatic_Button, 0, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Network_Content_IP_Automatic_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Network_Content_IP_Automatic_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Network_Content_IP_Automatic_Button_Label = lv_label_create(ui_Network_Content_IP_Automatic_Button);
lv_obj_set_width( ui_Network_Content_IP_Automatic_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Network_Content_IP_Automatic_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Content_IP_Automatic_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Network_Content_IP_Automatic_Button_Label,"Automatic");
lv_obj_set_style_text_color(ui_Network_Content_IP_Automatic_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Content_IP_Automatic_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Content_IP_Automatic_Button_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Content_IP_Automatic_Button_Checkbox_Icon = lv_obj_create(ui_Network_Content_IP_Automatic_Button);
lv_obj_remove_style_all(ui_Network_Content_IP_Automatic_Button_Checkbox_Icon);
lv_obj_set_width( ui_Network_Content_IP_Automatic_Button_Checkbox_Icon, 19);
lv_obj_set_height( ui_Network_Content_IP_Automatic_Button_Checkbox_Icon, 14);
lv_obj_set_align( ui_Network_Content_IP_Automatic_Button_Checkbox_Icon, LV_ALIGN_CENTER );
lv_obj_clear_flag( ui_Network_Content_IP_Automatic_Button_Checkbox_Icon, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_bg_img_src( ui_Network_Content_IP_Automatic_Button_Checkbox_Icon, &ui_img_536642073, LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_img_opa(ui_Network_Content_IP_Automatic_Button_Checkbox_Icon, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Content_IP_Divider = lv_obj_create(ui_Network_Container_2);
lv_obj_remove_style_all(ui_Network_Content_IP_Divider);
lv_obj_set_height( ui_Network_Content_IP_Divider, 1);
lv_obj_set_width( ui_Network_Content_IP_Divider, lv_pct(100));
lv_obj_set_align( ui_Network_Content_IP_Divider, LV_ALIGN_CENTER );
lv_obj_clear_flag( ui_Network_Content_IP_Divider, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_bg_color(ui_Network_Content_IP_Divider, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Content_IP_Divider, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Content_IP_Manual_Button = lv_btn_create(ui_Network_Container_2);
lv_obj_set_width( ui_Network_Content_IP_Manual_Button, lv_pct(100));
lv_obj_set_height( ui_Network_Content_IP_Manual_Button, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Network_Content_IP_Manual_Button, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Content_IP_Manual_Button,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Network_Content_IP_Manual_Button, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START);
lv_obj_set_style_radius(ui_Network_Content_IP_Manual_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Network_Content_IP_Manual_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Content_IP_Manual_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Network_Content_IP_Manual_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Network_Content_IP_Manual_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Network_Content_IP_Manual_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Network_Content_IP_Manual_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Network_Content_IP_Manual_Button, 0, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Network_Content_IP_Manual_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Network_Content_IP_Manual_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Network_Content_IP_Manual_Button_Label = lv_label_create(ui_Network_Content_IP_Manual_Button);
lv_obj_set_width( ui_Network_Content_IP_Manual_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Network_Content_IP_Manual_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Content_IP_Manual_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Network_Content_IP_Manual_Button_Label,"Manual");
lv_obj_set_style_text_color(ui_Network_Content_IP_Manual_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Content_IP_Manual_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Content_IP_Manual_Button_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Content_IP_Manual_Button_Checkbox_Icon = lv_obj_create(ui_Network_Content_IP_Manual_Button);
lv_obj_remove_style_all(ui_Network_Content_IP_Manual_Button_Checkbox_Icon);
lv_obj_set_width( ui_Network_Content_IP_Manual_Button_Checkbox_Icon, 19);
lv_obj_set_height( ui_Network_Content_IP_Manual_Button_Checkbox_Icon, 14);
lv_obj_set_align( ui_Network_Content_IP_Manual_Button_Checkbox_Icon, LV_ALIGN_CENTER );
lv_obj_clear_flag( ui_Network_Content_IP_Manual_Button_Checkbox_Icon, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_bg_img_src( ui_Network_Content_IP_Manual_Button_Checkbox_Icon, &ui_img_536642073, LV_PART_MAIN | LV_STATE_DEFAULT );
ui_Network_Content_Configure_Manually_Button = lv_btn_create(ui_Network_Screen);
lv_obj_set_width( ui_Network_Content_Configure_Manually_Button, lv_pct(100));
lv_obj_set_height( ui_Network_Content_Configure_Manually_Button, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Network_Content_Configure_Manually_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Network_Content_Configure_Manually_Button, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Network_Content_Configure_Manually_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Content_Configure_Manually_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Network_Content_Configure_Manually_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Network_Content_Configure_Manually_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Network_Content_Configure_Manually_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Network_Content_Configure_Manually_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Network_Content_Configure_Manually_Button, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Network_Content_Configure_Manually_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Network_Content_Configure_Manually_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Network_Content_Configure_Manually_Button_Label = lv_label_create(ui_Network_Content_Configure_Manually_Button);
lv_obj_set_width( ui_Network_Content_Configure_Manually_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Network_Content_Configure_Manually_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Content_Configure_Manually_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Network_Content_Configure_Manually_Button_Label,"Configure IPv4");
lv_obj_set_style_text_color(ui_Network_Content_Configure_Manually_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Content_Configure_Manually_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Content_Configure_Manually_Button_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_add_event_cb(ui_Network_Header_Back_Button, ui_event_Network_Header_Back_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Network_Content_Configure_Manually_Button, ui_event_Network_Content_Configure_Manually_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Network_Screen, ui_event_Network_Screen, LV_EVENT_ALL, NULL);
}
void ui_Network_Screen_screen_destroy(void)
{
if (ui_Network_Screen) lv_obj_del(ui_Network_Screen);
// NULL screen variables
ui_Network_Screen= NULL;
ui_Network_Container_0= NULL;
ui_Network_Container_1= NULL;
ui_Network_Header_Back_Button= NULL;
ui_Network_Header_Back_Button_Icon= NULL;
ui_Network_Header_Page_Name_Label= NULL;
ui_Network_Content_Section_Headline= NULL;
ui_Network_Container_2= NULL;
ui_Network_Content_IP_Automatic_Button= NULL;
ui_Network_Content_IP_Automatic_Button_Label= NULL;
ui_Network_Content_IP_Automatic_Button_Checkbox_Icon= NULL;
ui_Network_Content_IP_Divider= NULL;
ui_Network_Content_IP_Manual_Button= NULL;
ui_Network_Content_IP_Manual_Button_Label= NULL;
ui_Network_Content_IP_Manual_Button_Checkbox_Icon= NULL;
ui_Network_Content_Configure_Manually_Button= NULL;
ui_Network_Content_Configure_Manually_Button_Label= NULL;
}

View File

@ -1,43 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_NETWORK_SCREEN_H
#define UI_NETWORK_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Network_Screen
extern void ui_Network_Screen_screen_init(void);
extern void ui_Network_Screen_screen_destroy(void);
extern void ui_event_Network_Screen( lv_event_t * e);
extern lv_obj_t *ui_Network_Screen;
extern lv_obj_t *ui_Network_Container_0;
extern lv_obj_t *ui_Network_Container_1;
extern void ui_event_Network_Header_Back_Button( lv_event_t * e);
extern lv_obj_t *ui_Network_Header_Back_Button;
extern lv_obj_t *ui_Network_Header_Back_Button_Icon;
extern lv_obj_t *ui_Network_Header_Page_Name_Label;
extern lv_obj_t *ui_Network_Content_Section_Headline;
extern lv_obj_t *ui_Network_Container_2;
extern lv_obj_t *ui_Network_Content_IP_Automatic_Button;
extern lv_obj_t *ui_Network_Content_IP_Automatic_Button_Label;
extern lv_obj_t *ui_Network_Content_IP_Automatic_Button_Checkbox_Icon;
extern lv_obj_t *ui_Network_Content_IP_Divider;
extern lv_obj_t *ui_Network_Content_IP_Manual_Button;
extern lv_obj_t *ui_Network_Content_IP_Manual_Button_Label;
extern lv_obj_t *ui_Network_Content_IP_Manual_Button_Checkbox_Icon;
extern void ui_event_Network_Content_Configure_Manually_Button( lv_event_t * e);
extern lv_obj_t *ui_Network_Content_Configure_Manually_Button;
extern lv_obj_t *ui_Network_Content_Configure_Manually_Button_Label;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,200 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Network_Setup_Failed_Screen;
lv_obj_t *ui_Network_Setup_Failed_Container_0;
lv_obj_t *ui_Network_Setup_Failed_Container_1;
lv_obj_t *ui_Network_Setup_Failed_Header_Logo;
lv_obj_t *ui_Network_Setup_Failed_Container_2;
lv_obj_t *ui_Network_Setup_Failed_Container_3;
lv_obj_t *ui_Network_Setup_Failed_Container_4;
lv_obj_t *ui_Network_Setup_Failed_Content_Headline;
lv_obj_t *ui_Network_Setup_Failed_Content_Sub_Title;
lv_obj_t *ui_Network_Setup_Failed_Content_Button;
lv_obj_t *ui_Network_Setup_Failed_Content_Button_Label;
lv_obj_t *ui_Network_Setup_Failed_Content_Button_Icon;
// event funtions
void ui_event_Network_Setup_Failed_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_LEFT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
void ui_event_Network_Setup_Failed_Content_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Network_Screen, LV_SCR_LOAD_ANIM_FADE_ON, 200, 0, &ui_Network_Screen_screen_init);
}
}
// build funtions
void ui_Network_Setup_Failed_Screen_screen_init(void)
{
ui_Network_Setup_Failed_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_Network_Setup_Failed_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Network_Setup_Failed_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Setup_Failed_Screen, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Network_Setup_Failed_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Setup_Failed_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Network_Setup_Failed_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Network_Setup_Failed_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Network_Setup_Failed_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Network_Setup_Failed_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Network_Setup_Failed_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Network_Setup_Failed_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Setup_Failed_Container_0 = lv_obj_create(ui_Network_Setup_Failed_Screen);
lv_obj_remove_style_all(ui_Network_Setup_Failed_Container_0);
lv_obj_set_width( ui_Network_Setup_Failed_Container_0, lv_pct(100));
lv_obj_set_flex_grow( ui_Network_Setup_Failed_Container_0, 1);
lv_obj_set_align( ui_Network_Setup_Failed_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Setup_Failed_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Setup_Failed_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Network_Setup_Failed_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Network_Setup_Failed_Container_0, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Network_Setup_Failed_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Setup_Failed_Container_1 = lv_obj_create(ui_Network_Setup_Failed_Container_0);
lv_obj_remove_style_all(ui_Network_Setup_Failed_Container_1);
lv_obj_set_width( ui_Network_Setup_Failed_Container_1, lv_pct(100));
lv_obj_set_height( ui_Network_Setup_Failed_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Network_Setup_Failed_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Setup_Failed_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Network_Setup_Failed_Container_1, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Network_Setup_Failed_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Network_Setup_Failed_Header_Logo = lv_img_create(ui_Network_Setup_Failed_Container_1);
lv_img_set_src(ui_Network_Setup_Failed_Header_Logo, &ui_img_jetkvm_png);
lv_obj_set_width( ui_Network_Setup_Failed_Header_Logo, LV_SIZE_CONTENT); /// 116
lv_obj_set_height( ui_Network_Setup_Failed_Header_Logo, LV_SIZE_CONTENT); /// 32
lv_obj_set_x( ui_Network_Setup_Failed_Header_Logo, -2 );
lv_obj_set_y( ui_Network_Setup_Failed_Header_Logo, 0 );
lv_obj_set_align( ui_Network_Setup_Failed_Header_Logo, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Network_Setup_Failed_Header_Logo, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Network_Setup_Failed_Header_Logo, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Network_Setup_Failed_Container_2 = lv_obj_create(ui_Network_Setup_Failed_Container_0);
lv_obj_remove_style_all(ui_Network_Setup_Failed_Container_2);
lv_obj_set_width( ui_Network_Setup_Failed_Container_2, lv_pct(100));
lv_obj_set_flex_grow( ui_Network_Setup_Failed_Container_2, 1);
lv_obj_set_x( ui_Network_Setup_Failed_Container_2, 1 );
lv_obj_set_y( ui_Network_Setup_Failed_Container_2, 20 );
lv_obj_set_align( ui_Network_Setup_Failed_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Setup_Failed_Container_2,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Setup_Failed_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Network_Setup_Failed_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Network_Setup_Failed_Container_3 = lv_obj_create(ui_Network_Setup_Failed_Container_2);
lv_obj_remove_style_all(ui_Network_Setup_Failed_Container_3);
lv_obj_set_width( ui_Network_Setup_Failed_Container_3, lv_pct(100));
lv_obj_set_flex_grow( ui_Network_Setup_Failed_Container_3, 1);
lv_obj_set_align( ui_Network_Setup_Failed_Container_3, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Setup_Failed_Container_3,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Setup_Failed_Container_3, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_Network_Setup_Failed_Container_3, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Network_Setup_Failed_Container_3, 0, LV_PART_SCROLLBAR| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Network_Setup_Failed_Container_3, 0, LV_PART_SCROLLBAR| LV_STATE_DEFAULT);
ui_Network_Setup_Failed_Container_4 = lv_obj_create(ui_Network_Setup_Failed_Container_3);
lv_obj_remove_style_all(ui_Network_Setup_Failed_Container_4);
lv_obj_set_width( ui_Network_Setup_Failed_Container_4, lv_pct(100));
lv_obj_set_height( ui_Network_Setup_Failed_Container_4, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Setup_Failed_Container_4, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Setup_Failed_Container_4,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Network_Setup_Failed_Container_4, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Network_Setup_Failed_Container_4, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_left(ui_Network_Setup_Failed_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Network_Setup_Failed_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Network_Setup_Failed_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Network_Setup_Failed_Container_4, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Setup_Failed_Content_Headline = lv_label_create(ui_Network_Setup_Failed_Container_4);
lv_obj_set_width( ui_Network_Setup_Failed_Content_Headline, lv_pct(100));
lv_obj_set_height( ui_Network_Setup_Failed_Content_Headline, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Setup_Failed_Content_Headline, LV_ALIGN_CENTER );
lv_label_set_text(ui_Network_Setup_Failed_Content_Headline,"DHCP Error");
lv_obj_set_style_text_color(ui_Network_Setup_Failed_Content_Headline, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Setup_Failed_Content_Headline, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui_Network_Setup_Failed_Content_Headline, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Setup_Failed_Content_Headline, &ui_font_Font_Bold_30, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Setup_Failed_Content_Sub_Title = lv_label_create(ui_Network_Setup_Failed_Container_4);
lv_obj_set_width( ui_Network_Setup_Failed_Content_Sub_Title, lv_pct(100));
lv_obj_set_height( ui_Network_Setup_Failed_Content_Sub_Title, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Setup_Failed_Content_Sub_Title, LV_ALIGN_CENTER );
lv_label_set_text(ui_Network_Setup_Failed_Content_Sub_Title,"Cannot obtain IP address");
lv_obj_set_style_text_color(ui_Network_Setup_Failed_Content_Sub_Title, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Setup_Failed_Content_Sub_Title, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui_Network_Setup_Failed_Content_Sub_Title, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Setup_Failed_Content_Sub_Title, &ui_font_Font_Book_16, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Setup_Failed_Content_Button = lv_btn_create(ui_Network_Setup_Failed_Container_3);
lv_obj_set_width( ui_Network_Setup_Failed_Content_Button, lv_pct(100));
lv_obj_set_height( ui_Network_Setup_Failed_Content_Button, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Network_Setup_Failed_Content_Button, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Network_Setup_Failed_Content_Button,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Network_Setup_Failed_Content_Button, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_set_style_radius(ui_Network_Setup_Failed_Content_Button, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Network_Setup_Failed_Content_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Network_Setup_Failed_Content_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Network_Setup_Failed_Content_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Network_Setup_Failed_Content_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Network_Setup_Failed_Content_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Network_Setup_Failed_Content_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Network_Setup_Failed_Content_Button, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Network_Setup_Failed_Content_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Network_Setup_Failed_Content_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Network_Setup_Failed_Content_Button_Label = lv_label_create(ui_Network_Setup_Failed_Content_Button);
lv_obj_set_width( ui_Network_Setup_Failed_Content_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Network_Setup_Failed_Content_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Network_Setup_Failed_Content_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Network_Setup_Failed_Content_Button_Label,"Network Settings");
lv_obj_set_style_text_color(ui_Network_Setup_Failed_Content_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Network_Setup_Failed_Content_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Network_Setup_Failed_Content_Button_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Network_Setup_Failed_Content_Button_Icon = lv_img_create(ui_Network_Setup_Failed_Content_Button);
lv_img_set_src(ui_Network_Setup_Failed_Content_Button_Icon, &ui_img_1582207408);
lv_obj_set_width( ui_Network_Setup_Failed_Content_Button_Icon, LV_SIZE_CONTENT); /// 21
lv_obj_set_height( ui_Network_Setup_Failed_Content_Button_Icon, LV_SIZE_CONTENT); /// 21
lv_obj_set_align( ui_Network_Setup_Failed_Content_Button_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Network_Setup_Failed_Content_Button_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Network_Setup_Failed_Content_Button_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_img_set_angle(ui_Network_Setup_Failed_Content_Button_Icon,1800);
lv_obj_add_event_cb(ui_Network_Setup_Failed_Content_Button, ui_event_Network_Setup_Failed_Content_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Network_Setup_Failed_Screen, ui_event_Network_Setup_Failed_Screen, LV_EVENT_ALL, NULL);
}
void ui_Network_Setup_Failed_Screen_screen_destroy(void)
{
if (ui_Network_Setup_Failed_Screen) lv_obj_del(ui_Network_Setup_Failed_Screen);
// NULL screen variables
ui_Network_Setup_Failed_Screen= NULL;
ui_Network_Setup_Failed_Container_0= NULL;
ui_Network_Setup_Failed_Container_1= NULL;
ui_Network_Setup_Failed_Header_Logo= NULL;
ui_Network_Setup_Failed_Container_2= NULL;
ui_Network_Setup_Failed_Container_3= NULL;
ui_Network_Setup_Failed_Container_4= NULL;
ui_Network_Setup_Failed_Content_Headline= NULL;
ui_Network_Setup_Failed_Content_Sub_Title= NULL;
ui_Network_Setup_Failed_Content_Button= NULL;
ui_Network_Setup_Failed_Content_Button_Label= NULL;
ui_Network_Setup_Failed_Content_Button_Icon= NULL;
}

View File

@ -1,37 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_NETWORK_SETUP_FAILED_SCREEN_H
#define UI_NETWORK_SETUP_FAILED_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Network_Setup_Failed_Screen
extern void ui_Network_Setup_Failed_Screen_screen_init(void);
extern void ui_Network_Setup_Failed_Screen_screen_destroy(void);
extern void ui_event_Network_Setup_Failed_Screen( lv_event_t * e);
extern lv_obj_t *ui_Network_Setup_Failed_Screen;
extern lv_obj_t *ui_Network_Setup_Failed_Container_0;
extern lv_obj_t *ui_Network_Setup_Failed_Container_1;
extern lv_obj_t *ui_Network_Setup_Failed_Header_Logo;
extern lv_obj_t *ui_Network_Setup_Failed_Container_2;
extern lv_obj_t *ui_Network_Setup_Failed_Container_3;
extern lv_obj_t *ui_Network_Setup_Failed_Container_4;
extern lv_obj_t *ui_Network_Setup_Failed_Content_Headline;
extern lv_obj_t *ui_Network_Setup_Failed_Content_Sub_Title;
extern void ui_event_Network_Setup_Failed_Content_Button( lv_event_t * e);
extern lv_obj_t *ui_Network_Setup_Failed_Content_Button;
extern lv_obj_t *ui_Network_Setup_Failed_Content_Button_Label;
extern lv_obj_t *ui_Network_Setup_Failed_Content_Button_Icon;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,153 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_No_Network_Screen;
lv_obj_t *ui_No_Network_Container_0;
lv_obj_t *ui_No_Network_Container_1;
lv_obj_t *ui_No_Network_Header_Logo;
lv_obj_t *ui_No_Network_Container_2;
lv_obj_t *ui_No_Network_Container_3;
lv_obj_t *ui_No_Network_Container_4;
lv_obj_t *ui_No_Network_Content_Icon;
lv_obj_t *ui_No_Network_Content_Headline;
lv_obj_t *ui_No_Network_Content_Sub_Title;
// event funtions
void ui_event_No_Network_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_LEFT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
// build funtions
void ui_No_Network_Screen_screen_init(void)
{
ui_No_Network_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_No_Network_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_No_Network_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_No_Network_Screen, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_No_Network_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_No_Network_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_No_Network_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_No_Network_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_No_Network_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_No_Network_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_No_Network_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_No_Network_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_No_Network_Container_0 = lv_obj_create(ui_No_Network_Screen);
lv_obj_remove_style_all(ui_No_Network_Container_0);
lv_obj_set_width( ui_No_Network_Container_0, lv_pct(100));
lv_obj_set_flex_grow( ui_No_Network_Container_0, 1);
lv_obj_set_align( ui_No_Network_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_No_Network_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_No_Network_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_No_Network_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_No_Network_Container_0, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_No_Network_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_No_Network_Container_1 = lv_obj_create(ui_No_Network_Container_0);
lv_obj_remove_style_all(ui_No_Network_Container_1);
lv_obj_set_width( ui_No_Network_Container_1, lv_pct(100));
lv_obj_set_height( ui_No_Network_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_No_Network_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_No_Network_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_No_Network_Container_1, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_No_Network_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_No_Network_Header_Logo = lv_img_create(ui_No_Network_Container_1);
lv_img_set_src(ui_No_Network_Header_Logo, &ui_img_jetkvm_png);
lv_obj_set_width( ui_No_Network_Header_Logo, LV_SIZE_CONTENT); /// 116
lv_obj_set_height( ui_No_Network_Header_Logo, LV_SIZE_CONTENT); /// 32
lv_obj_set_x( ui_No_Network_Header_Logo, -2 );
lv_obj_set_y( ui_No_Network_Header_Logo, 0 );
lv_obj_set_align( ui_No_Network_Header_Logo, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_No_Network_Header_Logo, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_No_Network_Header_Logo, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_No_Network_Container_2 = lv_obj_create(ui_No_Network_Container_0);
lv_obj_remove_style_all(ui_No_Network_Container_2);
lv_obj_set_width( ui_No_Network_Container_2, lv_pct(100));
lv_obj_set_flex_grow( ui_No_Network_Container_2, 1);
lv_obj_set_x( ui_No_Network_Container_2, 1 );
lv_obj_set_y( ui_No_Network_Container_2, 20 );
lv_obj_set_align( ui_No_Network_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_No_Network_Container_2,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_No_Network_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_No_Network_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_No_Network_Container_3 = lv_obj_create(ui_No_Network_Container_2);
lv_obj_remove_style_all(ui_No_Network_Container_3);
lv_obj_set_width( ui_No_Network_Container_3, lv_pct(100));
lv_obj_set_flex_grow( ui_No_Network_Container_3, 1);
lv_obj_set_align( ui_No_Network_Container_3, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_No_Network_Container_3,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_No_Network_Container_3, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_No_Network_Container_3, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_No_Network_Container_4 = lv_obj_create(ui_No_Network_Container_3);
lv_obj_remove_style_all(ui_No_Network_Container_4);
lv_obj_set_width( ui_No_Network_Container_4, LV_SIZE_CONTENT); /// 100
lv_obj_set_height( ui_No_Network_Container_4, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_No_Network_Container_4, LV_ALIGN_CENTER );
lv_obj_clear_flag( ui_No_Network_Container_4, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_left(ui_No_Network_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_No_Network_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_No_Network_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_No_Network_Container_4, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_No_Network_Content_Icon = lv_img_create(ui_No_Network_Container_4);
lv_img_set_src(ui_No_Network_Content_Icon, &ui_img_ethernet_png);
lv_obj_set_width( ui_No_Network_Content_Icon, LV_SIZE_CONTENT); /// 32
lv_obj_set_height( ui_No_Network_Content_Icon, LV_SIZE_CONTENT); /// 32
lv_obj_set_align( ui_No_Network_Content_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_No_Network_Content_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_No_Network_Content_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_No_Network_Content_Headline = lv_label_create(ui_No_Network_Container_3);
lv_obj_set_width( ui_No_Network_Content_Headline, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_No_Network_Content_Headline, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_No_Network_Content_Headline, LV_ALIGN_CENTER );
lv_label_set_text(ui_No_Network_Content_Headline,"No Network");
lv_obj_set_style_text_color(ui_No_Network_Content_Headline, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_No_Network_Content_Headline, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_No_Network_Content_Headline, &ui_font_Font_Bold_30, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_No_Network_Content_Sub_Title = lv_label_create(ui_No_Network_Container_3);
lv_obj_set_width( ui_No_Network_Content_Sub_Title, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_No_Network_Content_Sub_Title, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_No_Network_Content_Sub_Title, LV_ALIGN_CENTER );
lv_label_set_text(ui_No_Network_Content_Sub_Title,"Connect Ethernet cable");
lv_obj_set_style_text_color(ui_No_Network_Content_Sub_Title, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_No_Network_Content_Sub_Title, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_No_Network_Content_Sub_Title, &ui_font_Font_Book_16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_add_event_cb(ui_No_Network_Screen, ui_event_No_Network_Screen, LV_EVENT_ALL, NULL);
}
void ui_No_Network_Screen_screen_destroy(void)
{
if (ui_No_Network_Screen) lv_obj_del(ui_No_Network_Screen);
// NULL screen variables
ui_No_Network_Screen= NULL;
ui_No_Network_Container_0= NULL;
ui_No_Network_Container_1= NULL;
ui_No_Network_Header_Logo= NULL;
ui_No_Network_Container_2= NULL;
ui_No_Network_Container_3= NULL;
ui_No_Network_Container_4= NULL;
ui_No_Network_Content_Icon= NULL;
ui_No_Network_Content_Headline= NULL;
ui_No_Network_Content_Sub_Title= NULL;
}

View File

@ -1,34 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_NO_NETWORK_SCREEN_H
#define UI_NO_NETWORK_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_No_Network_Screen
extern void ui_No_Network_Screen_screen_init(void);
extern void ui_No_Network_Screen_screen_destroy(void);
extern void ui_event_No_Network_Screen( lv_event_t * e);
extern lv_obj_t *ui_No_Network_Screen;
extern lv_obj_t *ui_No_Network_Container_0;
extern lv_obj_t *ui_No_Network_Container_1;
extern lv_obj_t *ui_No_Network_Header_Logo;
extern lv_obj_t *ui_No_Network_Container_2;
extern lv_obj_t *ui_No_Network_Container_3;
extern lv_obj_t *ui_No_Network_Container_4;
extern lv_obj_t *ui_No_Network_Content_Icon;
extern lv_obj_t *ui_No_Network_Content_Headline;
extern lv_obj_t *ui_No_Network_Content_Sub_Title;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,182 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Reset_Device_Screen;
lv_obj_t *ui_Reset_Container_0;
lv_obj_t *ui_Reset_Container_1;
lv_obj_t *ui_Reset_Device_Header_Back_Button;
lv_obj_t *ui_Reset_Device_Header_Back_Button_Icon;
lv_obj_t *ui_Reset_Device_Header_Page_Name_Label;
lv_obj_t *ui_Reset_Container_2;
lv_obj_t *ui_Reset_Content_Headline_Label;
lv_obj_t *ui_Reset_Content_Button;
lv_obj_t *ui_Reset_Content_Button_Label;
// event funtions
void ui_event_Reset_Device_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_FADE_ON, 200, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
void ui_event_Reset_Device_Header_Back_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
// build funtions
void ui_Reset_Device_Screen_screen_init(void)
{
ui_Reset_Device_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_Reset_Device_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Reset_Device_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Reset_Device_Screen, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Reset_Device_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Reset_Device_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Reset_Device_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Reset_Device_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Reset_Device_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Reset_Device_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Reset_Device_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Reset_Device_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Reset_Container_0 = lv_obj_create(ui_Reset_Device_Screen);
lv_obj_remove_style_all(ui_Reset_Container_0);
lv_obj_set_width( ui_Reset_Container_0, lv_pct(100));
lv_obj_set_height( ui_Reset_Container_0, LV_SIZE_CONTENT); /// 100
lv_obj_set_x( ui_Reset_Container_0, 75 );
lv_obj_set_y( ui_Reset_Container_0, -33 );
lv_obj_set_align( ui_Reset_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Reset_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Reset_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Reset_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Reset_Container_0, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Reset_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Reset_Container_1 = lv_obj_create(ui_Reset_Container_0);
lv_obj_remove_style_all(ui_Reset_Container_1);
lv_obj_set_width( ui_Reset_Container_1, lv_pct(100));
lv_obj_set_height( ui_Reset_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Reset_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Reset_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Reset_Container_1, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_Reset_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Reset_Device_Header_Back_Button = lv_btn_create(ui_Reset_Container_1);
lv_obj_set_width( ui_Reset_Device_Header_Back_Button, 32);
lv_obj_set_height( ui_Reset_Device_Header_Back_Button, 32);
lv_obj_set_align( ui_Reset_Device_Header_Back_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Reset_Device_Header_Back_Button, 10000, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Reset_Device_Header_Back_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Reset_Device_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Reset_Device_Header_Back_Button, 10000, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Reset_Device_Header_Back_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Reset_Device_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Reset_Device_Header_Back_Button_Icon = lv_img_create(ui_Reset_Device_Header_Back_Button);
lv_img_set_src(ui_Reset_Device_Header_Back_Button_Icon, &ui_img_352891484);
lv_obj_set_width( ui_Reset_Device_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 8
lv_obj_set_height( ui_Reset_Device_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 12
lv_obj_set_align( ui_Reset_Device_Header_Back_Button_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Reset_Device_Header_Back_Button_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Reset_Device_Header_Back_Button_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Reset_Device_Header_Page_Name_Label = lv_label_create(ui_Reset_Container_1);
lv_obj_set_width( ui_Reset_Device_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Reset_Device_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Reset_Device_Header_Page_Name_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Reset_Device_Header_Page_Name_Label,"Reset Device");
lv_obj_set_style_text_color(ui_Reset_Device_Header_Page_Name_Label, lv_color_hex(0x1D4ED8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Reset_Device_Header_Page_Name_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Reset_Device_Header_Page_Name_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Reset_Container_2 = lv_obj_create(ui_Reset_Device_Screen);
lv_obj_remove_style_all(ui_Reset_Container_2);
lv_obj_set_width( ui_Reset_Container_2, lv_pct(100));
lv_obj_set_flex_grow( ui_Reset_Container_2, 1);
lv_obj_set_align( ui_Reset_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Reset_Container_2,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Reset_Container_2, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Reset_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Reset_Container_2, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Reset_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Reset_Content_Headline_Label = lv_label_create(ui_Reset_Container_2);
lv_obj_set_width( ui_Reset_Content_Headline_Label, lv_pct(100));
lv_obj_set_height( ui_Reset_Content_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Reset_Content_Headline_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Reset_Content_Headline_Label,"Press and hold for\n20 seconds");
lv_obj_set_style_text_color(ui_Reset_Content_Headline_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Reset_Content_Headline_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_letter_space(ui_Reset_Content_Headline_Label, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_line_space(ui_Reset_Content_Headline_Label, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui_Reset_Content_Headline_Label, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Reset_Content_Headline_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Reset_Content_Button = lv_btn_create(ui_Reset_Container_2);
lv_obj_set_height( ui_Reset_Content_Button, 54);
lv_obj_set_width( ui_Reset_Content_Button, lv_pct(100));
lv_obj_set_align( ui_Reset_Content_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Reset_Content_Button, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Reset_Content_Button, lv_color_hex(0xDC2626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Reset_Content_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_border_color(ui_Reset_Content_Button, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_border_opa(ui_Reset_Content_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_border_width(ui_Reset_Content_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Reset_Content_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Reset_Content_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Reset_Content_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Reset_Content_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Reset_Content_Button, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Reset_Content_Button, lv_color_hex(0xEF2A2A), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Reset_Content_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_border_color(ui_Reset_Content_Button, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_border_opa(ui_Reset_Content_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_border_width(ui_Reset_Content_Button, 0, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_pad_left(ui_Reset_Content_Button, 16, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_pad_right(ui_Reset_Content_Button, 0, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_pad_top(ui_Reset_Content_Button, 20, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_pad_bottom(ui_Reset_Content_Button, 20, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Reset_Content_Button_Label = lv_label_create(ui_Reset_Content_Button);
lv_obj_set_width( ui_Reset_Content_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Reset_Content_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Reset_Content_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Reset_Content_Button_Label,"Hold to reset");
lv_obj_set_style_text_color(ui_Reset_Content_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Reset_Content_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Reset_Content_Button_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_add_event_cb(ui_Reset_Device_Header_Back_Button, ui_event_Reset_Device_Header_Back_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Reset_Device_Screen, ui_event_Reset_Device_Screen, LV_EVENT_ALL, NULL);
}
void ui_Reset_Device_Screen_screen_destroy(void)
{
if (ui_Reset_Device_Screen) lv_obj_del(ui_Reset_Device_Screen);
// NULL screen variables
ui_Reset_Device_Screen= NULL;
ui_Reset_Container_0= NULL;
ui_Reset_Container_1= NULL;
ui_Reset_Device_Header_Back_Button= NULL;
ui_Reset_Device_Header_Back_Button_Icon= NULL;
ui_Reset_Device_Header_Page_Name_Label= NULL;
ui_Reset_Container_2= NULL;
ui_Reset_Content_Headline_Label= NULL;
ui_Reset_Content_Button= NULL;
ui_Reset_Content_Button_Label= NULL;
}

View File

@ -1,35 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_RESET_DEVICE_SCREEN_H
#define UI_RESET_DEVICE_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Reset_Device_Screen
extern void ui_Reset_Device_Screen_screen_init(void);
extern void ui_Reset_Device_Screen_screen_destroy(void);
extern void ui_event_Reset_Device_Screen( lv_event_t * e);
extern lv_obj_t *ui_Reset_Device_Screen;
extern lv_obj_t *ui_Reset_Container_0;
extern lv_obj_t *ui_Reset_Container_1;
extern void ui_event_Reset_Device_Header_Back_Button( lv_event_t * e);
extern lv_obj_t *ui_Reset_Device_Header_Back_Button;
extern lv_obj_t *ui_Reset_Device_Header_Back_Button_Icon;
extern lv_obj_t *ui_Reset_Device_Header_Page_Name_Label;
extern lv_obj_t *ui_Reset_Container_2;
extern lv_obj_t *ui_Reset_Content_Headline_Label;
extern lv_obj_t *ui_Reset_Content_Button;
extern lv_obj_t *ui_Reset_Content_Button_Label;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,241 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Settings_Overview_Screen;
lv_obj_t *ui_Settings_Overview_Container_0;
lv_obj_t *ui_Settings_Overview_Container_1;
lv_obj_t *ui_Settings_Overview_Header_Back_Button;
lv_obj_t *ui_Settings_Overview_Header_Back_Button_Icon;
lv_obj_t *ui_Settings_Overview_Header_Page_Name_Label;
lv_obj_t *ui_Settings_Overview_Container_2;
lv_obj_t *ui_Settings_Overview_Status_Button;
lv_obj_t *ui_Settings_Overview_Status_Button_Label;
lv_obj_t *ui_Settings_Overview_About_Button;
lv_obj_t *ui_Settings_Overview_About_Button_Label;
lv_obj_t *ui_Settings_Overview_Reset_Button;
lv_obj_t *ui_Settings_Overview_Reset_Button_Label;
// event funtions
void ui_event_Settings_Overview_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Home_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Home_Screen_screen_init);
}
}
void ui_event_Settings_Overview_Header_Back_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Home_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Home_Screen_screen_init);
}
}
void ui_event_Settings_Overview_Status_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Status_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Status_Screen_screen_init);
}
}
void ui_event_Settings_Overview_About_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_About_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_About_Screen_screen_init);
}
}
void ui_event_Settings_Overview_Reset_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Reset_Device_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Reset_Device_Screen_screen_init);
}
}
// build funtions
void ui_Settings_Overview_Screen_screen_init(void)
{
ui_Settings_Overview_Screen = lv_obj_create(NULL);
lv_obj_add_state( ui_Settings_Overview_Screen, LV_STATE_USER_1 ); /// States
lv_obj_add_flag( ui_Settings_Overview_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Settings_Overview_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Settings_Overview_Screen, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Settings_Overview_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Settings_Overview_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Settings_Overview_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Settings_Overview_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Settings_Overview_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Settings_Overview_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Settings_Overview_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Settings_Overview_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Settings_Overview_Container_0 = lv_obj_create(ui_Settings_Overview_Screen);
lv_obj_remove_style_all(ui_Settings_Overview_Container_0);
lv_obj_set_width( ui_Settings_Overview_Container_0, lv_pct(100));
lv_obj_set_height( ui_Settings_Overview_Container_0, LV_SIZE_CONTENT); /// 100
lv_obj_set_x( ui_Settings_Overview_Container_0, 75 );
lv_obj_set_y( ui_Settings_Overview_Container_0, -33 );
lv_obj_set_align( ui_Settings_Overview_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Settings_Overview_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Settings_Overview_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Settings_Overview_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Settings_Overview_Container_0, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Settings_Overview_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Settings_Overview_Container_1 = lv_obj_create(ui_Settings_Overview_Container_0);
lv_obj_remove_style_all(ui_Settings_Overview_Container_1);
lv_obj_set_width( ui_Settings_Overview_Container_1, lv_pct(100));
lv_obj_set_height( ui_Settings_Overview_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Settings_Overview_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Settings_Overview_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Settings_Overview_Container_1, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_Settings_Overview_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Settings_Overview_Header_Back_Button = lv_btn_create(ui_Settings_Overview_Container_1);
lv_obj_set_width( ui_Settings_Overview_Header_Back_Button, 32);
lv_obj_set_height( ui_Settings_Overview_Header_Back_Button, 32);
lv_obj_set_align( ui_Settings_Overview_Header_Back_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Settings_Overview_Header_Back_Button, 10000, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Settings_Overview_Header_Back_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Settings_Overview_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Settings_Overview_Header_Back_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Settings_Overview_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Settings_Overview_Header_Back_Button_Icon = lv_img_create(ui_Settings_Overview_Header_Back_Button);
lv_img_set_src(ui_Settings_Overview_Header_Back_Button_Icon, &ui_img_352891484);
lv_obj_set_width( ui_Settings_Overview_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 8
lv_obj_set_height( ui_Settings_Overview_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 12
lv_obj_set_align( ui_Settings_Overview_Header_Back_Button_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Settings_Overview_Header_Back_Button_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Settings_Overview_Header_Back_Button_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Settings_Overview_Header_Page_Name_Label = lv_label_create(ui_Settings_Overview_Container_1);
lv_obj_set_width( ui_Settings_Overview_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Settings_Overview_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Settings_Overview_Header_Page_Name_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Settings_Overview_Header_Page_Name_Label,"Settings");
lv_obj_set_style_text_color(ui_Settings_Overview_Header_Page_Name_Label, lv_color_hex(0x1D4ED8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Settings_Overview_Header_Page_Name_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Settings_Overview_Header_Page_Name_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Settings_Overview_Container_2 = lv_obj_create(ui_Settings_Overview_Screen);
lv_obj_remove_style_all(ui_Settings_Overview_Container_2);
lv_obj_set_width( ui_Settings_Overview_Container_2, lv_pct(100));
lv_obj_set_height( ui_Settings_Overview_Container_2, LV_SIZE_CONTENT); /// 500
lv_obj_set_align( ui_Settings_Overview_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Settings_Overview_Container_2,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Settings_Overview_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Settings_Overview_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Settings_Overview_Container_2, 12, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Settings_Overview_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Settings_Overview_Status_Button = lv_btn_create(ui_Settings_Overview_Container_2);
lv_obj_set_width( ui_Settings_Overview_Status_Button, lv_pct(100));
lv_obj_set_height( ui_Settings_Overview_Status_Button, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Settings_Overview_Status_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Settings_Overview_Status_Button, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Settings_Overview_Status_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Settings_Overview_Status_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Settings_Overview_Status_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Settings_Overview_Status_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Settings_Overview_Status_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Settings_Overview_Status_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Settings_Overview_Status_Button, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Settings_Overview_Status_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Settings_Overview_Status_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Settings_Overview_Status_Button_Label = lv_label_create(ui_Settings_Overview_Status_Button);
lv_obj_set_width( ui_Settings_Overview_Status_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Settings_Overview_Status_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Settings_Overview_Status_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Settings_Overview_Status_Button_Label,"Status");
lv_obj_set_style_text_color(ui_Settings_Overview_Status_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Settings_Overview_Status_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Settings_Overview_Status_Button_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Settings_Overview_About_Button = lv_btn_create(ui_Settings_Overview_Container_2);
lv_obj_set_width( ui_Settings_Overview_About_Button, lv_pct(100));
lv_obj_set_height( ui_Settings_Overview_About_Button, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Settings_Overview_About_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Settings_Overview_About_Button, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Settings_Overview_About_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Settings_Overview_About_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Settings_Overview_About_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Settings_Overview_About_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Settings_Overview_About_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Settings_Overview_About_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Settings_Overview_About_Button, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Settings_Overview_About_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Settings_Overview_About_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Settings_Overview_About_Button_Label = lv_label_create(ui_Settings_Overview_About_Button);
lv_obj_set_width( ui_Settings_Overview_About_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Settings_Overview_About_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Settings_Overview_About_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Settings_Overview_About_Button_Label,"About");
lv_obj_set_style_text_color(ui_Settings_Overview_About_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Settings_Overview_About_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Settings_Overview_About_Button_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Settings_Overview_Reset_Button = lv_btn_create(ui_Settings_Overview_Container_2);
lv_obj_set_width( ui_Settings_Overview_Reset_Button, lv_pct(100));
lv_obj_set_height( ui_Settings_Overview_Reset_Button, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Settings_Overview_Reset_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Settings_Overview_Reset_Button, 8, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Settings_Overview_Reset_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Settings_Overview_Reset_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Settings_Overview_Reset_Button, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Settings_Overview_Reset_Button, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Settings_Overview_Reset_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Settings_Overview_Reset_Button, 20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui_Settings_Overview_Reset_Button, 8, LV_PART_MAIN| LV_STATE_PRESSED);
lv_obj_set_style_bg_color(ui_Settings_Overview_Reset_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Settings_Overview_Reset_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Settings_Overview_Reset_Button_Label = lv_label_create(ui_Settings_Overview_Reset_Button);
lv_obj_set_width( ui_Settings_Overview_Reset_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Settings_Overview_Reset_Button_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Settings_Overview_Reset_Button_Label, LV_ALIGN_LEFT_MID );
lv_label_set_text(ui_Settings_Overview_Reset_Button_Label,"Reset");
lv_obj_set_style_text_color(ui_Settings_Overview_Reset_Button_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Settings_Overview_Reset_Button_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Settings_Overview_Reset_Button_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_add_event_cb(ui_Settings_Overview_Header_Back_Button, ui_event_Settings_Overview_Header_Back_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Settings_Overview_Status_Button, ui_event_Settings_Overview_Status_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Settings_Overview_About_Button, ui_event_Settings_Overview_About_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Settings_Overview_Reset_Button, ui_event_Settings_Overview_Reset_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Settings_Overview_Screen, ui_event_Settings_Overview_Screen, LV_EVENT_ALL, NULL);
}
void ui_Settings_Overview_Screen_screen_destroy(void)
{
if (ui_Settings_Overview_Screen) lv_obj_del(ui_Settings_Overview_Screen);
// NULL screen variables
ui_Settings_Overview_Screen= NULL;
ui_Settings_Overview_Container_0= NULL;
ui_Settings_Overview_Container_1= NULL;
ui_Settings_Overview_Header_Back_Button= NULL;
ui_Settings_Overview_Header_Back_Button_Icon= NULL;
ui_Settings_Overview_Header_Page_Name_Label= NULL;
ui_Settings_Overview_Container_2= NULL;
ui_Settings_Overview_Status_Button= NULL;
ui_Settings_Overview_Status_Button_Label= NULL;
ui_Settings_Overview_About_Button= NULL;
ui_Settings_Overview_About_Button_Label= NULL;
ui_Settings_Overview_Reset_Button= NULL;
ui_Settings_Overview_Reset_Button_Label= NULL;
}

View File

@ -1,41 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_SETTINGS_OVERVIEW_SCREEN_H
#define UI_SETTINGS_OVERVIEW_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Settings_Overview_Screen
extern void ui_Settings_Overview_Screen_screen_init(void);
extern void ui_Settings_Overview_Screen_screen_destroy(void);
extern void ui_event_Settings_Overview_Screen( lv_event_t * e);
extern lv_obj_t *ui_Settings_Overview_Screen;
extern lv_obj_t *ui_Settings_Overview_Container_0;
extern lv_obj_t *ui_Settings_Overview_Container_1;
extern void ui_event_Settings_Overview_Header_Back_Button( lv_event_t * e);
extern lv_obj_t *ui_Settings_Overview_Header_Back_Button;
extern lv_obj_t *ui_Settings_Overview_Header_Back_Button_Icon;
extern lv_obj_t *ui_Settings_Overview_Header_Page_Name_Label;
extern lv_obj_t *ui_Settings_Overview_Container_2;
extern void ui_event_Settings_Overview_Status_Button( lv_event_t * e);
extern lv_obj_t *ui_Settings_Overview_Status_Button;
extern lv_obj_t *ui_Settings_Overview_Status_Button_Label;
extern void ui_event_Settings_Overview_About_Button( lv_event_t * e);
extern lv_obj_t *ui_Settings_Overview_About_Button;
extern lv_obj_t *ui_Settings_Overview_About_Button_Label;
extern void ui_event_Settings_Overview_Reset_Button( lv_event_t * e);
extern lv_obj_t *ui_Settings_Overview_Reset_Button;
extern lv_obj_t *ui_Settings_Overview_Reset_Button_Label;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,256 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
lv_obj_t *ui_Status_Screen;
lv_obj_t *ui_Status_Container_0;
lv_obj_t *ui_Status_Container_1;
lv_obj_t *ui_Status_Header_Back_Button;
lv_obj_t *ui_Status_Header_Back_Button_Icon;
lv_obj_t *ui_Status_Header_Page_Name_Label;
lv_obj_t *ui_Status_Container_2;
lv_obj_t *ui_Status_Content_Device_Id_Headline_Label;
lv_obj_t *ui_Status_Content_Device_Id_Content_Label;
lv_obj_t *ui_Status_Container_3;
lv_obj_t *ui_Status_Content_Cloud_Account_Id_Headline_Label;
lv_obj_t *ui_Status_Content_Cloud_Account_Id_Content_Label;
lv_obj_t *ui_Status_Container_4;
lv_obj_t *ui_Status_Content_IPv4_Address_Headline_Label;
lv_obj_t *ui_Status_Content_IPv4_Address_Content_Label;
lv_obj_t *ui_Status_Container_5;
lv_obj_t *ui_Status_Content_IPv6_Address_Headline_Label;
lv_obj_t *ui_Status_Content_IPv6_Address_Content_Label;
// event funtions
void ui_event_Status_Screen( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) {
lv_indev_wait_release(lv_indev_get_act());
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
void ui_event_Status_Header_Back_Button( lv_event_t * e) {
lv_event_code_t event_code = lv_event_get_code(e);
if ( event_code == LV_EVENT_CLICKED) {
_ui_screen_change( &ui_Settings_Overview_Screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, &ui_Settings_Overview_Screen_screen_init);
}
}
// build funtions
void ui_Status_Screen_screen_init(void)
{
ui_Status_Screen = lv_obj_create(NULL);
lv_obj_add_flag( ui_Status_Screen, LV_OBJ_FLAG_OVERFLOW_VISIBLE ); /// Flags
lv_obj_set_flex_flow(ui_Status_Screen,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Status_Screen, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_set_style_bg_color(ui_Status_Screen, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Status_Screen, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui_Status_Screen, 44, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui_Status_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui_Status_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui_Status_Screen, 24, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_row(ui_Status_Screen, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Status_Screen, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Container_0 = lv_obj_create(ui_Status_Screen);
lv_obj_remove_style_all(ui_Status_Container_0);
lv_obj_set_width( ui_Status_Container_0, lv_pct(100));
lv_obj_set_height( ui_Status_Container_0, LV_SIZE_CONTENT); /// 100
lv_obj_set_x( ui_Status_Container_0, 75 );
lv_obj_set_y( ui_Status_Container_0, -33 );
lv_obj_set_align( ui_Status_Container_0, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Status_Container_0,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Status_Container_0, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Status_Container_0, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Status_Container_0, 16, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Status_Container_0, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Container_1 = lv_obj_create(ui_Status_Container_0);
lv_obj_remove_style_all(ui_Status_Container_1);
lv_obj_set_width( ui_Status_Container_1, lv_pct(100));
lv_obj_set_height( ui_Status_Container_1, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Status_Container_1, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Status_Container_1,LV_FLEX_FLOW_ROW);
lv_obj_set_flex_align(ui_Status_Container_1, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER);
lv_obj_clear_flag( ui_Status_Container_1, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Status_Header_Back_Button = lv_btn_create(ui_Status_Container_1);
lv_obj_set_width( ui_Status_Header_Back_Button, 32);
lv_obj_set_height( ui_Status_Header_Back_Button, 32);
lv_obj_set_align( ui_Status_Header_Back_Button, LV_ALIGN_CENTER );
lv_obj_set_style_radius(ui_Status_Header_Back_Button, 10000, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Status_Header_Back_Button, lv_color_hex(0x262626), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_bg_opa(ui_Status_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui_Status_Header_Back_Button, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_PRESSED );
lv_obj_set_style_bg_opa(ui_Status_Header_Back_Button, 255, LV_PART_MAIN| LV_STATE_PRESSED);
ui_Status_Header_Back_Button_Icon = lv_img_create(ui_Status_Header_Back_Button);
lv_img_set_src(ui_Status_Header_Back_Button_Icon, &ui_img_352891484);
lv_obj_set_width( ui_Status_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 8
lv_obj_set_height( ui_Status_Header_Back_Button_Icon, LV_SIZE_CONTENT); /// 12
lv_obj_set_align( ui_Status_Header_Back_Button_Icon, LV_ALIGN_CENTER );
lv_obj_add_flag( ui_Status_Header_Back_Button_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags
lv_obj_clear_flag( ui_Status_Header_Back_Button_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags
ui_Status_Header_Page_Name_Label = lv_label_create(ui_Status_Container_1);
lv_obj_set_width( ui_Status_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Status_Header_Page_Name_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Header_Page_Name_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Header_Page_Name_Label,"Status");
lv_obj_set_style_text_color(ui_Status_Header_Page_Name_Label, lv_color_hex(0x1D4ED8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Header_Page_Name_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Header_Page_Name_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Container_2 = lv_obj_create(ui_Status_Screen);
lv_obj_remove_style_all(ui_Status_Container_2);
lv_obj_set_width( ui_Status_Container_2, lv_pct(100));
lv_obj_set_height( ui_Status_Container_2, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Status_Container_2, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Status_Container_2,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Status_Container_2, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Status_Container_2, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Status_Container_2, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Status_Container_2, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_Device_Id_Headline_Label = lv_label_create(ui_Status_Container_2);
lv_obj_set_width( ui_Status_Content_Device_Id_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Status_Content_Device_Id_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_Device_Id_Headline_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_Device_Id_Headline_Label,"Device ID");
lv_obj_set_style_text_color(ui_Status_Content_Device_Id_Headline_Label, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_Device_Id_Headline_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_Device_Id_Headline_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_Device_Id_Content_Label = lv_label_create(ui_Status_Container_2);
lv_obj_set_width( ui_Status_Content_Device_Id_Content_Label, lv_pct(100));
lv_obj_set_height( ui_Status_Content_Device_Id_Content_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_Device_Id_Content_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_Device_Id_Content_Label,"64238c05ececc831-102F271723");
lv_obj_set_style_text_color(ui_Status_Content_Device_Id_Content_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_Device_Id_Content_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_Device_Id_Content_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Container_3 = lv_obj_create(ui_Status_Screen);
lv_obj_remove_style_all(ui_Status_Container_3);
lv_obj_set_width( ui_Status_Container_3, lv_pct(100));
lv_obj_set_height( ui_Status_Container_3, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Status_Container_3, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Status_Container_3,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Status_Container_3, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Status_Container_3, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Status_Container_3, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Status_Container_3, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_Cloud_Account_Id_Headline_Label = lv_label_create(ui_Status_Container_3);
lv_obj_set_width( ui_Status_Content_Cloud_Account_Id_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Status_Content_Cloud_Account_Id_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_Cloud_Account_Id_Headline_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_Cloud_Account_Id_Headline_Label,"Cloud Account ID");
lv_obj_set_style_text_color(ui_Status_Content_Cloud_Account_Id_Headline_Label, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_Cloud_Account_Id_Headline_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_Cloud_Account_Id_Headline_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_Cloud_Account_Id_Content_Label = lv_label_create(ui_Status_Container_3);
lv_obj_set_width( ui_Status_Content_Cloud_Account_Id_Content_Label, lv_pct(100));
lv_obj_set_height( ui_Status_Content_Cloud_Account_Id_Content_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_Cloud_Account_Id_Content_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_Cloud_Account_Id_Content_Label,"12387612876312673dd");
lv_obj_set_style_text_color(ui_Status_Content_Cloud_Account_Id_Content_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_Cloud_Account_Id_Content_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_Cloud_Account_Id_Content_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Container_4 = lv_obj_create(ui_Status_Screen);
lv_obj_remove_style_all(ui_Status_Container_4);
lv_obj_set_width( ui_Status_Container_4, lv_pct(100));
lv_obj_set_height( ui_Status_Container_4, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Status_Container_4, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Status_Container_4,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Status_Container_4, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Status_Container_4, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Status_Container_4, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Status_Container_4, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_IPv4_Address_Headline_Label = lv_label_create(ui_Status_Container_4);
lv_obj_set_width( ui_Status_Content_IPv4_Address_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Status_Content_IPv4_Address_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_IPv4_Address_Headline_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_IPv4_Address_Headline_Label,"IPv4 Address");
lv_obj_set_style_text_color(ui_Status_Content_IPv4_Address_Headline_Label, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_IPv4_Address_Headline_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_IPv4_Address_Headline_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_IPv4_Address_Content_Label = lv_label_create(ui_Status_Container_4);
lv_obj_set_width( ui_Status_Content_IPv4_Address_Content_Label, lv_pct(100));
lv_obj_set_height( ui_Status_Content_IPv4_Address_Content_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_IPv4_Address_Content_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_IPv4_Address_Content_Label,"");
lv_obj_set_style_text_color(ui_Status_Content_IPv4_Address_Content_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_IPv4_Address_Content_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_IPv4_Address_Content_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Container_5 = lv_obj_create(ui_Status_Screen);
lv_obj_remove_style_all(ui_Status_Container_5);
lv_obj_set_width( ui_Status_Container_5, lv_pct(100));
lv_obj_set_height( ui_Status_Container_5, LV_SIZE_CONTENT); /// 50
lv_obj_set_align( ui_Status_Container_5, LV_ALIGN_CENTER );
lv_obj_set_flex_flow(ui_Status_Container_5,LV_FLEX_FLOW_COLUMN);
lv_obj_set_flex_align(ui_Status_Container_5, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START);
lv_obj_clear_flag( ui_Status_Container_5, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE ); /// Flags
lv_obj_set_style_pad_row(ui_Status_Container_5, 4, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_pad_column(ui_Status_Container_5, 0, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_IPv6_Address_Headline_Label = lv_label_create(ui_Status_Container_5);
lv_obj_set_width( ui_Status_Content_IPv6_Address_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_height( ui_Status_Content_IPv6_Address_Headline_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_IPv6_Address_Headline_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_IPv6_Address_Headline_Label,"IPv4 Address");
lv_obj_set_style_text_color(ui_Status_Content_IPv6_Address_Headline_Label, lv_color_hex(0x94A3B8), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_IPv6_Address_Headline_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_IPv6_Address_Headline_Label, &ui_font_Font_Book_20, LV_PART_MAIN| LV_STATE_DEFAULT);
ui_Status_Content_IPv6_Address_Content_Label = lv_label_create(ui_Status_Container_5);
lv_obj_set_width( ui_Status_Content_IPv6_Address_Content_Label, lv_pct(100));
lv_obj_set_height( ui_Status_Content_IPv6_Address_Content_Label, LV_SIZE_CONTENT); /// 1
lv_obj_set_align( ui_Status_Content_IPv6_Address_Content_Label, LV_ALIGN_CENTER );
lv_label_set_text(ui_Status_Content_IPv6_Address_Content_Label,".");
lv_obj_set_style_text_color(ui_Status_Content_IPv6_Address_Content_Label, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT );
lv_obj_set_style_text_opa(ui_Status_Content_IPv6_Address_Content_Label, 255, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui_Status_Content_IPv6_Address_Content_Label, &ui_font_Font_Book_18, LV_PART_MAIN| LV_STATE_DEFAULT);
lv_obj_add_event_cb(ui_Status_Header_Back_Button, ui_event_Status_Header_Back_Button, LV_EVENT_ALL, NULL);
lv_obj_add_event_cb(ui_Status_Screen, ui_event_Status_Screen, LV_EVENT_ALL, NULL);
}
void ui_Status_Screen_screen_destroy(void)
{
if (ui_Status_Screen) lv_obj_del(ui_Status_Screen);
// NULL screen variables
ui_Status_Screen= NULL;
ui_Status_Container_0= NULL;
ui_Status_Container_1= NULL;
ui_Status_Header_Back_Button= NULL;
ui_Status_Header_Back_Button_Icon= NULL;
ui_Status_Header_Page_Name_Label= NULL;
ui_Status_Container_2= NULL;
ui_Status_Content_Device_Id_Headline_Label= NULL;
ui_Status_Content_Device_Id_Content_Label= NULL;
ui_Status_Container_3= NULL;
ui_Status_Content_Cloud_Account_Id_Headline_Label= NULL;
ui_Status_Content_Cloud_Account_Id_Content_Label= NULL;
ui_Status_Container_4= NULL;
ui_Status_Content_IPv4_Address_Headline_Label= NULL;
ui_Status_Content_IPv4_Address_Content_Label= NULL;
ui_Status_Container_5= NULL;
ui_Status_Content_IPv6_Address_Headline_Label= NULL;
ui_Status_Content_IPv6_Address_Content_Label= NULL;
}

View File

@ -1,43 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef UI_STATUS_SCREEN_H
#define UI_STATUS_SCREEN_H
#ifdef __cplusplus
extern "C" {
#endif
// SCREEN: ui_Status_Screen
extern void ui_Status_Screen_screen_init(void);
extern void ui_Status_Screen_screen_destroy(void);
extern void ui_event_Status_Screen( lv_event_t * e);
extern lv_obj_t *ui_Status_Screen;
extern lv_obj_t *ui_Status_Container_0;
extern lv_obj_t *ui_Status_Container_1;
extern void ui_event_Status_Header_Back_Button( lv_event_t * e);
extern lv_obj_t *ui_Status_Header_Back_Button;
extern lv_obj_t *ui_Status_Header_Back_Button_Icon;
extern lv_obj_t *ui_Status_Header_Page_Name_Label;
extern lv_obj_t *ui_Status_Container_2;
extern lv_obj_t *ui_Status_Content_Device_Id_Headline_Label;
extern lv_obj_t *ui_Status_Content_Device_Id_Content_Label;
extern lv_obj_t *ui_Status_Container_3;
extern lv_obj_t *ui_Status_Content_Cloud_Account_Id_Headline_Label;
extern lv_obj_t *ui_Status_Content_Cloud_Account_Id_Content_Label;
extern lv_obj_t *ui_Status_Container_4;
extern lv_obj_t *ui_Status_Content_IPv4_Address_Headline_Label;
extern lv_obj_t *ui_Status_Content_IPv4_Address_Content_Label;
extern lv_obj_t *ui_Status_Container_5;
extern lv_obj_t *ui_Status_Content_IPv6_Address_Headline_Label;
extern lv_obj_t *ui_Status_Content_IPv6_Address_Content_Label;
// CUSTOM VARIABLES
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,5 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project

View File

@ -1,17 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef _UI_EVENTS_H
#define _UI_EVENTS_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,270 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui_helpers.h"
void _ui_bar_set_property( lv_obj_t *target, int id, int val)
{
if (id == _UI_BAR_PROPERTY_VALUE_WITH_ANIM) lv_bar_set_value(target, val, LV_ANIM_ON);
if (id == _UI_BAR_PROPERTY_VALUE) lv_bar_set_value(target, val, LV_ANIM_OFF);
}
void _ui_basic_set_property( lv_obj_t *target, int id, int val)
{
if (id == _UI_BASIC_PROPERTY_POSITION_X) lv_obj_set_x(target, val);
if (id == _UI_BASIC_PROPERTY_POSITION_Y) lv_obj_set_y(target, val);
if (id == _UI_BASIC_PROPERTY_WIDTH) lv_obj_set_width(target, val);
if (id == _UI_BASIC_PROPERTY_HEIGHT) lv_obj_set_height(target, val);
}
void _ui_dropdown_set_property( lv_obj_t *target, int id, int val)
{
if (id == _UI_DROPDOWN_PROPERTY_SELECTED) lv_dropdown_set_selected(target, val);
}
void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val)
{
if (id == _UI_IMAGE_PROPERTY_IMAGE) lv_img_set_src(target, val);
}
void _ui_label_set_property( lv_obj_t *target, int id, const char *val)
{
if (id == _UI_LABEL_PROPERTY_TEXT) lv_label_set_text(target, val);
}
void _ui_roller_set_property( lv_obj_t *target, int id, int val)
{
if (id == _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM) lv_roller_set_selected(target, val, LV_ANIM_ON);
if (id == _UI_ROLLER_PROPERTY_SELECTED) lv_roller_set_selected(target, val, LV_ANIM_OFF);
}
void _ui_slider_set_property( lv_obj_t *target, int id, int val)
{
if (id == _UI_SLIDER_PROPERTY_VALUE_WITH_ANIM) lv_slider_set_value(target, val, LV_ANIM_ON);
if (id == _UI_SLIDER_PROPERTY_VALUE) lv_slider_set_value(target, val, LV_ANIM_OFF);
}
void _ui_screen_change( lv_obj_t ** target, lv_scr_load_anim_t fademode, int spd, int delay, void (*target_init)(void))
{
if(*target == NULL)
target_init();
lv_scr_load_anim(*target, fademode, spd, delay, false);
}
void _ui_screen_delete( lv_obj_t ** target )
{
if(*target == NULL)
{
lv_obj_del(*target);
target = NULL;
}
}
void _ui_arc_increment( lv_obj_t *target, int val)
{
int old = lv_arc_get_value(target);
lv_arc_set_value(target, old+val);
lv_event_send(target,LV_EVENT_VALUE_CHANGED, 0);
}
void _ui_bar_increment( lv_obj_t *target, int val, int anm)
{
int old = lv_bar_get_value(target);
lv_bar_set_value(target, old+val, anm);
}
void _ui_slider_increment( lv_obj_t *target, int val, int anm)
{
int old = lv_slider_get_value(target);
lv_slider_set_value(target, old+val, anm);
lv_event_send(target,LV_EVENT_VALUE_CHANGED, 0);
}
void _ui_keyboard_set_target( lv_obj_t *keyboard, lv_obj_t *textarea)
{
lv_keyboard_set_textarea(keyboard, textarea);
}
void _ui_flag_modify( lv_obj_t *target, int32_t flag, int value)
{
if (value==_UI_MODIFY_FLAG_TOGGLE)
{
if ( lv_obj_has_flag(target,flag) ) lv_obj_clear_flag(target,flag);
else lv_obj_add_flag(target,flag);
}
else if (value==_UI_MODIFY_FLAG_ADD) lv_obj_add_flag(target,flag);
else lv_obj_clear_flag(target,flag);
}
void _ui_state_modify( lv_obj_t *target, int32_t state, int value)
{
if (value==_UI_MODIFY_STATE_TOGGLE)
{
if ( lv_obj_has_state(target,state) ) lv_obj_clear_state(target,state);
else lv_obj_add_state(target,state);
}
else if (value==_UI_MODIFY_STATE_ADD) lv_obj_add_state(target,state);
else lv_obj_clear_state(target,state);
}
void _ui_textarea_move_cursor(lv_obj_t * target, int val)
{
if (val==UI_MOVE_CURSOR_UP) lv_textarea_cursor_up(target);
if (val==UI_MOVE_CURSOR_RIGHT) lv_textarea_cursor_right(target);
if (val==UI_MOVE_CURSOR_DOWN) lv_textarea_cursor_down(target);
if (val==UI_MOVE_CURSOR_LEFT) lv_textarea_cursor_left(target);
lv_obj_add_state(target, LV_STATE_FOCUSED);
}
void scr_unloaded_delete_cb(lv_event_t * e)
{
lv_obj_t ** var = lv_event_get_user_data(e);
lv_obj_del(*var);
(*var) = NULL;
}
void _ui_opacity_set( lv_obj_t *target, int val)
{
lv_obj_set_style_opa(target, val, 0);
}
void _ui_anim_callback_free_user_data(lv_anim_t *a)
{
lv_mem_free(a->user_data);
a->user_data=NULL;
}
void _ui_anim_callback_set_x(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
lv_obj_set_x(usr->target, v);
}
void _ui_anim_callback_set_y(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
lv_obj_set_y(usr->target, v);
}
void _ui_anim_callback_set_width(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
lv_obj_set_width(usr->target, v);
}
void _ui_anim_callback_set_height(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
lv_obj_set_height(usr->target, v);
}
void _ui_anim_callback_set_opacity(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
lv_obj_set_style_opa(usr->target, v, 0);
}
void _ui_anim_callback_set_image_zoom(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
lv_img_set_zoom(usr->target, v);
}
void _ui_anim_callback_set_image_angle(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
lv_img_set_angle(usr->target, v);
}
void _ui_anim_callback_set_image_frame(lv_anim_t* a, int32_t v)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
usr->val = v;
if ( v<0 ) v=0;
if ( v>=usr->imgset_size ) v=usr->imgset_size-1;
lv_img_set_src(usr->target, usr->imgset[v]);
}
int32_t _ui_anim_callback_get_x(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return lv_obj_get_x_aligned(usr->target);
}
int32_t _ui_anim_callback_get_y(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return lv_obj_get_y_aligned(usr->target);
}
int32_t _ui_anim_callback_get_width(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return lv_obj_get_width(usr->target);
}
int32_t _ui_anim_callback_get_height(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return lv_obj_get_height(usr->target);
}
int32_t _ui_anim_callback_get_opacity(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return lv_obj_get_style_opa(usr->target, 0);
}
int32_t _ui_anim_callback_get_image_zoom(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return lv_img_get_zoom(usr->target);
}
int32_t _ui_anim_callback_get_image_angle(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return lv_img_get_angle(usr->target);
}
int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a)
{
ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data;
return usr->val;
}
void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix)
{
char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE];
lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_arc_get_value(src), postfix);
lv_label_set_text(trg, buf);
}
void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix)
{
char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE];
lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_slider_get_value(src), postfix);
lv_label_set_text(trg, buf);
}
void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *txt_on, const char *txt_off)
{
if (lv_obj_has_state(src,LV_STATE_CHECKED)) lv_label_set_text(trg,txt_on);
else lv_label_set_text(trg,txt_off);
}
void _ui_spinbox_step(lv_obj_t * target, int val)
{
if(val > 0) lv_spinbox_increment(target);
else lv_spinbox_decrement(target);
lv_event_send(target,LV_EVENT_VALUE_CHANGED, 0);
}
void _ui_switch_theme(int val)
{
#ifdef UI_THEME_ACTIVE
ui_theme_set(val);
#endif
}

View File

@ -1,130 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#ifndef _SQUARELINE_PROJECT_UI_HELPERS_H
#define _SQUARELINE_PROJECT_UI_HELPERS_H
#ifdef __cplusplus
extern "C" {
#endif
#include "ui.h"
#define _UI_TEMPORARY_STRING_BUFFER_SIZE 32
#define _UI_BAR_PROPERTY_VALUE 0
#define _UI_BAR_PROPERTY_VALUE_WITH_ANIM 1
void _ui_bar_set_property( lv_obj_t *target, int id, int val);
#define _UI_BASIC_PROPERTY_POSITION_X 0
#define _UI_BASIC_PROPERTY_POSITION_Y 1
#define _UI_BASIC_PROPERTY_WIDTH 2
#define _UI_BASIC_PROPERTY_HEIGHT 3
void _ui_basic_set_property( lv_obj_t *target, int id, int val);
#define _UI_DROPDOWN_PROPERTY_SELECTED 0
void _ui_dropdown_set_property( lv_obj_t *target, int id, int val);
#define _UI_IMAGE_PROPERTY_IMAGE 0
void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val);
#define _UI_LABEL_PROPERTY_TEXT 0
void _ui_label_set_property( lv_obj_t *target, int id, const char *val);
#define _UI_ROLLER_PROPERTY_SELECTED 0
#define _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM 1
void _ui_roller_set_property( lv_obj_t *target, int id, int val);
#define _UI_SLIDER_PROPERTY_VALUE 0
#define _UI_SLIDER_PROPERTY_VALUE_WITH_ANIM 1
void _ui_slider_set_property( lv_obj_t *target, int id, int val);
void _ui_screen_change( lv_obj_t ** target, lv_scr_load_anim_t fademode, int spd, int delay, void (*target_init)(void));
void _ui_screen_delete( lv_obj_t ** target );
void _ui_arc_increment( lv_obj_t *target, int val);
void _ui_bar_increment( lv_obj_t *target, int val, int anm);
void _ui_slider_increment( lv_obj_t *target, int val, int anm);
void _ui_keyboard_set_target( lv_obj_t *keyboard, lv_obj_t *textarea);
#define _UI_MODIFY_FLAG_ADD 0
#define _UI_MODIFY_FLAG_REMOVE 1
#define _UI_MODIFY_FLAG_TOGGLE 2
void _ui_flag_modify( lv_obj_t *target, int32_t flag, int value);
#define _UI_MODIFY_STATE_ADD 0
#define _UI_MODIFY_STATE_REMOVE 1
#define _UI_MODIFY_STATE_TOGGLE 2
void _ui_state_modify( lv_obj_t *target, int32_t state, int value);
#define UI_MOVE_CURSOR_UP 0
#define UI_MOVE_CURSOR_RIGHT 1
#define UI_MOVE_CURSOR_DOWN 2
#define UI_MOVE_CURSOR_LEFT 3
void _ui_textarea_move_cursor(lv_obj_t * target, int val) ;
void scr_unloaded_delete_cb(lv_event_t * e);
void _ui_opacity_set( lv_obj_t *target, int val);
/** Describes an animation*/
typedef struct _ui_anim_user_data_t {
lv_obj_t *target;
lv_img_dsc_t **imgset;
int32_t imgset_size;
int32_t val;
} ui_anim_user_data_t;
void _ui_anim_callback_free_user_data(lv_anim_t *a);
void _ui_anim_callback_set_x(lv_anim_t* a, int32_t v);
void _ui_anim_callback_set_y(lv_anim_t* a, int32_t v);
void _ui_anim_callback_set_width(lv_anim_t* a, int32_t v);
void _ui_anim_callback_set_height(lv_anim_t* a, int32_t v);
void _ui_anim_callback_set_opacity(lv_anim_t* a, int32_t v);
void _ui_anim_callback_set_image_zoom(lv_anim_t* a, int32_t v);
void _ui_anim_callback_set_image_angle(lv_anim_t* a, int32_t v);
void _ui_anim_callback_set_image_frame(lv_anim_t* a, int32_t v);
int32_t _ui_anim_callback_get_x(lv_anim_t* a);
int32_t _ui_anim_callback_get_y(lv_anim_t* a);
int32_t _ui_anim_callback_get_width(lv_anim_t* a);
int32_t _ui_anim_callback_get_height(lv_anim_t* a);
int32_t _ui_anim_callback_get_opacity(lv_anim_t* a);
int32_t _ui_anim_callback_get_image_zoom(lv_anim_t* a);
int32_t _ui_anim_callback_get_image_angle(lv_anim_t* a);
int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a);
void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix);
void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix);
void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *txt_on, const char *txt_off);
void _ui_spinbox_step(lv_obj_t * target, int val) ;
void _ui_switch_theme(int val) ;
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif

View File

@ -1,26 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/back-icon.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_1318103182_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,
0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_1318103182 = {
.header.always_zero = 0,
.header.w = 17,
.header.h = 17,
.data_size = sizeof(ui_img_1318103182_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_1318103182_data};

View File

@ -1,28 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/arrow-icon.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_1582207408_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x60,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x7F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0x5F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x80,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x70,0xFF,0xFF,0x80,0xFF,0xFF,0x70,0xFF,0xFF,0x40,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_1582207408 = {
.header.always_zero = 0,
.header.w = 21,
.header.h = 21,
.data_size = sizeof(ui_img_1582207408_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_1582207408_data};

View File

@ -1,122 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/boot-logo-2.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_1796371062_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x22,0x40,0x7B,0x1A,0x8F,0x7B,0x1A,0xCF,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x7B,0x1A,0xCF,0x7B,0x1A,0x8F,0x9B,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x22,0x20,0x7B,0x1A,0xBF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xAF,0x9A,0x22,0x20,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x1A,0x5F,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x9B,0x1A,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x1A,0x5F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x1A,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x22,0x20,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xAF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x22,0x30,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x90,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xCF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x4B,0xFF,0x9C,0x74,0xFF,0x3D,0x8D,0xFF,0x3D,0x8D,0xFF,0x9C,0x74,0xFF,0x7B,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0xFD,0x84,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3C,0x64,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x64,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3C,0x64,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x5F,0xE7,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x64,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDD,0x84,0xFF,0xFE,0xAD,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0x9D,0x9D,0xFF,0xDD,0x84,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7C,0x4B,0xFF,0x5E,0xBE,0xFF,0xFD,0x84,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFD,0x84,0xFF,0x9E,0xC6,0xFF,0x7B,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDB,0x2A,0xFF,0xDC,0x53,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3C,0x64,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x60,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x60,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x20,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,
0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x4B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7C,0x4B,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7B,0x43,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9C,0x74,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0xDB,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7B,0x43,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3D,0x8D,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x40,0xFF,0xFF,0x10,0x00,0x00,0x00,0xFF,0xFF,0x60,
0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0x80,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3C,0x64,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3D,0x8D,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9C,0x74,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDB,0x2A,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x4B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7C,0x4B,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7C,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7B,0x43,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0x8F,0xFF,0xFF,0xAF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xC6,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0xDC,0x53,0xFF,0xDB,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5E,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xDD,0x84,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFD,0x84,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDD,0x84,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDB,0x2A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDD,0x84,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFD,0x84,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0xDB,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x8F,0xFF,0xFF,0x80,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5E,0xBE,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0x9E,0xC6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9C,0x74,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x5F,0xE7,0xFF,0x5F,0xE7,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0x9F,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDB,0x2A,0xFF,0xDD,0x84,0xFF,0x5F,0xE7,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x3D,0x8D,0xFF,0xDB,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xA0,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x80,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x9F,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xA0,0xFF,0xFF,0xBF,0xFF,0xFF,0xAF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,
0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7C,0x4B,0xFF,0x9C,0x74,0xFF,0x3D,0x8D,0xFF,0x3D,0x8D,0xFF,0x9C,0x74,0xFF,0x7C,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xCF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x90,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x1A,0x40,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xBF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x22,0x20,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x1A,0x60,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x1A,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x1A,0x60,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x9A,0x1A,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x22,0x20,0x7B,0x1A,0xAF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xBF,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x22,0x30,0x7B,0x1A,0x90,0x7B,0x1A,0xCF,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x7B,0x1A,0xCF,0x7B,0x1A,0x90,0x9A,0x1A,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_1796371062 = {
.header.always_zero = 0,
.header.w = 153,
.header.h = 42,
.data_size = sizeof(ui_img_1796371062_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_1796371062_data};

View File

@ -1,31 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/x-icon.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_2138704335_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x8F,0x28,0xEA,0xDF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xDF,0x8A,0xEA,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x80,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x49,0xEA,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,
0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0xAF,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0xAF,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,
0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x9F,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x8F,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0xA0,0x28,0xEA,0xFF,0x28,0xEA,0xEF,0x8A,0xEA,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xEA,0x70,0x28,0xEA,0xEF,0x28,0xEA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xEA,0x90,0x28,0xEA,0xEF,0x49,0xEA,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_2138704335 = {
.header.always_zero = 0,
.header.w = 25,
.header.h = 24,
.data_size = sizeof(ui_img_2138704335_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_2138704335_data};

View File

@ -1,23 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/back-caret.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_352891484_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x7F,0x7B,0x1A,0xFF,0x7A,0x1A,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x7F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x1A,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x7F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x7F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x7F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x60,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x1A,0x60,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x80,0x7B,0x1A,0xFF,0x9A,0x1A,0x60,};
const lv_img_dsc_t ui_img_352891484 = {
.header.always_zero = 0,
.header.w = 8,
.header.h = 12,
.data_size = sizeof(ui_img_352891484_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_352891484_data};

View File

@ -1,26 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/check-icon.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_536642073_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_536642073 = {
.header.always_zero = 0,
.header.w = 19,
.header.h = 14,
.data_size = sizeof(ui_img_536642073_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_536642073_data};

View File

@ -1,29 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/cloud_disconnected.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_cloud_disconnected_png_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x70,0xFF,0xFF,0x80,0xFF,0xFF,0x50,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,
0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,
0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x90,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xCF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_cloud_disconnected_png = {
.header.always_zero = 0,
.header.w = 22,
.header.h = 22,
.data_size = sizeof(ui_img_cloud_disconnected_png_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_cloud_disconnected_png_data};

View File

@ -1,29 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/cloud.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_cloud_png_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x40,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xEF,0xFF,0xFF,0x70,0xFF,0xFF,0x80,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x5F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xAF,0xFF,0xFF,0xCF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9F,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_cloud_png = {
.header.always_zero = 0,
.header.w = 23,
.header.h = 22,
.data_size = sizeof(ui_img_cloud_png_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_cloud_png_data};

View File

@ -1,155 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/d2.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_d2_png_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x22,0x20,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9A,0x22,0x40,0x9B,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x60,0x7B,0x1A,0xBF,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xBF,0x7A,0x1A,0x60,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x50,0x7B,0x1A,0xDF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xDF,0x7B,0x1A,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x8F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xCF,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x9F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xDF,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x7F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x22,0x30,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xCF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x9B,0x22,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x1A,0x40,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x90,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xBF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0xDC,0x53,0xFF,
0xDC,0x53,0xFF,0x7B,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3C,0x64,0xFF,0x9E,0xC6,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xC6,0xFF,0x9C,0x74,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,
0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x5F,0xFF,0xFF,0x70,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xDF,
0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x70,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFE,0xD6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0xDB,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,
0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x64,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x5F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x5E,0xBE,0xFF,0x9D,0x9D,0xFF,0x3D,0x8D,0xFF,0x5E,0xBE,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0x3D,0x8D,0xFF,0x3C,0x64,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0x3D,0x8D,0xFF,0x7C,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0xFE,0xAD,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0xFE,0xAD,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x30,0xFF,0xFF,0x30,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x8F,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3D,0x8D,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0x9E,0xC6,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0x9E,0xC6,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x4B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xC6,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x9E,0xC6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7B,0x43,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x7B,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,
0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3E,0xBE,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9E,0xC6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,
0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,
0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9E,0xC6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFE,0xAD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFE,0xAD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD6,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3E,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFE,0xD6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDB,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0xDC,0x53,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFE,0xD6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,
0xFF,0xFF,0x9F,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFE,0xAD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x64,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xAD,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD6,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xAF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9C,0x74,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xC6,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0x3D,0x8D,0xFF,0x3D,0x8D,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xFE,0xAD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xAD,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDB,0x2A,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDD,0x84,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3D,0x8D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x7B,0x4B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xAD,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDB,0x2A,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3D,0x8D,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xDC,0x53,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x3B,0x3B,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0xDD,0x84,0xFF,0x7B,0x4B,0xFF,0xDB,0x2A,0xFF,0xDB,0x2A,0xFF,0x3B,0x3B,0xFF,0xDD,0x84,0xFF,0x9E,0xC6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x64,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x70,0xFF,0xFF,0x40,
0xFF,0xFF,0x70,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0xFF,0xFF,0x40,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7C,0x4B,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x74,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,
0xFF,0xFF,0xDF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x3B,0x3B,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xE7,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9C,0x74,0xFF,0x5F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xF7,0xFF,0x3D,0x8D,0xFF,0xDB,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xA0,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xFF,0xFF,0x30,0xFF,0xFF,0xCF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x70,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7C,0x4B,0xFF,0xDD,0x84,0xFF,0x5E,0xBE,0xFF,0x9E,0xC6,0xFF,0x9E,0xC6,0xFF,0xFE,0xAD,0xFF,0x9D,0x9D,0xFF,0xDC,0x53,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x40,0xFF,0xFF,0x60,0xFF,0xFF,0x50,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x40,0xFF,0xFF,0x60,0xFF,0xFF,0x30,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xDF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xAF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x1A,0x70,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x22,0x10,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x80,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x22,0x10,0x7B,0x1A,0xDF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9A,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x22,0x30,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x22,0x30,0x7B,0x1A,0xEF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x22,0x20,0x7B,0x1A,0xDF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xDF,0x9A,0x1A,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x1A,0x60,0x7B,0x1A,0xDF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xEF,0x7A,0x1A,0x80,0x9B,0x22,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9A,0x1A,0x40,0x7A,0x1A,0x80,0x7B,0x1A,0xAF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,
0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0xBF,0x7B,0x1A,0x9F,0x7B,0x1A,0x90,0x9A,0x1A,0x40,0x9B,0x22,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_d2_png = {
.header.always_zero = 0,
.header.w = 174,
.header.h = 49,
.data_size = sizeof(ui_img_d2_png_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_d2_png_data};

View File

@ -1,38 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/ethernet.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_ethernet_png_data[] = {
0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,
0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,
0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,0xFF,0xFF,0x20,0x00,0x00,0x00,
};
const lv_img_dsc_t ui_img_ethernet_png = {
.header.always_zero = 0,
.header.w = 32,
.header.h = 32,
.data_size = sizeof(ui_img_ethernet_png_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_ethernet_png_data};

View File

@ -1,28 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/hdmi.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_hdmi_png_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x03,0xFF,0xFF,0x03,
0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x1A,0xFF,0xFF,0x56,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x57,0xFF,0xFF,0x1D,0x00,0x00,0x00,0xFF,0xFF,0x1D,0xFF,0xFF,0xDD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDD,0xFF,0xFF,0x1A,0xFF,0xFF,0x57,0xFF,0xFF,0xFF,0xFF,0xFF,0xE0,0xFF,0xFF,0xA6,0xFF,0xFF,0xAA,0xFF,0xFF,0xA8,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA9,0xFF,0xFF,0xAA,0xFF,0xFF,0xA6,0xFF,0xFF,0xE0,0xFF,0xFF,0xFF,0xFF,0xFF,0x56,0xFF,0xFF,0x51,0xFF,0xFF,0xFF,0xFF,0xFF,0xA7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA7,0xFF,0xFF,0xFF,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0xFF,0xFF,0xFF,0xA4,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xFF,0xFF,0xF7,0xFF,0xFF,0xF7,0xFF,0xFF,0xF7,0xFF,0xFF,0xF7,
0xFF,0xFF,0xF4,0xFF,0xFF,0xFF,0xFF,0xFF,0x8E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA5,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0xFF,0xFF,0x57,0xFF,0xFF,0xFF,0xFF,0xFF,0xC3,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x8A,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xFF,0xFF,0xF7,0xFF,0xFF,0xF7,0xFF,0xFF,0xF7,0xFF,0xFF,0xF7,0xFF,0xFF,0xF4,0xFF,0xFF,0xFF,0xFF,0xFF,0x8B,0x00,0x00,0x00,0xFF,0xFF,0x47,0xFF,0xFF,0xC2,0xFF,0xFF,0xFF,0xFF,0xFF,0x57,0xFF,0xFF,0x36,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x89,0x00,0x00,0x00,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x89,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x33,0x00,0x00,0x00,0xFF,0xFF,0x55,0xFF,0xFF,0xA7,0xFF,0xFF,0xF8,0xFF,0xFF,0xFF,0xFF,0xFF,0xBC,0xFF,0xFF,0xA1,0xFF,0xFF,0xA6,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA5,0xFF,0xFF,0xA6,0xFF,0xFF,0xA2,0xFF,0xFF,0xB8,0xFF,0xFF,0xFF,
0xFF,0xFF,0xF7,0xFF,0xFF,0xAB,0xFF,0xFF,0x59,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x4D,0xFF,0xFF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF8,0xFF,0xFF,0x4D,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x57,0xFF,0xFF,0x50,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x51,0xFF,0xFF,0x50,0xFF,0xFF,0x57,0xFF,0xFF,0x30,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_hdmi_png = {
.header.always_zero = 0,
.header.w = 20,
.header.h = 20,
.data_size = sizeof(ui_img_hdmi_png_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_hdmi_png_data};

View File

@ -1,80 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/jetkvm.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_jetkvm_png_data[] = {
0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x9B,0x1A,0x33,0x7B,0x1A,0x98,0x7B,0x1A,0xD9,0x7B,0x1A,0xFC,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFB,0x7B,0x1A,0xDF,0x7B,0x1A,0xA3,0x7B,0x1A,0x45,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0xBF,0x02,0x03,0x7B,0x1A,0x95,0x7B,0x1A,0xFF,0x9C,0x1A,0xFF,0x9B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9C,0x1A,0xFF,0x9B,0x1A,0xFF,0x7B,0x1A,0xA4,0x7B,0x1A,0x14,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0x02,0x03,0x7B,0x1A,0xB2,0xBD,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFB,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFB,0x7B,0x1A,0xFD,0x9C,0x1A,0xFF,0x7B,0x1A,0xD9,0x7B,0x22,0x17,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x94,0xBD,0x1A,0xFF,0x7B,0x1A,0xF9,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xF9,0x9C,0x1A,0xFF,0x7B,0x1A,0xB6,0x00,0x00,0x00,0x1F,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x37,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0xFB,0x9C,0x1A,0xFF,0x7B,0x1A,0x59,0x00,0x00,0x00,0x17,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x9D,0x9C,0x1A,0xFF,0x7A,0x1A,0xFB,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0x9B,0x22,0xFF,0x7B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFB,0x9C,0x1A,0xFF,0x7B,0x1A,0xB5,0x00,0x00,0x00,0x1F,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xDC,0x9B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0xBB,0x2A,0xFF,0x7B,0x22,0xFF,0x5A,0x02,0xFF,0x3A,0x02,0xFF,0x7B,0x1A,0xFF,0xBB,0x2A,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xF0,0x7B,0x1A,0x14,0x00,0x00,0x00,0x1F,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFC,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0x1A,0x02,0xFF,0x1A,0x01,0xFF,0x5B,0x02,0xFF,0x1B,0x43,0xFF,0x1B,0x43,0xFF,0x7B,0x12,0xFF,0x1A,0x01,0xFF,0xFA,0x01,0xFF,
0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xF9,0x7B,0x22,0x28,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x06,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0x3A,0x02,0xFF,0xBB,0x5B,0xFF,0x3D,0xBE,0xFF,0x1E,0xDF,0xFF,0xBF,0xF7,0xFF,0xBF,0xF7,0xFF,0x3F,0xDF,0xFF,0x5E,0xC6,0xFF,0x1C,0x6C,0xFF,0x1A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,
0x7A,0x1A,0x2B,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x51,0xFF,0xFF,0xC6,0xFF,0xFF,0xB2,0xFF,0xFF,0x1F,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x07,0xFF,0xFF,0xA1,0xFF,0xFF,0xC9,0xFF,0xFF,0x70,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x24,0xFF,0xFF,0xB1,0xFF,0xFF,0xBA,0xFF,0xFF,0xBC,0xFF,0xFF,0x39,0xFF,0xFF,0x99,0xFF,0xFF,0xC6,0xFF,0xFF,0x93,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x05,0xFF,0xFF,0x9F,0xFF,0xFF,0xC5,
0xFF,0xFF,0x93,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0xAF,0xFF,0xFF,0xB8,0xFF,0xFF,0xC4,0xFF,0xFF,0x67,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x08,0xFF,0xFF,0xA5,0xFF,0xFF,0xBA,0xFF,0xFF,0xC1,0xFF,0xFF,0x7F,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0x3A,0x02,0xFF,0x3B,0x43,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9B,0x53,0xFF,0x1A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,
0xFF,0xFF,0x76,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x2C,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x07,0xFF,0xFF,0x37,0xFF,0xFF,0x39,0xFF,0xFF,0x0C,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0xEA,0xFF,0xFF,0xFF,0xFF,0xFF,0xA2,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x12,0xFF,0xFF,0xD7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x88,0x00,0x00,0x00,0xFF,0xFF,0xA7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x3C,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x86,0x00,0x00,0x00,0xFF,0xFF,0x12,0xFF,0xFF,0xFD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xE3,0xFF,0xFF,0x09,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x53,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB8,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0xBB,0x32,0xFF,0x9B,0x22,0xFF,0xBB,0x2A,0xFF,0x5F,0xE7,0xFF,0xDF,0xFF,0xFF,0xBE,0xD6,0xFF,0x1D,0xBE,0xFF,0x3D,0xBE,0xFF,0x9E,0xCE,0xFF,0xBF,0xF7,0xFF,0x9F,0xEF,0xFF,0x5B,0x4B,0xFF,0x5A,0x12,0xFF,0xDB,0x32,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xF3,0xFF,0xFF,0x2A,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x02,0xFF,0xFF,0x03,0xFF,0xFF,0x03,
0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x1D,0xFF,0xFF,0xF5,0xFF,0xFF,0xFF,0xFF,0xFF,0x38,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x09,0xFF,0xFF,0xDC,0xFF,0xFF,0xFF,0xFF,0xFF,0x99,0x00,0x00,0x00,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0xBD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x42,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0x86,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x91,0xFF,0xFF,0xFF,0xFF,0xFF,0xF3,0xFF,0xFF,0x24,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEE,0xFF,0xFF,0xFF,0xFF,0xFF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0x5C,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0xB5,0xFF,0xFF,0xFF,0xFF,0xFF,0xF5,0xFF,0xFF,0xFF,0xFF,0xFF,0xAD,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0x5A,0x0A,0xFF,0xBA,0x00,0xFF,0xDA,0x01,0xFF,0x5A,0x02,0xFF,0xDB,0x32,0xFF,0xBB,0x5B,0xFF,0xFA,0x01,0xFF,0x3A,0x01,0xFF,0x5A,0x01,0xFF,0xDA,0x01,0xFF,0x7B,0x4B,0xFF,0x3B,0x43,0xFF,0x3A,0x02,0xFF,0xFA,0x01,0xFF,0x3A,0x00,0xFF,0x3A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x2A,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x17,0xFF,0xFF,0xF8,0xFF,0xFF,0xFF,0xFF,0xFF,0x35,0x00,0x00,0x00,0xFF,0xFF,0x02,
0x00,0x00,0x00,0xFF,0xFF,0x09,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9A,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0xB2,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x92,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0xD1,0xFF,0xFF,0xFF,0xFF,0xFF,0xD3,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB2,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xF1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x35,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0x3A,0x02,0xFF,0x3B,0x43,0xFF,0x3D,0xBE,0xFF,0xBC,0x84,0xFF,0x1A,0x02,0xFF,0x7B,0x1A,0xFF,0x3A,0x02,0xFF,0x7B,0x22,0xFF,0x7A,0x01,0xFF,
0x3A,0x01,0xFF,0x5A,0x1A,0xFF,0x5A,0x02,0xFF,0x5A,0x12,0xFF,0x1A,0x02,0xFF,0x5C,0x74,0xFF,0x3D,0xC6,0xFF,0xBB,0x5B,0xFF,0x1A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x2A,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x35,0xFF,0xFF,0x54,0xFF,0xFF,0x43,0xFF,0xFF,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x04,0xFF,0xFF,0x08,0xFF,0xFF,0x85,0xFF,0xFF,0xFF,0xFF,0xFF,0xFC,0xFF,0xFF,0x42,0xFF,0xFF,0x04,0xFF,0xFF,0x08,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x99,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x00,0x00,0x00,
0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x7E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3D,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x4F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5A,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xF0,0xFF,0xFF,0xFF,0xFF,0xFF,0xEC,0xFF,0xFF,0xFA,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x91,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xEB,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xBB,0x2A,0xFF,0x1A,0x01,0xFF,0xFD,0xB5,0xFF,0xFF,0xFF,0xFF,0x9F,0xF7,0xFF,0xDB,0x32,0xFF,0x7B,0x1A,0xFF,0x3A,0x02,0xFF,0xFB,0x32,0xFF,0xBD,0xAD,0xFF,0xFD,0xB5,0xFF,0x7B,0x4B,0xFF,0x1A,0x02,0xFF,0xBB,0x2A,0xFF,0x1B,0x02,0xFF,0xFE,0xD6,0xFF,0xFF,0xFF,0xFF,0x9E,0xCE,0xFF,0x9A,0x01,0xFF,0x9B,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x2A,0x00,0x00,0x00,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x3D,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xED,0xFF,0xFF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x36,0xFF,0xFF,0xF2,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xF2,0xFF,0xFF,0xFC,0xFF,0xFF,0x5F,0x00,0x00,0x00,0xFF,0xFF,0x0D,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9C,0x00,0x00,0x00,0xFF,0xFF,0x83,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB4,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x28,0xFF,0xFF,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0x98,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x03,0x00,0x00,0x00,
0xFF,0xFF,0xA7,0xFF,0xFF,0xFF,0xFF,0xFF,0xE3,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEE,0xFF,0xFF,0xFF,0xFF,0xFF,0x97,0xFF,0xFF,0xD1,0xFF,0xFF,0xFF,0xFF,0xFF,0x9D,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x17,0xFF,0xFF,0xE8,0xFF,0xFF,0xFF,0xFF,0xFF,0xA3,0xFF,0xFF,0xC3,0xFF,0xFF,0xFF,0xFF,0xFF,0xAE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0x3B,0x02,0xFF,0x1E,0xDF,0xFF,0xFF,0xFF,0xFF,0xFE,0xD6,0xFF,0x5B,0x02,0xFF,0x5A,0x12,0xFF,0x3B,0x3B,0xFF,0x3F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xEF,0xFF,0xBB,0x5B,0xFF,0x5A,0x12,0xFF,0x9A,0x01,0xFF,0x7E,0xC6,0xFF,0xFF,0xFF,0xFF,0x9F,0xF7,0xFF,0x1B,0x43,0xFF,0x5A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x2A,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x44,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xE9,0xFF,0xFF,0xB8,0xFF,0xFF,0xD8,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x94,0x00,0x00,0x00,0xFF,0xFF,0x3B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x65,0x00,0x00,0x00,0xFF,0xFF,0x0D,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8E,0xFF,0xFF,0x6A,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBD,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0xB8,0xFF,0xFF,0xFF,0xFF,0xFF,0xE3,0xFF,0xFF,0x0E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x1B,0xFF,0xFF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0x8E,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0xFF,0xFF,0x82,0xFF,0xFF,0xFF,
0xFF,0xFF,0xF1,0xFF,0xFF,0x1D,0x00,0x00,0x00,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x6E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFB,0xFF,0xFF,0x3E,0xFF,0xFF,0xC7,0xFF,0xFF,0xFF,0xFF,0xFF,0xAE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0x5B,0x12,0xFF,0xDB,0x32,0xFF,0x7F,0xEF,0xFF,0xFF,0xFF,0xFF,0x3D,0xBE,0xFF,0x5A,0x01,0xFF,0x7A,0x01,0xFF,0xBD,0xAD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x1D,0xBE,0xFF,0x5A,0x01,0xFF,0x5A,0x01,0xFF,0xBD,0xAD,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9B,0x53,0xFF,0x1A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x04,0xFF,0xFF,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x2B,0x00,0x00,0x00,0xFF,0xFF,0x0C,0xFF,0xFF,0xDC,0xFF,0xFF,0xFF,
0xFF,0xFF,0xB3,0xFF,0xFF,0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x2F,0xFF,0xFF,0x04,0xFF,0xFF,0x30,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x64,0xFF,0xFF,0x33,0xFF,0xFF,0x1A,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0xE2,0xFF,0xFF,0xFF,0xFF,0xFF,0xDB,0xFF,0xFF,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x5E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x63,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0x75,0xFF,0xFF,0x19,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7E,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0xC7,0xFF,0xFF,0xFF,0xFF,0xFF,0xBD,0x00,0x00,0x00,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xAE,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0x5A,0x0A,0xFF,0xDB,0x32,0xFF,0x7F,0xEF,0xFF,0xFF,0xFF,0xFF,0x3D,0xBE,0xFF,0x9A,0x01,0xFF,0x7A,0x01,0xFF,0x9D,0xAD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x1D,0xB6,0xFF,0x7A,0x01,0xFF,0x7A,0x01,0xFF,0xBD,0xAD,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9B,0x53,0xFF,0x1A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x2E,0x00,0x00,0x00,0xFF,0xFF,0x54,0xFF,0xFF,0xFF,0xFF,0xFF,0xFC,0xFF,0xFF,0x36,0x00,0x00,0x00,0xFF,0xFF,0x0C,0xFF,0xFF,0x01,0xFF,0xFF,0x0E,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7B,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x3F,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x09,0xFF,0xFF,0xE3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFB,0xFF,0xFF,0xFD,0xFF,0xFF,0xFF,0xFF,0xFF,0x8D,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x16,0xFF,0xFF,0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xAA,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBA,0xFF,0xFF,0xFF,0xFF,0xFF,0xC6,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0xBC,0xFF,0xFF,0xFF,0xFF,0xFF,0xD5,0xFF,0xFF,0x0B,0x00,0x00,0x00,0xFF,0xFF,0x4B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x54,0x00,0x00,0x00,0xFF,0xFF,0xD5,0xFF,0xFF,0xFF,0xFF,0xFF,0xAE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0x3B,0x02,0xFF,0xFE,0xD6,0xFF,0xFF,0xFF,0xFF,0xFE,0xD6,0xFF,0x1B,0x02,0xFF,
0x7B,0x22,0xFF,0xFB,0x32,0xFF,0x3F,0xE7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xEF,0xFF,0x9B,0x53,0xFF,0x7A,0x22,0xFF,0x5A,0x01,0xFF,0x5E,0xC6,0xFF,0xFF,0xFF,0xFF,0x9F,0xEF,0xFF,0xFB,0x3A,0xFF,0x5A,0x0A,0xFF,0x7B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x1A,0xFF,0xFF,0x62,0xFF,0xFF,0x86,0xFF,0xFF,0x0A,0x00,0x00,0x00,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x71,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x2F,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xF9,0xFF,0xFF,0xEC,0xFF,0xFF,0xED,0xFF,0xFF,0xEB,0xFF,0xFF,0xEC,0xFF,0xFF,0xEC,0xFF,0xFF,0xFD,0xFF,0xFF,0xFF,0xFF,0xFF,0xA2,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x48,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x3A,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0xE3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xE5,0xFF,0xFF,0x32,0xFF,0xFF,0xCC,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x9A,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x11,0xFF,0xFF,0x24,0xFF,0xFF,0xF9,0xFF,0xFF,0xFF,0xFF,0xFF,0x72,0x00,0x00,0x00,0xFF,0xFF,0x04,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0x82,0x00,0x00,0x00,0xFF,0xFF,0x57,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5D,0x00,0x00,0x00,0xFF,0xFF,0xAE,0xFF,0xFF,0xFF,0xFF,0xFF,0xDA,0xFF,0xFF,0x09,0xFF,0xFF,0x03,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xAE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0xBB,0x2A,0xFF,0xFA,0x00,0xFF,0x1D,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x1C,0x6C,0xFF,0xDA,0x01,0xFF,0x7B,0x1A,0xFF,0x1B,0x3B,0xFF,0xBD,0xAD,0xFF,0xFD,0xB5,0xFF,0x9B,0x53,0xFF,0x3A,0x02,0xFF,0x3A,0x02,0xFF,0x5B,0x43,0xFF,0xBF,0xF7,0xFF,0xFF,0xFF,0xFF,0xBE,0xCE,0xFF,
0xBA,0x01,0xFF,0x9B,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x7E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x0F,0x00,0x00,0x00,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xF6,0xFF,0xFF,0x30,0x00,0x00,0x00,0xFF,0xFF,0x82,0xFF,0xFF,0xFF,0xFF,0xFF,0xF8,0xFF,0xFF,0xDD,0xFF,0xFF,0xDB,0xFF,0xFF,0xDA,0xFF,0xFF,0xDA,0xFF,0xFF,0xDC,0xFF,0xFF,0xCE,0xFF,0xFF,0xDF,0xFF,0xFF,0x87,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x47,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x39,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0xE2,0xFF,0xFF,0xFF,0xFF,0xFF,0xF1,0xFF,0xFF,0x3E,0x00,0x00,0x00,0xFF,0xFF,0x34,0xFF,0xFF,0xF9,0xFF,0xFF,0xFF,0xFF,0xFF,0xEA,0xFF,0xFF,0x1C,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x44,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0x53,0xFF,0xFF,0x66,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x1D,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0xFF,0xFF,0x0C,0xFF,0xFF,0xD5,0xFF,0xFF,0xFF,0xFF,0xFF,0xB1,0xFF,0xFF,0x23,0xFF,0xFF,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0x79,0x00,0x00,0x00,0xFF,0xFF,0x09,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xAE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0x1A,0x02,0xFF,0xDB,0x63,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x1E,0xDF,0xFF,0x5B,0x02,0xFF,0xDA,0x01,0xFF,0x7B,0x22,0xFF,0x7A,0x01,0xFF,0x3A,0x01,0xFF,0x7A,0x1A,0xFF,0x1A,0x02,0xFF,0xBA,0x01,0xFF,0xBE,0xCE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFC,0x8C,0xFF,0x7A,0x01,0xFF,0x9B,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0xFF,0xFF,0x05,
0x00,0x00,0x00,0xFF,0xFF,0x79,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x18,0x00,0x00,0x00,0xFF,0xFF,0x08,0x00,0x00,0x00,0xFF,0xFF,0x7B,0xFF,0xFF,0xFF,0xFF,0xFF,0xF5,0xFF,0xFF,0x2A,0x00,0x00,0x00,0xFF,0xFF,0x6A,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xFF,0xFF,0x1E,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0x08,0x00,0x00,0x00,0xFF,0xFF,0x1F,0xFF,0xFF,0x0E,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x46,0xFF,0xFF,0xFF,0xFF,0xFF,0xFD,0xFF,0xFF,0x35,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9A,0x00,0x00,0x00,0xFF,0xFF,0x09,0x00,0x00,0x00,0xFF,0xFF,0x6E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBC,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0xD4,0xFF,0xFF,0xFF,0xFF,0xFF,0xC0,0xFF,0xFF,0xC9,0xFF,0xFF,0xFF,0xFF,0xFF,0xAA,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEC,
0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7A,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xC2,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x21,0x00,0x00,0x00,0xFF,0xFF,0x07,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xAE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x2A,0xFF,0x7A,0x01,0xFF,0x1D,0xB6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x1F,0xDF,0xFF,0x1C,0x6C,0xFF,0xDA,0x01,0xFF,0x5A,0x01,0xFF,0x5A,0x01,0xFF,0xBA,0x01,0xFF,0xBB,0x5B,0xFF,0xDE,0xD6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xCE,0xFF,0xDA,0x01,0xFF,0x9B,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x4D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8A,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x1A,0xFF,0xFF,0xD7,0xFF,0xFF,0xFF,0xFF,0xFF,0xD7,0xFF,0xFF,0x06,
0x00,0x00,0x00,0xFF,0xFF,0x29,0xFF,0xFF,0xF8,0xFF,0xFF,0xFF,0xFF,0xFF,0x8D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x11,0xFF,0xFF,0xD8,0xFF,0xFF,0xE4,0xFF,0xFF,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x49,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x49,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x09,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9A,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x1B,0xFF,0xFF,0xF4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA1,0x00,0x00,0x00,0xFF,0xFF,0x01,
0xFF,0xFF,0x05,0xFF,0xFF,0xD1,0xFF,0xFF,0xFF,0xFF,0xFF,0xAD,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0x7B,0x1A,0xFF,0x3B,0x02,0xFF,0xBE,0xCE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xD6,0xFF,0x3D,0xBE,0xFF,0x1D,0xBE,0xFF,0x9E,0xCE,0xFF,0xDF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x3F,0xE7,0xFF,0xDB,0x2A,0xFF,0x5A,0x0A,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x05,0xFF,0xFF,0xD0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCA,0xFF,0xFF,0xA6,0xFF,0xFF,0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x68,0x00,0x00,0x00,0xFF,0xFF,0x06,0x00,0x00,0x00,0xFF,0xFF,0x89,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAC,0xFF,0xFF,0x6E,0xFF,0xFF,0x77,0xFF,0xFF,0xD1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFA,0xFF,0xFF,0x28,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x2E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD9,0xFF,0xFF,0xAB,0xFF,0xFF,0x44,0x00,0x00,0x00,0xFF,0xFF,0x0C,0xFF,0xFF,0xDC,0xFF,0xFF,0xFF,0xFF,0xFF,0x99,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x14,0xFF,0xFF,0xE2,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x41,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x29,0xFF,0xFF,0xFC,0xFF,0xFF,0xFB,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x0C,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEA,0xFF,0xFF,0xFF,0xFF,0xFF,0x7D,0x00,0x00,0x00,0xFF,0xFF,0x07,0x00,0x00,0x00,0xFF,0xFF,0x9E,0xFF,0xFF,0xFF,0xFF,0xFF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0x3F,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x05,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAC,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x9B,0x22,0xFF,0x5A,0x0A,0xFF,0x5B,0x02,0xFF,0x3D,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xCE,0xFF,0xDB,0x2A,0xFF,0x3A,0x02,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7A,0x1A,0xFA,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x26,0xFF,0xFF,0xD8,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x87,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x96,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEA,0xFF,0xFF,0x48,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x94,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0x00,0x00,0x00,0xFF,0xFF,0x0E,0xFF,0xFF,0xEA,0xFF,0xFF,0xFF,
0xFF,0xFF,0xA2,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0xFF,0xFF,0x49,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0xBD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x87,0x00,0x00,0x00,0xFF,0xFF,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0F,0xFF,0xFF,0xF8,0xFF,0xFF,0xFF,0xFF,0xFF,0x85,0x00,0x00,0x00,0xFF,0xFF,0x08,0x00,0x00,0x00,0xFF,0xFF,0x38,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xC5,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x05,0xFF,0xFF,0xDC,0xFF,0xFF,0xFF,0xFF,0xFF,0xB5,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x3A,0x01,0xFF,0x3C,0x6C,0xFF,0x3D,0xBE,0xFF,0xFE,0xDE,0xFF,0xBF,0xF7,0xFF,0xBF,0xF7,0xFF,0x3F,0xE7,0xFF,0x5E,0xC6,0xFF,0x9C,0x7C,0xFF,
0x9A,0x01,0xFF,0x5A,0x0A,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xF9,0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x0A,0xFF,0xFF,0x6D,0xFF,0xFF,0xA5,0xFF,0xFF,0xAF,0xFF,0xFF,0x96,0xFF,0xFF,0x45,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x3F,0xFF,0xFF,0x90,0xFF,0xFF,0xAD,0xFF,0xFF,0xA6,0xFF,0xFF,0x74,0xFF,0xFF,0x16,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x4E,0xFF,0xFF,0x80,0xFF,0xFF,0x7B,0xFF,0xFF,0x26,0x00,0x00,0x00,0xFF,0xFF,0x06,0xFF,0xFF,0x58,0xFF,0xFF,0x6B,0xFF,0xFF,0x3C,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x4B,0xFF,0xFF,0x64,0xFF,0xFF,0x6C,0xFF,0xFF,0x2F,0x00,0x00,0x00,
0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x2E,0xFF,0xFF,0x6B,0xFF,0xFF,0x64,0xFF,0xFF,0x1E,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x05,0xFF,0xFF,0x5C,0xFF,0xFF,0x6C,0xFF,0xFF,0x31,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x55,0xFF,0xFF,0x6D,0xFF,0xFF,0x2C,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x51,0xFF,0xFF,0x6B,0xFF,0xFF,0x42,0x7B,0x1A,0xFB,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x22,0xFF,0xBB,0x2A,0xFF,0xFA,0x01,0xFF,0xFA,0x00,0xFF,0x5B,0x02,0xFF,0x1B,0x43,0xFF,0x1B,0x43,0xFF,0x9B,0x1A,0xFF,0x1A,0x01,0xFF,0xBA,0x01,0xFF,0x9B,0x2A,0xFF,0x9B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFA,
0x7B,0x1A,0x2A,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0xDD,0x9B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0xBB,0x2A,0xFF,0x7B,0x22,0xFF,0x3A,0x02,0xFF,0x3A,0x02,0xFF,0x7B,0x1A,0xFF,0xBB,0x2A,0xFF,0x9B,0x2A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xEC,0x5C,0x1A,0x11,0x00,0x00,0x00,0x1F,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x04,0xFF,0xFF,0x02,0xFF,0xFF,0x01,0xFF,0xFF,0x03,
0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x04,0xFF,0xFF,0x01,0xFF,0xFF,0x02,0xFF,0xFF,0x04,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x05,0xFF,0xFF,0x05,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x04,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x04,0xFF,0xFF,0x04,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x04,0xFF,0xFF,0x04,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x04,0xFF,0xFF,0x04,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x04,
0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x04,0xFF,0xFF,0x03,0x7B,0x1A,0x99,0x9C,0x1A,0xFF,0x7B,0x1A,0xFB,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9B,0x22,0xFF,0x9B,0x22,0xFF,0x7B,0x22,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFC,0x9C,0x1A,0xFF,0x7B,0x1A,0xB7,0x00,0x00,0x00,0x1F,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x34,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFE,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7A,0x1A,0xFB,0x9C,0x1A,0xFF,0x7B,0x1A,0x54,0x00,0x00,0x00,0xBF,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x1A,0x9B,0xBD,0x1A,0xFF,0x7B,0x1A,0xF9,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,
0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xF9,0xBD,0x1A,0xFF,0x7A,0x1A,0xBA,0x00,0x00,0x00,0x1F,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x17,0x42,0x04,0x7A,0x1A,0xB3,0xBD,0x1A,0xFF,0x7B,0x1A,0xFE,0x7A,0x1A,0xFB,0x7B,0x1A,0xFE,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFE,0x7B,0x1A,0xFB,0x7B,0x1A,0xFC,
0x9C,0x1A,0xFF,0x7B,0x1A,0xD8,0x9A,0x1A,0x19,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0xBF,0x52,0x03,0x7B,0x1A,0x95,0x7B,0x1A,0xFF,0x9C,0x1A,0xFF,0x9B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x9C,0x1A,0xFF,0x9C,0x1A,0xFF,0x7B,0x1A,0xAE,0x9A,0x1A,0x13,0x00,0x00,0x00,0xB5,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1F,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x7A,0x1A,0x38,0x7B,0x1A,0x9A,0x7B,0x1A,0xD8,0x7B,0x1A,0xFB,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFF,0x7B,0x1A,0xFC,0x7A,0x1A,0xE1,0x7A,0x1A,0xA1,0x7A,0x1A,0x45,0x00,0x00,0x00,0x00,0x00,0x00,0xB5,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
};
const lv_img_dsc_t ui_img_jetkvm_png = {
.header.always_zero = 0,
.header.w = 116,
.header.h = 32,
.data_size = sizeof(ui_img_jetkvm_png_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_jetkvm_png_data};

View File

@ -1,28 +0,0 @@
// This file was generated by SquareLine Studio
// SquareLine Studio version: SquareLine Studio 1.5.2
// LVGL version: 8.3.6
// Project name: SquareLine_Project
#include "ui.h"
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
// IMAGE DATA: assets/usb.png
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_usb_png_data[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x3E,0xFF,0xFF,0x77,0xFF,0xFF,0x1E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x73,0xFF,0xFF,0xD9,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x0D,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0xE6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFB,0xFF,0xFF,0xFD,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x18,0xFF,0xFF,0xB6,0xFF,0xFF,0xF6,0xFF,0xFF,0x7D,0x00,0x00,0x00,0xFF,0xFF,0x05,0x00,0x00,0x00,0xFF,0xFF,0x19,0xFF,0xFF,0xD7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD9,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x06,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0xFF,0xFF,0x18,0xFF,0xFF,0xD1,0xFF,0xFF,0xFF,0xFF,0xFF,0xD6,0xFF,0xFF,0xE8,0xFF,0xFF,0x74,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBC,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xF5,0xFF,0xFF,0x12,0xFF,0xFF,0x11,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xD3,0xFF,0xFF,0x1A,0xFF,0xFF,0x06,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0xB1,0xFF,0xFF,0xFF,0xFF,0xFF,0xDD,0xFF,0xFF,0xA4,0xFF,0xFF,0x38,0xFF,0xFF,0x0D,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xD2,0xFF,0xFF,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x04,0xFF,0xFF,0xB1,0xFF,0xFF,0xFF,0xFF,0xFF,0xDA,0xFF,0xFF,0x27,0x00,0x00,0x00,0xFF,0xFF,0x0D,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xD2,0xFF,0xFF,0x12,0xFF,0xFF,0x11,0xFF,0xFF,0xBB,0xFF,0xFF,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xDB,0xFF,0xFF,0x27,0x00,0x00,0x00,0xFF,0xFF,0x1B,0xFF,0xFF,0xD5,0xFF,0xFF,0xFF,0xFF,0xFF,0xD3,
0xFF,0xFF,0x19,0x00,0x00,0x00,0xFF,0xFF,0xC7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7B,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0xB0,0xFF,0xFF,0xFF,0xFF,0xFF,0x79,0x00,0x00,0x00,0xFF,0xFF,0x1D,0xFF,0xFF,0xD2,0xFF,0xFF,0xFF,0xFF,0xFF,0xC0,0xFF,0xFF,0x11,0x00,0x00,0x00,0xFF,0xFF,0x37,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7C,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0xFF,0xFF,0x4D,0xFF,0xFF,0xFF,0xFF,0xFF,0xCA,0xFF,0xFF,0x1F,0xFF,0xFF,0xD1,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xFF,0xFF,0x17,0xFF,0xFF,0x31,0xFF,0xFF,0xE3,0xFF,0xFF,0xFF,0xFF,0xFF,0xE1,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0B,0xFF,0xFF,0xDA,0xFF,0xFF,0xFF,0xFF,0xFF,0xE1,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFD,0xFF,0xFF,0xFF,0xFF,0xFF,0xFB,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB1,0xFF,0xFF,0x09,
0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x7E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD2,0xFF,0xFF,0x1E,0xFF,0xFF,0x3A,0xFF,0xFF,0x9D,0xFF,0xFF,0xEE,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,0xFF,0xFF,0x02,0x00,0x00,0x00,0xFF,0xFF,0x03,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x0D,0xFF,0xFF,0x3C,0xFF,0xFF,0xC7,0xFF,0xFF,0xFF,0xFF,0xFF,0xD2,0xFF,0xFF,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x1B,0xFF,0xFF,0x4E,0xFF,0xFF,0x07,0x00,0x00,0x00,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x23,0xFF,0xFF,0xD8,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD1,0xFF,0xFF,0x17,0x00,0x00,0x00,0xFF,0xFF,0x04,0xFF,0xFF,0x02,0xFF,0xFF,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xFF,0xFF,0xFF,0xFF,0xFF,0x3C,0x00,0x00,0x00,0xFF,0xFF,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0xFF,0xFF,0x03,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x45,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD8,0xFF,0xFF,0x0B,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0xFF,0xFF,0x4B,0xFF,0xFF,0x84,0xFF,0xFF,0x24,0x00,0x00,0x00,0xFF,0xFF,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xFF,0xFF,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,};
const lv_img_dsc_t ui_img_usb_png = {
.header.always_zero = 0,
.header.w = 20,
.header.h = 20,
.data_size = sizeof(ui_img_usb_png_data),
.header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA,
.data = ui_img_usb_png_data};

14
usb.go
View File

@ -1,6 +1,7 @@
package kvm
import (
"sync"
"time"
"github.com/jetkvm/kvm/internal/usbgadget"
@ -77,7 +78,10 @@ func rpcGetKeysDownState() (state usbgadget.KeysDownState) {
return gadget.GetKeysDownState()
}
var usbState = "unknown"
var (
usbState = "unknown"
usbStateLock sync.Mutex
)
func rpcGetUSBState() (state string) {
return gadget.GetUsbState()
@ -94,12 +98,20 @@ func triggerUSBStateUpdate() {
}
func checkUSBState() {
usbStateLock.Lock()
defer usbStateLock.Unlock()
newState := gadget.GetUsbState()
usbLogger.Trace().Str("old", usbState).Str("new", newState).Msg("Checking USB state")
if newState == usbState {
return
}
usbState = newState
usbLogger.Info().Str("from", usbState).Str("to", newState).Msg("USB state changed")
requestDisplayUpdate(true, "usb_state_changed")
triggerUSBStateUpdate()
}

View File

@ -5,7 +5,9 @@ import (
"encoding/json"
"html/template"
"runtime"
"strings"
"github.com/jetkvm/kvm/internal/native"
"github.com/prometheus/common/version"
)
@ -32,11 +34,9 @@ func GetVersionData(isJson bool) ([]byte, error) {
"platform": runtime.GOOS + "/" + runtime.GOARCH,
}
if nativeInstance != nil {
lvglVersion, err := nativeInstance.GetLVGLVersion()
if err == nil {
m["lvglVersion"] = lvglVersion
}
lvglVersion := native.GetLVGLVersion()
if lvglVersion != "" {
m["lvglVersion"] = lvglVersion
}
if isJson {
@ -47,7 +47,11 @@ func GetVersionData(isJson bool) ([]byte, error) {
return jsonData, nil
}
t := template.Must(template.New("version").Parse(versionInfoTmpl))
t := template.Must(
template.New("version").Parse(
strings.TrimSpace(versionInfoTmpl),
),
)
var buf bytes.Buffer
if err := t.ExecuteTemplate(&buf, "version", m); err != nil {