-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx_redirects.txt
3159 lines (3158 loc) · 185 KB
/
nginx_redirects.txt
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
location '/Bystroushaak s blog' {
return 301 '/';
}
location '/Bystroushaak s blog/Changelog' {
return 301 '/Changelog';
}
location '/Bystroushaak s blog/Interesting articles' {
return 301 '/Interesting_articles';
}
location '/Bystroushaak s blog/Changelog.html' {
return 301 '/Changelog.html';
}
location '/Bystroushaak s blog/English section.html' {
return 301 '/English_section.html';
}
location '/Bystroushaak s blog/Czech section.html' {
return 301 '/cz/';
}
location '/Bystroushaak s blog/index.html' {
return 301 '/index.html';
}
location '/Bystroushaak s blog/Interesting articles.html' {
return 301 '/Interesting_articles.html';
}
location '/Bystroushaak s blog/style.css' {
return 301 '/style.css';
}
location '/Bystroushaak s blog/Changelog/Beauty of experimental fusion reactor.html' {
return 301 '/Changelog/Beauty_of_experimental_fusion_reactor.html';
}
location '/Bystroushaak s blog/Changelog/First part of the series about Self programming la.html' {
return 301 '/Changelog/First_part_of_the_series_about_Self_programming_la.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 2.html' {
return 301 '/Changelog/Untitled_2.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 8.html' {
return 301 '/Changelog/Untitled_8.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 5.html' {
return 301 '/Changelog/Untitled_5.html';
}
location '/Bystroushaak s blog/Changelog/First post in the Weekly update series.html' {
return 301 '/Changelog/First_post_in_the_Weekly_update_series.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 11.html' {
return 301 '/Changelog/Untitled_11.html';
}
location '/Bystroushaak s blog/Changelog/Article about performance optimizations in my pet .html' {
return 301 '/Changelog/Article_about_performance_optimizations_in_my_pet_.html';
}
location '/Bystroushaak s blog/Changelog/I ve been on the LVR 15 nuclear reactor in e And I.html' {
return 301 '/Changelog/I_ve_been_on_the_LVR_15_nuclear_reactor_in_e_And_I.html';
}
location '/Bystroushaak s blog/Changelog/Dizerta n pr ce v podob knihy Moldable tools konkr.html' {
return 301 '/Changelog/Dizerta_n_pr_ce_v_podob_knihy_Moldable_tools_konkr.html';
}
location '/Bystroushaak s blog/Changelog/Added I am strange loop.html' {
return 301 '/Changelog/Added_I_am_strange_loop.html';
}
location '/Bystroushaak s blog/Changelog/Second episode of the series about Self programmin.html' {
return 301 '/Changelog/Second_episode_of_the_series_about_Self_programmin.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 9.html' {
return 301 '/Changelog/Untitled_9.html';
}
location '/Bystroushaak s blog/Changelog/Untitled.html' {
return 301 '/Changelog/Untitled.html';
}
location '/Bystroushaak s blog/Changelog/Third episode of the series about Self programming.html' {
return 301 '/Changelog/Third_episode_of_the_series_about_Self_programming.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 10.html' {
return 301 '/Changelog/Untitled_10.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 7.html' {
return 301 '/Changelog/Untitled_7.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 13.html' {
return 301 '/Changelog/Untitled_13.html';
}
location '/Bystroushaak s blog/Changelog/The dissertation in the form of a book called Mold.html' {
return 301 '/Changelog/The_dissertation_in_the_form_of_a_book_called_Mold.html';
}
location '/Bystroushaak s blog/Changelog/This time it is about bytecodes and literals and d.html' {
return 301 '/Changelog/This_time_it_is_about_bytecodes_and_literals_and_d.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 14.html' {
return 301 '/Changelog/Untitled_14.html';
}
location '/Bystroushaak s blog/Changelog/index.html' {
return 301 '/Changelog/';
}
location '/Bystroushaak s blog/Changelog/Star s rie p enesena z m ch star ch webov ch str n.html' {
return 301 '/Changelog/Star_s_rie_p_enesena_z_m_ch_star_ch_webov_ch_str_n.html';
}
location '/Bystroushaak s blog/Changelog/I ve added some information about license and diff.html' {
return 301 '/Changelog/I_ve_added_some_information_about_license_and_diff.html';
}
location '/Bystroushaak s blog/Changelog/Str nka s knihami kter jsem vypustil mezi lidi.html' {
return 301 '/Changelog/Str_nka_s_knihami_kter_jsem_vypustil_mezi_lidi.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 1.html' {
return 301 '/Changelog/Untitled_1.html';
}
location '/Bystroushaak s blog/Changelog/Fourth and last episode in the series about the Se.html' {
return 301 '/Changelog/Fourth_and_last_episode_in_the_series_about_the_Se.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 3.html' {
return 301 '/Changelog/Untitled_3.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 12.html' {
return 301 '/Changelog/Untitled_12.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 6.html' {
return 301 '/Changelog/Untitled_6.html';
}
location '/Bystroushaak s blog/Changelog/Untitled 4.html' {
return 301 '/Changelog/Untitled_4.html';
}
location '/Bystroushaak s blog/Interesting articles/https arstechnica com gaming 2019 05 one week with.html' {
return 301 '/Interesting_articles/https_arstechnica_com_gaming_2019_05_one_week_with.html';
}
location '/Bystroushaak s blog/Interesting articles/https www nayuki io page creating a qr code step b.html' {
return 301 '/Interesting_articles/https_www_nayuki_io_page_creating_a_qr_code_step_b.html';
}
location '/Bystroushaak s blog/Interesting articles/https slatestarcodex com 2017 05 26 the atomic bom.html' {
return 301 '/Interesting_articles/https_slatestarcodex_com_2017_05_26_the_atomic_bom.html';
}
location '/Bystroushaak s blog/Interesting articles/https karpathy github io 2019 04 25 recipe.html' {
return 301 '/Interesting_articles/https_karpathy_github_io_2019_04_25_recipe.html';
}
location '/Bystroushaak s blog/Interesting articles/https meaningness com geeks mops sociopaths.html' {
return 301 '/Interesting_articles/https_meaningness_com_geeks_mops_sociopaths.html';
}
location '/Bystroushaak s blog/Interesting articles/https kevinlynagh com notes pricing niche products.html' {
return 301 '/Interesting_articles/https_kevinlynagh_com_notes_pricing_niche_products.html';
}
location '/Bystroushaak s blog/Interesting articles/https hauleth dev post eli5 ownership.html' {
return 301 '/Interesting_articles/https_hauleth_dev_post_eli5_ownership.html';
}
location '/Bystroushaak s blog/Interesting articles/https www theatlantic com technology archive 2017 .html' {
return 301 '/Interesting_articles/https_www_theatlantic_com_technology_archive_2017_.html';
}
location '/Bystroushaak s blog/Interesting articles/https fs blog 2018 10 long game.html' {
return 301 '/Interesting_articles/https_fs_blog_2018_10_long_game.html';
}
location '/Bystroushaak s blog/Interesting articles/https fs blog category mental models.html' {
return 301 '/Interesting_articles/https_fs_blog_category_mental_models.html';
}
location '/Bystroushaak s blog/Interesting articles/http amontalenti com 2014 11 02 clojonic.html' {
return 301 '/Interesting_articles/http_amontalenti_com_2014_11_02_clojonic.html';
}
location '/Bystroushaak s blog/Interesting articles/https vorpus org blog why im not collaborating wit.html' {
return 301 '/Interesting_articles/https_vorpus_org_blog_why_im_not_collaborating_wit.html';
}
location '/Bystroushaak s blog/Interesting articles/https www inkandswitch com capstone manuscript htm.html' {
return 301 '/Interesting_articles/https_www_inkandswitch_com_capstone_manuscript_htm.html';
}
location '/Bystroushaak s blog/Interesting articles/https blog metaobject com 2019 11 what alan kay go.html' {
return 301 '/Interesting_articles/https_blog_metaobject_com_2019_11_what_alan_kay_go.html';
}
location '/Bystroushaak s blog/Interesting articles/https medium com marekkcichy does ai have a dirty .html' {
return 301 '/Interesting_articles/https_medium_com_marekkcichy_does_ai_have_a_dirty_.html';
}
location '/Bystroushaak s blog/Interesting articles/https riceo me posts software engineering lessons .html' {
return 301 '/Interesting_articles/https_riceo_me_posts_software_engineering_lessons_.html';
}
location '/Bystroushaak s blog/Interesting articles/https divan dev posts visual_programming_go.html' {
return 301 '/Interesting_articles/https_divan_dev_posts_visual_programming_go.html';
}
location '/Bystroushaak s blog/Interesting articles/https mtlynch io status updates to nobody.html' {
return 301 '/Interesting_articles/https_mtlynch_io_status_updates_to_nobody.html';
}
location '/Bystroushaak s blog/Interesting articles/https aiweirdness com post 172894792687 when algor.html' {
return 301 '/Interesting_articles/https_aiweirdness_com_post_172894792687_when_algor.html';
}
location '/Bystroushaak s blog/Interesting articles/https www rifters com crawl p 8169.html' {
return 301 '/Interesting_articles/https_www_rifters_com_crawl_p_8169.html';
}
location '/Bystroushaak s blog/Interesting articles/https nakedsecurity sophos com 2019 10 17 pen test.html' {
return 301 '/Interesting_articles/https_nakedsecurity_sophos_com_2019_10_17_pen_test.html';
}
location '/Bystroushaak s blog/Interesting articles/https blog stephenwolfram com 2019 05 what weve bu.html' {
return 301 '/Interesting_articles/https_blog_stephenwolfram_com_2019_05_what_weve_bu.html';
}
location '/Bystroushaak s blog/Interesting articles/https people kernel org monsieuricon patches carve.html' {
return 301 '/Interesting_articles/https_people_kernel_org_monsieuricon_patches_carve.html';
}
location '/Bystroushaak s blog/Interesting articles/https ai googleblog com 2019 08 an interactive aut.html' {
return 301 '/Interesting_articles/https_ai_googleblog_com_2019_08_an_interactive_aut.html';
}
location '/Bystroushaak s blog/Interesting articles/https lobste rs s cggv9e cidco_mailstation_as_z80_.html' {
return 301 '/Interesting_articles/https_lobste_rs_s_cggv9e_cidco_mailstation_as_z80_.html';
}
location '/Bystroushaak s blog/Interesting articles/http www paulgraham com genius html.html' {
return 301 '/Interesting_articles/http_www_paulgraham_com_genius_html.html';
}
location '/Bystroushaak s blog/Interesting articles/https cleantechnica com 2019 08 26 tesla vertical .html' {
return 301 '/Interesting_articles/https_cleantechnica_com_2019_08_26_tesla_vertical_.html';
}
location '/Bystroushaak s blog/Interesting articles/https tashian com articles print out your code.html' {
return 301 '/Interesting_articles/https_tashian_com_articles_print_out_your_code.html';
}
location '/Bystroushaak s blog/Interesting articles/https queue acm org detail cfm id 3212479.html' {
return 301 '/Interesting_articles/https_queue_acm_org_detail_cfm_id_3212479.html';
}
location '/Bystroushaak s blog/Interesting articles/index.html' {
return 301 '/Interesting_articles/';
}
location '/Bystroushaak s blog/Interesting articles/https edition cnn com 2019 04 19 asia thai sea hom.html' {
return 301 '/Interesting_articles/https_edition_cnn_com_2019_04_19_asia_thai_sea_hom.html';
}
location '/Bystroushaak s blog/Interesting articles/https ovid github io articles alan kay and oo prog.html' {
return 301 '/Interesting_articles/https_ovid_github_io_articles_alan_kay_and_oo_prog.html';
}
location '/Bystroushaak s blog/Interesting articles/http www loper os org p 3256.html' {
return 301 '/Interesting_articles/http_www_loper_os_org_p_3256.html';
}
location '/Bystroushaak s blog/Interesting articles/http web archive org save http zvedavec org koment.html' {
return 301 '/Interesting_articles/http_web_archive_org_save_http_zvedavec_org_koment.html';
}
location '/Bystroushaak s blog/Interesting articles/https apenwarr ca log 20190819.html' {
return 301 '/Interesting_articles/https_apenwarr_ca_log_20190819.html';
}
location '/Bystroushaak s blog/Czech section/umami youtube kan l' {
return 301 '/cz/umami_youtube_kan_l';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem' {
return 301 '/cz/Jak_se_st_t_program_torem';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy' {
return 301 '/cz/Vypu_t_n_knihy';
}
location '/Bystroushaak s blog/Czech section/Library at Mount Char' {
return 301 '/cz/Library_at_Mount_Char';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu' {
return 301 '/cz/Seri_l_o_Selfu';
}
location '/Bystroushaak s blog/Czech section/Um r ab ko ano a drsn' {
return 301 '/cz/Um_r_ab_ko_ano_a_drsn';
}
location '/Bystroushaak s blog/Czech section/Pov dky' {
return 301 '/cz/Pov_dky';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk';
}
location '/Bystroushaak s blog/Czech section/Program torova kritika chyb j c struktury opera n ' {
return 301 '/cz/Program_torova_kritika_chyb_j_c_struktury_opera_n_';
}
location '/Bystroushaak s blog/Czech section/Kni n recenze Firefall Slepozrakost a Echopraxie.html' {
return 301 '/cz/Knihy/Firefall_Slepozrakost_a_Echopraxie.html';
}
location '/Bystroushaak s blog/Czech section/Moldable tools kniha a hnut.html' {
return 301 '/cz/Moldable_tools_kniha_a_hnut.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem.html' {
return 301 '/cz/Jak_se_st_t_program_torem.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t hackerem.html' {
return 301 '/cz/Jak_se_st_t_hackerem.html';
}
location '/Bystroushaak s blog/Czech section/Pov dky.html' {
return 301 '/cz/Pov_dky.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu.html' {
return 301 '/cz/Seri_l_o_Selfu.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy.html' {
return 301 '/cz/Vypu_t_n_knihy.html';
}
location '/Bystroushaak s blog/Czech section/Um r ab ko ano a drsn.html' {
return 301 '/cz/Um_r_ab_ko_ano_a_drsn.html';
}
location '/Bystroushaak s blog/Czech section/Library at Mount Char.html' {
return 301 '/cz/Library_at_Mount_Char.html';
}
location '/Bystroushaak s blog/Czech section/index.html' {
return 301 '/cz/';
}
location '/Bystroushaak s blog/Czech section/Program torova kritika chyb j c struktury opera n .html' {
return 301 '/cz/Program_torova_kritika_chyb_j_c_struktury_opera_n_.html';
}
location '/Bystroushaak s blog/Czech section/umami youtube kan l.html' {
return 301 '/cz/umami_youtube_kan_l.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Neu te se do za tku plej du jazyk' {
return 301 '/cz/Jak_se_st_t_program_torem/Neu_te_se_do_za_tku_plej_du_jazyk';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Je t jednou o motivaci.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Je_t_jednou_o_motivaci.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Scriptovac versus kompilovan jazyky.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Scriptovac_versus_kompilovan_jazyky.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/index.html' {
return 301 '/cz/Jak_se_st_t_program_torem/';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Neu te se do za tku plej du jazyk.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Neu_te_se_do_za_tku_plej_du_jazyk.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/Obvykl kl vesov zkratky pro posunut' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/Obvykl_kl_vesov_zkratky_pro_posunut';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/Obvykl kl vesov zkratky pro posunut.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/Obvykl_kl_vesov_zkratky_pro_posunut.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/index.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/Obvykl kl vesov zkratky pro posunut/Dolu.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/Obvykl_kl_vesov_zkratky_pro_posunut/Dolu.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/Obvykl kl vesov zkratky pro posunut/Doprava.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/Obvykl_kl_vesov_zkratky_pro_posunut/Doprava.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/Obvykl kl vesov zkratky pro posunut/Nahoru.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/Obvykl_kl_vesov_zkratky_pro_posunut/Nahoru.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/Obvykl kl vesov zkratky pro posunut/Doleva.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/Obvykl_kl_vesov_zkratky_pro_posunut/Doleva.html';
}
location '/Bystroushaak s blog/Czech section/Jak se st t program torem/Editor/Obvykl kl vesov zkratky pro posunut/index.html' {
return 301 '/cz/Jak_se_st_t_program_torem/Editor/Obvykl_kl_vesov_zkratky_pro_posunut/';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/index.html' {
return 301 '/cz/Vypu_t_n_knihy/';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Pr ce na d lku.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Pr_ce_na_d_lku.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/V echno o nsk kuchyni.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/V_echno_o_nsk_kuchyni.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Alej proklet.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Alej_proklet.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/B l tes k.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/B_l_tes_k.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/K dla noci.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/K_dla_noci.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Eurolingua English 2.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Eurolingua_English_2.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Program tor.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Program_tor.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Python.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Python.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Virtu ln sv tlo.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Virtu_ln_sv_tlo.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/iv syn bd c ho.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/iv_syn_bd_c_ho.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Essential Grammar in Use.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Essential_Grammar_in_Use.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Freedom.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Freedom.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Vlkodlaci.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Vlkodlaci.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Zem sl dil.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Zem_sl_dil.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Speak dolphin.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Speak_dolphin.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/V echny p rty zejt ka.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/V_echny_p_rty_zejt_ka.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Barevn matematika.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Barevn_matematika.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/D tstv.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/D_tstv.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Metal made flesh.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Metal_made_flesh.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Vocabulary practice.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Vocabulary_practice.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Dekompozice a rekurzivn algoritmy.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Dekompozice_a_rekurzivn_algoritmy.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Zakuti v oceli.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Zakuti_v_oceli.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Kedrigern I.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Kedrigern_I.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Assembler pro PC.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Assembler_pro_PC.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Agent du.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Agent_du.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Orbus.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Orbus.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Um n programov n v Unixu.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Um_n_programov_n_v_Unixu.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Um l inteligence Rozpozn v n vzor v dynamick ch da.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Um_l_inteligence_Rozpozn_v_n_vzor_v_dynamick_ch_da.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Self handbook 1.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Self_handbook_1.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Programovac jazyk C.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Programovac_jazyk_C.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Metal made flesh Blood and oil.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Metal_made_flesh_Blood_and_oil.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Po ta ov viry.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Po_ta_ov_viry.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Pragmatic thinking learning.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Pragmatic_thinking_learning.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Exil.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Exil.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Self handbook.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Self_handbook.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Evolu n hardware.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Evolu_n_hardware.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/V kosmonaut.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/V_kosmonaut.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Po ta ov s t.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Po_ta_ov_s_t.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Vyl v n krve.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Vyl_v_n_krve.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Metal made flesh Vegeance.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Metal_made_flesh_Vegeance.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Daemon 2.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Daemon_2.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Unix V.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Unix_V.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Rozpozn v n vzor.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Rozpozn_v_n_vzor.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Technik.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Technik.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Str nky sv ta.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Str_nky_sv_ta.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Ghost in the Shell 2 Innocence After the long good.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Ghost_in_the_Shell_2_Innocence_After_the_long_good.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Daemon.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Daemon.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Kniha o slech.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Kniha_o_slech.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/pinav pr ce.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/pinav_pr_ce.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Dokonal k d.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Dokonal_k_d.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/JAZYKY C A C.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/JAZYKY_C_A_C.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Mo nosti transgrese.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Mo_nosti_transgrese.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Hrani n v lka.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Hrani_n_v_lka.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/V c ne est.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/V_c_ne_est.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Daemon 1.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Daemon_1.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Cracking bez tajemstv.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Cracking_bez_tajemstv.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Tesla.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Tesla.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Pharo by example.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Pharo_by_example.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Mal bratr.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Mal_bratr.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Sv tov n bo enstv taoismus.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Sv_tov_n_bo_enstv_taoismus.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Packet Radio od A a skoro do Z.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Packet_Radio_od_A_a_skoro_do_Z.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Eurolingua English 3.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Eurolingua_English_3.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Jak poznat ps du i.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Jak_poznat_ps_du_i.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Bod zlomu.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Bod_zlomu.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Logikomiks.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Logikomiks.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/St n korpiona.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/St_n_korpiona.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Um l inteligence hrozba nebo nad je.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Um_l_inteligence_hrozba_nebo_nad_je.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/index.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Martin Eden.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Martin_Eden.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Lisp as the Maxwells equations of software.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Lisp_as_the_Maxwells_equations_of_software.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Pharo by example 1.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Pharo_by_example_1.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Pevnost Drakonis.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Pevnost_Drakonis.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/The D Programming Language.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/The_D_Programming_Language.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Eurolingua English 1.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Eurolingua_English_1.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Idoru.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Idoru.html';
}
location '/Bystroushaak s blog/Czech section/Vypu t n knihy/Tabulka knih/Kyberie.html' {
return 301 '/cz/Vypu_t_n_knihy/Tabulka_knih/Kyberie.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l prvn prost .html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_prvn_prost_.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l t et debugg.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_t_et_debugg.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/index.html' {
return 301 '/cz/Seri_l_o_Selfu/';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l tvrt komuni.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_tvrt_komuni.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/index.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy/at Put.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy/at_Put.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy/at.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy/at.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy/addAll.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy/addAll.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy/do.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy/do.html';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy/index.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy/';
}
location '/Bystroushaak s blog/Czech section/Seri l o Selfu/Prost ed a programovac jazyk Selfu d l druh jazyk/Nejd le it j zpr vy/add.html' {
return 301 '/cz/Seri_l_o_Selfu/Prost_ed_a_programovac_jazyk_Selfu_d_l_druh_jazyk/Nejd_le_it_j_zpr_vy/add.html';
}
location '/Bystroushaak s blog/Czech section/Pov dky/N hodn ak n sc na.html' {
return 301 '/cz/Pov_dky/N_hodn_ak_n_sc_na.html';
}
location '/Bystroushaak s blog/Czech section/Pov dky/Do dr ky koleno.html' {
return 301 '/cz/Pov_dky/Do_dr_ky_koleno.html';
}
location '/Bystroushaak s blog/Czech section/Pov dky/index.html' {
return 301 '/cz/Pov_dky/';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 5 Bajtk d a liter ly' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_5_Bajtk_d_a_liter_ly';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 2 Lexer' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_2_Lexer';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 4 Objektov layout' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_4_Objektov_layout';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 3 Parser a AST' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_3_Parser_a_AST';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 3 5 RPython' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_3_5_RPython';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 3 Parser a AST.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_3_Parser_a_AST.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 2 Lexer.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_2_Lexer.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 3 5 RPython.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_3_5_RPython.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 4 Objektov layout.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_4_Objektov_layout.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 1 Motivace.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_1_Motivace.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 6 Kompil tor AST do b.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_6_Kompil_tor_AST_do_b.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/index.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 5 Bajtk d a liter ly.html' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_5_Bajtk_d_a_liter_ly.html';
}
location '/Bystroushaak s blog/Czech section/Jak se p e programovac jazyk/Jak se p e programovac jazyk 3 5 RPython/compilation.gif' {
return 301 '/cz/Jak_se_p_e_programovac_jazyk/Jak_se_p_e_programovac_jazyk_3_5_RPython/compilation.gif';
}
location '/Bystroushaak s blog/English section/Just a list of good programming memes' {
return 301 '/en/Just_a_list_of_good_programming_memes';
}
location '/Bystroushaak s blog/English section/tinySelf' {
return 301 '/en/tinySelf';
}
location '/Bystroushaak s blog/English section/LVR 15 research reactor near Prague' {
return 301 '/en/LVR_15_research_reactor_near_Prague';
}
location '/Bystroushaak s blog/English section/The beauty of a fusion reactor' {
return 301 '/en/The_beauty_of_a_fusion_reactor';
}
location '/Bystroushaak s blog/English section/Weekly updates' {
return 301 '/en/Weekly_updates';
}
location '/Bystroushaak s blog/English section/Moldable tools a book and a movement' {
return 301 '/en/Moldable_tools_a_book_and_a_movement';
}
location '/Bystroushaak s blog/English section/Series about Self' {
return 301 '/en/Series_about_Self';
}
location '/Bystroushaak s blog/English section/Practical experiments' {
return 301 '/en/Practical_experiments';
}
location '/Bystroushaak s blog/English section/Practical experiments.html' {
return 301 '/en/Practical_experiments.html';
}
location '/Bystroushaak s blog/English section/Disadvantages of notion so.html' {
return 301 '/en/Disadvantages_of_notion_so.html';
}
location '/Bystroushaak s blog/English section/Microblog Stephen Wolfram s infrastructure.html' {
return 301 '/en/Microblog_Stephen_Wolfram_s_infrastructure.html';
}
location '/Bystroushaak s blog/English section/The beauty of a fusion reactor.html' {
return 301 '/en/The_beauty_of_a_fusion_reactor.html';
}
location '/Bystroushaak s blog/English section/Series about Self.html' {
return 301 '/en/Series_about_Self.html';
}
location '/Bystroushaak s blog/English section/tinySelf.html' {
return 301 '/en/tinySelf.html';
}
location '/Bystroushaak s blog/English section/Books that changed my point of view.html' {
return 301 '/en/Books_that_changed_my_point_of_view.html';
}
location '/Bystroushaak s blog/English section/Sam Harris Jordan Peterson what just happened.html' {
return 301 '/en/Sam_Harris_Jordan_Peterson_what_just_happened.html';
}
location '/Bystroushaak s blog/English section/LVR 15 research reactor near Prague.html' {
return 301 '/en/LVR_15_research_reactor_near_Prague.html';
}
location '/Bystroushaak s blog/English section/index.html' {
return 301 '/en/';
}
location '/Bystroushaak s blog/English section/Moldable tools a book and a movement.html' {
return 301 '/en/Moldable_tools_a_book_and_a_movement.html';
}
location '/Bystroushaak s blog/English section/Just a list of good programming memes.html' {
return 301 '/en/Just_a_list_of_good_programming_memes.html';
}
location '/Bystroushaak s blog/English section/Weekly updates.html' {
return 301 '/en/Weekly_updates.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Speedups of the interpreter 2019 1' {
return 301 '/en/tinySelf/Speedups_of_the_interpreter_2019_1';
}
location '/Bystroushaak s blog/English section/tinySelf/tinySelf performance gains 2019 4' {
return 301 '/en/tinySelf/tinySelf_performance_gains_2019_4';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06';
}
location '/Bystroushaak s blog/English section/tinySelf/Speedups of the interpreter 2019 1.html' {
return 301 '/en/tinySelf/Speedups_of_the_interpreter_2019_1.html';
}
location '/Bystroushaak s blog/English section/tinySelf/tinySelf performance gains 2019 4.html' {
return 301 '/en/tinySelf/tinySelf_performance_gains_2019_4.html';
}
location '/Bystroushaak s blog/English section/tinySelf/index.html' {
return 301 '/en/tinySelf/';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Speedups of the interpreter 2019 1/callgrind.out.2530.txt' {
return 301 '/en/tinySelf/Speedups_of_the_interpreter_2019_1/callgrind.out.2530.txt';
}
location '/Bystroushaak s blog/English section/tinySelf/tinySelf performance gains 2019 4/callgrind.out.16306' {
return 301 '/en/tinySelf/tinySelf_performance_gains_2019_4/callgrind.out.16306';
}
location '/Bystroushaak s blog/English section/tinySelf/tinySelf performance gains 2019 4/different_kind_of_lightweightdict.txt' {
return 301 '/en/tinySelf/tinySelf_performance_gains_2019_4/different_kind_of_lightweightdict.txt';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/1 000 000 while cycles' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/1_000_000_while_cycles';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/10 000 while cycles' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/10_000_while_cycles';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/10 000 while cycles.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/10_000_while_cycles.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/1 000 000 while cycles.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/1_000_000_while_cycles.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/index.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/1 000 000 while cycles/Interpreted under Pypy 2 7.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/1_000_000_while_cycles/Interpreted_under_Pypy_2_7.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/1 000 000 while cycles/index.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/1_000_000_while_cycles/';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/1 000 000 while cycles/RPython without JIT.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/1_000_000_while_cycles/RPython_without_JIT.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/1 000 000 while cycles/Interpreted under Python 2 7.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/1_000_000_while_cycles/Interpreted_under_Python_2_7.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/10 000 while cycles/Interpreted under Pypy 2 7.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/10_000_while_cycles/Interpreted_under_Pypy_2_7.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/10 000 while cycles/index.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/10_000_while_cycles/';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/10 000 while cycles/RPython without JIT.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/10_000_while_cycles/RPython_without_JIT.html';
}
location '/Bystroushaak s blog/English section/tinySelf/Simple while benchmark 2019 01 06/10 000 while cycles/Interpreted under Python 2 7.html' {
return 301 '/en/tinySelf/Simple_while_benchmark_2019_01_06/10_000_while_cycles/Interpreted_under_Python_2_7.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 15 Finally the bug was found' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_15_Finally_the_bug_was_found';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 08 Bugs and a lot of stress' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_08_Bugs_and_a_lot_of_stress';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 22 The bug was finally fixed' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_22_The_bug_was_finally_fixed';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 11 10 Quiet and slow progress' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_11_10_Quiet_and_slow_progress';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 11 24 Mental refactorings and' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_11_24_Mental_refactorings_and';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 29 I feel tired all the time' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_29_I_feel_tired_all_the_time';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 10 27 Slacking hard' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_10_27_Slacking_hard';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 12 08 Projects and work organ' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_12_08_Projects_and_work_organ';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 10 13 I was really busy' {
return 301 '/en/Weekly_updates/Weekly_update_2019_10_13_I_was_really_busy';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 01 What I am working on' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_01_What_I_am_working_on';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 01 What I am working on.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_01_What_I_am_working_on.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 29 I feel tired all the time.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_29_I_feel_tired_all_the_time.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 22 The bug was finally fixed.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_22_The_bug_was_finally_fixed.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 10 27 Slacking hard.html' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_10_27_Slacking_hard.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 10 06 Slowly ramping up to wher.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_10_06_Slowly_ramping_up_to_wher.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 11 10 Quiet and slow progress.html' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_11_10_Quiet_and_slow_progress.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 10 13 I was really busy.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_10_13_I_was_really_busy.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 08 Bugs and a lot of stress.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_08_Bugs_and_a_lot_of_stress.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 15 Finally the bug was found.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_15_Finally_the_bug_was_found.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/index.html' {
return 301 '/en/Weekly_updates/';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 12 08 Projects and work organ.html' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_12_08_Projects_and_work_organ.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Biweekly update 2019 11 24 Mental refactorings and.html' {
return 301 '/en/Weekly_updates/Biweekly_update_2019_11_24_Mental_refactorings_and.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 08 Bugs and a lot of stress/Articles read during 2019 09 02 2019 09 08.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_08_Bugs_and_a_lot_of_stress/Articles_read_during_2019_09_02_2019_09_08.html';
}
location '/Bystroushaak s blog/English section/Weekly updates/Weekly update 2019 09 08 Bugs and a lot of stress/index.html' {
return 301 '/en/Weekly_updates/Weekly_update_2019_09_08_Bugs_and_a_lot_of_stress/';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 2' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part_2';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 3' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part_3';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part';
}
location '/Bystroushaak s blog/English section/Series about Self/Lessons learnt from the Self archive' {
return 301 '/en/Series_about_Self/Lessons_learnt_from_the_Self_archive';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/environment_and_programming_language_self_2019_cleaned.epub' {
return 301 '/en/Series_about_Self/environment_and_programming_language_self_2019_cleaned.epub';
}
location '/Bystroushaak s blog/English section/Series about Self/Self mail conference in mbox.html' {
return 301 '/en/Series_about_Self/Self_mail_conference_in_mbox.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 3.html' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part_3.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Improvement proposals.html' {
return 301 '/en/Series_about_Self/Improvement_proposals.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part.html' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Lessons learnt from the Self archive.html' {
return 301 '/en/Series_about_Self/Lessons_learnt_from_the_Self_archive.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 2.html' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part_2.html';
}
location '/Bystroushaak s blog/English section/Series about Self/index.html' {
return 301 '/en/Series_about_Self/';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 3/finder.gif' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part_3/finder.gif';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 3/parser.gif' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part_3/parser.gif';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part/out.gif' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part/out.gif';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part/directness.gif' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part/directness.gif';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part/radarView_from_factory_window.gif' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part/radarView_from_factory_window.gif';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part/out 1.gif' {
return 301 '/en/Series_about_Self/Environment_and_the_programming_language_Self_part/out_1.gif';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/index.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages/at Put.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages/at.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages/addAll.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages/do.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages/index.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Series about Self/Environment and the programming language Self part 1/Important messages/add.html' {
return 301 '/en/Programming/Series_about_Self/Environment_and_the_programming_language_Self_part_one_environment.html';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers';
}
location '/Bystroushaak s blog/English section/Practical experiments/index.html' {
return 301 '/en/Practical_experiments/';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers.html' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers.html';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 2' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters_2';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 3' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters_3';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 1' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters_1';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 4' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters_4';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 1.html' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters_1.html';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 4.html' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters_4.html';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 2.html' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters_2.html';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters.html' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/Parameters.html';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/index.html' {
return 301 '/en/Practical_experiments/Report_Monkey_occupiers/';
}
location '/Bystroushaak s blog/English section/Practical experiments/Report Monkey occupiers/Parameters 3.html' {