File size: 9,512 Bytes
4ea6efc
9d5c76d
 
a867794
9d5c76d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a867794
9d5c76d
a867794
9d5c76d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a867794
9d5c76d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PYLAR AI CREATIVE ML RESTRICTIVE LICENSE</title>
    <style>
        :root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #f72585;
            --allowed: #4cc9f0;
            --prohibited: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            padding: 2rem;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        h1 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .version {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .content {
            padding: 2rem;
        }

        .intro {
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .section {
            margin-bottom: 1.8rem;
        }

        h2 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 0.8rem;
            border-bottom: 2px solid rgba(67, 97, 238, 0.2);
            padding-bottom: 0.5rem;
        }

        ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .table-container {
            margin: 2rem 0;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 8px;
            overflow: hidden;
        }

        th,
        td {
            padding: 1rem;
            text-align: left;
            border: 1px solid #e9ecef;
        }

        th {
            background-color: var(--secondary);
            color: white;
        }

        tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .allowed {
            color: var(--allowed);
            font-weight: bold;
        }

        .prohibited {
            color: var(--prohibited);
            font-weight: bold;
        }

        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }

            header {
                padding: 1.5rem 1rem;
            }

            h1 {
                font-size: 1.8rem;
            }

            .content {
                padding: 1.5rem;
            }

            th,
            td {
                padding: 0.8rem;
                font-size: 0.9rem;
            }
        }
    </style>
</head>

<body>
    <div class="container">
        <header>
            <h1>PYLAR AI CREATIVE ML RESTRICTIVE LICENSE</h1>
            <div class="version">Version 1.0, May 2023</div>
        </header>

        <div class="content">
            <p class="intro">
                Permission is hereby granted, free of charge, to any person obtaining a copy of the Pylar AI software
                and associated documentation files (the "Software"), to visualize and use the Software solely for
                educational and informative purposes, subject to the following restrictions and conditions:
            </p>

            <div class="section">
                <h2>Redistribution and Use Limitations</h2>
                <ul>
                    <li>The Software may not be redistributed, sublicensed, sold, or otherwise transferred to any third
                        party without prior written permission from the licensor.</li>
                    <li>The Software may not be used for any commercial purposes or for any purpose other than
                        education, research, and personal learning.</li>
                    <li>The end user is strictly prohibited from using any part of the Software's source code, including
                        but not limited to copying, modifying, or creating derivative works based on the code.</li>
                </ul>
            </div>

            <div class="section">
                <h2>No Self-Hosting</h2>
                <ul>
                    <li>The end user may not host or make the Software available to others via any means, including but
                        not limited to local servers, cloud services, or online platforms.</li>
                </ul>
            </div>

            <div class="section">
                <h2>Visualizing and Educative Purpose</h2>
                <ul>
                    <li>The end user is granted the right to use the Software solely for visualizing the outputs and
                        results generated by the Software.</li>
                    <li>The end user may use the Software to provide marks or feedback on the visualized outputs, solely
                        for educational and informative purposes.</li>
                </ul>
            </div>

            <div class="section">
                <h2>Intellectual Property</h2>
                <ul>
                    <li>All intellectual property rights in the Software, including but not limited to copyrights,
                        trademarks, and patents, shall remain the exclusive property of the licensor.</li>
                    <li>The end user acknowledges that this license does not grant any ownership or rights to the
                        Software, other than the limited rights expressly stated herein.</li>
                </ul>
            </div>

            <div class="section">
                <h2>No Warranty</h2>
                <ul>
                    <li>The Software is provided "as is," without warranty of any kind, express or implied, including
                        but not limited to the warranties of merchantability, fitness for a particular purpose, and
                        non-infringement.</li>
                    <li>The licensor shall not be liable for any claim, damages, or other liability arising out of or in
                        connection with the use or performance of the Software.</li>
                </ul>
            </div>

            <p>By using the Software, the end user agrees to be bound by the terms and conditions of this license. If
                you do not agree to these terms, you are not authorized to use the Software.</p>

            <div class="table-container">
                <table>
                    <thead>
                        <tr>
                            <th></th>
                            <th>✅ Allowed</th>
                            <th>❌ Not Allowed</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td></td>
                            <td>View educational and informative results generated by the Software.</td>
                            <td>Redistribute, sublicense, sell, or transfer the Software without prior written
                                permission from the licensor.</td>
                        </tr>
                        <tr>
                            <td></td>
                            <td>Use the Software only for educational purposes, research, and personal learning.</td>
                            <td>Use any part of the source code, including copying, modifying, or creating derivative
                                works.</td>
                        </tr>
                        <tr>
                            <td></td>
                            <td>Provide marks or feedback on visualized results for educational and informative
                                purposes.</td>
                            <td>Host or make the Software available to others via local servers, cloud services, or
                                online platforms.</td>
                        </tr>
                        <tr>
                            <td>❌ Not Allowed</td>
                            <td>Use the Software for commercial or non-educational purposes.</td>
                            <td>Claim intellectual property rights to the Software, except for the limited rights
                                expressly stated in the license.</td>
                        </tr>
                        <tr>
                            <td></td>
                            <td>Hold the licensor liable for claims, damages, or other liabilities arising from the use
                                or performance of the Software.</td>
                            <td></td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
</body>

</html>