-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathifc-tests.html
2632 lines (2550 loc) · 226 KB
/
ifc-tests.html
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="xeokit - SDK for Browser-Based 3D BIM Visualization">
<meta name="author" content="Lindsay Kay">
<meta name="keywords" content="BIM,IFC,WebGL,JavaScript,Browser,BCF,Web,xeolabs,3D,3D Viewer,Lindsay Kay,xeokit,MedViz,ArchViz,Open Source,Browser,Viewer">
<title>xeokit - 3D Web Programming Toolkit for BIM and Engineering Visualization</title>
<link href="./vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="./css/business-frontpage.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Bootstrap core JavaScript -->
<script src="./vendor/jquery/jquery.min.js"></script>
<script src="./vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<title></title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.5/jszip.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism-themes/1.9.0/prism-atom-dark.min.css">
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.24.1/components/prism-json.min.js"></script>
<script>
function getPortionBeforeLastSlash(filePath) {
const lastSlashIndex = filePath.lastIndexOf('/');
if (lastSlashIndex !== -1) {
return filePath.substring(0, lastSlashIndex);
}
}
function createZip(files, zipFileName) {
const zip = new JSZip();
var folder = zip.folder("cxConverter1_" + zipFileName);
const promises = [];
function addFileToZip(url, fileName) {
return fetch(url)
.then(response => response.blob())
.then(blob => folder.file(fileName, blob));
}
files.forEach(function (url, index) {
promises.push(addFileToZip(url, url.substring(url.lastIndexOf('/') + 1)));
});
Promise.all(promises)
.then(function () {
return zip.generateAsync({type: "blob"});
})
.then(function (blob) {
const link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = `${zipFileName}.zip`;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
});
}
function createModelZip(manifestPath, batchId, modelId) {
const modelPath = getPortionBeforeLastSlash(manifestPath);
fetch(manifestPath)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
const filesURLs = [
manifestPath
];
if (data.xktFiles)
for (let i = 0, len = data.xktFiles.length; i < len; i++) {
filesURLs.push(`${modelPath}/${data.xktFiles[i]}`);
}
if (data.metaModelFiles)
for (let i = 0, len = data.metaModelFiles.length; i < len; i++) {
filesURLs.push(`${modelPath}/${data.metaModelFiles[i]}`);
}
createZip(filesURLs, `${batchId}_${modelId}`);
})
.catch(error => {
console.error('Error during fetch:', error);
});
}
function createProjectZip(manifestPath, batchId, modelId) {
const modelPath = getPortionBeforeLastSlash(manifestPath);
fetch(manifestPath)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
const filesURLs = [manifestPath];
if (data.xktFiles)
for (let i = 0, len = data.xktFiles.length; i < len; i++) {
filesURLs.push(`${modelPath}/${data.xktFiles[i]}`);
}
createZip(filesURLs, `${batchId}_${modelId}`);
})
.catch(error => {
console.error('Error during fetch:', error);
});
}
function storeScrollPosition() {
sessionStorage.setItem('scrollPosition', window.scrollY);
}
function getStoredScrollPosition() {
return parseInt(sessionStorage.getItem('scrollPosition')) || 0;
}
window.addEventListener('load', function () {
window.scrollTo(0, getStoredScrollPosition());
});
window.addEventListener('beforeunload', storeScrollPosition);
fetch("./convertedModels/las/convert2xkt.conf.json")
.then(response => response.text())
.then(code => {
// Get the code container element
const codeContainer = document.getElementById("convert2xkt.conf");
// Set the innerHTML with the syntax-highlighted code
codeContainer.innerHTML = `<pre><code style="font-size: 15px;" class="language-json">${Prism.highlight(code, Prism.languages.json, 'json')}</code></pre>`;
})
.catch(error => console.error('Error loading file:', error));
</script>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top ">
<span style="color: #ffffff;"><a class="navbar-home" href="http://xeolabs.com">xeolabs</a>/<a class="navbar-parent" href="https://xeokit.io">xeokit SDK</a>/<a class="navbar-parent" href="./index.html">Model Conversion</a>/<a class="navbar-brand" href="./tests.html">IFC Conversion Tests</a></span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html?foo=0">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownDemos" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Demos </a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownLearn">
<a class="dropdown-item" href="https://xeokit.io/demo.html?projectId=RevitSamples&tab=models">Revit Sample IFC Model</a>
<a class="dropdown-item" href="https://xeokit.io/demo.html?projectId=MAPPointCloud">1.6M Point Cloud Model</a>
<a class="dropdown-item" href="https://xeokit.io/demo.html?projectId=MAP&tab=objects">Full-Precision IFC Model</a>
<a class="dropdown-item" href="https://xeokit.io/demo.html?projectId=OTCConferenceCenter&tab=storeys">Conference Center Model</a>
<a class="dropdown-item" href="https://xeokit.io/demo.html?projectId=Schependomlaan&tab=storeys">Schependomlaan Model</a>
<a class="dropdown-item" href="https://xeokit.io/demo.html?projectId=Schependomlaan_selectedStorey&tab=storeys">Schependomlaan Ground Floor</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="https://xeokit.io/index.html?foo=1#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://xeokit.io/index.html?foo=1#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://xeokit.io/blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://xeokit.github.io/xeokit-sdk/examples/" target="_demos">Examples</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownLearn" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Developers </a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownLearn">
<a class="dropdown-item" href="https://www.notion.so/xeokit/xeokit-Documentation-4598591fcedb4889bf8896750651f74e">Documentation</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-sdk/examples/" target="_examples">Examples</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-sdk/docs/" target="_docs">API Reference</a>
<a class="dropdown-item" href="https://github.com/xeokit" target="_code">Source Code</a>
<a class="dropdown-item" href="https://xeokit.github.io/xeokit-model-conversion-tests/index.html">Model Conversion</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="https://xeokit.io/index.html?foo=2#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://xeokit.io/download.html">Download</a>
</li>
</ul>
</div>
</nav>
<header class="bg-black home-header bg-black">
<div class="container h-75">
<!-- <div class="row h-100 align-items-center">-->
<!-- <div class="col-lg-12">-->
<!-- <h1 class="text-white mt-5 mb-2">IFC Conversion Tests</h1>-->
<!-- <p class="lead mb-5 text-white">Check the health of our IFC file conversion tools</p>-->
<!-- </div>-->
<!-- </div>-->
</div>
</header>
<section id="intro" class="main-section alabaster">
<div class="container">
<div class="row testimonial-row center-text">
<div class="col-lg-12">
<h1>xeokit IFC Conversion Tests</h1>
</div>
</div>
<div class="row mb-5">
<div class="col-sm-12 text-center">
<a class="btn btn-lg btn-outline-primary border-2" href="./gltf-tests.html">See also: glTF Conversion Tests >></a>
<a class="btn btn-lg btn-outline-primary border-2" href="./las-tests.html">See also: LAS Conversion Tests >></a>
</div>
</div>
<!-- <div class="row mb-5">-->
<!-- <div class="col-5 mx-auto center-text">-->
<!-- <img class="img-fluid mx-auto d-block" src="./img/xeokit-viewer-jitterThumb.png">-->
<!-- </div>-->
<!-- </div>-->
<div class="row">
<div class="col-12 mx-auto left-text">
<p>The xeokit SDK empowers us to quickly load large, full-precision IFC models on the Web, enabling
seamless browser viewing within seconds. To achieve this, we use our CLI tools to
pre-convert IFC models into xeokit's efficient and fast-loading native XKT format.</p>
<p>We routinely validate the effectiveness of our conversion tools through tests with xeokit's
conversion test suite. This suite performs batch conversions on a selected set of IFC
models, resulting in the XKT models listed in the "Converted IFC Models" section below.</p>
<p>In this page, you'll also find
detailed information on how we configure and execute the conversion process, providing
insights for establishing your own IFC conversion pipeline with xeokit.</p>
</div>
</div>
<div class="row mt-5">
<div class="col-12 mx-auto" style=" justify-content: center; align-items:center">
<div style="width:300px; margin: auto;">
<ul>
<li><a href="#testResults">Converted IFC Models</a></li>
<li><a href="#systemInfo">Conversion System Configuration</a></li>
<li><a href="#testMethod">Conversion Pipeline Setup</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="testResults" class="test-results-section">
<div class="container pt-6 pb-0">
<div class="row testimonial-row center-text">
<div class="col-lg-12">
<h1>Converted IFC Models</h1>
</div>
</div>
<div class="row left-text">
<div class="col-lg-12">
<p>In the table below are the results from our most recent IFC conversion run. On the far right, select
"View" to
observe the converted model in a xeokit web viewer. Choose "Log" to inspect the conversion log
associated with that model. Additionally, "Link" provides a link through which you can hot-load the
converted model into a xeokit web viewer.</p>
</div>
</div>
</div>
</section>
<section class="test-results-section">
<div class="container pt-6 pb-0">
<div class="row">
<div class="col-lg-12">
<table class="table table-sm table-hover table-bordered mb-0">
<tr style="background-color: rgba(0, 0, 0, 0.05);"><th>IFC File</th><th style="text-align:right;">IFC Size (Mb)</th><th style="text-align:right;">XKT Size (Mb)</th><th style="text-align:right;">Conversion Time (Secs)</th><th style="text-align:center;" colspan="5">Converted XKT</th></tr>
<tbody>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>2011-09-14-Clinic</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">Clinic_A_20110906.ifc</a></td>-->
<td>Clinic_A_20110906.ifc</td>
<td style="text-align:right;">18.1414</td>
<td style="text-align:right;">0.5076</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_A_20110906">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_A_20110906">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_A_20110906/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_A_20110906/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_A_20110906/model.xkt.manifest.json', '2011-09-14-Clinic', 'Clinic_A_20110906')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_A_20110906_optimized.ifc</a></td>-->
<td>Clinic_A_20110906_optimized.ifc</td>
<td style="text-align:right;">13.2081</td>
<td style="text-align:right;">0.4824</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_A_20110906_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_A_20110906_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_A_20110906_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_A_20110906_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_A_20110906_optimized/model.xkt.manifest.json', '2011-09-14-Clinic', 'Clinic_A_20110906_optimized')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_MEP_20110906.ifc</a></td>-->
<td>Clinic_MEP_20110906.ifc</td>
<td style="text-align:right;">207.3372</td>
<td style="text-align:right;">4.2968</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_MEP_20110906">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_MEP_20110906">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_MEP_20110906/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_MEP_20110906/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_MEP_20110906/model.xkt.manifest.json', '2011-09-14-Clinic', 'Clinic_MEP_20110906')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_MEP_20110906_optimized.ifc</a></td>-->
<td>Clinic_MEP_20110906_optimized.ifc</td>
<td style="text-align:right;">125.7807</td>
<td style="text-align:right;">4.1341</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_MEP_20110906_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_MEP_20110906_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_MEP_20110906_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_MEP_20110906_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_MEP_20110906_optimized/model.xkt.manifest.json', '2011-09-14-Clinic', 'Clinic_MEP_20110906_optimized')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_S_20110715.ifc</a></td>-->
<td>Clinic_S_20110715.ifc</td>
<td style="text-align:right;">19.3760</td>
<td style="text-align:right;">0.1519</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_S_20110715">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_S_20110715">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_S_20110715/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_S_20110715/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_S_20110715/model.xkt.manifest.json', '2011-09-14-Clinic', 'Clinic_S_20110715')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_S_20110715_optimized.ifc</a></td>-->
<td>Clinic_S_20110715_optimized.ifc</td>
<td style="text-align:right;">19.3760</td>
<td style="text-align:right;">0.1541</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_S_20110715_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=2011-09-14-Clinic&modelId=Clinic_S_20110715_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_S_20110715_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_S_20110715_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/2011-09-14-Clinic/models/Clinic_S_20110715_optimized/model.xkt.manifest.json', '2011-09-14-Clinic', 'Clinic_S_20110715_optimized')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>AC20-FZK-Haus</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">AC20-FZK-Haus.ifc</a></td>-->
<td>AC20-FZK-Haus.ifc</td>
<td style="text-align:right;">2.5708</td>
<td style="text-align:right;">0.0923</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=AC20-FZK-Haus&modelId=AC20-FZK-Haus">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=AC20-FZK-Haus&modelId=AC20-FZK-Haus">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/AC20-FZK-Haus/models/AC20-FZK-Haus/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/AC20-FZK-Haus/models/AC20-FZK-Haus/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/AC20-FZK-Haus/models/AC20-FZK-Haus/model.xkt.manifest.json', 'AC20-FZK-Haus', 'AC20-FZK-Haus')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Archicad</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">AR-Demo_Sample_Single_Building_01.ifc</a></td>-->
<td>AR-Demo_Sample_Single_Building_01.ifc</td>
<td style="text-align:right;">59.6020</td>
<td style="text-align:right;">0.9096</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad&modelId=AR-Demo_Sample_Single_Building_01">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad&modelId=AR-Demo_Sample_Single_Building_01">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/AR-Demo_Sample_Single_Building_01/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/AR-Demo_Sample_Single_Building_01/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad/models/AR-Demo_Sample_Single_Building_01/model.xkt.manifest.json', 'Archicad', 'AR-Demo_Sample_Single_Building_01')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Archicad-Demoprojekt.ifc</a></td>-->
<td>Archicad-Demoprojekt.ifc</td>
<td style="text-align:right;">56.8785</td>
<td style="text-align:right;">0.9155</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad&modelId=Archicad-Demoprojekt">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad&modelId=Archicad-Demoprojekt">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/Archicad-Demoprojekt/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/Archicad-Demoprojekt/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad/models/Archicad-Demoprojekt/model.xkt.manifest.json', 'Archicad', 'Archicad-Demoprojekt')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">ME-Demo_Sample_Single_Building_01.ifc</a></td>-->
<td>ME-Demo_Sample_Single_Building_01.ifc</td>
<td style="text-align:right;">44.6952</td>
<td style="text-align:right;">0.5828</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad&modelId=ME-Demo_Sample_Single_Building_01">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad&modelId=ME-Demo_Sample_Single_Building_01">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/ME-Demo_Sample_Single_Building_01/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/ME-Demo_Sample_Single_Building_01/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad/models/ME-Demo_Sample_Single_Building_01/model.xkt.manifest.json', 'Archicad', 'ME-Demo_Sample_Single_Building_01')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">ST-Demo_Sample_Single_Building_01.ifc</a></td>-->
<td>ST-Demo_Sample_Single_Building_01.ifc</td>
<td style="text-align:right;">12.0577</td>
<td style="text-align:right;">0.2310</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad&modelId=ST-Demo_Sample_Single_Building_01">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad&modelId=ST-Demo_Sample_Single_Building_01">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/ST-Demo_Sample_Single_Building_01/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad/models/ST-Demo_Sample_Single_Building_01/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad/models/ST-Demo_Sample_Single_Building_01/model.xkt.manifest.json', 'Archicad', 'ST-Demo_Sample_Single_Building_01')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Archicad_Based_Bexel_Sample_Project</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">ARCHICAD_Demoprojekt_Büro_23-IFC2x3.ifc</a></td>-->
<td>ARCHICAD_Demoprojekt_Büro_23-IFC2x3.ifc</td>
<td style="text-align:right;">185.3826</td>
<td style="text-align:right;">3.2431</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=ARCHICAD_Demoprojekt_Büro_23-IFC2x3">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=ARCHICAD_Demoprojekt_Büro_23-IFC2x3">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/ARCHICAD_Demoprojekt_Büro_23-IFC2x3/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/ARCHICAD_Demoprojekt_Büro_23-IFC2x3/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/ARCHICAD_Demoprojekt_Büro_23-IFC2x3/model.xkt.manifest.json', 'Archicad_Based_Bexel_Sample_Project', 'ARCHICAD_Demoprojekt_Büro_23-IFC2x3')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Electric.ifc</a></td>-->
<td>Electric.ifc</td>
<td style="text-align:right;">7.8783</td>
<td style="text-align:right;">1.5750</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=Electric">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=Electric">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/Electric/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/Electric/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/Electric/model.xkt.manifest.json', 'Archicad_Based_Bexel_Sample_Project', 'Electric')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">HCS.ifc</a></td>-->
<td>HCS.ifc</td>
<td style="text-align:right;">73.8566</td>
<td style="text-align:right;">0.8132</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=HCS">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=HCS">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/HCS/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/HCS/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/HCS/model.xkt.manifest.json', 'Archicad_Based_Bexel_Sample_Project', 'HCS')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Ven.ifc</a></td>-->
<td>Ven.ifc</td>
<td style="text-align:right;">9.5959</td>
<td style="text-align:right;">0.1581</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=Ven">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Archicad_Based_Bexel_Sample_Project&modelId=Ven">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/Ven/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/Ven/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Archicad_Based_Bexel_Sample_Project/models/Ven/model.xkt.manifest.json', 'Archicad_Based_Bexel_Sample_Project', 'Ven')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>BIM1</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">BIM1841.ifc</a></td>-->
<td>BIM1841.ifc</td>
<td style="text-align:right;">30.9475</td>
<td style="text-align:right;">0.6971</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=BIM1&modelId=BIM1841">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=BIM1&modelId=BIM1841">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIM1/models/BIM1841/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIM1/models/BIM1841/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/BIM1/models/BIM1841/model.xkt.manifest.json', 'BIM1', 'BIM1841')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>BIM2</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">bim1840.ifc</a></td>-->
<td>bim1840.ifc</td>
<td style="text-align:right;">1.5403</td>
<td style="text-align:right;">0.0864</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=BIM2&modelId=bim1840">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=BIM2&modelId=bim1840">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIM2/models/bim1840/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIM2/models/bim1840/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/BIM2/models/bim1840/model.xkt.manifest.json', 'BIM2', 'bim1840')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>BIMData</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">19_rue_Marc_Antoine_Petit_Ground_floor.ifc</a></td>-->
<td>19_rue_Marc_Antoine_Petit_Ground_floor.ifc</td>
<td style="text-align:right;">4.1119</td>
<td style="text-align:right;">0.2113</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=BIMData&modelId=19_rue_Marc_Antoine_Petit_Ground_floor">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=BIMData&modelId=19_rue_Marc_Antoine_Petit_Ground_floor">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIMData/models/19_rue_Marc_Antoine_Petit_Ground_floor/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIMData/models/19_rue_Marc_Antoine_Petit_Ground_floor/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/BIMData/models/19_rue_Marc_Antoine_Petit_Ground_floor/model.xkt.manifest.json', 'BIMData', '19_rue_Marc_Antoine_Petit_Ground_floor')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">MAP.ifc</a></td>-->
<td>MAP.ifc</td>
<td style="text-align:right;">28.7794</td>
<td style="text-align:right;">0.9215</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=BIMData&modelId=MAP">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=BIMData&modelId=MAP">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIMData/models/MAP/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/BIMData/models/MAP/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/BIMData/models/MAP/model.xkt.manifest.json', 'BIMData', 'MAP')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>CS_Auckland_AC_NZ</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">20160124OTC-Conference_Center.ifc</a></td>-->
<td>20160124OTC-Conference_Center.ifc</td>
<td style="text-align:right;">70.3272</td>
<td style="text-align:right;">2.5256</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160124OTC-Conference_Center">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160124OTC-Conference_Center">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160124OTC-Conference_Center/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160124OTC-Conference_Center/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160124OTC-Conference_Center/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20160124OTC-Conference_Center')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20160125Autodesk_Hospital_Parking_Garage_2015-IFC4.ifc</a></td>-->
<td>20160125Autodesk_Hospital_Parking_Garage_2015-IFC4.ifc</td>
<td style="text-align:right;">6.4500</td>
<td style="text-align:right;">0.3160</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125Autodesk_Hospital_Parking_Garage_2015-IFC4">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125Autodesk_Hospital_Parking_Garage_2015-IFC4">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125Autodesk_Hospital_Parking_Garage_2015-IFC4/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125Autodesk_Hospital_Parking_Garage_2015-IFC4/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125Autodesk_Hospital_Parking_Garage_2015-IFC4/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20160125Autodesk_Hospital_Parking_Garage_2015-IFC4')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20160125Autodesk_Hospital_Parking_Garage_2015.ifc</a></td>-->
<td>20160125Autodesk_Hospital_Parking_Garage_2015.ifc</td>
<td style="text-align:right;">6.4065</td>
<td style="text-align:right;">0.3275</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125Autodesk_Hospital_Parking_Garage_2015">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125Autodesk_Hospital_Parking_Garage_2015">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125Autodesk_Hospital_Parking_Garage_2015/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125Autodesk_Hospital_Parking_Garage_2015/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125Autodesk_Hospital_Parking_Garage_2015/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20160125Autodesk_Hospital_Parking_Garage_2015')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical.ifc</a></td>-->
<td>20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical.ifc</td>
<td style="text-align:right;">4.4353</td>
<td style="text-align:right;">0.1213</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Electrical')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm.ifc</a></td>-->
<td>20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm.ifc</td>
<td style="text-align:right;">0.9050</td>
<td style="text-align:right;">0.0435</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_FireAlarm')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural.ifc</a></td>-->
<td>20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural.ifc</td>
<td style="text-align:right;">6.4846</td>
<td style="text-align:right;">0.2566</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Structural')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle.ifc</a></td>-->
<td>20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle.ifc</td>
<td style="text-align:right;">33.9901</td>
<td style="text-align:right;">1.2649</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20160125WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Sprinkle')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture.ifc</a></td>-->
<td>20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture.ifc</td>
<td style="text-align:right;">80.9371</td>
<td style="text-align:right;">3.8243</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20190104WestRiverSide_Hospital-IFC4-Autodesk_Hospital_Metric_Architecture')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical.ifc</a></td>-->
<td>20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical.ifc</td>
<td style="text-align:right;">78.7642</td>
<td style="text-align:right;">3.0881</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20190104WestRiverSide_Hospital-Ifc2x3-Autodesk_Hospital_Metric_Mechanical')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20190228ifc_saxion_28-09-2016.ifc</a></td>-->
<td>20190228ifc_saxion_28-09-2016.ifc</td>
<td style="text-align:right;">25.3028</td>
<td style="text-align:right;">0.5900</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20190228ifc_saxion_28-09-2016">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20190228ifc_saxion_28-09-2016">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190228ifc_saxion_28-09-2016/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190228ifc_saxion_28-09-2016/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20190228ifc_saxion_28-09-2016/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20190228ifc_saxion_28-09-2016')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20191002Mechanical_Piping.ifc</a></td>-->
<td>20191002Mechanical_Piping.ifc</td>
<td style="text-align:right;">43.6270</td>
<td style="text-align:right;">1.7149</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20191002Mechanical_Piping">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20191002Mechanical_Piping">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20191002Mechanical_Piping/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20191002Mechanical_Piping/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20191002Mechanical_Piping/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20191002Mechanical_Piping')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20200117TOWER_TOTAL_00_10006320176.ifc</a></td>-->
<td>20200117TOWER_TOTAL_00_10006320176.ifc</td>
<td style="text-align:right;">6.7246</td>
<td style="text-align:right;">0.9867</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20200117TOWER_TOTAL_00_10006320176">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20200117TOWER_TOTAL_00_10006320176">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20200117TOWER_TOTAL_00_10006320176/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20200117TOWER_TOTAL_00_10006320176/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20200117TOWER_TOTAL_00_10006320176/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20200117TOWER_TOTAL_00_10006320176')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20200404UFCSPA-ARQ-PE-R0-correto.ifc</a></td>-->
<td>20200404UFCSPA-ARQ-PE-R0-correto.ifc</td>
<td style="text-align:right;">24.2418</td>
<td style="text-align:right;">1.1190</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20200404UFCSPA-ARQ-PE-R0-correto">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20200404UFCSPA-ARQ-PE-R0-correto">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20200404UFCSPA-ARQ-PE-R0-correto/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20200404UFCSPA-ARQ-PE-R0-correto/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20200404UFCSPA-ARQ-PE-R0-correto/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20200404UFCSPA-ARQ-PE-R0-correto')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20201022mapping_IFC4_Convenience_store.ifc</a></td>-->
<td>20201022mapping_IFC4_Convenience_store.ifc</td>
<td style="text-align:right;">11.0915</td>
<td style="text-align:right;">0.1268</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201022mapping_IFC4_Convenience_store">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201022mapping_IFC4_Convenience_store">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201022mapping_IFC4_Convenience_store/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201022mapping_IFC4_Convenience_store/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201022mapping_IFC4_Convenience_store/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20201022mapping_IFC4_Convenience_store')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20201027Mechanical_Piping.ifc</a></td>-->
<td>20201027Mechanical_Piping.ifc</td>
<td style="text-align:right;">43.6270</td>
<td style="text-align:right;">1.6955</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201027Mechanical_Piping">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201027Mechanical_Piping">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201027Mechanical_Piping/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201027Mechanical_Piping/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201027Mechanical_Piping/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20201027Mechanical_Piping')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20201126GEN_DOE_GSE_ARC_Exploit.ifc</a></td>-->
<td>20201126GEN_DOE_GSE_ARC_Exploit.ifc</td>
<td style="text-align:right;">112.6139</td>
<td style="text-align:right;">3.6072</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201126GEN_DOE_GSE_ARC_Exploit">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201126GEN_DOE_GSE_ARC_Exploit">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201126GEN_DOE_GSE_ARC_Exploit/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201126GEN_DOE_GSE_ARC_Exploit/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201126GEN_DOE_GSE_ARC_Exploit/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20201126GEN_DOE_GSE_ARC_Exploit')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20201208DigitalHub_ARC.ifc</a></td>-->
<td>20201208DigitalHub_ARC.ifc</td>
<td style="text-align:right;">14.3227</td>
<td style="text-align:right;">0.2695</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201208DigitalHub_ARC">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201208DigitalHub_ARC">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201208DigitalHub_ARC/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201208DigitalHub_ARC/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201208DigitalHub_ARC/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20201208DigitalHub_ARC')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20201208FM_ARC_DigitalHub.ifc</a></td>-->
<td>20201208FM_ARC_DigitalHub.ifc</td>
<td style="text-align:right;">14.3227</td>
<td style="text-align:right;">0.2681</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201208FM_ARC_DigitalHub">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20201208FM_ARC_DigitalHub">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201208FM_ARC_DigitalHub/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201208FM_ARC_DigitalHub/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20201208FM_ARC_DigitalHub/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20201208FM_ARC_DigitalHub')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">202101082003_casbah_alger.ifc</a></td>-->
<td>202101082003_casbah_alger.ifc</td>
<td style="text-align:right;">44.7370</td>
<td style="text-align:right;">2.9054</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=202101082003_casbah_alger">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=202101082003_casbah_alger">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/202101082003_casbah_alger/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/202101082003_casbah_alger/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/202101082003_casbah_alger/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '202101082003_casbah_alger')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20210219Architecture.ifc</a></td>-->
<td>20210219Architecture.ifc</td>
<td style="text-align:right;">113.3281</td>
<td style="text-align:right;">3.0936</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20210219Architecture">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20210219Architecture">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20210219Architecture/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20210219Architecture/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20210219Architecture/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20210219Architecture')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">20211108ARA_ASH_S3B_ARCHITECTURE_wall.ifc</a></td>-->
<td>20211108ARA_ASH_S3B_ARCHITECTURE_wall.ifc</td>
<td style="text-align:right;">94.2171</td>
<td style="text-align:right;">2.1331</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20211108ARA_ASH_S3B_ARCHITECTURE_wall">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=20211108ARA_ASH_S3B_ARCHITECTURE_wall">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20211108ARA_ASH_S3B_ARCHITECTURE_wall/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20211108ARA_ASH_S3B_ARCHITECTURE_wall/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/20211108ARA_ASH_S3B_ARCHITECTURE_wall/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '20211108ARA_ASH_S3B_ARCHITECTURE_wall')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">261110Ettenheim-GIS-05-11-2006.ifc</a></td>-->
<td>261110Ettenheim-GIS-05-11-2006.ifc</td>
<td style="text-align:right;">31.0680</td>
<td style="text-align:right;">0.7909</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=261110Ettenheim-GIS-05-11-2006">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=261110Ettenheim-GIS-05-11-2006">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/261110Ettenheim-GIS-05-11-2006/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/261110Ettenheim-GIS-05-11-2006/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/261110Ettenheim-GIS-05-11-2006/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '261110Ettenheim-GIS-05-11-2006')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">261110Ettenheim-GIS-05-11-2006_optimized.ifc</a></td>-->
<td>261110Ettenheim-GIS-05-11-2006_optimized.ifc</td>
<td style="text-align:right;">18.3779</td>
<td style="text-align:right;">0.7750</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=261110Ettenheim-GIS-05-11-2006_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=CS_Auckland_AC_NZ&modelId=261110Ettenheim-GIS-05-11-2006_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/261110Ettenheim-GIS-05-11-2006_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/261110Ettenheim-GIS-05-11-2006_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/CS_Auckland_AC_NZ/models/261110Ettenheim-GIS-05-11-2006_optimized/model.xkt.manifest.json', 'CS_Auckland_AC_NZ', '261110Ettenheim-GIS-05-11-2006_optimized')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Clinic</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">Clinic_A_20110906_optimized.ifc</a></td>-->
<td>Clinic_A_20110906_optimized.ifc</td>
<td style="text-align:right;">13.2081</td>
<td style="text-align:right;">0.4846</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_A_20110906_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_A_20110906_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_A_20110906_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_A_20110906_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_A_20110906_optimized/model.xkt.manifest.json', 'Clinic', 'Clinic_A_20110906_optimized')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_Architectural.ifc</a></td>-->
<td>Clinic_Architectural.ifc</td>
<td style="text-align:right;">13.0032</td>
<td style="text-align:right;">0.4871</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Architectural">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Architectural">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Architectural/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Architectural/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_Architectural/model.xkt.manifest.json', 'Clinic', 'Clinic_Architectural')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_Electrical.ifc</a></td>-->
<td>Clinic_Electrical.ifc</td>
<td style="text-align:right;">6.8002</td>
<td style="text-align:right;">0.1898</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Electrical">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Electrical">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Electrical/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Electrical/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_Electrical/model.xkt.manifest.json', 'Clinic', 'Clinic_Electrical')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_HVAC.ifc</a></td>-->
<td>Clinic_HVAC.ifc</td>
<td style="text-align:right;">0.0000</td>
<td style="text-align:right;">0.0000</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_HVAC">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_HVAC">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_HVAC/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_HVAC/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_HVAC/model.xkt.manifest.json', 'Clinic', 'Clinic_HVAC')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_MEP_20110906_optimized.ifc</a></td>-->
<td>Clinic_MEP_20110906_optimized.ifc</td>
<td style="text-align:right;">125.7807</td>
<td style="text-align:right;">4.1225</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_MEP_20110906_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_MEP_20110906_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_MEP_20110906_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_MEP_20110906_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_MEP_20110906_optimized/model.xkt.manifest.json', 'Clinic', 'Clinic_MEP_20110906_optimized')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_Plumbing.ifc</a></td>-->
<td>Clinic_Plumbing.ifc</td>
<td style="text-align:right;">0.0000</td>
<td style="text-align:right;">0.0000</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Plumbing">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Plumbing">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Plumbing/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Plumbing/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_Plumbing/model.xkt.manifest.json', 'Clinic', 'Clinic_Plumbing')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_S_20110715_optimized.ifc</a></td>-->
<td>Clinic_S_20110715_optimized.ifc</td>
<td style="text-align:right;">19.3760</td>
<td style="text-align:right;">0.1500</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_S_20110715_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_S_20110715_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_S_20110715_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_S_20110715_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_S_20110715_optimized/model.xkt.manifest.json', 'Clinic', 'Clinic_S_20110715_optimized')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Clinic_Structural.ifc</a></td>-->
<td>Clinic_Structural.ifc</td>
<td style="text-align:right;">19.0582</td>
<td style="text-align:right;">0.1520</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Structural">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Clinic&modelId=Clinic_Structural">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Structural/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Clinic/models/Clinic_Structural/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Clinic/models/Clinic_Structural/model.xkt.manifest.json', 'Clinic', 'Clinic_Structural')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Dormitory-ARC-Level2-only-IfcSpace-only</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">Dormitory-ARC-Level2-only-IfcSpace-only.ifc</a></td>-->
<td>Dormitory-ARC-Level2-only-IfcSpace-only.ifc</td>
<td style="text-align:right;">0.0246</td>
<td style="text-align:right;">0.0022</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Dormitory-ARC-Level2-only-IfcSpace-only&modelId=Dormitory-ARC-Level2-only-IfcSpace-only">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Dormitory-ARC-Level2-only-IfcSpace-only&modelId=Dormitory-ARC-Level2-only-IfcSpace-only">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Dormitory-ARC-Level2-only-IfcSpace-only/models/Dormitory-ARC-Level2-only-IfcSpace-only/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Dormitory-ARC-Level2-only-IfcSpace-only/models/Dormitory-ARC-Level2-only-IfcSpace-only/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Dormitory-ARC-Level2-only-IfcSpace-only/models/Dormitory-ARC-Level2-only-IfcSpace-only/model.xkt.manifest.json', 'Dormitory-ARC-Level2-only-IfcSpace-only', 'Dormitory-ARC-Level2-only-IfcSpace-only')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Dormitory-ARC-Level2-only.ifc</a></td>-->
<td>Dormitory-ARC-Level2-only.ifc</td>
<td style="text-align:right;">2.5068</td>
<td style="text-align:right;">0.1463</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Dormitory-ARC-Level2-only-IfcSpace-only&modelId=Dormitory-ARC-Level2-only">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Dormitory-ARC-Level2-only-IfcSpace-only&modelId=Dormitory-ARC-Level2-only">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Dormitory-ARC-Level2-only-IfcSpace-only/models/Dormitory-ARC-Level2-only/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Dormitory-ARC-Level2-only-IfcSpace-only/models/Dormitory-ARC-Level2-only/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Dormitory-ARC-Level2-only-IfcSpace-only/models/Dormitory-ARC-Level2-only/model.xkt.manifest.json', 'Dormitory-ARC-Level2-only-IfcSpace-only', 'Dormitory-ARC-Level2-only')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Duplex</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">Duplex.ifc</a></td>-->
<td>Duplex.ifc</td>
<td style="text-align:right;">1.2971</td>
<td style="text-align:right;">0.0710</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Duplex&modelId=Duplex">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Duplex&modelId=Duplex">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex/models/Duplex/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex/models/Duplex/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Duplex/models/Duplex/model.xkt.manifest.json', 'Duplex', 'Duplex')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Duplex-IFC2x3-2011-05-05</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">Duplex_2x3_2011-05-05.ifc</a></td>-->
<td>Duplex_2x3_2011-05-05.ifc</td>
<td style="text-align:right;">2.3278</td>
<td style="text-align:right;">0.0688</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-05-05&modelId=Duplex_2x3_2011-05-05">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-05-05&modelId=Duplex_2x3_2011-05-05">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-05-05/models/Duplex_2x3_2011-05-05/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-05-05/models/Duplex_2x3_2011-05-05/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Duplex-IFC2x3-2011-05-05/models/Duplex_2x3_2011-05-05/model.xkt.manifest.json', 'Duplex-IFC2x3-2011-05-05', 'Duplex_2x3_2011-05-05')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Duplex-IFC2x3-2011-09-07</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">Duplex_2x3_2011-09-07.ifc</a></td>-->
<td>Duplex_2x3_2011-09-07.ifc</td>
<td style="text-align:right;">2.3808</td>
<td style="text-align:right;">0.0691</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-07&modelId=Duplex_2x3_2011-09-07">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-07&modelId=Duplex_2x3_2011-09-07">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-07/models/Duplex_2x3_2011-09-07/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-07/models/Duplex_2x3_2011-09-07/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-07/models/Duplex_2x3_2011-09-07/model.xkt.manifest.json', 'Duplex-IFC2x3-2011-09-07', 'Duplex_2x3_2011-09-07')">Zip</a></td>
</tr>
<tr style="height: 60px; vertical-align:bottom; background-color: rgba(0, 0, 0, 0.05);"><td style="font-size: larger; height: 60px; vertical-align:bottom;" ><b>Duplex-IFC2x3-2011-09-14</td><td></td><td></td><td></td><td colspan="5"></td></tr>
<tr>
<!-- <td><a href="">Duplex_A_20110907.ifc</a></td>-->
<td>Duplex_A_20110907.ifc</td>
<td style="text-align:right;">2.3808</td>
<td style="text-align:right;">0.0702</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-14&modelId=Duplex_A_20110907">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-14&modelId=Duplex_A_20110907">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_A_20110907/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_A_20110907/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_A_20110907/model.xkt.manifest.json', 'Duplex-IFC2x3-2011-09-14', 'Duplex_A_20110907')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Duplex_A_20110907_optimized.ifc</a></td>-->
<td>Duplex_A_20110907_optimized.ifc</td>
<td style="text-align:right;">1.6286</td>
<td style="text-align:right;">0.0700</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-14&modelId=Duplex_A_20110907_optimized">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-14&modelId=Duplex_A_20110907_optimized">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_A_20110907_optimized/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_A_20110907_optimized/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_A_20110907_optimized/model.xkt.manifest.json', 'Duplex-IFC2x3-2011-09-14', 'Duplex_A_20110907_optimized')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Duplex_MEP_20110907.ifc</a></td>-->
<td>Duplex_MEP_20110907.ifc</td>
<td style="text-align:right;">17.8714</td>
<td style="text-align:right;">0.4211</td>
<td style="text-align:right;">0</td>
<td style="text-align:center;"><a href="./ifc-viewer.html?dataDir=https://xeokit.github.io/xeokit-model-conversion-tests/convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-14&modelId=Duplex_MEP_20110907">View</a> </td>
<td style="text-align:center;"><a href="./ifc-debug.html?dataDir=./convertedModels/ifc/&projectId=Duplex-IFC2x3-2011-09-14&modelId=Duplex_MEP_20110907">Debug</a> </td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_MEP_20110907/log.txt">Log</a></td>
<td style="text-align:center;"><a href="./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_MEP_20110907/model.xkt.manifest.json">Link</a></td>
<td style="text-align:center;"><a href="javascript:createModelZip('./convertedModels/ifc//projects/Duplex-IFC2x3-2011-09-14/models/Duplex_MEP_20110907/model.xkt.manifest.json', 'Duplex-IFC2x3-2011-09-14', 'Duplex_MEP_20110907')">Zip</a></td>
</tr>
<tr>
<!-- <td><a href="">Duplex_MEP_20110907_optimized.ifc</a></td>-->
<td>Duplex_MEP_20110907_optimized.ifc</td>
<td style="text-align:right;">10.9338</td>