just-the-docs-peter 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1508 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +110 -0
  5. data/Rakefile +1 -0
  6. data/_includes/components/aux_nav.html +15 -0
  7. data/_includes/components/breadcrumbs.html +43 -0
  8. data/_includes/components/children_nav.html +33 -0
  9. data/_includes/components/footer.html +34 -0
  10. data/_includes/components/header.html +11 -0
  11. data/_includes/components/mermaid.html +45 -0
  12. data/_includes/components/search_footer.html +7 -0
  13. data/_includes/components/search_header.html +9 -0
  14. data/_includes/components/sidebar.html +71 -0
  15. data/_includes/css/callouts.scss.liquid +93 -0
  16. data/_includes/css/custom.scss.liquid +1 -0
  17. data/_includes/css/just-the-docs.scss.liquid +12 -0
  18. data/_includes/fix_linenos.html +65 -0
  19. data/_includes/footer_custom.html +3 -0
  20. data/_includes/head.html +42 -0
  21. data/_includes/head_custom.html +0 -0
  22. data/_includes/header_custom.html +0 -0
  23. data/_includes/icons/code_copy.html +15 -0
  24. data/_includes/icons/document.html +6 -0
  25. data/_includes/icons/expand.html +6 -0
  26. data/_includes/icons/external_link.html +5 -0
  27. data/_includes/icons/icons.html +13 -0
  28. data/_includes/icons/link.html +6 -0
  29. data/_includes/icons/menu.html +6 -0
  30. data/_includes/icons/search.html +6 -0
  31. data/_includes/js/custom.js +0 -0
  32. data/_includes/lunr/custom-data.json +0 -0
  33. data/_includes/lunr/custom-index.js +0 -0
  34. data/_includes/mermaid_config.js +1 -0
  35. data/_includes/nav.html +106 -0
  36. data/_includes/nav_footer_custom.html +0 -0
  37. data/_includes/search_placeholder_custom.html +1 -0
  38. data/_includes/sorted_pages.html +95 -0
  39. data/_includes/title.html +5 -0
  40. data/_includes/toc_heading_custom.html +1 -0
  41. data/_includes/vendor/anchor_headings.html +172 -0
  42. data/_layouts/about.html +5 -0
  43. data/_layouts/default.html +41 -0
  44. data/_layouts/home.html +5 -0
  45. data/_layouts/minimal.html +34 -0
  46. data/_layouts/page.html +5 -0
  47. data/_layouts/post.html +5 -0
  48. data/_layouts/table_wrappers.html +7 -0
  49. data/_layouts/vendor/compress.html +10 -0
  50. data/_sass/base.scss +109 -0
  51. data/_sass/buttons.scss +123 -0
  52. data/_sass/code.scss +246 -0
  53. data/_sass/color_schemes/dark.scss +17 -0
  54. data/_sass/color_schemes/legacy_light.scss +208 -0
  55. data/_sass/color_schemes/light.scss +15 -0
  56. data/_sass/color_schemes/light_peter.scss +15 -0
  57. data/_sass/content.scss +239 -0
  58. data/_sass/custom/custom.scss +1 -0
  59. data/_sass/custom/setup.scss +1 -0
  60. data/_sass/labels.scss +33 -0
  61. data/_sass/layout.scss +209 -0
  62. data/_sass/modules.scss +17 -0
  63. data/_sass/navigation.scss +235 -0
  64. data/_sass/print.scss +40 -0
  65. data/_sass/search.scss +311 -0
  66. data/_sass/skiptomain.scss +30 -0
  67. data/_sass/support/_variables.scss +116 -0
  68. data/_sass/support/mixins/_buttons.scss +27 -0
  69. data/_sass/support/mixins/_layout.scss +33 -0
  70. data/_sass/support/mixins/_typography.scss +84 -0
  71. data/_sass/support/mixins/mixins.scss +3 -0
  72. data/_sass/support/support.scss +2 -0
  73. data/_sass/tables.scss +54 -0
  74. data/_sass/typography.scss +63 -0
  75. data/_sass/utilities/_colors.scss +237 -0
  76. data/_sass/utilities/_layout.scss +101 -0
  77. data/_sass/utilities/_lists.scss +15 -0
  78. data/_sass/utilities/_spacing.scss +162 -0
  79. data/_sass/utilities/_typography.scss +85 -0
  80. data/_sass/utilities/utilities.scss +5 -0
  81. data/_sass/vendor/OneDarkJekyll/LICENSE +21 -0
  82. data/_sass/vendor/OneDarkJekyll/syntax.scss +202 -0
  83. data/_sass/vendor/OneLightJekyll/LICENSE +65 -0
  84. data/_sass/vendor/OneLightJekyll/syntax.scss +208 -0
  85. data/_sass/vendor/normalize.scss/README.md +7 -0
  86. data/_sass/vendor/normalize.scss/normalize.scss +351 -0
  87. data/assets/css/just-the-docs-dark.scss +3 -0
  88. data/assets/css/just-the-docs-default.scss +8 -0
  89. data/assets/css/just-the-docs-light.scss +3 -0
  90. data/assets/js/just-the-docs.js +535 -0
  91. data/assets/js/vendor/lunr.min.js +61 -0
  92. data/assets/js/zzzz-search-data.json +74 -0
  93. data/bin/just-the-docs +16 -0
  94. data/favicon.ico +0 -0
  95. data/lib/tasks/search.rake +88 -0
  96. metadata +152 -11
