-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
1222 lines (1222 loc) · 44.3 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://localhost:4000/2019/07/17/Arend-1.0.0-released.html</loc>
<lastmod>2019-07-17T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2019/10/01/Arend-1.1.0-released.html</loc>
<lastmod>2019-10-01T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2019/12/16/Arend-1.2.0-released.html</loc>
<lastmod>2019-12-16T00:00:00+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2020/01/17/tutorial-part-I.html</loc>
<lastmod>2020-01-17T00:00:00+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2020/04/13/Arend-1.3.0-released.html</loc>
<lastmod>2020-04-13T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2020/06/14/tutorial-part-II.html</loc>
<lastmod>2020-06-14T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2020/06/29/Arend-1.4.0-released.html</loc>
<lastmod>2020-06-29T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2020/10/10/Arend-1.5.0-released.html</loc>
<lastmod>2020-10-10T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2021/02/28/Arend-1.6.0-released.html</loc>
<lastmod>2021-02-28T00:00:00+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2021/09/06/Arend-1.7.0-released.html</loc>
<lastmod>2021-09-06T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2022/02/08/New-IntelliJ-Arend-tutorial.html</loc>
<lastmod>2022-02-08T00:00:00+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2022/04/15/Arend-1.8.0-released.html</loc>
<lastmod>2022-04-15T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2022/12/05/Arend-1.9.0-released.html</loc>
<lastmod>2022-12-05T00:00:00+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/2024/07/05/Arend-1.10.0-released.html</loc>
<lastmod>2024-07-05T00:00:00+02:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics/algebra-meta.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/getting-started/arend-features.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/box.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/case.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/case.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics/category-meta.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/class-ext.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/classes.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/coercion.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/data.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/datanproofs.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics/debug-meta.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/getting-started/download.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/plugin-manual/editor-features.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/equalityex.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics/function-meta.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/functions.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/getting-started.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/goals.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/hits.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartII/hits.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartII/hom-levels.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartII/hprops.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/idtype.html</loc>
</url>
<url>
<loc>http://localhost:4000/</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartII/</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/</loc>
</url>
<url>
<loc>http://localhost:4000/about/</loc>
</url>
<url>
<loc>http://localhost:4000/arend-lib/</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/getting-started/intellij-arend-tutorial.html</loc>
</url>
<url>
<loc>http://localhost:4000/about/intellij-features.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/let.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/level.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/lexical-structure.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/getting-started/libraries.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics/logic-meta.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics/meta.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/metas.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/modules.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/plugin-manual/navigating.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/parameters.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics/paths-meta.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/pi.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/plugin-manual.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/prelude.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/proof-search.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/propsnproofs.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/records.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/records.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/plugin-manual/refactoring.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartII/sets.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/sigma.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/standard-tactics.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/getting-started/started.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/synndef.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/definitions/types.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/language-reference/expressions/universes.html</loc>
</url>
<url>
<loc>http://localhost:4000/documentation/tutorial/PartI/universes.html</loc>
</url>
<url>
<loc>http://localhost:4000/page2/</loc>
</url>
<url>
<loc>http://localhost:4000/page3/</loc>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Algebra.Meta.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Base.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Category.Meta.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Debug.Meta.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Function.Meta.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Logic.Meta.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Meta.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Paths.Meta.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/Prelude.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/AG/Projective.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/AG/Scheme.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Algebra.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Domain.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Domain/Bezout.html</loc>
<lastmod>2025-01-27T23:08:26+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Domain/Euclidean.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Domain/GCD.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Domain/IntegrallyClosed.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Domain/PID.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Domain/Valuation.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Field.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Field/Algebraic.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Field/AlgebraicClosure.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Field/Splitting.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/FinSuppFunc.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Aut.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Fin.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/GSet/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/GSet/GSet.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Lagrange.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Product.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/QuotientProperties.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Solver.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Sub.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Group/Symmetric.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/LatticeColimit.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Linear/Matrix.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Linear/Matrix/CayleyHamilton.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Linear/Matrix/CharPoly.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Linear/Matrix/Smith.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Linear/Solver.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Linear/VectorSpace.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Module.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Module/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Module/FinModule.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Module/LinearMap.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Module/Sub.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid/GCD.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid/PermSet.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid/Prime.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid/Product.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid/Solver.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Monoid/Sub.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/MulOrdered.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ordered.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Pointed.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Pointed/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Pointed/Sub.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Graded.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Graded/Ideal.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Graded/Localization.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Ideal.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Integral.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Integral/MinPoly.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Local.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Localization.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Localization/Field.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/MPoly.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/MonoidRing.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Nakayama.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Noetherian.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Poly.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/QPoly.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Reduced.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/RingHom.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Solver.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Ring/Sub.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Semiring.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Algebra/Semiring/Sub.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Analysis/Calculus/Derivative.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Analysis/FuncLimit.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Analysis/Limit.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Analysis/PowerSeries.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Analysis/Series.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Bool.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Complex.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Fin.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Int.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Nat.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Prime.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Rat.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Real.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Real/Exp.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Real/Field.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Arith/Real/Root.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Adjoint.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Algebra.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/CartesianClosed.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Comma.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Coreflection.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Displayed.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Factorization.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Functor.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/KanExtension.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Limit.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Product.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Slice.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Solver.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Subcat.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Subobj.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Topos.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Topos/Sheaf.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Topos/Sheaf/Site.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Category/Topos/Sheaf/Sub.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Combinatorics/Binom.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Combinatorics/Factorial.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/Array.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/Bool.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/Fin.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/List.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/Maybe.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/Or.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/SeqColimit.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/Shifts.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/Sigma.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Data/SubList.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Debug.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Equiv.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Equiv/Fiber.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Equiv/HalfAdjoint.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Equiv/Path.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Equiv/Sigma.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Equiv/Univalence.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Function.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/HLevel.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Connected.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Cube.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Fibration.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Hopf.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Image.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Join.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/K1.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Localization/Accessible.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Localization/BlakersMassey.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Localization/Connected.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Localization/Equiv.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Localization/Modality.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Localization/Separated.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Localization/Universe.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Loop.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Pointed.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Pushout.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Space.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Sphere.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Sphere/Circle.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Square.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Suspension.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Torus.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Homotopy/Truncation.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Classical.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/FirstOrder/Algebraic.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/FirstOrder/Algebraic/Category.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/FirstOrder/Term.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/PropFin.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/ARS/AbstractReductionSystem.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/ARS/Confluence.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/ARS/Relation.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/ARS/Termination.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Examples/LambdaCalculus.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/HRS.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Linearity.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/MetaContexts.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Substitutions.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Union.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Union/Colors.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Union/Confluence.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Union/Embedding.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Union/TopLevel.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Logic/Rewriting/TRS/Utils.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>
</url>
<url>
<loc>http://localhost:4000/arend-lib/v1.10.0/arend-html-files/src/Operations.html</loc>
<lastmod>2025-01-27T23:08:27+01:00</lastmod>