-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.xml
2013 lines (2013 loc) · 392 KB
/
workspace.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"?>
<project version="4">
<component name="BookmarkManager">
<bookmark url="file://$PROJECT_DIR$/basiapp/models.py" line="13" mnemonic="3" />
</component>
<component name="ChangeListManager">
<list default="true" id="67825ee8-8cd6-4318-86b6-fba05ad840bf" name="Default Changelist" comment="">
<change afterPath="$PROJECT_DIR$/.idea/vcs.xml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/basiapp/forms.py" afterDir="false" />
<change afterPath="$PROJECT_DIR$/basiapp/templates/basiapp/forms.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/basiapp/templates/basiapp/index.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/basiapp/templates/basiapp/login.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/basiapp/urls.py" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../newpro/newpro/faking.py" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../newpro/newpro/myapp/urls.py" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../newpro/newpro/static/css/hello1.css" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../newpro/newpro/templates/hello1.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../../producthunt/producthunt/account/templates/account/home.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../../producthunt/producthunt/account/templates/account/login.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../../producthunt/producthunt/account/templates/account/logoff.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../../producthunt/producthunt/account/templates/account/signup.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../../producthunt/producthunt/account/urls.py" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../../producthunt/producthunt/product/templates/product/home.html" afterDir="false" />
<change afterPath="$PROJECT_DIR$/../../producthunt/producthunt/templates/base.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../.idea/vcs.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../.idea/vcs.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../portfolio/portfolio/settings.py" beforeDir="false" afterPath="$PROJECT_DIR$/../portfolio/portfolio/settings.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../Portfolio-MainProject/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../../Portfolio-MainProject/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/DESCRIPTION.rst" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/INSTALLER" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/LICENSE.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/METADATA" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/RECORD" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/WHEEL" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/entry_points.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/metadata.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Django-2.1.3.dist-info/top_level.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/BdfFontFile.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/BdfFontFile.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/BlpImagePlugin.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/BmpImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/BmpImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/BufrStubImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/BufrStubImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ContainerIO.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ContainerIO.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/CurImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/CurImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/DcxImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/DcxImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/DdsImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/DdsImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/EpsImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/EpsImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FitsStubImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FitsStubImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FliImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FliImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FontFile.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FontFile.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FpxImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FpxImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FtexImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/FtexImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GbrImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GbrImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GdImageFile.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GdImageFile.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GifImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GifImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GimpGradientFile.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GimpGradientFile.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GribStubImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/GribStubImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/Hdf5StubImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/Hdf5StubImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/IcnsImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/IcnsImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/IcoImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/IcoImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/Image.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/Image.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageCms.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageCms.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageColor.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageColor.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageDraw.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageDraw.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageDraw2.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageDraw2.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageEnhance.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageEnhance.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageFile.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageFile.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageFilter.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageFilter.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageFont.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageFont.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageMath.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageMath.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageMode.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageMode.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageMorph.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageMorph.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageOps.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageOps.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImagePalette.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImagePalette.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImagePath.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImagePath.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageQt.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageQt.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageShow.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageShow.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageStat.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageStat.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageTk.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageTk.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageTransform.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageTransform.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageWin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImageWin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImtImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/ImtImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/IptcImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/IptcImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/Jpeg2KImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/Jpeg2KImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/JpegImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/JpegImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/McIdasImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/McIdasImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/MpegImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/MpegImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/MpoImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/MpoImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/MspImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/MspImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PSDraw.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PSDraw.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PalmImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PalmImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PcdImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PcdImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PcxImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PcxImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PdfImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PdfImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PdfParser.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PixarImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PixarImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PngImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PngImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PpmImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PpmImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PsdImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PsdImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PyAccess.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/PyAccess.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/SgiImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/SgiImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/SpiderImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/SpiderImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/SunImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/SunImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/TgaImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/TgaImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/TiffImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/TiffImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/TiffTags.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/TiffTags.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/WalImageFile.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/WalImageFile.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/WebPImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/WebPImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/WmfImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/WmfImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/XVThumbImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/XVThumbImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/XbmImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/XbmImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/XpmImagePlugin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/XpmImagePlugin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_binary.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_binary.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imaging.cp36-win_amd64.pyd" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imaging.cp36-win_amd64.pyd" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingcms.cp36-win_amd64.pyd" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingcms.cp36-win_amd64.pyd" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingft.cp36-win_amd64.pyd" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingft.cp36-win_amd64.pyd" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingmath.cp36-win_amd64.pyd" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingmath.cp36-win_amd64.pyd" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingmorph.cp36-win_amd64.pyd" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingmorph.cp36-win_amd64.pyd" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingtk.cp36-win_amd64.pyd" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_imagingtk.cp36-win_amd64.pyd" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_tkinter_finder.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_tkinter_finder.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_util.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_util.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_version.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_webp.cp36-win_amd64.pyd" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/_webp.cp36-win_amd64.pyd" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/PIL/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Pillow-5.3.0.dist-info/INSTALLER" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Pillow-5.3.0.dist-info/LICENSE.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Pillow-5.3.0.dist-info/METADATA" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Pillow-5.3.0.dist-info/RECORD" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Pillow-5.3.0.dist-info/WHEEL" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Pillow-5.3.0.dist-info/top_level.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/Pillow-5.3.0.dist-info/zip-safe" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/apps/registry.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/apps/registry.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/global_settings.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/global_settings.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ar/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ar/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/az/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/az/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/bg/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/bg/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/bn/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/bn/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/bs/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/bs/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ca/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ca/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cs/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cs/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cy/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/cy/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/da/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/da/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de_CH/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/de_CH/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/el/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/el/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en_AU/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en_AU/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en_GB/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/en_GB/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eo/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eo/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_AR/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_AR/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_MX/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/es_MX/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/et/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/et/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eu/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/eu/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fa/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fa/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fi/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fi/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fr/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fr/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fy/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/fy/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ga/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ga/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gd/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gd/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gl/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/gl/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/he/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/he/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hi/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hi/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hr/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hr/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hu/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/hu/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/id/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/id/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/is/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/is/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/it/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/it/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ja/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ja/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ka/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ka/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/km/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/km/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/kn/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/kn/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ko/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ko/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lt/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lt/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lv/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/lv/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mk/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mk/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ml/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ml/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mn/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/mn/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nb/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nb/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nl/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nl/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nn/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/nn/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pl/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pl/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt_BR/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/pt_BR/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ro/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ro/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ru/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ru/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sk/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sk/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sl/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sl/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sq/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sq/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr_Latn/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sr_Latn/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sv/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/sv/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ta/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/ta/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/te/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/te/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/th/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/th/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/tr/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/tr/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/uk/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/uk/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/vi/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/vi/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hans/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hans/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hant/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/locale/zh_Hant/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/project_template/manage.py-tpl" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/project_template/manage.py-tpl" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/actions.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/actions.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/apps.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/apps.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/checks.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/checks.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/filters.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/filters.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/forms.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/forms.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/helpers.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/helpers.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/models.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/models.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/options.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/options.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/sites.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/sites.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/base.css" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/base.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/forms.css" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/forms.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/responsive.css" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/responsive.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/rtl.css" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/css/rtl.css" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/img/README.txt" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/img/README.txt" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/img/icon-viewlink.svg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/actions.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/actions.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/actions.min.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/actions.min.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/cancel.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/cancel.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.min.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/collapse.min.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/core.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/core.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.min.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.min.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.min.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.min.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/urlify.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/urlify.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/actions.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/actions.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/base.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/base.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/change_form.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/change_form.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/change_form_object_tools.html" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/change_list.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/change_list.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/change_list_object_tools.html" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/index.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/index.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/login.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/login.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/pagination.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/pagination.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/related_widget_wrapper.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/related_widget_wrapper.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/search_form.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/search_form.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/submit_line.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/submit_line.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/clearable_file_input.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/clearable_file_input.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/split_datetime.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/split_datetime.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/url.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/url.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/registration/password_change_form.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/registration/password_change_form.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_form.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_form.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_list.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_list.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_modify.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_modify.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_static.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_static.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_urls.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/admin_urls.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/templatetags/base.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/tests.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/tests.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/views/autocomplete.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/views/autocomplete.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/views/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/views/main.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/widgets.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admin/widgets.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/middleware.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/middleware.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/views.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/admindocs/views.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/admin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/admin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/apps.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/apps.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/backends.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/backends.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/base_user.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/base_user.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/common-passwords.txt.gz" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/common-passwords.txt.gz" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/decorators.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/decorators.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/forms.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/forms.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/hashers.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/hashers.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/management/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/management/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/management/commands/createsuperuser.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/management/commands/createsuperuser.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/mixins.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/mixins.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/models.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/models.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/password_validation.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/password_validation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/tokens.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/tokens.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/views.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/auth/views.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/admin.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/admin.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/fields.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/fields.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/forms.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/forms.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/templatetags/flatpages.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/flatpages/templatetags/flatpages.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/apps.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/apps.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/base/adapter.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/base/adapter.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/base/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/base/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/base/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/base/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/mysql/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/mysql/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/mysql/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/mysql/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/oracle/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/oracle/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/oracle/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/oracle/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/adapter.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/adapter.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/const.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/const.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/pgraster.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/postgis/pgraster.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/fields.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/fields.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/functions.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/functions.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/lookups.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/lookups.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/proxy.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/db/models/proxy.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/forms/fields.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/forms/fields.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/forms/widgets.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/forms/widgets.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/datasource.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/datasource.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/driver.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/driver.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/envelope.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/envelope.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/error.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/error.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/feature.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/feature.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/field.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/field.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/geometries.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/geometries.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/layer.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/layer.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/band.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/band.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/const.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/const.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/source.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/gdal/raster/source.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geoip2/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geoip2/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geoip2/resources.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geoip2/resources.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/geometry.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/geometry.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/linestring.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/linestring.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/polygon.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/polygon.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/io.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/io.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/static/gis/js/OLMapWidget.js" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/static/gis/js/OLMapWidget.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/utils/ogrinspect.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/utils/ogrinspect.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/utils/srs.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/gis/utils/srs.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/templatetags/humanize.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/humanize/templatetags/humanize.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/storage/cookie.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/storage/cookie.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/storage/fallback.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/storage/fallback.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/messages/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/aggregates/general.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/aggregates/general.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/apps.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/apps.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/fields/array.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/fields/array.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/fields/hstore.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/fields/hstore.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/fields/jsonb.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/fields/jsonb.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/fields/mixins.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/forms/array.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/forms/array.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/forms/hstore.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/forms/hstore.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/forms/jsonb.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/forms/jsonb.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/indexes.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/indexes.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.mo" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.po" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.po" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/lookups.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/lookups.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/validators.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/postgres/validators.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/cached_db.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/cached_db.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/db.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/db.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/file.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/backends/file.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.po" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/middleware.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sessions/middleware.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sitemaps/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sitemaps/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.mo" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.mo" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.po" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.po" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.mo" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.po" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/handlers.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/handlers.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/storage.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/storage.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/templatetags/staticfiles.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/templatetags/staticfiles.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/contrib/staticfiles/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/db.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/db.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/dummy.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/dummy.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/filebased.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/filebased.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/locmem.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/locmem.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/memcached.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/backends/memcached.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/cache/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/checks/registry.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/checks/registry.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/checks/templates.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/checks/templates.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/locks.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/locks.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/storage.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/storage.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/temp.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/temp.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/uploadedfile.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/uploadedfile.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/uploadhandler.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/files/uploadhandler.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/handlers/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/handlers/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/handlers/exception.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/handlers/exception.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/handlers/wsgi.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/handlers/wsgi.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/mail/message.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/mail/message.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/color.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/color.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/compilemessages.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/compilemessages.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/createcachetable.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/createcachetable.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/dumpdata.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/dumpdata.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/inspectdb.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/inspectdb.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/loaddata.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/loaddata.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/makemessages.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/makemessages.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/makemigrations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/makemigrations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/migrate.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/migrate.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/runserver.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/runserver.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/shell.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/shell.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/squashmigrations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/squashmigrations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/test.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/commands/test.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/templates.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/templates.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/management/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/paginator.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/paginator.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/python.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/python.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/pyyaml.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/pyyaml.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/xml_serializer.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/serializers/xml_serializer.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/servers/basehttp.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/servers/basehttp.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/signing.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/signing.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/validators.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/core/validators.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/creation.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/creation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/schema.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/base/schema.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/creation.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/creation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/schema.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/mysql/schema.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/compiler.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/compiler.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/creation.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/creation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/schema.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/schema.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/oracle/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/client.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/client.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/creation.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/creation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/postgresql/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/creation.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/creation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/features.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/features.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/introspection.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/introspection.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/operations.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/operations.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/schema.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/sqlite3/schema.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/backends/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/autodetector.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/autodetector.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/exceptions.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/exceptions.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/executor.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/executor.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/graph.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/graph.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/loader.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/loader.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/migration.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/migration.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/operations/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/operations/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/operations/fields.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/operations/fields.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/operations/models.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/operations/models.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/questioner.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/questioner.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/serializer.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/serializer.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/state.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/state.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/topological_sort.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/topological_sort.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/writer.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/migrations/writer.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/aggregates.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/aggregates.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/deletion.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/deletion.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/expressions.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/expressions.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/files.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/files.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/related.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/related.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/related_descriptors.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/fields/related_descriptors.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/functions/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/functions/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/functions/comparison.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/functions/datetime.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/functions/datetime.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/functions/text.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/indexes.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/indexes.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/lookups.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/lookups.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/manager.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/manager.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/options.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/options.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/query.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/query.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/query_utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/query_utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/signals.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/signals.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/compiler.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/compiler.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/constants.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/constants.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/query.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/query.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/subqueries.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/subqueries.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/where.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/models/sql/where.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/db/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/dispatch/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/dispatch/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/dispatch/dispatcher.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/dispatch/dispatcher.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/boundfield.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/boundfield.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/fields.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/fields.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/forms.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/forms.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/formsets.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/formsets.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/clearable_file_input.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/clearable_file_input.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input_option.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input_option.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/models.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/models.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/renderers.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/renderers.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/templates/django/forms/widgets/clearable_file_input.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/templates/django/forms/widgets/clearable_file_input.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/templates/django/forms/widgets/input.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/templates/django/forms/widgets/input.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/templates/django/forms/widgets/input_option.html" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/templates/django/forms/widgets/input_option.html" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/widgets.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/forms/widgets.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/cookie.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/cookie.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/multipartparser.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/multipartparser.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/request.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/request.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/response.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/http/response.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/cache.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/cache.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/common.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/common.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/csrf.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/csrf.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/http.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/http.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/locale.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/locale.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/security.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/middleware/security.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/shortcuts.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/shortcuts.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/backends/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/backends/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/backends/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/backends/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/context.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/context.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/defaultfilters.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/defaultfilters.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/defaulttags.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/defaulttags.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/loader_tags.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/loader_tags.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/loaders/cached.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/loaders/cached.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/template/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/templatetags/i18n.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/templatetags/i18n.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/templatetags/l10n.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/templatetags/l10n.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/client.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/client.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/html.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/html.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/runner.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/runner.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/testcases.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/testcases.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/utils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/test/utils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/urls/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/urls/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/urls/converters.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/urls/converters.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/urls/resolvers.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/urls/resolvers.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/archive.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/archive.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/autoreload.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/autoreload.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/cache.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/cache.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/crypto.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/crypto.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/datastructures.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/datastructures.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/dateparse.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/dateparse.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/dates.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/dates.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/datetime_safe.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/datetime_safe.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/decorators.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/decorators.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/deprecation.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/deprecation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/duration.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/duration.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/feedgenerator.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/feedgenerator.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/formats.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/formats.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/functional.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/functional.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/hashable.py" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/html.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/html.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/http.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/http.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/log.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/log.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/module_loading.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/module_loading.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/numberformat.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/numberformat.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/regex_helper.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/regex_helper.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/text.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/text.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/timesince.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/timesince.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/timezone.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/timezone.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/template.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/template.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/trans_null.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/trans_null.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/trans_real.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/translation/trans_real.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/tree.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/tree.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/version.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/version.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/xmlutils.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/utils/xmlutils.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/debug.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/debug.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/decorators/http.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/decorators/http.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/base.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/base.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/dates.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/dates.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/detail.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/detail.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/edit.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/edit.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/list.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/generic/list.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/i18n.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/i18n.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/static.py" beforeDir="false" afterPath="$PROJECT_DIR$/../../myVEnv/Lib/site-packages/django/views/static.py" afterDir="false" />