@@ -0,0 +1,162 @@
1
+ // Utility classes for margins and padding
2
+
3
+ // stylelint-disable block-opening-brace-space-after, block-opening-brace-space-before
4
+
5
+ // Margin spacer utilities
6
+
7
+ .mx-auto {
8
+ margin-right: auto !important;
9
+ margin-left: auto !important;
10
+ }
11
+
12
+ @for $i from 1 through length($spacers) {
13
+ $size: #{map-get($spacers, sp-#{$i - 1})};
14
+ $scale: #{$i - 1};
15
+
16
+ // .m-0, .m-1, .m-2...
17
+ .m-#{$scale} {
18
+ margin: #{$size} !important;
19
+ }
20
+ .mt-#{$scale} {
21
+ margin-top: #{$size} !important;
22
+ }
23
+ .mr-#{$scale} {
24
+ margin-right: #{$size} !important;
25
+ }
26
+ .mb-#{$scale} {
27
+ margin-bottom: #{$size} !important;
28
+ }
29
+ .ml-#{$scale} {
30
+ margin-left: #{$size} !important;
31
+ }
32
+
33
+ .mx-#{$scale} {
34
+ margin-right: #{$size} !important;
35
+ margin-left: #{$size} !important;
36
+ }
37
+
38
+ .my-#{$scale} {
39
+ margin-top: #{$size} !important;
40
+ margin-bottom: #{$size} !important;
41
+ }
42
+
43
+ .mxn-#{$scale} {
44
+ margin-right: -#{$size} !important;
45
+ margin-left: -#{$size} !important;
46
+ }
47
+ .mx-#{$scale}-auto {
48
+ margin-right: auto !important;
49
+ margin-left: auto !important;
50
+ }
51
+ }
52
+
53
+ @each $media-query in map-keys($media-queries) {
54
+ @for $i from 1 through length($spacers) {
55
+ @include mq($media-query) {
56
+ $size: #{map-get($spacers, sp-#{$i - 1})};
57
+ $scale: #{$i - 1};
58
+
59
+ // .m-sm-0, .m-md-1, .m-lg-2...
60
+ .m-#{$media-query}-#{$scale} {
61
+ margin: #{$size} !important;
62
+ }
63
+ .mt-#{$media-query}-#{$scale} {
64
+ margin-top: #{$size} !important;
65
+ }
66
+ .mr-#{$media-query}-#{$scale} {
67
+ margin-right: #{$size} !important;
68
+ }
69
+ .mb-#{$media-query}-#{$scale} {
70
+ margin-bottom: #{$size} !important;
71
+ }
72
+ .ml-#{$media-query}-#{$scale} {
73
+ margin-left: #{$size} !important;
74
+ }
75
+
76
+ .mx-#{$media-query}-#{$scale} {
77
+ margin-right: #{$size} !important;
78
+ margin-left: #{$size} !important;
79
+ }
80
+
81
+ .my-#{$media-query}-#{$scale} {
82
+ margin-top: #{$size} !important;
83
+ margin-bottom: #{$size} !important;
84
+ }
85
+
86
+ .mxn-#{$media-query}-#{$scale} {
87
+ margin-right: -#{$size} !important;
88
+ margin-left: -#{$size} !important;
89
+ }
90
+ }
91
+ }
92
+ }
93
+
94
+ // Padding spacer utilities
95
+
96
+ @for $i from 1 through length($spacers) {
97
+ $size: #{map-get($spacers, sp-#{$i - 1})};
98
+ $scale: #{$i - 1};
99
+
100
+ // .p-0, .p-1, .p-2...
101
+ .p-#{$scale} {
102
+ padding: #{$size} !important;
103
+ }
104
+ .pt-#{$scale} {
105
+ padding-top: #{$size} !important;
106
+ }
107
+ .pr-#{$scale} {
108
+ padding-right: #{$size} !important;
109
+ }
110
+ .pb-#{$scale} {
111
+ padding-bottom: #{$size} !important;
112
+ }
113
+ .pl-#{$scale} {
114
+ padding-left: #{$size} !important;
115
+ }
116
+
117
+ .px-#{$scale} {
118
+ padding-right: #{$size} !important;
119
+ padding-left: #{$size} !important;
120
+ }
121
+
122
+ .py-#{$scale} {
123
+ padding-top: #{$size} !important;
124
+ padding-bottom: #{$size} !important;
125
+ }
126
+ }
127
+
128
+ @each $media-query in map-keys($media-queries) {
129
+ @include mq($media-query) {
130
+ @for $i from 1 through length($spacers) {
131
+ $size: #{map-get($spacers, sp-#{$i - 1})};
132
+ $scale: #{$i - 1};
133
+
134
+ // .p-sm-0, .p-md-1, .p-lg-2...
135
+ .p-#{$media-query}-#{$scale} {
136
+ padding: #{$size} !important;
137
+ }
138
+ .pt-#{$media-query}-#{$scale} {
139
+ padding-top: #{$size} !important;
140
+ }
141
+ .pr-#{$media-query}-#{$scale} {
142
+ padding-right: #{$size} !important;
143
+ }
144
+ .pb-#{$media-query}-#{$scale} {
145
+ padding-bottom: #{$size} !important;
146
+ }
147
+ .pl-#{$media-query}-#{$scale} {
148
+ padding-left: #{$size} !important;
149
+ }
150
+
151
+ .px-#{$media-query}-#{$scale} {
152
+ padding-right: #{$size} !important;
153
+ padding-left: #{$size} !important;
154
+ }
155
+
156
+ .py-#{$media-query}-#{$scale} {
157
+ padding-top: #{$size} !important;
158
+ padding-bottom: #{$size} !important;
159
+ }
160
+ }
161
+ }
162
+ }
@@ -0,0 +1,85 @@
1
+ // Utility classes for typography
2
+
3
+ .fs-1 {
4
+ @include fs-1;
5
+ }
6
+
7
+ .fs-2 {
8
+ @include fs-2;
9
+ }
10
+
11
+ .fs-3 {
12
+ @include fs-3;
13
+ }
14
+
15
+ .fs-4 {
16
+ @include fs-4;
17
+ }
18
+
19
+ .fs-5 {
20
+ @include fs-5;
21
+ }
22
+
23
+ .fs-6 {
24
+ @include fs-6;
25
+ }
26
+
27
+ .fs-7 {
28
+ @include fs-7;
29
+ }
30
+
31
+ .fs-8 {
32
+ @include fs-8;
33
+ }
34
+
35
+ .fs-9 {
36
+ @include fs-9;
37
+ }
38
+
39
+ .fs-10 {
40
+ @include fs-10;
41
+ }
42
+
43
+ .fw-300 {
44
+ font-weight: 300 !important;
45
+ }
46
+
47
+ .fw-400 {
48
+ font-weight: 400 !important;
49
+ }
50
+
51
+ .fw-500 {
52
+ font-weight: 500 !important;
53
+ }
54
+
55
+ .fw-700 {
56
+ font-weight: 700 !important;
57
+ }
58
+
59
+ .lh-0 {
60
+ line-height: 0 !important;
61
+ }
62
+
63
+ .lh-default {
64
+ line-height: $body-line-height;
65
+ }
66
+
67
+ .lh-tight {
68
+ line-height: $body-heading-line-height;
69
+ }
70
+
71
+ .ls-5 {
72
+ letter-spacing: 0.05em !important;
73
+ }
74
+
75
+ .ls-10 {
76
+ letter-spacing: 0.1em !important;
77
+ }
78
+
79
+ .ls-0 {
80
+ letter-spacing: 0 !important;
81
+ }
82
+
83
+ .text-uppercase {
84
+ text-transform: uppercase !important;
85
+ }
@@ -0,0 +1,5 @@
1
+ @import "./colors";
2
+ @import "./layout";
3
+ @import "./typography";
4
+ @import "./lists";
5
+ @import "./spacing";
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016 Mihály Gyöngyösi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,202 @@
1
+ // Generated with OneDarkJekyll applied to Atom's One Dark Vivid theme
2
+
3
+ .highlight,
4
+ pre.highlight {
5
+ background: #31343f;
6
+ color: #dee2f7;
7
+ }
8
+ .highlight pre {
9
+ background: #31343f;
10
+ }
11
+ .highlight .hll {
12
+ background: #31343f;
13
+ }
14
+ .highlight .c {
15
+ color: #63677e;
16
+ font-style: italic;
17
+ }
18
+ .highlight .err {
19
+ color: #960050;
20
+ background-color: #1e0010;
21
+ }
22
+ .highlight .k {
23
+ color: #e19ef5;
24
+ }
25
+ .highlight .l {
26
+ color: #a3eea0;
27
+ }
28
+ .highlight .n {
29
+ color: #dee2f7;
30
+ }
31
+ .highlight .o {
32
+ color: #dee2f7;
33
+ }
34
+ .highlight .p {
35
+ color: #dee2f7;
36
+ }
37
+ .highlight .cm {
38
+ color: #63677e;
39
+ font-style: italic;
40
+ }
41
+ .highlight .cp {
42
+ color: #63677e;
43
+ font-style: italic;
44
+ }
45
+ .highlight .c1 {
46
+ color: #63677e;
47
+ font-style: italic;
48
+ }
49
+ .highlight .cs {
50
+ color: #63677e;
51
+ font-style: italic;
52
+ }
53
+ .highlight .ge {
54
+ font-style: italic;
55
+ }
56
+ .highlight .gs {
57
+ font-weight: 700;
58
+ }
59
+ .highlight .kc {
60
+ color: #e19ef5;
61
+ }
62
+ .highlight .kd {
63
+ color: #e19ef5;
64
+ }
65
+ .highlight .kn {
66
+ color: #e19ef5;
67
+ }
68
+ .highlight .kp {
69
+ color: #e19ef5;
70
+ }
71
+ .highlight .kr {
72
+ color: #e19ef5;
73
+ }
74
+ .highlight .kt {
75
+ color: #e19ef5;
76
+ }
77
+ .highlight .ld {
78
+ color: #a3eea0;
79
+ }
80
+ .highlight .m {
81
+ color: #eddc96;
82
+ }
83
+ .highlight .s {
84
+ color: #a3eea0;
85
+ }
86
+ .highlight .na {
87
+ color: #eddc96;
88
+ }
89
+ .highlight .nb {
90
+ color: #fdce68;
91
+ }
92
+ .highlight .nc {
93
+ color: #fdce68;
94
+ }
95
+ .highlight .no {
96
+ color: #fdce68;
97
+ }
98
+ .highlight .nd {
99
+ color: #fdce68;
100
+ }
101
+ .highlight .ni {
102
+ color: #fdce68;
103
+ }
104
+ .highlight .ne {
105
+ color: #fdce68;
106
+ }
107
+ .highlight .nf {
108
+ color: #dee2f7;
109
+ }
110
+ .highlight .nl {
111
+ color: #fdce68;
112
+ }
113
+ .highlight .nn {
114
+ color: #dee2f7;
115
+ }
116
+ .highlight .nx {
117
+ color: #dee2f7;
118
+ }
119
+ .highlight .py {
120
+ color: #fdce68;
121
+ }
122
+ .highlight .nt {
123
+ color: #f9867b;
124
+ }
125
+ .highlight .nv {
126
+ color: #fdce68;
127
+ }
128
+ .highlight .ow {
129
+ font-weight: 700;
130
+ }
131
+ .highlight .w {
132
+ color: #f8f8f2;
133
+ }
134
+ .highlight .mf {
135
+ color: #eddc96;
136
+ }
137
+ .highlight .mh {
138
+ color: #eddc96;
139
+ }
140
+ .highlight .mi {
141
+ color: #eddc96;
142
+ }
143
+ .highlight .mo {
144
+ color: #eddc96;
145
+ }
146
+ .highlight .sb {
147
+ color: #a3eea0;
148
+ }
149
+ .highlight .sc {
150
+ color: #a3eea0;
151
+ }
152
+ .highlight .sd {
153
+ color: #a3eea0;
154
+ }
155
+ .highlight .s2 {
156
+ color: #a3eea0;
157
+ }
158
+ .highlight .se {
159
+ color: #a3eea0;
160
+ }
161
+ .highlight .sh {
162
+ color: #a3eea0;
163
+ }
164
+ .highlight .si {
165
+ color: #a3eea0;
166
+ }
167
+ .highlight .sx {
168
+ color: #a3eea0;
169
+ }
170
+ .highlight .sr {
171
+ color: #7be2f9;
172
+ }
173
+ .highlight .s1 {
174
+ color: #a3eea0;
175
+ }
176
+ .highlight .ss {
177
+ color: #7be2f9;
178
+ }
179
+ .highlight .bp {
180
+ color: #fdce68;
181
+ }
182
+ .highlight .vc {
183
+ color: #fdce68;
184
+ }
185
+ .highlight .vg {
186
+ color: #fdce68;
187
+ }
188
+ .highlight .vi {
189
+ color: #f9867b;
190
+ }
191
+ .highlight .il {
192
+ color: #eddc96;
193
+ }
194
+ .highlight .gu {
195
+ color: #75715e;
196
+ }
197
+ .highlight .gd {
198
+ color: #f92672;
199
+ }
200
+ .highlight .gi {
201
+ color: #a6e22e;
202
+ }
@@ -0,0 +1,65 @@
1
+ OneLightJekyll relies on two works: OneDarkJekyll, and Atom's One Light theme. This file contains the licensing for all the related software.
2
+
3
+ ---
4
+
5
+ OneLightJekyll (https://github.com/just-the-docs/OneLightJekyll/blob/main/LICENSE)
6
+
7
+ MIT License
8
+
9
+ Copyright (c) 2023 Matthew Wang
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+
29
+ ---
30
+
31
+ OneDarkJekyll (https://github.com/mgyongyosi/OneDarkJekyll/blob/master/LICENSE)
32
+
33
+ MIT License
34
+
35
+ Copyright (c) 2016 Mihály Gyöngyösi
36
+
37
+ Permission is hereby granted, free of charge, to any person obtaining a copy
38
+ of this software and associated documentation files (the "Software"), to deal
39
+ in the Software without restriction, including without limitation the rights
40
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
41
+ copies of the Software, and to permit persons to whom the Software is
42
+ furnished to do so, subject to the following conditions:
43
+
44
+ The above copyright notice and this permission notice shall be included in all
45
+ copies or substantial portions of the Software.
46
+
47
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
50
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
51
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
52
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
53
+ SOFTWARE.
54
+
55
+ ---
56
+
57
+ Atom One Light (https://github.com/atom/atom/blob/master/LICENSE.md)
58
+
59
+ Copyright (c) 2011-2022 GitHub Inc.
60
+
61
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
62
+
63
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
64
+
65
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.