-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
1272 lines (1268 loc) · 45.1 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="http://www.sitemaps.org/schemas/sitemap/0.9"
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">
<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/pulls</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/actions</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/projects?type=beta</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/security</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/master/.gitattributes</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/50551576ce16c3c2cdb75f72cfec3709f5ab82b8</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/master/.gitignore</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/6dd5a4ad0cd2571ebeae34f783177b162dee1a28</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/master/README.md</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/5a0b883cce858fbff68270e46c4d9a6241e395d6</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/bc38f401a3da1f2222ad5325124025efc2ca5710</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/7871481d6e6941697bab159f4c5cf610311bbf05</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/master/google079fb87c211e31f1.html</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/123c879718d70971c6a6da77e96348137bcb7880</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/f86a540a67e5384fe0c5ebb4c276a8cc8097d26b</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/master/hdhr_VCR.applescript</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/9ea0937bad9cb4e12d1dc79980e3884aa8c0e9b9</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/c5e951d550e6245e6e8190008c5bf3a535d5f65a</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/8f9ce3ed2681aa3eed4656aef9623ebfe5e36f1c</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/ec8ce3946242e284b947dca401312d3990dc2c9f</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/master/version.json</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/58c001a7aaa2cec6c6923b6eafb6e8f3fe5e50f8</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/releases</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/42</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/41</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/40</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/34</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/30</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/10</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/compare</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/projects</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/security/policy</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/security/advisories</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/18f91987f9452ec017a90d4df9884f7e525df751</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0/.gitattributes</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/find/master</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/9cdfa1311242cd5cb8f68bc356cc7fd340adff4d</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0/.gitignore</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0/README.md</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/master/README.md?plain=1</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/846adc49a42446a60a4660e2ec6806d215650265</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/b09df417ed6948f6610ba5caa6228115c2ad052e</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0/google079fb87c211e31f1.html</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/8166c9663aeb82571c922190e203b5f29eaf44aa</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0/hdhr_VCR.applescript</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/9cb05bde10325984d78c48956f3cef26a0245cfa</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/21160f9677cac7f92d46900f251aae58ef1b7751</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/d57240da0e827e7ebac1cbf9bfcd0df954f66202</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/398ec60c6bd72f1628298143a651093c0f27fe4c</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0/version.json</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/df11cf1ad6a86f646ac37e96448ecd3b1018132b</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.64</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels?sort=name-asc</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels?sort=name-desc</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels?sort=count-desc</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels?sort=count-asc</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/bug</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/documentation</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/duplicate</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/enhancement</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/good%20first%20issue</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/help%20wanted</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/invalid</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/question</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/labels/wontfix</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=due_date&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=due_date&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=completeness&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=completeness&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=title&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=title&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=count&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=count&state=open</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/43</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/20</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/11</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/security/advisories?state=published</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/0886c4510765c2d4846a06d563bc33d3f4ad8a89</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/find/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/2afeb773fc96ad364f40b7d5ebb777abb7dc7b67</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/blob/d1bb123c1405c2c574a20d734ebc31fb85ff4fc0/README.md?plain=1</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/38</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/02cfa39b624d10e4a37a71c93cf6a65d2840cc8f</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/0ab1079eedf21a6c17abf8e1c89b5639b0b4be7c</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/43647c5d997baeb7c4ca5d6d0be005fec76b1f80</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/97413dc54735a7999443e367706a010aa9d0ddf0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/31</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/32</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/758a91fcd4fc338934fa4ff6df3cd6ed6a15d7c1</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/f94bcd4d297427d1ac6e845e1214a12ad3033ce0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.51</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=due_date&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=due_date&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=completeness&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=completeness&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=title&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=title&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=desc&sort=count&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/milestones?direction=asc&sort=count&state=closed</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/16</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/acf9038161fedc44c16a8314f6d5b775c62242a0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/baed3a0e997596a2b61384d854dffece652ab4c3</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/8893e208764360901abdfd9731fa65fff486acfa</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/9d9ce6925d650375b5bcb49b63cd090f8cdf2700</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/39</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/eb1c88e2563615ab8f34e8da3371fcfe191920a2</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/ca1f67ca335cf717a400750648ff010d734ea7ca</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/29</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/c2a4b49515572e0d5d5dd9dca110238571e98482</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.41</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/9cb51d169569a3a85db28e6da461d6e56b96d91b</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.33</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/edb1d46604ba4b6106526b5c0a19715b50d87ab8</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.33</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/24</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.33</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/0bd945c6d60c6acc7b1f05a18778e5037edff587</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.33</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/3849d979c9df74d94e998a427aacddf02bfbf865</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.33</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/ee457bcf4db2d392733872a77b86a4f4a59891b9</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.33</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/bdc1c7205b79426cc3988809dab02991440fd3bf</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.33</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/2bdae4ba6ce74af9fbb1f5794d0a05c9253085d6</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/30fbe73050d376df2757d9ad9a1780f720ad074d</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/6f3e299365cb23c3b61ba21c83b745925f6b7747</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/4b8620e1a7fcc9bd3adaf8e5801409c3d59db397</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/1e65c927dc7b46a34db980c6ba2d05f7e9317e8a</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/35</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/36</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/37</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/8eeb7f71d2f57f9868cc248ebf41ea02df672b57</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.26</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/33</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/6c3fb2e20921a89b57940e8bdd4293e5c11a547d</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/4a8cc57683027f8931323f6bb7ba752238ec0e16</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/dbac3d8f0cd849899c2d68c2d02e2943aa83ff6e</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/8d7aa68787855adbab2a58eb703c8b7c1706a34f</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/26</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/52a8c7281595f73e471873331a31b52a370997b0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/2f50306997dfb5118b7aac7f042167b3ac7bb672</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.21</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/93f17f2703402166c6cbf3d70f4fd5936ea49f09</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.17</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/17879238d9f55d2a533be6ff3bead907c43a8403</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.17</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/63bd27d0f979fd0cf9cc4d9409e8dc4dfd82224e</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.17</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/8306293015e668ac2e54f3a148e448760c9771c3</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.17</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/c918920a523fe6a9a3af02b7211e47fc03348e03</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.17</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/0054f64c941b1af7b6a2224a8237c228a19f823d</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.13</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/11c9fce41cc6f07a0a00b78b39c09e0fd0c08d77</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.13</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/98716a165efdd5851998bde1faccf15fe9204dc0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.13</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/ee15dfff1cf75761062896021c80ffa042ed5889</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.13</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/94273e0a894a321831bb5a506e3d01206e4bae43</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.13</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/594d6530e430a83b07882f8584211904a929dde0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.13</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/c2aaf53be6d75da3b3da2d170b6fb043020da85e</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.11</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/6f396d2d2c1089c747ed7dda00449b1c68ae8516</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.11</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/455e01c00eb961b6f69e7c93235b0a85c8b35d2f</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.11</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/ba8b4c3a61104ae896b8c319f08e255786141476</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.11</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/fd54256a44513203e7b0d95f5c21d4eb94fafde8</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.11</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/0c5a48a4ca699bb6a632300e5fc7c35469cdcc81</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.11</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/a1690f9b793a2394adf50fcd920b508f3c22e7b4</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.09</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/dddbaceb6d938a0797a879143f4ced67e7dd8b15</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.09</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/56f0de60c6ba8940b650989b4f9930741352ae54</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.09</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/issues/23</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.09</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/6dfc6cc4c846fc9eba05bd64311a84413aa0eec6</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.09</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/6f0cb7b37ca3c01f925bf780b52fcf5e4aacee9c</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.09</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/34e275aa67c15c2d5359534ed8c2315803295a91</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.09</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/5e1c19d553c07166e14c454d9dc14dc1bbbf6988</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.07</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/b21728f67650162f47683c0da4f816e6e4f0d041</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.07</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/cb4219fdf210f23aaebf5b28737940165e84f7aa</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.07</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/996d936fcef230d48ce08d5fdb05af83e7029683</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.07</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/71fbdf9493bd9e9337ed49bd49c02da21c37ae5e</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.07</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/f7c7283ba1dc764d6034f6238a0c2a3d5b177795</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.05</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/1af74a8acf9e95252485e8eea3e4e16fbfa2a0b5</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.05</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/fcc0283cfb07b30b23794ed0ab2188e7e530c1cc</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.05</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/1abee0cc0192d97139472f647f0a26d592f9c0ac</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.05</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/9a3c3ce128a05a532e52f484a74bbbac95b5a986</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.05</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/55e5b57f24772e6953c98a4c638ecd165a77416e</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/dac572c7f1bfc5ce38f8cef66715ba6eac4f5b40</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/75355232a3661a2055771b23aac8b8499f433059</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/75b0d1f4c24178848466101329c9e052cb34e36b</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/2d286d03d7b2304bd25a9234e88f90170673b086</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/3580c06157cbb506727783ecd876a67f9ee2cc75</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/d95c2e33e9b66cd6b1427d8db9d5b9def2f132a2</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/b8d23113368918db1301b46ed6d95aed4e3ae7c7</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.04</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/af958fce8472df4e26fde83c339a57cb41798702</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.03</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/3cd7ac2b3e84f194bf94fcc1de9181c0cf32acb2</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.03</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/77f05989aa784392e707c3fe349340ad8cc89dbf</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.02</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/910f92cd178ab9819684a8f7f55a0bd0778b5d55</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.02</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/1f4c800873679d134073c7bff197ece064cccade</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.02</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/29d426d4d2b7d2d9e43feccc66b9df878e5749e6</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.02</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/204a31aa9dc3802888d1b71846d235d5942fcd91</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/cedc0a82452e81fdeb9fedbfed0e54f0bb4d75e0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/2902c54e11c480b8165f66418aad75b59a6c7f24</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/193ba85a11239f5887124e63e560e3f4cbef9191</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/ea9722251439d6c401d08763dafc5129c081f06d</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/48bd863a8dac5fd3ad886130155a74f140cae60a</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/158211a4d3c58ad8ac976baba4417448adfcf561</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/f3f098e95d54ae992c8d5eca97166f495f66b2bb</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/92b809b7e6e121a92e75084bac7ebd25518046a2</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/a5bddc66664ced686814f485892c185157802a77</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/fb5fb9dd6b1250fccec0a0283f99478e084004e0</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.01</priority>
</url>
<url>
<loc>https://github.com/identd113/hdhr_VCR-AS/commit/0dcb3f5684aa0efe3ed22c7ec879206245ea2aab</loc>
<lastmod>2021-12-16T17:22:06+00:00</lastmod>
<priority>0.00</priority>
</url>
<url>