lanscape 1.3.3__py3-none-any.whl → 1.3.5a1__py3-none-any.whl
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.
- lanscape/libraries/net_tools.py +20 -7
- lanscape/libraries/runtime_args.py +12 -0
- lanscape/libraries/scan_config.py +50 -2
- lanscape/libraries/web_browser.py +62 -11
- lanscape/ui/__init__.py +0 -0
- lanscape/ui/app.py +11 -33
- lanscape/ui/blueprints/api/scan.py +1 -5
- lanscape/ui/blueprints/api/tools.py +16 -1
- lanscape/ui/blueprints/web/routes.py +0 -3
- lanscape/ui/main.py +16 -6
- lanscape/ui/shutdown_handler.py +53 -0
- lanscape/ui/static/css/style.css +94 -20
- lanscape/ui/static/js/main.js +25 -48
- lanscape/ui/static/js/scan-config.js +107 -0
- lanscape/ui/static/lanscape.webmanifest +4 -3
- lanscape/ui/templates/main.html +39 -36
- lanscape/ui/templates/scan/config.html +168 -0
- {lanscape-1.3.3.dist-info → lanscape-1.3.5a1.dist-info}/METADATA +1 -1
- {lanscape-1.3.3.dist-info → lanscape-1.3.5a1.dist-info}/RECORD +22 -18
- {lanscape-1.3.3.dist-info → lanscape-1.3.5a1.dist-info}/WHEEL +0 -0
- {lanscape-1.3.3.dist-info → lanscape-1.3.5a1.dist-info}/licenses/LICENSE +0 -0
- {lanscape-1.3.3.dist-info → lanscape-1.3.5a1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
<div class="modal fade" id="advanced-modal" tabindex="-1" aria-hidden="true">
|
|
2
|
+
<div class="modal-dialog">
|
|
3
|
+
<div class="modal-content">
|
|
4
|
+
<div class="modal-header border-secondary">
|
|
5
|
+
<h5 class="modal-title" id="advanced-modalLabel">Advanced Settings</h5>
|
|
6
|
+
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="modal-body">
|
|
9
|
+
<div class="d-flex gap-2 mb-3">
|
|
10
|
+
<div class="config-option p-3 flex-fill flex-wrap" id="config-fast" data-config="fast" onclick="setScanConfig('fast')">
|
|
11
|
+
<h5 class="mb-1 d-flex align-items-center justify-content-center">
|
|
12
|
+
<span class="material-symbols-outlined me-1">bolt</span>Fast
|
|
13
|
+
</h5>
|
|
14
|
+
<p class="mb-0">Fast scan, Low accuracy</p>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="config-option p-3 flex-fill" id="config-balanced" data-config="balanced" onclick="setScanConfig('balanced')">
|
|
17
|
+
<h5 class="mb-1 d-flex align-items-center justify-content-center">
|
|
18
|
+
<span class="material-symbols-outlined me-1">balance</span>Balanced
|
|
19
|
+
</h5>
|
|
20
|
+
<p class="mb-0">Balanced scan, Moderate accuracy</p>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="config-option p-3 flex-fill" id="config-accurate" data-config="accurate" onclick="setScanConfig('accurate')">
|
|
23
|
+
<h5 class="mb-1 d-flex align-items-center justify-content-center">
|
|
24
|
+
<span class="material-symbols-outlined me-1">target</span>Accurate
|
|
25
|
+
</h5>
|
|
26
|
+
<p class="mb-0">Thorough scan, High accuracy</p>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
<hr>
|
|
31
|
+
<div class="form-group mt-2">
|
|
32
|
+
<h6>Device Detection</h6>
|
|
33
|
+
<div class="row mt-2">
|
|
34
|
+
<div class="col">
|
|
35
|
+
<label for="lookup_type">Lookup Type</label>
|
|
36
|
+
<div class="port-list-wrapper">
|
|
37
|
+
<select id="lookup_type" class="port-list">
|
|
38
|
+
<option value="both">ARP + Ping</option>
|
|
39
|
+
<option value="arp">ARP Only</option>
|
|
40
|
+
<option value="ping">Ping Only</option>
|
|
41
|
+
</select>
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="col">
|
|
45
|
+
<label for="t_cnt_isalive">Device Lookup Threads</label>
|
|
46
|
+
<input type="number" id="t_cnt_isalive" class="form-control">
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
<hr>
|
|
52
|
+
<div class="form-group mt-2">
|
|
53
|
+
<h6>Device Detection <span class=text-color>/</span> Ping Settings</h6>
|
|
54
|
+
<div class="row">
|
|
55
|
+
<div class="col-3">
|
|
56
|
+
<label for="ping_attempts" class="form-label">Ping Attempts</label>
|
|
57
|
+
<input type="number" id="ping_attempts" class="form-control">
|
|
58
|
+
</div>
|
|
59
|
+
<div class="col-1 descriptor">X</div>
|
|
60
|
+
<div class="col-3">
|
|
61
|
+
<label for="ping_ping_count" class="form-label">Ping Count</label>
|
|
62
|
+
<input type="number" id="ping_ping_count" class="form-control">
|
|
63
|
+
</div>
|
|
64
|
+
<div class="col-1 descriptor">=</div>
|
|
65
|
+
<div class="col-3">
|
|
66
|
+
<label for="total-ping-attempts">Max pings per device</label>
|
|
67
|
+
<input type="number" id="total-ping-attempts" class="form-control" readonly>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="row mt-2">
|
|
71
|
+
<div class="col">
|
|
72
|
+
<label for="ping_timeout" class="form-label">Timeout Per Ping (sec)</label>
|
|
73
|
+
<input type="number" step="0.1" id="ping_timeout" class="form-control">
|
|
74
|
+
</div>
|
|
75
|
+
<div class="col">
|
|
76
|
+
<label for="ping_retry_delay" class="form-label">Delay Between Attempts (sec)</label>
|
|
77
|
+
<input type="number" step="0.1" id="ping_retry_delay" class="form-control">
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
|
|
82
|
+
<hr>
|
|
83
|
+
|
|
84
|
+
<div class="form-group mt-2">
|
|
85
|
+
<h6>Device Detection <span class=text-color>/</span> ARP Settings</h6>
|
|
86
|
+
<div class="row">
|
|
87
|
+
<div class="col">
|
|
88
|
+
<label for="arp_attempts" class="form-label">Attempts</label>
|
|
89
|
+
<input type="number" id="arp_attempts" class="form-control">
|
|
90
|
+
</div>
|
|
91
|
+
<div class="col">
|
|
92
|
+
<label for="arp_timeout" class="form-label">Timeout</label>
|
|
93
|
+
<input type="number" step="0.1" id="arp_timeout" class="form-control">
|
|
94
|
+
</div>
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
|
|
98
|
+
<hr>
|
|
99
|
+
|
|
100
|
+
<div class="form-group mt-2">
|
|
101
|
+
<h6>Port Testing</h6>
|
|
102
|
+
<div class="row">
|
|
103
|
+
<div class="col-3">
|
|
104
|
+
<label for="t_cnt_port_scan">Device Scan Threads</label>
|
|
105
|
+
<input type="number" id="t_cnt_port_scan" class="form-control">
|
|
106
|
+
</div>
|
|
107
|
+
<div class="col-1 descriptor">X</div>
|
|
108
|
+
<div class="col-3">
|
|
109
|
+
<label for="t_cnt_port_test">Port Test Threads</label>
|
|
110
|
+
<input type="number" id="t_cnt_port_test" class="form-control">
|
|
111
|
+
</div>
|
|
112
|
+
<div class="col-1 descriptor">=</div>
|
|
113
|
+
<div class="col-3">
|
|
114
|
+
<label for="total-port-tests">Total concurrent tests</label>
|
|
115
|
+
<input type="number" id="total-port-tests" class="form-control" readonly>
|
|
116
|
+
</div>
|
|
117
|
+
</div>
|
|
118
|
+
<div class="row mt-2">
|
|
119
|
+
<div class="col">
|
|
120
|
+
<label for="port_list">Port List</label>
|
|
121
|
+
<div class="port-list-wrapper">
|
|
122
|
+
<select id="port_list" class="port-list">
|
|
123
|
+
<option value="both">ARP + Ping</option>
|
|
124
|
+
<option value="arp">ARP Only</option>
|
|
125
|
+
<option value="ping">Ping Only</option>
|
|
126
|
+
</select>
|
|
127
|
+
</div>
|
|
128
|
+
</div>
|
|
129
|
+
</div>
|
|
130
|
+
<hr>
|
|
131
|
+
|
|
132
|
+
<div class="form-group mt-2">
|
|
133
|
+
<h6>Stages</h6>
|
|
134
|
+
<div class="form-check"
|
|
135
|
+
data-bs-toggle="tooltip"
|
|
136
|
+
data-bs-placement="right"
|
|
137
|
+
title="Find Devices using ARP or Ping (always on)"
|
|
138
|
+
>
|
|
139
|
+
<input class="form-check-input" disabled type="checkbox" id="task_find_devices" checked>
|
|
140
|
+
<label class="form-check-label" for="task_find_devices">Find Devices</label>
|
|
141
|
+
</div>
|
|
142
|
+
<div class="form-check"
|
|
143
|
+
data-bs-toggle="tooltip"
|
|
144
|
+
data-bs-placement="right"
|
|
145
|
+
title="Find open ports on devices"
|
|
146
|
+
>
|
|
147
|
+
<input class="form-check-input" type="checkbox" id="task_scan_ports">
|
|
148
|
+
<label class="form-check-label" for="task_scan_ports">Scan Ports</label>
|
|
149
|
+
</div>
|
|
150
|
+
<div class="form-check"
|
|
151
|
+
data-bs-toggle="tooltip"
|
|
152
|
+
data-bs-placement="right"
|
|
153
|
+
title="Determine services running on open ports (no supporting UI yet)"
|
|
154
|
+
>
|
|
155
|
+
<input class="form-check-input" type="checkbox" id="task_scan_port_services">
|
|
156
|
+
<label class="form-check-label" for="task_scan_port_services">Scan Port Services</label>
|
|
157
|
+
</div>
|
|
158
|
+
</div>
|
|
159
|
+
|
|
160
|
+
</div>
|
|
161
|
+
|
|
162
|
+
</div>
|
|
163
|
+
<div class="modal-footer border-secondary">
|
|
164
|
+
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
165
|
+
</div>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
168
|
+
</div>
|
|
@@ -7,14 +7,14 @@ lanscape/libraries/errors.py,sha256=EzJA5_rh9xzu5HEfwyxIyHZBEBFkekx2dwwOjprfw-g,
|
|
|
7
7
|
lanscape/libraries/ip_parser.py,sha256=sPTm1UQtCixtM8dq45ThGgCjiZQQcueI7OwkHLKYBIU,2151
|
|
8
8
|
lanscape/libraries/logger.py,sha256=axADqgQhoDmdCOV3l4zTd9F6XaTgJf_XDg8I4jHGRoo,1436
|
|
9
9
|
lanscape/libraries/mac_lookup.py,sha256=VSZbsJ0UzwKptYLpGLi8MHUyFEaQntkayshnQuZKtSs,3390
|
|
10
|
-
lanscape/libraries/net_tools.py,sha256=
|
|
10
|
+
lanscape/libraries/net_tools.py,sha256=lUHHwybha4AExr5cjmagJK0zy5UdYVF2nZdnLybw8Y0,18030
|
|
11
11
|
lanscape/libraries/port_manager.py,sha256=9nYGJmR1wliWx2ZuXJ4y_79up-dS8F2kKHJKf-rL758,2025
|
|
12
|
-
lanscape/libraries/runtime_args.py,sha256=
|
|
13
|
-
lanscape/libraries/scan_config.py,sha256=
|
|
12
|
+
lanscape/libraries/runtime_args.py,sha256=2vIqRrcWr-NHRSBlZGrxh1PdkPY0ytkPguu8KZqy2L8,2543
|
|
13
|
+
lanscape/libraries/scan_config.py,sha256=fHsf5wX-aRDvLXIhqt1kAnfB-WB7w5VApGhlKrkE1eE,3785
|
|
14
14
|
lanscape/libraries/service_scan.py,sha256=1pBf0A5HqzpcsR5vs2ifS6Opk35GKocNpgs-dJ4nXuA,1870
|
|
15
15
|
lanscape/libraries/subnet_scan.py,sha256=H2vlycSfyrLgRdcLgs83MCtyXO_V2OShQnd3DR-E68g,11737
|
|
16
16
|
lanscape/libraries/version_manager.py,sha256=yh-VtxwBzK_-dOMv-MpN6gKU8k9TkLkmIpSyqWYuj_M,1700
|
|
17
|
-
lanscape/libraries/web_browser.py,sha256=
|
|
17
|
+
lanscape/libraries/web_browser.py,sha256=ATJ1bqVtwg9-xHzqcJbbwU1Y7DBoncUaV7NOMmS2kFg,6386
|
|
18
18
|
lanscape/resources/mac_addresses/convert_csv.py,sha256=QqeTjgH8KIyokSMoRJmKOHmz5xEHnEGdnEYJ9Fzl7h8,710
|
|
19
19
|
lanscape/resources/mac_addresses/mac_db.json,sha256=Lng2yJerwO7vjefzxzgtE203hry1lIsCadHL1A5Rptg,2136137
|
|
20
20
|
lanscape/resources/ports/convert_csv.py,sha256=Z1TzYcvycSWCE1jU48dFmmFzxD1kJ2-H_8OCqr6ZYes,709
|
|
@@ -23,17 +23,19 @@ lanscape/resources/ports/large.json,sha256=CzlCcIGCBW1QAgjz4NDerCYA8HcYf6lNxehh7
|
|
|
23
23
|
lanscape/resources/ports/medium.json,sha256=T5Rc7wa47MtroHxuZrHSftOqRWbQzhZULJdE1vpsTvU,3518
|
|
24
24
|
lanscape/resources/ports/small.json,sha256=F_lo_5xHwHBfOVfVgxP7ejblR3R62SNtC1Mm33brhYc,376
|
|
25
25
|
lanscape/resources/services/definitions.jsonc,sha256=4k7XnqIpWr1xuF7EUMgZf7y6aVDxOL_if7GGsT-JEuY,8387
|
|
26
|
-
lanscape/ui/
|
|
27
|
-
lanscape/ui/
|
|
26
|
+
lanscape/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
lanscape/ui/app.py,sha256=2FZHQWSkcQzHfQD1Z323oRHx42gAayJwXlSZAOw7_Xs,3197
|
|
28
|
+
lanscape/ui/main.py,sha256=_3lK3OEF62de4HNpdanxgESQZ6JdQF2n2UPNvRgNdAg,4482
|
|
29
|
+
lanscape/ui/shutdown_handler.py,sha256=cQyGVr_AY60zEbTk9EbEr5xGbpdpY_LUou2aIn8f7Uc,1603
|
|
28
30
|
lanscape/ui/blueprints/__init__.py,sha256=iSffZhWqNd5gxz9HC5dH_Vs3jXnZWmLQXnV7KSdQ-gg,207
|
|
29
31
|
lanscape/ui/blueprints/api/__init__.py,sha256=QMYG0IybloD3yrQtznf2iffgBhbwqPmhaez17T9SfSw,65
|
|
30
32
|
lanscape/ui/blueprints/api/port.py,sha256=Ccym3K3ZfguviEWOH9tcBtKt-May31hOiWOrjC28W-E,1028
|
|
31
|
-
lanscape/ui/blueprints/api/scan.py,sha256=
|
|
32
|
-
lanscape/ui/blueprints/api/tools.py,sha256=
|
|
33
|
+
lanscape/ui/blueprints/api/scan.py,sha256=ZwBsSuxZq_6tMdVMpETVHUSBC2DloJvQp48xm7Qq6hk,2119
|
|
34
|
+
lanscape/ui/blueprints/api/tools.py,sha256=9yDVPrHP8D8AxSvTSNuozdPkY5ZsJHpZqURug2VdR4c,1633
|
|
33
35
|
lanscape/ui/blueprints/web/__init__.py,sha256=txshnITQLj-tGZW7Yp-cmg76PtSSQp_UF8VuZuwoMBw,65
|
|
34
|
-
lanscape/ui/blueprints/web/routes.py,sha256=
|
|
35
|
-
lanscape/ui/static/lanscape.webmanifest,sha256=
|
|
36
|
-
lanscape/ui/static/css/style.css,sha256=
|
|
36
|
+
lanscape/ui/blueprints/web/routes.py,sha256=6fg1cCtYAD1PBZU_XRlzO6yIG70u-hShJLVMhZY9Dvg,2285
|
|
37
|
+
lanscape/ui/static/lanscape.webmanifest,sha256=07CqA-PQsO35KJD8R96sI3Pxix6UuBjijPDCuy9vM3s,446
|
|
38
|
+
lanscape/ui/static/css/style.css,sha256=f5AcXpFMOdvM-EHV-khpLG-v0TvnS3sRr0tCyphiw-k,17472
|
|
37
39
|
lanscape/ui/static/img/ico/android-chrome-192x192.png,sha256=JmFT6KBCCuoyxMV-mLNtF9_QJbVBvfWPUizKN700fi8,18255
|
|
38
40
|
lanscape/ui/static/img/ico/android-chrome-512x512.png,sha256=88Jjx_1-4XAnZYz64KP6FdTl_kYkNG2_kQIKteQwSh4,138055
|
|
39
41
|
lanscape/ui/static/img/ico/apple-touch-icon.png,sha256=tEJlLwBZtF4v-NC90YCfRJQ2prTsF4i3VQLK_hnv2Mw,16523
|
|
@@ -43,27 +45,29 @@ lanscape/ui/static/img/ico/favicon.ico,sha256=rs5vq0MPJ1LzzioOzOz5aQLVfrtS2nLRc9
|
|
|
43
45
|
lanscape/ui/static/img/ico/site.webmanifest,sha256=ep4Hzh9zhmiZF2At3Fp1dQrYQuYF_3ZPZxc1KcGBvwQ,263
|
|
44
46
|
lanscape/ui/static/js/core.js,sha256=J37LcjchyiNirSkicraoWr-TsW2QeQX_zUwo5mGMmoM,1073
|
|
45
47
|
lanscape/ui/static/js/layout-sizing.js,sha256=U2dsyJi-YKpOpudu3kg2whiU4047ghzDTY3ExYUhpPs,810
|
|
46
|
-
lanscape/ui/static/js/main.js,sha256=
|
|
48
|
+
lanscape/ui/static/js/main.js,sha256=zCT_4Vql-XzmoMq9fDjC1p4W8WowjIuctwNJ2ymeonI,6538
|
|
47
49
|
lanscape/ui/static/js/on-tab-close.js,sha256=3icxYWlLpY81iLoW7kQTJeWQ3UnyyboG0dESHF2wLPQ,1376
|
|
48
50
|
lanscape/ui/static/js/quietReload.js,sha256=8POH0t1KVzGCJas9fNsOVbBG-ULwZT2wiS14URgkeAU,702
|
|
51
|
+
lanscape/ui/static/js/scan-config.js,sha256=RVGrjv3djlOmbx3NN1zhaORvHh6EsAh8YtYVjyk6J9E,3683
|
|
49
52
|
lanscape/ui/static/js/shutdown-server.js,sha256=Mx8UGmmktHaCK7DL8TVUxah6VEcN0wwLFfhbCId-K8U,453
|
|
50
53
|
lanscape/ui/static/js/subnet-info.js,sha256=osZM6CGs-TC5QpBJWkNWCtXNOKzjyIiWKHwKi4vlDf8,559
|
|
51
54
|
lanscape/ui/static/js/subnet-selector.js,sha256=2YKCAuKU2Ti1CmJrqi4_vNTD2LQbxx7chIDqND_1eAY,358
|
|
52
55
|
lanscape/ui/templates/base.html,sha256=cnKU-kHUBpt6Xg4gPLE4dWkcXr3H-K4Vz1Im8xDKdOQ,1448
|
|
53
56
|
lanscape/ui/templates/error.html,sha256=bqGJbf_ix9wtpUlXk5zvz_XyFpeTbEO-4f0ImgLtUGk,1033
|
|
54
57
|
lanscape/ui/templates/info.html,sha256=gu8SGFUaFQc46Rm4TkZD8HM4Tnls-ZWsJ0FJNhx9wEs,2545
|
|
55
|
-
lanscape/ui/templates/main.html,sha256
|
|
58
|
+
lanscape/ui/templates/main.html,sha256=YAuJsyZOGr_euLvUwYBUacB7Gmc8xCcEKSbNf9qix3o,4260
|
|
56
59
|
lanscape/ui/templates/scan.html,sha256=00QX2_1S_1wGzk42r00LjEkJvoioCLs6JgjOibi6r20,376
|
|
57
60
|
lanscape/ui/templates/shutdown.html,sha256=iXVCq2yl5TjZfNFl4esbDJra3gJA2VQpae0jj4ipy9w,701
|
|
58
61
|
lanscape/ui/templates/core/head.html,sha256=eZiebt24xYd_NALe-fFL25rb4uFjUrF4XJjxFH61MgM,779
|
|
59
62
|
lanscape/ui/templates/core/scripts.html,sha256=rSRi4Ut8iejajMPhOc5bzEz-Z3EHxpj_3PxwwyyhmTQ,640
|
|
63
|
+
lanscape/ui/templates/scan/config.html,sha256=CcGWubKAG8M5hwokKCkJhnZN7yGfpqRJJLP4oPzM30E,7815
|
|
60
64
|
lanscape/ui/templates/scan/export.html,sha256=Nvs_unojzT3qhN_ZnEgYHou2C9wqWGr3dVr2UiLnYjY,749
|
|
61
65
|
lanscape/ui/templates/scan/ip-table-row.html,sha256=RANDsfW4xBATdtiLrxUlRouFSjgwetZqdzH-MJgj2mE,4740
|
|
62
66
|
lanscape/ui/templates/scan/ip-table.html,sha256=CP7AG8WHOgy3AyYCIN0wA2wO6n0H1X0F9IOncQtpPvE,914
|
|
63
67
|
lanscape/ui/templates/scan/overview.html,sha256=xWj9jWDPg2KcPLvS8fnSins23_UXjKCdb2NJwNG2U2Q,1176
|
|
64
68
|
lanscape/ui/templates/scan/scan-error.html,sha256=wmAYQ13IJHUoO8fAGNDjMvNml7tu4rsIU3Vav71ETlA,999
|
|
65
|
-
lanscape-1.3.
|
|
66
|
-
lanscape-1.3.
|
|
67
|
-
lanscape-1.3.
|
|
68
|
-
lanscape-1.3.
|
|
69
|
-
lanscape-1.3.
|
|
69
|
+
lanscape-1.3.5a1.dist-info/licenses/LICENSE,sha256=VLoE0IrNTIc09dFm7hMN0qzk4T3q8V0NaPcFQqMemDs,1070
|
|
70
|
+
lanscape-1.3.5a1.dist-info/METADATA,sha256=oHSG52DOrrUi8m5rFAXgXMr2fslnaMebDA6Reg_8zxg,2569
|
|
71
|
+
lanscape-1.3.5a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
72
|
+
lanscape-1.3.5a1.dist-info/top_level.txt,sha256=E9D4sjPz_6H7c85Ycy_pOS2xuv1Wm-ilKhxEprln2ps,9
|
|
73
|
+
lanscape-1.3.5a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|