├── LICENSE ├── README.md ├── README ├── INSTALL.md └── autoshape_data_exmaple.png ├── paddle ├── autoshape │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ ├── cvlibs │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── config.cpython-37.pyc │ │ │ ├── manager.cpython-37.pyc │ │ │ └── param_init.cpython-37.pyc │ │ ├── config.py │ │ ├── manager.py │ │ └── param_init.py │ ├── datasets │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── kitti.cpython-36.pyc │ │ │ └── kitti.cpython-37.pyc │ │ ├── kitti.py │ │ └── kitti.pyc │ ├── models │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── autoshape.cpython-37.pyc │ │ ├── autoshape.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── dla.cpython-37.pyc │ │ │ └── dla.py │ │ ├── heads │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── autoshape_predictor.cpython-37.pyc │ │ │ └── autoshape_predictor.py │ │ ├── layers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── gn.cpython-37.pyc │ │ │ │ └── layer_libs.cpython-37.pyc │ │ │ ├── gn.py │ │ │ └── layer_libs.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── focal_loss.cpython-37.pyc │ │ │ │ └── loss.cpython-37.pyc │ │ │ ├── focal_loss.py │ │ │ └── loss.py │ │ ├── postprocess │ │ │ └── __init__.py │ │ └── trainer │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── base_trainer.cpython-37.pyc │ │ │ └── base_trainer.py │ ├── ops │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── gather.cpython-37.pyc │ │ └── gather.py │ ├── transforms │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── functional.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ ├── functional.py │ │ └── transforms.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── image.cpython-37.pyc │ │ ├── logger.cpython-37.pyc │ │ ├── pretrained_utils.cpython-37.pyc │ │ ├── timer.cpython-37.pyc │ │ └── utils.cpython-37.pyc │ │ ├── heatmap_coder.py │ │ ├── image.py │ │ ├── logger.py │ │ ├── miscellaneous.py │ │ ├── pretrained_utils.py │ │ ├── progbar.py │ │ ├── timer.py │ │ ├── utils.py │ │ └── vis_utils.py ├── configs │ ├── kitti_config.yaml │ └── train_val_kitti.yaml ├── kitti_data │ └── .gitignore ├── pretrained │ ├── README.md │ └── download.py ├── requirement.txt ├── test_pytorch.py ├── test_trainer.py ├── tools │ └── kitti_eval_offline │ │ ├── evaluate_object_offline_40p.cpp │ │ └── mail.h └── train.py └── pytorch ├── eval.sh ├── exp └── results │ └── data │ ├── 000000.txt │ ├── 000001.txt │ ├── 000002.txt │ ├── 000003.txt │ ├── 000004.txt │ ├── 000005.txt │ ├── 000006.txt │ ├── 000007.txt │ ├── 000008.txt │ ├── 000010.txt │ ├── 000011.txt │ ├── 000012.txt │ ├── 000013.txt │ ├── 000014.txt │ ├── 000015.txt │ ├── 000016.txt │ ├── 000018.txt │ ├── 000019.txt │ ├── 000020.txt │ ├── 000021.txt │ ├── 000022.txt │ ├── 000023.txt │ ├── 000024.txt │ ├── 000025.txt │ ├── 000026.txt │ ├── 000027.txt │ ├── 000028.txt │ ├── 000029.txt │ ├── 000030.txt │ ├── 000031.txt │ ├── 000032.txt │ ├── 000033.txt │ ├── 000034.txt │ ├── 000035.txt │ ├── 000036.txt │ ├── 000037.txt │ ├── 000038.txt │ ├── 000039.txt │ ├── 000040.txt │ ├── 000041.txt │ ├── 000042.txt │ ├── 000043.txt │ ├── 000044.txt │ ├── 000045.txt │ ├── 000047.txt │ ├── 000048.txt │ ├── 000049.txt │ ├── 000050.txt │ ├── 000051.txt │ ├── 000052.txt │ ├── 000054.txt │ ├── 000055.txt │ ├── 000056.txt │ ├── 000057.txt │ ├── 000058.txt │ ├── 000059.txt │ ├── 000060.txt │ ├── 000061.txt │ ├── 000063.txt │ ├── 000064.txt │ ├── 000066.txt │ ├── 000067.txt │ ├── 000068.txt │ ├── 000069.txt │ ├── 000071.txt │ ├── 000072.txt │ ├── 000073.txt │ ├── 000074.txt │ ├── 000075.txt │ ├── 000076.txt │ ├── 000077.txt │ ├── 000078.txt │ ├── 000079.txt │ ├── 000080.txt │ ├── 000081.txt │ ├── 000082.txt │ ├── 000083.txt │ ├── 000085.txt │ ├── 000087.txt │ ├── 000088.txt │ ├── 000089.txt │ ├── 000090.txt │ ├── 000091.txt │ ├── 000092.txt │ ├── 000093.txt │ ├── 000094.txt │ ├── 000095.txt │ ├── 000096.txt │ ├── 000097.txt │ ├── 000098.txt │ ├── 000099.txt │ ├── 000100.txt │ ├── 000102.txt │ ├── 000103.txt │ ├── 000104.txt │ ├── 000105.txt │ ├── 000106.txt │ ├── 000107.txt │ ├── 000108.txt │ ├── 000109.txt │ ├── 000110.txt │ ├── 000111.txt │ ├── 000113.txt │ ├── 000114.txt │ ├── 000115.txt │ ├── 000116.txt │ ├── 000117.txt │ ├── 000118.txt │ ├── 000119.txt │ ├── 000120.txt │ ├── 000121.txt │ ├── 000122.txt │ ├── 000123.txt │ ├── 000124.txt │ ├── 000126.txt │ ├── 000127.txt │ ├── 000128.txt │ ├── 000131.txt │ ├── 000133.txt │ ├── 000134.txt │ ├── 000135.txt │ ├── 000136.txt │ ├── 000137.txt │ ├── 000138.txt │ ├── 000139.txt │ ├── 000141.txt │ ├── 000142.txt │ ├── 000143.txt │ ├── 000144.txt │ ├── 000145.txt │ ├── 000146.txt │ ├── 000147.txt │ ├── 000148.txt │ ├── 000149.txt │ ├── 000150.txt │ ├── 000152.txt │ ├── 000154.txt │ ├── 000155.txt │ ├── 000156.txt │ ├── 000157.txt │ ├── 000158.txt │ ├── 000159.txt │ ├── 000160.txt │ ├── 000161.txt │ ├── 000162.txt │ ├── 000163.txt │ ├── 000164.txt │ ├── 000166.txt │ ├── 000167.txt │ ├── 000168.txt │ ├── 000169.txt │ ├── 000170.txt │ ├── 000171.txt │ ├── 000172.txt │ ├── 000173.txt │ ├── 000174.txt │ ├── 000175.txt │ ├── 000176.txt │ ├── 000177.txt │ ├── 000178.txt │ ├── 000179.txt │ ├── 000180.txt │ ├── 000181.txt │ ├── 000182.txt │ ├── 000183.txt │ ├── 000184.txt │ ├── 000185.txt │ ├── 000186.txt │ ├── 000187.txt │ ├── 000188.txt │ ├── 000190.txt │ ├── 000191.txt │ ├── 000192.txt │ ├── 000193.txt │ ├── 000194.txt │ ├── 000195.txt │ ├── 000196.txt │ ├── 000197.txt │ ├── 000198.txt │ ├── 000199.txt │ ├── 000200.txt │ ├── 000201.txt │ ├── 000202.txt │ ├── 000203.txt │ ├── 000204.txt │ ├── 000205.txt │ ├── 000206.txt │ ├── 000207.txt │ ├── 000209.txt │ ├── 000210.txt │ ├── 000211.txt │ ├── 000212.txt │ ├── 000213.txt │ ├── 000214.txt │ ├── 000215.txt │ ├── 000217.txt │ ├── 000218.txt │ ├── 000219.txt │ ├── 000220.txt │ ├── 000221.txt │ ├── 000222.txt │ ├── 000223.txt │ ├── 000224.txt │ ├── 000225.txt │ ├── 000226.txt │ ├── 000227.txt │ ├── 000228.txt │ ├── 000229.txt │ ├── 000230.txt │ ├── 000231.txt │ ├── 000233.txt │ ├── 000234.txt │ ├── 000235.txt │ ├── 000236.txt │ ├── 000237.txt │ ├── 000238.txt │ ├── 000239.txt │ ├── 000240.txt │ ├── 000241.txt │ ├── 000242.txt │ ├── 000243.txt │ ├── 000244.txt │ ├── 000245.txt │ ├── 000246.txt │ ├── 000247.txt │ ├── 000248.txt │ ├── 000249.txt │ ├── 000250.txt │ ├── 000251.txt │ ├── 000252.txt │ ├── 000254.txt │ ├── 000255.txt │ ├── 000256.txt │ ├── 000257.txt │ ├── 000258.txt │ ├── 000259.txt │ ├── 000260.txt │ ├── 000263.txt │ ├── 000264.txt │ ├── 000265.txt │ ├── 000266.txt │ ├── 000267.txt │ ├── 000268.txt │ ├── 000269.txt │ ├── 000271.txt │ ├── 000272.txt │ ├── 000273.txt │ ├── 000275.txt │ ├── 000277.txt │ ├── 000278.txt │ ├── 000279.txt │ ├── 000281.txt │ ├── 000283.txt │ ├── 000284.txt │ ├── 000285.txt │ ├── 000286.txt │ ├── 000287.txt │ ├── 000288.txt │ ├── 000289.txt │ ├── 000290.txt │ ├── 000291.txt │ ├── 000292.txt │ ├── 000293.txt │ ├── 000295.txt │ ├── 000296.txt │ ├── 000297.txt │ ├── 000298.txt │ ├── 000299.txt │ ├── 000300.txt │ ├── 000301.txt │ ├── 000302.txt │ ├── 000303.txt │ ├── 000304.txt │ ├── 000305.txt │ ├── 000306.txt │ ├── 000307.txt │ ├── 000308.txt │ ├── 000309.txt │ ├── 000310.txt │ ├── 000311.txt │ ├── 000312.txt │ ├── 000313.txt │ ├── 000314.txt │ ├── 000315.txt │ ├── 000316.txt │ ├── 000317.txt │ ├── 000318.txt │ ├── 000319.txt │ ├── 000320.txt │ ├── 000321.txt │ ├── 000322.txt │ ├── 000323.txt │ ├── 000324.txt │ ├── 000325.txt │ ├── 000326.txt │ ├── 000327.txt │ ├── 000328.txt │ ├── 000329.txt │ ├── 000330.txt │ ├── 000331.txt │ ├── 000332.txt │ ├── 000333.txt │ ├── 000334.txt │ ├── 000335.txt │ ├── 000336.txt │ ├── 000337.txt │ ├── 000338.txt │ ├── 000339.txt │ ├── 000340.txt │ ├── 000341.txt │ ├── 000342.txt │ ├── 000343.txt │ ├── 000344.txt │ ├── 000345.txt │ ├── 000346.txt │ ├── 000347.txt │ ├── 000348.txt │ ├── 000349.txt │ ├── 000350.txt │ ├── 000351.txt │ ├── 000352.txt │ ├── 000353.txt │ ├── 000354.txt │ ├── 000355.txt │ ├── 000356.txt │ ├── 000357.txt │ ├── 000360.txt │ ├── 000362.txt │ ├── 000363.txt │ ├── 000364.txt │ ├── 000365.txt │ ├── 000366.txt │ ├── 000367.txt │ ├── 000368.txt │ ├── 000369.txt │ ├── 000370.txt │ ├── 000371.txt │ ├── 000372.txt │ ├── 000373.txt │ ├── 000374.txt │ ├── 000375.txt │ ├── 000376.txt │ ├── 000377.txt │ ├── 000378.txt │ ├── 000379.txt │ ├── 000380.txt │ ├── 000382.txt │ ├── 000383.txt │ ├── 000384.txt │ ├── 000385.txt │ ├── 000386.txt │ ├── 000387.txt │ ├── 000388.txt │ ├── 000389.txt │ ├── 000390.txt │ ├── 000392.txt │ ├── 000393.txt │ ├── 000395.txt │ ├── 000396.txt │ ├── 000397.txt │ ├── 000398.txt │ ├── 000399.txt │ ├── 000400.txt │ ├── 000401.txt │ ├── 000402.txt │ ├── 000403.txt │ ├── 000404.txt │ ├── 000405.txt │ ├── 000406.txt │ ├── 000407.txt │ ├── 000408.txt │ ├── 000409.txt │ ├── 000410.txt │ ├── 000411.txt │ ├── 000413.txt │ ├── 000414.txt │ ├── 000415.txt │ ├── 000416.txt │ ├── 000417.txt │ ├── 000418.txt │ ├── 000419.txt │ ├── 000421.txt │ ├── 000422.txt │ ├── 000423.txt │ ├── 000424.txt │ ├── 000425.txt │ ├── 000426.txt │ ├── 000427.txt │ ├── 000429.txt │ ├── 000431.txt │ ├── 000432.txt │ ├── 000433.txt │ ├── 000434.txt │ ├── 000435.txt │ ├── 000436.txt │ ├── 000437.txt │ ├── 000438.txt │ ├── 000439.txt │ ├── 000440.txt │ ├── 000441.txt │ ├── 000442.txt │ ├── 000443.txt │ ├── 000444.txt │ ├── 000445.txt │ ├── 000447.txt │ ├── 000450.txt │ ├── 000451.txt │ ├── 000452.txt │ ├── 000453.txt │ ├── 000454.txt │ ├── 000455.txt │ ├── 000456.txt │ ├── 000457.txt │ ├── 000458.txt │ ├── 000459.txt │ ├── 000460.txt │ ├── 000461.txt │ ├── 000462.txt │ ├── 000463.txt │ ├── 000464.txt │ ├── 000467.txt │ ├── 000469.txt │ ├── 000470.txt │ ├── 000471.txt │ ├── 000472.txt │ ├── 000473.txt │ ├── 000474.txt │ ├── 000475.txt │ ├── 000476.txt │ ├── 000477.txt │ ├── 000478.txt │ ├── 000479.txt │ ├── 000480.txt │ ├── 000481.txt │ ├── 000482.txt │ ├── 000483.txt │ ├── 000484.txt │ ├── 000485.txt │ ├── 000486.txt │ ├── 000488.txt │ ├── 000490.txt │ ├── 000491.txt │ ├── 000493.txt │ ├── 000494.txt │ ├── 000495.txt │ ├── 000496.txt │ ├── 000497.txt │ ├── 000498.txt │ ├── 000499.txt │ ├── 000500.txt │ ├── 000501.txt │ ├── 000502.txt │ ├── 000503.txt │ ├── 000504.txt │ ├── 000505.txt │ ├── 000506.txt │ ├── 000507.txt │ ├── 000508.txt │ ├── 000509.txt │ ├── 000510.txt │ ├── 000511.txt │ ├── 000512.txt │ ├── 000513.txt │ ├── 000514.txt │ ├── 000515.txt │ ├── 000517.txt │ ├── 000518.txt │ ├── 000519.txt │ ├── 000520.txt │ ├── 000521.txt │ ├── 000523.txt │ ├── 000524.txt │ ├── 000525.txt │ ├── 000526.txt │ ├── 000531.txt │ ├── 000532.txt │ ├── 000533.txt │ ├── 000536.txt │ ├── 000537.txt │ ├── 000539.txt │ ├── 000540.txt │ ├── 000541.txt │ ├── 000542.txt │ ├── 000543.txt │ ├── 000545.txt │ ├── 000548.txt │ ├── 000550.txt │ ├── 000551.txt │ ├── 000552.txt │ ├── 000553.txt │ ├── 000554.txt │ ├── 000555.txt │ ├── 000556.txt │ ├── 000557.txt │ ├── 000559.txt │ ├── 000560.txt │ ├── 000562.txt │ ├── 000563.txt │ ├── 000564.txt │ ├── 000565.txt │ ├── 000566.txt │ ├── 000569.txt │ ├── 000570.txt │ ├── 000571.txt │ ├── 000572.txt │ ├── 000574.txt │ ├── 000575.txt │ ├── 000576.txt │ ├── 000577.txt │ ├── 000580.txt │ ├── 000581.txt │ ├── 000583.txt │ ├── 000584.txt │ ├── 000585.txt │ ├── 000586.txt │ ├── 000587.txt │ ├── 000588.txt │ ├── 000589.txt │ ├── 000590.txt │ ├── 000591.txt │ ├── 000592.txt │ ├── 000593.txt │ ├── 000594.txt │ ├── 000595.txt │ ├── 000596.txt │ ├── 000597.txt │ ├── 000598.txt │ ├── 000599.txt │ ├── 000600.txt │ ├── 000601.txt │ ├── 000602.txt │ ├── 000603.txt │ ├── 000604.txt │ ├── 000605.txt │ ├── 000606.txt │ ├── 000607.txt │ ├── 000608.txt │ ├── 000609.txt │ ├── 000610.txt │ ├── 000611.txt │ ├── 000612.txt │ ├── 000613.txt │ ├── 000614.txt │ ├── 000615.txt │ ├── 000616.txt │ ├── 000617.txt │ ├── 000618.txt │ ├── 000619.txt │ ├── 000620.txt │ ├── 000622.txt │ ├── 000623.txt │ ├── 000624.txt │ ├── 000625.txt │ ├── 000626.txt │ ├── 000627.txt │ ├── 000628.txt │ ├── 000629.txt │ ├── 000630.txt │ ├── 000631.txt │ ├── 000632.txt │ ├── 000633.txt │ ├── 000634.txt │ ├── 000635.txt │ ├── 000637.txt │ ├── 000638.txt │ ├── 000639.txt │ ├── 000640.txt │ ├── 000641.txt │ ├── 000643.txt │ ├── 000644.txt │ ├── 000645.txt │ ├── 000647.txt │ ├── 000648.txt │ ├── 000649.txt │ ├── 000650.txt │ ├── 000651.txt │ ├── 000652.txt │ ├── 000653.txt │ ├── 000654.txt │ ├── 000655.txt │ ├── 000656.txt │ ├── 000657.txt │ ├── 000658.txt │ ├── 000659.txt │ ├── 000661.txt │ ├── 000662.txt │ ├── 000663.txt │ ├── 000665.txt │ ├── 000666.txt │ ├── 000667.txt │ ├── 000668.txt │ ├── 000669.txt │ ├── 000670.txt │ ├── 000671.txt │ ├── 000672.txt │ ├── 000673.txt │ ├── 000675.txt │ ├── 000676.txt │ ├── 000677.txt │ ├── 000678.txt │ ├── 000679.txt │ ├── 000680.txt │ ├── 000681.txt │ ├── 000682.txt │ ├── 000683.txt │ ├── 000684.txt │ ├── 000685.txt │ ├── 000686.txt │ ├── 000687.txt │ ├── 000688.txt │ ├── 000690.txt │ ├── 000691.txt │ ├── 000692.txt │ ├── 000693.txt │ ├── 000694.txt │ ├── 000695.txt │ ├── 000696.txt │ ├── 000697.txt │ ├── 000698.txt │ ├── 000699.txt │ ├── 000700.txt │ ├── 000701.txt │ ├── 000702.txt │ ├── 000704.txt │ ├── 000705.txt │ ├── 000706.txt │ ├── 000707.txt │ ├── 000708.txt │ ├── 000710.txt │ ├── 000711.txt │ ├── 000712.txt │ ├── 000713.txt │ ├── 000714.txt │ ├── 000715.txt │ ├── 000716.txt │ ├── 000717.txt │ ├── 000718.txt │ ├── 000719.txt │ ├── 000720.txt │ ├── 000722.txt │ ├── 000723.txt │ ├── 000724.txt │ ├── 000725.txt │ ├── 000726.txt │ ├── 000728.txt │ ├── 000729.txt │ ├── 000731.txt │ ├── 000732.txt │ ├── 000733.txt │ ├── 000734.txt │ ├── 000735.txt │ ├── 000736.txt │ ├── 000738.txt │ ├── 000739.txt │ ├── 000740.txt │ ├── 000741.txt │ ├── 000742.txt │ ├── 000743.txt │ ├── 000744.txt │ ├── 000746.txt │ ├── 000747.txt │ ├── 000748.txt │ ├── 000749.txt │ ├── 000750.txt │ ├── 000751.txt │ ├── 000752.txt │ ├── 000753.txt │ ├── 000754.txt │ ├── 000755.txt │ ├── 000756.txt │ ├── 000757.txt │ ├── 000758.txt │ ├── 000759.txt │ ├── 000760.txt │ ├── 000762.txt │ ├── 000763.txt │ ├── 000764.txt │ ├── 000765.txt │ ├── 000766.txt │ ├── 000767.txt │ ├── 000768.txt │ ├── 000769.txt │ ├── 000770.txt │ ├── 000771.txt │ ├── 000773.txt │ ├── 000774.txt │ ├── 000776.txt │ ├── 000777.txt │ ├── 000778.txt │ ├── 000779.txt │ ├── 000780.txt │ ├── 000781.txt │ ├── 000782.txt │ ├── 000783.txt │ ├── 000784.txt │ ├── 000785.txt │ ├── 000786.txt │ ├── 000787.txt │ ├── 000789.txt │ ├── 000790.txt │ ├── 000792.txt │ ├── 000794.txt │ ├── 000795.txt │ ├── 000796.txt │ ├── 000797.txt │ ├── 000798.txt │ ├── 000799.txt │ ├── 000800.txt │ ├── 000801.txt │ ├── 000802.txt │ ├── 000803.txt │ ├── 000804.txt │ ├── 000805.txt │ ├── 000806.txt │ ├── 000807.txt │ ├── 000808.txt │ ├── 000809.txt │ ├── 000810.txt │ ├── 000811.txt │ ├── 000812.txt │ ├── 000813.txt │ ├── 000814.txt │ ├── 000815.txt │ ├── 000818.txt │ ├── 000819.txt │ ├── 000820.txt │ ├── 000821.txt │ ├── 000822.txt │ ├── 000823.txt │ ├── 000824.txt │ ├── 000825.txt │ ├── 000826.txt │ ├── 000827.txt │ ├── 000828.txt │ ├── 000829.txt │ ├── 000830.txt │ ├── 000831.txt │ ├── 000833.txt │ ├── 000834.txt │ ├── 000835.txt │ ├── 000837.txt │ ├── 000838.txt │ ├── 000839.txt │ ├── 000840.txt │ ├── 000841.txt │ ├── 000843.txt │ ├── 000844.txt │ ├── 000846.txt │ ├── 000847.txt │ ├── 000848.txt │ ├── 000849.txt │ ├── 000850.txt │ ├── 000851.txt │ ├── 000852.txt │ ├── 000853.txt │ ├── 000854.txt │ ├── 000855.txt │ ├── 000856.txt │ ├── 000857.txt │ ├── 000858.txt │ ├── 000859.txt │ ├── 000860.txt │ ├── 000861.txt │ ├── 000863.txt │ ├── 000864.txt │ ├── 000865.txt │ ├── 000866.txt │ ├── 000868.txt │ ├── 000869.txt │ ├── 000870.txt │ ├── 000871.txt │ ├── 000872.txt │ ├── 000873.txt │ ├── 000874.txt │ ├── 000875.txt │ ├── 000876.txt │ ├── 000877.txt │ ├── 000878.txt │ ├── 000881.txt │ ├── 000882.txt │ ├── 000883.txt │ ├── 000884.txt │ ├── 000885.txt │ ├── 000886.txt │ ├── 000887.txt │ ├── 000888.txt │ ├── 000889.txt │ ├── 000890.txt │ ├── 000892.txt │ ├── 000893.txt │ ├── 000894.txt │ ├── 000896.txt │ ├── 000897.txt │ ├── 000899.txt │ ├── 000900.txt │ ├── 000901.txt │ ├── 000902.txt │ ├── 000903.txt │ ├── 000904.txt │ ├── 000905.txt │ ├── 000906.txt │ ├── 000907.txt │ ├── 000908.txt │ ├── 000909.txt │ ├── 000910.txt │ ├── 000911.txt │ ├── 000912.txt │ ├── 000913.txt │ ├── 000914.txt │ ├── 000915.txt │ ├── 000916.txt │ ├── 000919.txt │ ├── 000920.txt │ ├── 000921.txt │ ├── 000922.txt │ ├── 000923.txt │ ├── 000924.txt │ ├── 000925.txt │ ├── 000926.txt │ ├── 000927.txt │ ├── 000928.txt │ ├── 000929.txt │ ├── 000930.txt │ ├── 000931.txt │ ├── 000932.txt │ ├── 000935.txt │ ├── 000937.txt │ ├── 000939.txt │ ├── 000940.txt │ ├── 000941.txt │ ├── 000942.txt │ ├── 000943.txt │ ├── 000945.txt │ ├── 000947.txt │ ├── 000948.txt │ ├── 000949.txt │ ├── 000950.txt │ ├── 000951.txt │ ├── 000952.txt │ ├── 000953.txt │ ├── 000954.txt │ ├── 000955.txt │ ├── 000956.txt │ ├── 000957.txt │ ├── 000958.txt │ ├── 000959.txt │ ├── 000960.txt │ ├── 000961.txt │ ├── 000962.txt │ ├── 000963.txt │ ├── 000964.txt │ ├── 000965.txt │ ├── 000966.txt │ ├── 000967.txt │ ├── 000968.txt │ ├── 000969.txt │ ├── 000970.txt │ ├── 000971.txt │ ├── 000973.txt │ ├── 000974.txt │ ├── 000975.txt │ ├── 000976.txt │ ├── 000977.txt │ ├── 000978.txt │ ├── 000979.txt │ ├── 000980.txt │ ├── 000981.txt │ ├── 000982.txt │ ├── 000983.txt │ ├── 000984.txt │ ├── 000985.txt │ ├── 000986.txt │ ├── 000987.txt │ ├── 000988.txt │ ├── 000989.txt │ ├── 000990.txt │ ├── 000991.txt │ ├── 000992.txt │ ├── 000993.txt │ ├── 000994.txt │ ├── 000995.txt │ ├── 000996.txt │ ├── 000997.txt │ ├── 000998.txt │ ├── 001000.txt │ ├── 001001.txt │ ├── 001002.txt │ ├── 001003.txt │ ├── 001004.txt │ ├── 001005.txt │ ├── 001006.txt │ ├── 001007.txt │ ├── 001008.txt │ ├── 001009.txt │ ├── 001011.txt │ ├── 001012.txt │ ├── 001014.txt │ ├── 001015.txt │ ├── 001016.txt │ ├── 001017.txt │ ├── 001018.txt │ ├── 001019.txt │ ├── 001020.txt │ ├── 001021.txt │ ├── 001022.txt │ ├── 001023.txt │ ├── 001024.txt │ ├── 001025.txt │ ├── 001026.txt │ ├── 001027.txt │ ├── 001028.txt │ ├── 001029.txt │ ├── 001030.txt │ ├── 001031.txt │ ├── 001032.txt │ ├── 001033.txt │ ├── 001034.txt │ ├── 001035.txt │ ├── 001036.txt │ ├── 001037.txt │ ├── 001038.txt │ ├── 001039.txt │ ├── 001040.txt │ ├── 001041.txt │ ├── 001042.txt │ ├── 001043.txt │ ├── 001045.txt │ ├── 001046.txt │ ├── 001047.txt │ ├── 001048.txt │ ├── 001049.txt │ ├── 001050.txt │ ├── 001052.txt │ ├── 001053.txt │ ├── 001054.txt │ ├── 001055.txt │ ├── 001056.txt │ ├── 001057.txt │ ├── 001058.txt │ ├── 001059.txt │ ├── 001060.txt │ ├── 001061.txt │ ├── 001062.txt │ ├── 001063.txt │ ├── 001064.txt │ ├── 001065.txt │ ├── 001066.txt │ ├── 001067.txt │ ├── 001068.txt │ ├── 001069.txt │ ├── 001070.txt │ ├── 001071.txt │ ├── 001072.txt │ ├── 001073.txt │ ├── 001074.txt │ ├── 001075.txt │ ├── 001076.txt │ ├── 001077.txt │ ├── 001078.txt │ ├── 001079.txt │ ├── 001080.txt │ ├── 001081.txt │ ├── 001082.txt │ ├── 001083.txt │ ├── 001084.txt │ ├── 001085.txt │ ├── 001086.txt │ ├── 001087.txt │ ├── 001088.txt │ ├── 001089.txt │ ├── 001090.txt │ ├── 001092.txt │ ├── 001093.txt │ ├── 001094.txt │ ├── 001095.txt │ ├── 001096.txt │ ├── 001097.txt │ ├── 001098.txt │ ├── 001099.txt │ ├── 001100.txt │ ├── 001101.txt │ ├── 001102.txt │ ├── 001103.txt │ ├── 001104.txt │ ├── 001106.txt │ ├── 001107.txt │ ├── 001108.txt │ ├── 001109.txt │ ├── 001110.txt │ ├── 001111.txt │ ├── 001112.txt │ ├── 001113.txt │ ├── 001114.txt │ ├── 001115.txt │ ├── 001116.txt │ ├── 001117.txt │ ├── 001118.txt │ ├── 001119.txt │ ├── 001120.txt │ ├── 001121.txt │ ├── 001122.txt │ ├── 001123.txt │ ├── 001124.txt │ ├── 001125.txt │ ├── 001126.txt │ ├── 001129.txt │ ├── 001130.txt │ ├── 001131.txt │ ├── 001132.txt │ ├── 001133.txt │ ├── 001134.txt │ ├── 001135.txt │ ├── 001136.txt │ ├── 001137.txt │ ├── 001140.txt │ ├── 001141.txt │ ├── 001142.txt │ ├── 001143.txt │ ├── 001144.txt │ ├── 001145.txt │ ├── 001146.txt │ ├── 001147.txt │ ├── 001148.txt │ ├── 001149.txt │ ├── 001150.txt │ ├── 001151.txt │ ├── 001152.txt │ ├── 001153.txt │ ├── 001155.txt │ ├── 001156.txt │ ├── 001157.txt │ ├── 001158.txt │ ├── 001159.txt │ ├── 001160.txt │ ├── 001161.txt │ ├── 001162.txt │ ├── 001163.txt │ ├── 001164.txt │ ├── 001165.txt │ ├── 001166.txt │ ├── 001167.txt │ ├── 001168.txt │ ├── 001170.txt │ ├── 001171.txt │ ├── 001172.txt │ ├── 001173.txt │ ├── 001174.txt │ ├── 001175.txt │ ├── 001176.txt │ ├── 001177.txt │ ├── 001178.txt │ ├── 001179.txt │ ├── 001180.txt │ ├── 001181.txt │ ├── 001182.txt │ ├── 001183.txt │ ├── 001184.txt │ ├── 001185.txt │ ├── 001186.txt │ ├── 001187.txt │ ├── 001189.txt │ ├── 001190.txt │ ├── 001191.txt │ ├── 001192.txt │ ├── 001193.txt │ ├── 001194.txt │ ├── 001195.txt │ ├── 001196.txt │ ├── 001197.txt │ ├── 001198.txt │ ├── 001199.txt │ ├── 001200.txt │ ├── 001201.txt │ ├── 001202.txt │ ├── 001203.txt │ ├── 001204.txt │ ├── 001205.txt │ ├── 001206.txt │ ├── 001207.txt │ ├── 001208.txt │ ├── 001209.txt │ ├── 001210.txt │ ├── 001211.txt │ ├── 001212.txt │ ├── 001213.txt │ ├── 001214.txt │ ├── 001216.txt │ ├── 001218.txt │ ├── 001219.txt │ ├── 001220.txt │ ├── 001222.txt │ ├── 001223.txt │ ├── 001224.txt │ ├── 001225.txt │ ├── 001226.txt │ ├── 001227.txt │ ├── 001228.txt │ ├── 001229.txt │ ├── 001230.txt │ ├── 001231.txt │ ├── 001232.txt │ ├── 001233.txt │ ├── 001234.txt │ ├── 001236.txt │ ├── 001237.txt │ ├── 001238.txt │ ├── 001239.txt │ ├── 001240.txt │ ├── 001241.txt │ ├── 001242.txt │ ├── 001243.txt │ ├── 001245.txt │ ├── 001246.txt │ ├── 001247.txt │ ├── 001248.txt │ ├── 001250.txt │ ├── 001252.txt │ ├── 001253.txt │ ├── 001254.txt │ ├── 001255.txt │ ├── 001256.txt │ ├── 001258.txt │ ├── 001259.txt │ ├── 001260.txt │ ├── 001262.txt │ ├── 001263.txt │ ├── 001264.txt │ ├── 001265.txt │ ├── 001266.txt │ ├── 001267.txt │ ├── 001268.txt │ ├── 001269.txt │ ├── 001270.txt │ ├── 001271.txt │ ├── 001272.txt │ ├── 001273.txt │ ├── 001274.txt │ ├── 001275.txt │ ├── 001276.txt │ ├── 001277.txt │ ├── 001278.txt │ ├── 001280.txt │ ├── 001281.txt │ ├── 001283.txt │ ├── 001284.txt │ ├── 001285.txt │ ├── 001286.txt │ ├── 001287.txt │ ├── 001288.txt │ ├── 001289.txt │ ├── 001290.txt │ ├── 001291.txt │ ├── 001292.txt │ ├── 001293.txt │ ├── 001294.txt │ ├── 001296.txt │ ├── 001297.txt │ ├── 001298.txt │ ├── 001299.txt │ ├── 001300.txt │ ├── 001301.txt │ ├── 001302.txt │ ├── 001303.txt │ ├── 001304.txt │ ├── 001305.txt │ ├── 001306.txt │ ├── 001307.txt │ ├── 001308.txt │ ├── 001309.txt │ ├── 001310.txt │ ├── 001311.txt │ ├── 001312.txt │ ├── 001314.txt │ ├── 001315.txt │ ├── 001317.txt │ ├── 001318.txt │ ├── 001319.txt │ ├── 001321.txt │ ├── 001322.txt │ ├── 001323.txt │ ├── 001324.txt │ ├── 001325.txt │ ├── 001326.txt │ ├── 001327.txt │ ├── 001328.txt │ ├── 001330.txt │ ├── 001331.txt │ ├── 001332.txt │ ├── 001334.txt │ ├── 001335.txt │ ├── 001336.txt │ ├── 001337.txt │ ├── 001338.txt │ ├── 001339.txt │ ├── 001340.txt │ ├── 001341.txt │ ├── 001342.txt │ ├── 001343.txt │ ├── 001344.txt │ ├── 001345.txt │ ├── 001347.txt │ ├── 001348.txt │ ├── 001349.txt │ ├── 001351.txt │ ├── 001352.txt │ ├── 001353.txt │ ├── 001354.txt │ ├── 001355.txt │ ├── 001356.txt │ ├── 001357.txt │ ├── 001358.txt │ ├── 001359.txt │ ├── 001360.txt │ ├── 001361.txt │ ├── 001363.txt │ ├── 001364.txt │ ├── 001365.txt │ ├── 001366.txt │ ├── 001368.txt │ ├── 001369.txt │ ├── 001370.txt │ ├── 001372.txt │ ├── 001373.txt │ ├── 001374.txt │ ├── 001375.txt │ ├── 001376.txt │ ├── 001377.txt │ ├── 001378.txt │ ├── 001379.txt │ ├── 001380.txt │ ├── 001381.txt │ ├── 001382.txt │ ├── 001383.txt │ ├── 001384.txt │ ├── 001385.txt │ ├── 001386.txt │ ├── 001387.txt │ ├── 001388.txt │ ├── 001389.txt │ ├── 001390.txt │ ├── 001391.txt │ ├── 001392.txt │ ├── 001393.txt │ ├── 001395.txt │ ├── 001396.txt │ ├── 001397.txt │ ├── 001398.txt │ ├── 001400.txt │ ├── 001401.txt │ ├── 001402.txt │ ├── 001403.txt │ ├── 001405.txt │ ├── 001406.txt │ ├── 001407.txt │ ├── 001408.txt │ ├── 001411.txt │ ├── 001412.txt │ ├── 001413.txt │ ├── 001414.txt │ ├── 001415.txt │ ├── 001416.txt │ ├── 001417.txt │ ├── 001419.txt │ ├── 001420.txt │ ├── 001421.txt │ ├── 001422.txt │ ├── 001423.txt │ ├── 001424.txt │ ├── 001425.txt │ ├── 001426.txt │ ├── 001427.txt │ ├── 001428.txt │ ├── 001429.txt │ ├── 001430.txt │ ├── 001431.txt │ ├── 001432.txt │ ├── 001433.txt │ ├── 001434.txt │ ├── 001435.txt │ ├── 001436.txt │ ├── 001437.txt │ ├── 001438.txt │ ├── 001440.txt │ ├── 001441.txt │ ├── 001442.txt │ ├── 001443.txt │ ├── 001444.txt │ ├── 001445.txt │ ├── 001447.txt │ ├── 001448.txt │ ├── 001449.txt │ ├── 001450.txt │ ├── 001451.txt │ ├── 001452.txt │ ├── 001453.txt │ ├── 001454.txt │ ├── 001455.txt │ ├── 001456.txt │ ├── 001457.txt │ ├── 001458.txt │ ├── 001459.txt │ ├── 001460.txt │ ├── 001461.txt │ ├── 001462.txt │ ├── 001464.txt │ ├── 001465.txt │ ├── 001467.txt │ ├── 001468.txt │ ├── 001469.txt │ ├── 001470.txt │ ├── 001471.txt │ ├── 001473.txt │ ├── 001477.txt │ ├── 001478.txt │ ├── 001479.txt │ ├── 001480.txt │ ├── 001481.txt │ ├── 001482.txt │ ├── 001483.txt │ ├── 001484.txt │ ├── 001485.txt │ ├── 001486.txt │ ├── 001487.txt │ ├── 001489.txt │ ├── 001490.txt │ ├── 001491.txt │ ├── 001492.txt │ ├── 001493.txt │ ├── 001494.txt │ ├── 001496.txt │ ├── 001498.txt │ ├── 001499.txt │ ├── 001500.txt │ ├── 001501.txt │ ├── 001502.txt │ ├── 001503.txt │ ├── 001504.txt │ ├── 001505.txt │ ├── 001506.txt │ ├── 001507.txt │ ├── 001508.txt │ ├── 001509.txt │ ├── 001510.txt │ ├── 001511.txt │ ├── 001513.txt │ ├── 001514.txt │ ├── 001515.txt │ ├── 001516.txt │ ├── 001517.txt │ ├── 001519.txt │ ├── 001520.txt │ ├── 001521.txt │ ├── 001522.txt │ ├── 001524.txt │ ├── 001526.txt │ ├── 001527.txt │ ├── 001528.txt │ ├── 001529.txt │ ├── 001530.txt │ ├── 001531.txt │ ├── 001532.txt │ ├── 001533.txt │ ├── 001534.txt │ ├── 001535.txt │ ├── 001536.txt │ ├── 001537.txt │ ├── 001538.txt │ ├── 001539.txt │ ├── 001540.txt │ ├── 001542.txt │ ├── 001543.txt │ ├── 001544.txt │ ├── 001545.txt │ ├── 001546.txt │ ├── 001547.txt │ ├── 001548.txt │ ├── 001549.txt │ ├── 001550.txt │ ├── 001551.txt │ ├── 001552.txt │ ├── 001553.txt │ ├── 001554.txt │ ├── 001556.txt │ ├── 001557.txt │ ├── 001558.txt │ ├── 001559.txt │ ├── 001560.txt │ ├── 001561.txt │ ├── 001562.txt │ ├── 001564.txt │ ├── 001565.txt │ ├── 001566.txt │ ├── 001567.txt │ ├── 001568.txt │ ├── 001569.txt │ ├── 001570.txt │ ├── 001571.txt │ ├── 001572.txt │ ├── 001573.txt │ ├── 001574.txt │ ├── 001575.txt │ ├── 001576.txt │ ├── 001577.txt │ ├── 001578.txt │ ├── 001579.txt │ ├── 001580.txt │ ├── 001581.txt │ ├── 001582.txt │ ├── 001583.txt │ ├── 001584.txt │ ├── 001585.txt │ ├── 001586.txt │ ├── 001587.txt │ ├── 001588.txt │ ├── 001589.txt │ ├── 001590.txt │ ├── 001591.txt │ ├── 001592.txt │ ├── 001593.txt │ ├── 001594.txt │ ├── 001595.txt │ ├── 001596.txt │ ├── 001598.txt │ ├── 001599.txt │ ├── 001602.txt │ ├── 001603.txt │ ├── 001604.txt │ ├── 001605.txt │ ├── 001606.txt │ ├── 001607.txt │ ├── 001609.txt │ ├── 001610.txt │ ├── 001611.txt │ ├── 001612.txt │ ├── 001613.txt │ ├── 001614.txt │ ├── 001615.txt │ ├── 001616.txt │ ├── 001617.txt │ ├── 001618.txt │ ├── 001619.txt │ ├── 001621.txt │ ├── 001622.txt │ ├── 001623.txt │ ├── 001625.txt │ ├── 001626.txt │ ├── 001627.txt │ ├── 001628.txt │ ├── 001629.txt │ ├── 001630.txt │ ├── 001631.txt │ ├── 001632.txt │ ├── 001633.txt │ ├── 001634.txt │ ├── 001635.txt │ ├── 001636.txt │ ├── 001637.txt │ ├── 001639.txt │ ├── 001640.txt │ ├── 001641.txt │ ├── 001642.txt │ ├── 001643.txt │ ├── 001644.txt │ ├── 001645.txt │ ├── 001646.txt │ ├── 001647.txt │ ├── 001648.txt │ ├── 001649.txt │ ├── 001650.txt │ ├── 001651.txt │ ├── 001652.txt │ ├── 001654.txt │ ├── 001655.txt │ ├── 001656.txt │ ├── 001657.txt │ ├── 001658.txt │ ├── 001659.txt │ ├── 001660.txt │ ├── 001661.txt │ ├── 001662.txt │ ├── 001663.txt │ ├── 001664.txt │ ├── 001665.txt │ ├── 001666.txt │ ├── 001667.txt │ ├── 001668.txt │ ├── 001669.txt │ ├── 001670.txt │ ├── 001671.txt │ ├── 001672.txt │ ├── 001673.txt │ ├── 001674.txt │ ├── 001675.txt │ ├── 001676.txt │ ├── 001677.txt │ ├── 001678.txt │ ├── 001679.txt │ ├── 001680.txt │ ├── 001682.txt │ ├── 001683.txt │ ├── 001684.txt │ ├── 001685.txt │ ├── 001686.txt │ ├── 001687.txt │ ├── 001688.txt │ ├── 001689.txt │ ├── 001690.txt │ ├── 001691.txt │ ├── 001692.txt │ ├── 001693.txt │ ├── 001694.txt │ ├── 001695.txt │ ├── 001696.txt │ ├── 001697.txt │ ├── 001699.txt │ ├── 001700.txt │ ├── 001701.txt │ ├── 001702.txt │ ├── 001703.txt │ ├── 001704.txt │ ├── 001705.txt │ ├── 001706.txt │ ├── 001708.txt │ ├── 001709.txt │ ├── 001711.txt │ ├── 001712.txt │ ├── 001713.txt │ ├── 001714.txt │ ├── 001715.txt │ ├── 001716.txt │ ├── 001717.txt │ ├── 001718.txt │ ├── 001720.txt │ ├── 001722.txt │ ├── 001723.txt │ ├── 001724.txt │ ├── 001725.txt │ ├── 001726.txt │ ├── 001727.txt │ ├── 001728.txt │ ├── 001730.txt │ ├── 001731.txt │ ├── 001732.txt │ ├── 001733.txt │ ├── 001735.txt │ ├── 001737.txt │ ├── 001738.txt │ ├── 001739.txt │ ├── 001740.txt │ ├── 001742.txt │ ├── 001743.txt │ ├── 001744.txt │ ├── 001745.txt │ ├── 001746.txt │ ├── 001747.txt │ ├── 001748.txt │ ├── 001749.txt │ ├── 001750.txt │ ├── 001751.txt │ ├── 001752.txt │ ├── 001753.txt │ ├── 001755.txt │ ├── 001756.txt │ ├── 001757.txt │ ├── 001758.txt │ ├── 001759.txt │ ├── 001760.txt │ ├── 001761.txt │ ├── 001762.txt │ ├── 001763.txt │ ├── 001764.txt │ ├── 001765.txt │ ├── 001766.txt │ ├── 001767.txt │ ├── 001768.txt │ ├── 001769.txt │ ├── 001770.txt │ ├── 001771.txt │ ├── 001772.txt │ ├── 001773.txt │ ├── 001774.txt │ ├── 001776.txt │ ├── 001777.txt │ ├── 001778.txt │ ├── 001779.txt │ ├── 001780.txt │ ├── 001781.txt │ ├── 001782.txt │ ├── 001784.txt │ ├── 001785.txt │ ├── 001786.txt │ ├── 001788.txt │ ├── 001789.txt │ ├── 001790.txt │ ├── 001791.txt │ ├── 001792.txt │ ├── 001793.txt │ ├── 001794.txt │ ├── 001795.txt │ ├── 001796.txt │ ├── 001797.txt │ ├── 001800.txt │ ├── 001801.txt │ ├── 001802.txt │ ├── 001803.txt │ ├── 001804.txt │ ├── 001805.txt │ ├── 001806.txt │ ├── 001807.txt │ ├── 001808.txt │ ├── 001809.txt │ ├── 001810.txt │ ├── 001811.txt │ ├── 001812.txt │ ├── 001813.txt │ ├── 001814.txt │ ├── 001815.txt │ ├── 001816.txt │ ├── 001817.txt │ ├── 001818.txt │ ├── 001819.txt │ ├── 001820.txt │ ├── 001821.txt │ ├── 001822.txt │ ├── 001823.txt │ ├── 001824.txt │ ├── 001825.txt │ ├── 001826.txt │ ├── 001827.txt │ ├── 001828.txt │ ├── 001830.txt │ ├── 001831.txt │ ├── 001832.txt │ ├── 001833.txt │ ├── 001834.txt │ ├── 001835.txt │ ├── 001836.txt │ ├── 001837.txt │ ├── 001838.txt │ ├── 001839.txt │ ├── 001840.txt │ ├── 001842.txt │ ├── 001843.txt │ ├── 001844.txt │ ├── 001845.txt │ ├── 001846.txt │ ├── 001847.txt │ ├── 001848.txt │ ├── 001849.txt │ ├── 001850.txt │ ├── 001851.txt │ ├── 001852.txt │ ├── 001853.txt │ ├── 001854.txt │ ├── 001855.txt │ ├── 001856.txt │ ├── 001857.txt │ ├── 001858.txt │ ├── 001859.txt │ ├── 001860.txt │ ├── 001861.txt │ ├── 001862.txt │ ├── 001863.txt │ ├── 001864.txt │ ├── 001865.txt │ ├── 001866.txt │ ├── 001867.txt │ ├── 001868.txt │ ├── 001869.txt │ ├── 001871.txt │ ├── 001872.txt │ ├── 001873.txt │ ├── 001874.txt │ ├── 001875.txt │ ├── 001876.txt │ ├── 001878.txt │ ├── 001879.txt │ ├── 001880.txt │ ├── 001881.txt │ ├── 001882.txt │ ├── 001883.txt │ ├── 001885.txt │ ├── 001886.txt │ ├── 001887.txt │ ├── 001888.txt │ ├── 001890.txt │ ├── 001893.txt │ ├── 001894.txt │ ├── 001895.txt │ ├── 001896.txt │ ├── 001897.txt │ ├── 001898.txt │ ├── 001899.txt │ ├── 001900.txt │ ├── 001901.txt │ ├── 001903.txt │ ├── 001904.txt │ ├── 001905.txt │ ├── 001906.txt │ ├── 001909.txt │ ├── 001910.txt │ ├── 001911.txt │ ├── 001912.txt │ ├── 001913.txt │ ├── 001915.txt │ ├── 001916.txt │ ├── 001917.txt │ ├── 001918.txt │ ├── 001919.txt │ ├── 001920.txt │ ├── 001921.txt │ ├── 001922.txt │ ├── 001923.txt │ ├── 001924.txt │ ├── 001925.txt │ ├── 001926.txt │ ├── 001927.txt │ ├── 001928.txt │ ├── 001929.txt │ ├── 001930.txt │ ├── 001931.txt │ ├── 001933.txt │ ├── 001934.txt │ ├── 001935.txt │ ├── 001936.txt │ ├── 001937.txt │ ├── 001938.txt │ ├── 001940.txt │ ├── 001941.txt │ ├── 001942.txt │ ├── 001944.txt │ ├── 001945.txt │ ├── 001946.txt │ ├── 001947.txt │ ├── 001948.txt │ ├── 001949.txt │ ├── 001950.txt │ ├── 001951.txt │ ├── 001952.txt │ ├── 001953.txt │ ├── 001954.txt │ ├── 001955.txt │ ├── 001956.txt │ ├── 001957.txt │ ├── 001958.txt │ ├── 001959.txt │ ├── 001960.txt │ ├── 001961.txt │ ├── 001962.txt │ ├── 001963.txt │ ├── 001964.txt │ ├── 001965.txt │ ├── 001966.txt │ ├── 001967.txt │ ├── 001969.txt │ ├── 001970.txt │ ├── 001971.txt │ ├── 001972.txt │ ├── 001973.txt │ ├── 001974.txt │ ├── 001975.txt │ ├── 001976.txt │ ├── 001977.txt │ ├── 001978.txt │ ├── 001980.txt │ ├── 001981.txt │ ├── 001982.txt │ ├── 001983.txt │ ├── 001984.txt │ ├── 001985.txt │ ├── 001986.txt │ ├── 001987.txt │ ├── 001989.txt │ ├── 001990.txt │ ├── 001991.txt │ ├── 001992.txt │ ├── 001993.txt │ ├── 001994.txt │ ├── 001996.txt │ ├── 001997.txt │ ├── 001998.txt │ ├── 001999.txt │ ├── 002000.txt │ ├── 002001.txt │ ├── 002002.txt │ ├── 002003.txt │ ├── 002004.txt │ ├── 002005.txt │ ├── 002007.txt │ ├── 002008.txt │ ├── 002009.txt │ ├── 002010.txt │ ├── 002011.txt │ ├── 002012.txt │ ├── 002013.txt │ ├── 002015.txt │ ├── 002016.txt │ ├── 002018.txt │ ├── 002020.txt │ ├── 002022.txt │ ├── 002023.txt │ ├── 002024.txt │ ├── 002025.txt │ ├── 002026.txt │ ├── 002027.txt │ ├── 002028.txt │ ├── 002029.txt │ ├── 002030.txt │ ├── 002031.txt │ ├── 002032.txt │ ├── 002033.txt │ ├── 002034.txt │ ├── 002035.txt │ ├── 002036.txt │ ├── 002037.txt │ ├── 002039.txt │ ├── 002040.txt │ ├── 002041.txt │ ├── 002042.txt │ ├── 002043.txt │ ├── 002044.txt │ ├── 002045.txt │ ├── 002046.txt │ ├── 002047.txt │ ├── 002048.txt │ ├── 002049.txt │ ├── 002050.txt │ ├── 002051.txt │ ├── 002052.txt │ ├── 002053.txt │ ├── 002054.txt │ ├── 002055.txt │ ├── 002056.txt │ ├── 002057.txt │ ├── 002058.txt │ ├── 002059.txt │ ├── 002060.txt │ ├── 002061.txt │ ├── 002062.txt │ ├── 002063.txt │ ├── 002064.txt │ ├── 002065.txt │ ├── 002066.txt │ ├── 002068.txt │ ├── 002069.txt │ ├── 002070.txt │ ├── 002071.txt │ ├── 002072.txt │ ├── 002073.txt │ ├── 002074.txt │ ├── 002075.txt │ ├── 002076.txt │ ├── 002077.txt │ ├── 002078.txt │ ├── 002079.txt │ ├── 002080.txt │ ├── 002081.txt │ ├── 002082.txt │ ├── 002083.txt │ ├── 002085.txt │ ├── 002086.txt │ ├── 002087.txt │ ├── 002088.txt │ ├── 002089.txt │ ├── 002090.txt │ ├── 002091.txt │ ├── 002092.txt │ ├── 002093.txt │ ├── 002094.txt │ ├── 002095.txt │ ├── 002096.txt │ ├── 002097.txt │ ├── 002098.txt │ ├── 002099.txt │ ├── 002101.txt │ ├── 002104.txt │ ├── 002105.txt │ ├── 002106.txt │ ├── 002107.txt │ ├── 002108.txt │ ├── 002109.txt │ ├── 002110.txt │ ├── 002112.txt │ ├── 002113.txt │ ├── 002114.txt │ ├── 002116.txt │ ├── 002117.txt │ ├── 002119.txt │ ├── 002121.txt │ ├── 002122.txt │ ├── 002123.txt │ ├── 002124.txt │ ├── 002125.txt │ ├── 002126.txt │ ├── 002127.txt │ ├── 002128.txt │ ├── 002129.txt │ ├── 002130.txt │ ├── 002131.txt │ ├── 002132.txt │ ├── 002133.txt │ ├── 002137.txt │ ├── 002138.txt │ ├── 002140.txt │ ├── 002141.txt │ ├── 002142.txt │ ├── 002143.txt │ ├── 002144.txt │ ├── 002145.txt │ ├── 002146.txt │ ├── 002147.txt │ ├── 002149.txt │ ├── 002150.txt │ ├── 002151.txt │ ├── 002152.txt │ ├── 002153.txt │ ├── 002154.txt │ ├── 002156.txt │ ├── 002157.txt │ ├── 002158.txt │ ├── 002159.txt │ ├── 002160.txt │ ├── 002161.txt │ ├── 002162.txt │ ├── 002163.txt │ ├── 002164.txt │ ├── 002165.txt │ ├── 002166.txt │ ├── 002167.txt │ ├── 002168.txt │ ├── 002169.txt │ ├── 002170.txt │ ├── 002173.txt │ ├── 002174.txt │ ├── 002175.txt │ ├── 002176.txt │ ├── 002177.txt │ ├── 002178.txt │ ├── 002180.txt │ ├── 002181.txt │ ├── 002182.txt │ ├── 002183.txt │ ├── 002185.txt │ ├── 002186.txt │ ├── 002188.txt │ ├── 002190.txt │ ├── 002191.txt │ ├── 002192.txt │ ├── 002193.txt │ ├── 002194.txt │ ├── 002195.txt │ ├── 002196.txt │ ├── 002197.txt │ ├── 002198.txt │ ├── 002199.txt │ ├── 002200.txt │ ├── 002201.txt │ ├── 002202.txt │ ├── 002203.txt │ ├── 002204.txt │ ├── 002205.txt │ ├── 002206.txt │ ├── 002207.txt │ ├── 002208.txt │ ├── 002209.txt │ ├── 002210.txt │ ├── 002211.txt │ ├── 002212.txt │ ├── 002213.txt │ ├── 002214.txt │ ├── 002215.txt │ ├── 002216.txt │ ├── 002217.txt │ ├── 002218.txt │ ├── 002219.txt │ ├── 002220.txt │ ├── 002221.txt │ ├── 002222.txt │ ├── 002224.txt │ ├── 002225.txt │ ├── 002226.txt │ ├── 002227.txt │ ├── 002228.txt │ ├── 002230.txt │ ├── 002231.txt │ ├── 002233.txt │ ├── 002234.txt │ ├── 002235.txt │ ├── 002236.txt │ ├── 002238.txt │ ├── 002239.txt │ ├── 002240.txt │ ├── 002241.txt │ ├── 002242.txt │ ├── 002243.txt │ ├── 002244.txt │ ├── 002245.txt │ ├── 002247.txt │ ├── 002248.txt │ ├── 002249.txt │ ├── 002250.txt │ ├── 002252.txt │ ├── 002253.txt │ ├── 002254.txt │ ├── 002255.txt │ ├── 002256.txt │ ├── 002257.txt │ ├── 002258.txt │ ├── 002259.txt │ ├── 002260.txt │ ├── 002261.txt │ ├── 002262.txt │ ├── 002263.txt │ ├── 002264.txt │ ├── 002265.txt │ ├── 002266.txt │ ├── 002268.txt │ ├── 002269.txt │ ├── 002270.txt │ ├── 002271.txt │ ├── 002272.txt │ ├── 002273.txt │ ├── 002274.txt │ ├── 002275.txt │ ├── 002276.txt │ ├── 002278.txt │ ├── 002279.txt │ ├── 002280.txt │ ├── 002281.txt │ ├── 002282.txt │ ├── 002283.txt │ ├── 002284.txt │ ├── 002285.txt │ ├── 002286.txt │ ├── 002287.txt │ ├── 002288.txt │ ├── 002289.txt │ ├── 002290.txt │ ├── 002291.txt │ ├── 002292.txt │ ├── 002293.txt │ ├── 002295.txt │ ├── 002296.txt │ ├── 002297.txt │ ├── 002298.txt │ ├── 002299.txt │ ├── 002300.txt │ ├── 002302.txt │ ├── 002303.txt │ ├── 002304.txt │ ├── 002305.txt │ ├── 002306.txt │ ├── 002307.txt │ ├── 002308.txt │ ├── 002309.txt │ ├── 002310.txt │ ├── 002311.txt │ ├── 002313.txt │ ├── 002314.txt │ ├── 002315.txt │ ├── 002316.txt │ ├── 002317.txt │ ├── 002318.txt │ ├── 002319.txt │ ├── 002320.txt │ ├── 002321.txt │ ├── 002323.txt │ ├── 002324.txt │ ├── 002325.txt │ ├── 002326.txt │ ├── 002328.txt │ ├── 002329.txt │ ├── 002330.txt │ ├── 002332.txt │ ├── 002333.txt │ ├── 002334.txt │ ├── 002335.txt │ ├── 002337.txt │ ├── 002338.txt │ ├── 002339.txt │ ├── 002340.txt │ ├── 002341.txt │ ├── 002342.txt │ ├── 002344.txt │ ├── 002345.txt │ ├── 002346.txt │ ├── 002347.txt │ ├── 002348.txt │ ├── 002349.txt │ ├── 002350.txt │ ├── 002352.txt │ ├── 002353.txt │ ├── 002355.txt │ ├── 002356.txt │ ├── 002357.txt │ ├── 002358.txt │ ├── 002359.txt │ ├── 002361.txt │ ├── 002362.txt │ ├── 002363.txt │ ├── 002364.txt │ ├── 002365.txt │ ├── 002366.txt │ ├── 002367.txt │ ├── 002368.txt │ ├── 002370.txt │ ├── 002371.txt │ ├── 002373.txt │ ├── 002374.txt │ ├── 002376.txt │ ├── 002377.txt │ ├── 002379.txt │ ├── 002380.txt │ ├── 002381.txt │ ├── 002382.txt │ ├── 002383.txt │ ├── 002386.txt │ ├── 002387.txt │ ├── 002388.txt │ ├── 002390.txt │ ├── 002391.txt │ ├── 002392.txt │ ├── 002393.txt │ ├── 002394.txt │ ├── 002395.txt │ ├── 002396.txt │ ├── 002397.txt │ ├── 002400.txt │ ├── 002401.txt │ ├── 002402.txt │ ├── 002403.txt │ ├── 002404.txt │ ├── 002405.txt │ ├── 002406.txt │ ├── 002407.txt │ ├── 002408.txt │ ├── 002409.txt │ ├── 002410.txt │ ├── 002411.txt │ ├── 002412.txt │ ├── 002413.txt │ ├── 002415.txt │ ├── 002416.txt │ ├── 002417.txt │ ├── 002418.txt │ ├── 002419.txt │ ├── 002420.txt │ ├── 002422.txt │ ├── 002423.txt │ ├── 002424.txt │ ├── 002425.txt │ ├── 002426.txt │ ├── 002428.txt │ ├── 002429.txt │ ├── 002430.txt │ ├── 002432.txt │ ├── 002433.txt │ ├── 002434.txt │ ├── 002436.txt │ ├── 002438.txt │ ├── 002440.txt │ ├── 002441.txt │ ├── 002442.txt │ ├── 002443.txt │ ├── 002444.txt │ ├── 002445.txt │ ├── 002446.txt │ ├── 002447.txt │ ├── 002448.txt │ ├── 002449.txt │ ├── 002451.txt │ ├── 002452.txt │ ├── 002454.txt │ ├── 002456.txt │ ├── 002457.txt │ ├── 002458.txt │ ├── 002459.txt │ ├── 002460.txt │ ├── 002461.txt │ ├── 002462.txt │ ├── 002463.txt │ ├── 002464.txt │ ├── 002465.txt │ ├── 002466.txt │ ├── 002467.txt │ ├── 002468.txt │ ├── 002470.txt │ ├── 002471.txt │ ├── 002472.txt │ ├── 002473.txt │ ├── 002474.txt │ ├── 002475.txt │ ├── 002476.txt │ ├── 002477.txt │ ├── 002478.txt │ ├── 002479.txt │ ├── 002481.txt │ ├── 002482.txt │ ├── 002483.txt │ ├── 002484.txt │ ├── 002485.txt │ ├── 002486.txt │ ├── 002487.txt │ ├── 002488.txt │ ├── 002489.txt │ ├── 002490.txt │ ├── 002491.txt │ ├── 002492.txt │ ├── 002493.txt │ ├── 002494.txt │ ├── 002495.txt │ ├── 002497.txt │ ├── 002498.txt │ ├── 002499.txt │ ├── 002501.txt │ ├── 002502.txt │ ├── 002503.txt │ ├── 002504.txt │ ├── 002505.txt │ ├── 002506.txt │ ├── 002507.txt │ ├── 002508.txt │ ├── 002509.txt │ ├── 002510.txt │ ├── 002511.txt │ ├── 002512.txt │ ├── 002513.txt │ ├── 002514.txt │ ├── 002517.txt │ ├── 002518.txt │ ├── 002519.txt │ ├── 002520.txt │ ├── 002521.txt │ ├── 002523.txt │ ├── 002524.txt │ ├── 002526.txt │ ├── 002527.txt │ ├── 002528.txt │ ├── 002529.txt │ ├── 002531.txt │ ├── 002532.txt │ ├── 002533.txt │ ├── 002534.txt │ ├── 002535.txt │ ├── 002538.txt │ ├── 002539.txt │ ├── 002540.txt │ ├── 002541.txt │ ├── 002542.txt │ ├── 002543.txt │ ├── 002544.txt │ ├── 002545.txt │ ├── 002546.txt │ ├── 002547.txt │ ├── 002548.txt │ ├── 002549.txt │ ├── 002550.txt │ ├── 002551.txt │ ├── 002552.txt │ ├── 002553.txt │ ├── 002554.txt │ ├── 002556.txt │ ├── 002558.txt │ ├── 002559.txt │ ├── 002560.txt │ ├── 002561.txt │ ├── 002562.txt │ ├── 002563.txt │ ├── 002564.txt │ ├── 002565.txt │ ├── 002566.txt │ ├── 002567.txt │ ├── 002568.txt │ ├── 002569.txt │ ├── 002570.txt │ ├── 002571.txt │ ├── 002572.txt │ ├── 002573.txt │ ├── 002575.txt │ ├── 002576.txt │ ├── 002577.txt │ ├── 002578.txt │ ├── 002580.txt │ ├── 002581.txt │ ├── 002582.txt │ ├── 002583.txt │ ├── 002584.txt │ ├── 002585.txt │ ├── 002586.txt │ ├── 002587.txt │ ├── 002588.txt │ ├── 002589.txt │ ├── 002590.txt │ ├── 002591.txt │ ├── 002592.txt │ ├── 002593.txt │ ├── 002594.txt │ ├── 002595.txt │ ├── 002597.txt │ ├── 002598.txt │ ├── 002599.txt │ ├── 002600.txt │ ├── 002601.txt │ ├── 002602.txt │ ├── 002603.txt │ ├── 002604.txt │ ├── 002605.txt │ ├── 002606.txt │ ├── 002607.txt │ ├── 002608.txt │ ├── 002609.txt │ ├── 002610.txt │ ├── 002611.txt │ ├── 002612.txt │ ├── 002613.txt │ ├── 002614.txt │ ├── 002616.txt │ ├── 002618.txt │ ├── 002619.txt │ ├── 002620.txt │ ├── 002622.txt │ ├── 002623.txt │ ├── 002624.txt │ ├── 002625.txt │ ├── 002626.txt │ ├── 002627.txt │ ├── 002628.txt │ ├── 002629.txt │ ├── 002630.txt │ ├── 002633.txt │ ├── 002634.txt │ ├── 002636.txt │ ├── 002637.txt │ ├── 002638.txt │ ├── 002639.txt │ ├── 002640.txt │ ├── 002641.txt │ ├── 002642.txt │ ├── 002643.txt │ ├── 002644.txt │ ├── 002646.txt │ ├── 002647.txt │ ├── 002648.txt │ ├── 002649.txt │ ├── 002650.txt │ ├── 002651.txt │ ├── 002652.txt │ ├── 002653.txt │ ├── 002654.txt │ ├── 002655.txt │ ├── 002656.txt │ ├── 002657.txt │ ├── 002658.txt │ ├── 002659.txt │ ├── 002660.txt │ ├── 002661.txt │ ├── 002663.txt │ ├── 002664.txt │ ├── 002665.txt │ ├── 002666.txt │ ├── 002667.txt │ ├── 002668.txt │ ├── 002669.txt │ ├── 002671.txt │ ├── 002672.txt │ ├── 002674.txt │ ├── 002675.txt │ ├── 002676.txt │ ├── 002677.txt │ ├── 002678.txt │ ├── 002679.txt │ ├── 002680.txt │ ├── 002683.txt │ ├── 002684.txt │ ├── 002685.txt │ ├── 002686.txt │ ├── 002687.txt │ ├── 002688.txt │ ├── 002689.txt │ ├── 002690.txt │ ├── 002691.txt │ ├── 002693.txt │ ├── 002694.txt │ ├── 002695.txt │ ├── 002696.txt │ ├── 002697.txt │ ├── 002698.txt │ ├── 002699.txt │ ├── 002700.txt │ ├── 002701.txt │ ├── 002702.txt │ ├── 002703.txt │ ├── 002704.txt │ ├── 002705.txt │ ├── 002706.txt │ ├── 002707.txt │ ├── 002708.txt │ ├── 002709.txt │ ├── 002710.txt │ ├── 002711.txt │ ├── 002712.txt │ ├── 002713.txt │ ├── 002714.txt │ ├── 002715.txt │ ├── 002716.txt │ ├── 002717.txt │ ├── 002718.txt │ ├── 002719.txt │ ├── 002720.txt │ ├── 002721.txt │ ├── 002722.txt │ ├── 002723.txt │ ├── 002724.txt │ ├── 002725.txt │ ├── 002726.txt │ ├── 002727.txt │ ├── 002728.txt │ ├── 002729.txt │ ├── 002732.txt │ ├── 002733.txt │ ├── 002734.txt │ ├── 002735.txt │ ├── 002736.txt │ ├── 002737.txt │ ├── 002738.txt │ ├── 002739.txt │ ├── 002740.txt │ ├── 002741.txt │ ├── 002742.txt │ ├── 002743.txt │ ├── 002744.txt │ ├── 002745.txt │ ├── 002747.txt │ ├── 002748.txt │ ├── 002749.txt │ ├── 002750.txt │ ├── 002751.txt │ ├── 002752.txt │ ├── 002753.txt │ ├── 002754.txt │ ├── 002755.txt │ ├── 002756.txt │ ├── 002757.txt │ ├── 002758.txt │ ├── 002760.txt │ ├── 002761.txt │ ├── 002762.txt │ ├── 002763.txt │ ├── 002764.txt │ ├── 002765.txt │ ├── 002766.txt │ ├── 002767.txt │ ├── 002768.txt │ ├── 002769.txt │ ├── 002770.txt │ ├── 002771.txt │ ├── 002773.txt │ ├── 002774.txt │ ├── 002775.txt │ ├── 002776.txt │ ├── 002777.txt │ ├── 002778.txt │ ├── 002779.txt │ ├── 002781.txt │ ├── 002783.txt │ ├── 002784.txt │ ├── 002785.txt │ ├── 002786.txt │ ├── 002788.txt │ ├── 002789.txt │ ├── 002790.txt │ ├── 002791.txt │ ├── 002792.txt │ ├── 002793.txt │ ├── 002794.txt │ ├── 002795.txt │ ├── 002796.txt │ ├── 002797.txt │ ├── 002798.txt │ ├── 002799.txt │ ├── 002800.txt │ ├── 002801.txt │ ├── 002802.txt │ ├── 002804.txt │ ├── 002805.txt │ ├── 002806.txt │ ├── 002807.txt │ ├── 002808.txt │ ├── 002809.txt │ ├── 002810.txt │ ├── 002813.txt │ ├── 002814.txt │ ├── 002815.txt │ ├── 002816.txt │ ├── 002817.txt │ ├── 002818.txt │ ├── 002819.txt │ ├── 002820.txt │ ├── 002821.txt │ ├── 002822.txt │ ├── 002823.txt │ ├── 002825.txt │ ├── 002826.txt │ ├── 002827.txt │ ├── 002828.txt │ ├── 002829.txt │ ├── 002830.txt │ ├── 002831.txt │ ├── 002832.txt │ ├── 002834.txt │ ├── 002835.txt │ ├── 002836.txt │ ├── 002837.txt │ ├── 002838.txt │ ├── 002839.txt │ ├── 002840.txt │ ├── 002841.txt │ ├── 002842.txt │ ├── 002843.txt │ ├── 002844.txt │ ├── 002845.txt │ ├── 002846.txt │ ├── 002847.txt │ ├── 002848.txt │ ├── 002849.txt │ ├── 002850.txt │ ├── 002851.txt │ ├── 002853.txt │ ├── 002856.txt │ ├── 002857.txt │ ├── 002858.txt │ ├── 002859.txt │ ├── 002860.txt │ ├── 002861.txt │ ├── 002862.txt │ ├── 002863.txt │ ├── 002864.txt │ ├── 002865.txt │ ├── 002866.txt │ ├── 002867.txt │ ├── 002868.txt │ ├── 002869.txt │ ├── 002870.txt │ ├── 002871.txt │ ├── 002873.txt │ ├── 002874.txt │ ├── 002875.txt │ ├── 002876.txt │ ├── 002877.txt │ ├── 002878.txt │ ├── 002879.txt │ ├── 002880.txt │ ├── 002881.txt │ ├── 002882.txt │ ├── 002883.txt │ ├── 002884.txt │ ├── 002885.txt │ ├── 002887.txt │ ├── 002888.txt │ ├── 002889.txt │ ├── 002891.txt │ ├── 002892.txt │ ├── 002893.txt │ ├── 002894.txt │ ├── 002895.txt │ ├── 002896.txt │ ├── 002897.txt │ ├── 002898.txt │ ├── 002899.txt │ ├── 002900.txt │ ├── 002901.txt │ ├── 002902.txt │ ├── 002904.txt │ ├── 002905.txt │ ├── 002906.txt │ ├── 002907.txt │ ├── 002908.txt │ ├── 002909.txt │ ├── 002910.txt │ ├── 002911.txt │ ├── 002912.txt │ ├── 002913.txt │ ├── 002914.txt │ ├── 002915.txt │ ├── 002916.txt │ ├── 002917.txt │ ├── 002918.txt │ ├── 002919.txt │ ├── 002920.txt │ ├── 002921.txt │ ├── 002922.txt │ ├── 002923.txt │ ├── 002924.txt │ ├── 002925.txt │ ├── 002926.txt │ ├── 002927.txt │ ├── 002928.txt │ ├── 002929.txt │ ├── 002930.txt │ ├── 002931.txt │ ├── 002932.txt │ ├── 002933.txt │ ├── 002934.txt │ ├── 002935.txt │ ├── 002936.txt │ ├── 002937.txt │ ├── 002938.txt │ ├── 002939.txt │ ├── 002940.txt │ ├── 002941.txt │ ├── 002942.txt │ ├── 002943.txt │ ├── 002944.txt │ ├── 002945.txt │ ├── 002946.txt │ ├── 002947.txt │ ├── 002948.txt │ ├── 002949.txt │ ├── 002950.txt │ ├── 002951.txt │ ├── 002952.txt │ ├── 002954.txt │ ├── 002955.txt │ ├── 002956.txt │ ├── 002957.txt │ ├── 002959.txt │ ├── 002960.txt │ ├── 002961.txt │ ├── 002962.txt │ ├── 002963.txt │ ├── 002964.txt │ ├── 002965.txt │ ├── 002966.txt │ ├── 002967.txt │ ├── 002968.txt │ ├── 002969.txt │ ├── 002970.txt │ ├── 002971.txt │ ├── 002972.txt │ ├── 002973.txt │ ├── 002974.txt │ ├── 002975.txt │ ├── 002976.txt │ ├── 002977.txt │ ├── 002979.txt │ ├── 002981.txt │ ├── 002982.txt │ ├── 002983.txt │ ├── 002984.txt │ ├── 002985.txt │ ├── 002987.txt │ ├── 002988.txt │ ├── 002989.txt │ ├── 002990.txt │ ├── 002991.txt │ ├── 002992.txt │ ├── 002994.txt │ ├── 002995.txt │ ├── 002996.txt │ ├── 002997.txt │ ├── 002998.txt │ ├── 002999.txt │ ├── 003000.txt │ ├── 003001.txt │ ├── 003002.txt │ ├── 003003.txt │ ├── 003005.txt │ ├── 003006.txt │ ├── 003007.txt │ ├── 003008.txt │ ├── 003009.txt │ ├── 003010.txt │ ├── 003011.txt │ ├── 003012.txt │ ├── 003013.txt │ ├── 003014.txt │ ├── 003015.txt │ ├── 003016.txt │ ├── 003017.txt │ ├── 003018.txt │ ├── 003019.txt │ ├── 003020.txt │ ├── 003021.txt │ ├── 003022.txt │ ├── 003023.txt │ ├── 003024.txt │ ├── 003025.txt │ ├── 003026.txt │ ├── 003027.txt │ ├── 003028.txt │ ├── 003030.txt │ ├── 003031.txt │ ├── 003032.txt │ ├── 003033.txt │ ├── 003034.txt │ ├── 003036.txt │ ├── 003037.txt │ ├── 003038.txt │ ├── 003039.txt │ ├── 003040.txt │ ├── 003041.txt │ ├── 003042.txt │ ├── 003043.txt │ ├── 003044.txt │ ├── 003046.txt │ ├── 003047.txt │ ├── 003048.txt │ ├── 003049.txt │ ├── 003050.txt │ ├── 003052.txt │ ├── 003054.txt │ ├── 003056.txt │ ├── 003057.txt │ ├── 003058.txt │ ├── 003060.txt │ ├── 003061.txt │ ├── 003062.txt │ ├── 003063.txt │ ├── 003064.txt │ ├── 003065.txt │ ├── 003066.txt │ ├── 003067.txt │ ├── 003068.txt │ ├── 003069.txt │ ├── 003070.txt │ ├── 003071.txt │ ├── 003073.txt │ ├── 003074.txt │ ├── 003075.txt │ ├── 003077.txt │ ├── 003078.txt │ ├── 003079.txt │ ├── 003080.txt │ ├── 003081.txt │ ├── 003082.txt │ ├── 003083.txt │ ├── 003084.txt │ ├── 003085.txt │ ├── 003086.txt │ ├── 003087.txt │ ├── 003088.txt │ ├── 003089.txt │ ├── 003091.txt │ ├── 003092.txt │ ├── 003093.txt │ ├── 003094.txt │ ├── 003095.txt │ ├── 003096.txt │ ├── 003097.txt │ ├── 003098.txt │ ├── 003099.txt │ ├── 003100.txt │ ├── 003101.txt │ ├── 003102.txt │ ├── 003103.txt │ ├── 003104.txt │ ├── 003105.txt │ ├── 003106.txt │ ├── 003107.txt │ ├── 003108.txt │ ├── 003110.txt │ ├── 003112.txt │ ├── 003113.txt │ ├── 003114.txt │ ├── 003115.txt │ ├── 003116.txt │ ├── 003117.txt │ ├── 003118.txt │ ├── 003121.txt │ ├── 003122.txt │ ├── 003123.txt │ ├── 003125.txt │ ├── 003126.txt │ ├── 003127.txt │ ├── 003128.txt │ ├── 003129.txt │ ├── 003130.txt │ ├── 003131.txt │ ├── 003132.txt │ ├── 003134.txt │ ├── 003135.txt │ ├── 003136.txt │ ├── 003137.txt │ ├── 003138.txt │ ├── 003139.txt │ ├── 003140.txt │ ├── 003141.txt │ ├── 003143.txt │ ├── 003144.txt │ ├── 003145.txt │ ├── 003146.txt │ ├── 003147.txt │ ├── 003148.txt │ ├── 003149.txt │ ├── 003150.txt │ ├── 003151.txt │ ├── 003152.txt │ ├── 003153.txt │ ├── 003154.txt │ ├── 003156.txt │ ├── 003157.txt │ ├── 003158.txt │ ├── 003159.txt │ ├── 003160.txt │ ├── 003161.txt │ ├── 003162.txt │ ├── 003163.txt │ ├── 003164.txt │ ├── 003165.txt │ ├── 003166.txt │ ├── 003167.txt │ ├── 003168.txt │ ├── 003169.txt │ ├── 003170.txt │ ├── 003171.txt │ ├── 003172.txt │ ├── 003173.txt │ ├── 003174.txt │ ├── 003175.txt │ ├── 003176.txt │ ├── 003177.txt │ ├── 003178.txt │ ├── 003179.txt │ ├── 003181.txt │ ├── 003182.txt │ ├── 003183.txt │ ├── 003184.txt │ ├── 003185.txt │ ├── 003186.txt │ ├── 003187.txt │ ├── 003189.txt │ ├── 003190.txt │ ├── 003191.txt │ ├── 003192.txt │ ├── 003193.txt │ ├── 003194.txt │ ├── 003195.txt │ ├── 003196.txt │ ├── 003197.txt │ ├── 003198.txt │ ├── 003199.txt │ ├── 003200.txt │ ├── 003201.txt │ ├── 003202.txt │ ├── 003203.txt │ ├── 003204.txt │ ├── 003205.txt │ ├── 003206.txt │ ├── 003207.txt │ ├── 003208.txt │ ├── 003210.txt │ ├── 003211.txt │ ├── 003214.txt │ ├── 003215.txt │ ├── 003216.txt │ ├── 003217.txt │ ├── 003218.txt │ ├── 003219.txt │ ├── 003220.txt │ ├── 003221.txt │ ├── 003222.txt │ ├── 003223.txt │ ├── 003224.txt │ ├── 003225.txt │ ├── 003226.txt │ ├── 003228.txt │ ├── 003229.txt │ ├── 003230.txt │ ├── 003231.txt │ ├── 003233.txt │ ├── 003234.txt │ ├── 003236.txt │ ├── 003237.txt │ ├── 003238.txt │ ├── 003239.txt │ ├── 003241.txt │ ├── 003242.txt │ ├── 003243.txt │ ├── 003244.txt │ ├── 003245.txt │ ├── 003246.txt │ ├── 003247.txt │ ├── 003248.txt │ ├── 003249.txt │ ├── 003250.txt │ ├── 003251.txt │ ├── 003252.txt │ ├── 003253.txt │ ├── 003254.txt │ ├── 003255.txt │ ├── 003256.txt │ ├── 003257.txt │ ├── 003258.txt │ ├── 003259.txt │ ├── 003260.txt │ ├── 003261.txt │ ├── 003262.txt │ ├── 003263.txt │ ├── 003264.txt │ ├── 003265.txt │ ├── 003266.txt │ ├── 003267.txt │ ├── 003268.txt │ ├── 003269.txt │ ├── 003270.txt │ ├── 003271.txt │ ├── 003273.txt │ ├── 003274.txt │ ├── 003275.txt │ ├── 003276.txt │ ├── 003277.txt │ ├── 003278.txt │ ├── 003279.txt │ ├── 003280.txt │ ├── 003281.txt │ ├── 003282.txt │ ├── 003283.txt │ ├── 003284.txt │ ├── 003285.txt │ ├── 003286.txt │ ├── 003287.txt │ ├── 003288.txt │ ├── 003289.txt │ ├── 003291.txt │ ├── 003292.txt │ ├── 003293.txt │ ├── 003294.txt │ ├── 003296.txt │ ├── 003297.txt │ ├── 003298.txt │ ├── 003299.txt │ ├── 003303.txt │ ├── 003304.txt │ ├── 003305.txt │ ├── 003306.txt │ ├── 003308.txt │ ├── 003310.txt │ ├── 003311.txt │ ├── 003312.txt │ ├── 003313.txt │ ├── 003315.txt │ ├── 003316.txt │ ├── 003317.txt │ ├── 003318.txt │ ├── 003319.txt │ ├── 003320.txt │ ├── 003321.txt │ ├── 003322.txt │ ├── 003323.txt │ ├── 003324.txt │ ├── 003325.txt │ ├── 003326.txt │ ├── 003327.txt │ ├── 003328.txt │ ├── 003329.txt │ ├── 003330.txt │ ├── 003331.txt │ ├── 003332.txt │ ├── 003333.txt │ ├── 003334.txt │ ├── 003335.txt │ ├── 003336.txt │ ├── 003337.txt │ ├── 003338.txt │ ├── 003339.txt │ ├── 003341.txt │ ├── 003342.txt │ ├── 003343.txt │ ├── 003344.txt │ ├── 003345.txt │ ├── 003346.txt │ ├── 003347.txt │ ├── 003348.txt │ ├── 003349.txt │ ├── 003351.txt │ ├── 003352.txt │ ├── 003353.txt │ ├── 003354.txt │ ├── 003355.txt │ ├── 003356.txt │ ├── 003358.txt │ ├── 003359.txt │ ├── 003360.txt │ ├── 003361.txt │ ├── 003362.txt │ ├── 003363.txt │ ├── 003364.txt │ ├── 003365.txt │ ├── 003366.txt │ ├── 003367.txt │ ├── 003370.txt │ ├── 003371.txt │ ├── 003372.txt │ ├── 003373.txt │ ├── 003374.txt │ ├── 003375.txt │ ├── 003376.txt │ ├── 003377.txt │ ├── 003378.txt │ ├── 003379.txt │ ├── 003380.txt │ ├── 003381.txt │ ├── 003382.txt │ ├── 003383.txt │ ├── 003384.txt │ ├── 003385.txt │ ├── 003386.txt │ ├── 003388.txt │ ├── 003389.txt │ ├── 003390.txt │ ├── 003391.txt │ ├── 003392.txt │ ├── 003393.txt │ ├── 003396.txt │ ├── 003397.txt │ ├── 003398.txt │ ├── 003399.txt │ ├── 003400.txt │ ├── 003401.txt │ ├── 003402.txt │ ├── 003404.txt │ ├── 003405.txt │ ├── 003406.txt │ ├── 003407.txt │ ├── 003408.txt │ ├── 003409.txt │ ├── 003410.txt │ ├── 003411.txt │ ├── 003412.txt │ ├── 003413.txt │ ├── 003414.txt │ ├── 003417.txt │ ├── 003419.txt │ ├── 003420.txt │ ├── 003421.txt │ ├── 003422.txt │ ├── 003423.txt │ ├── 003424.txt │ ├── 003425.txt │ ├── 003426.txt │ ├── 003427.txt │ ├── 003428.txt │ ├── 003429.txt │ ├── 003430.txt │ ├── 003431.txt │ ├── 003432.txt │ ├── 003433.txt │ ├── 003434.txt │ ├── 003435.txt │ ├── 003436.txt │ ├── 003437.txt │ ├── 003438.txt │ ├── 003440.txt │ ├── 003441.txt │ ├── 003442.txt │ ├── 003443.txt │ ├── 003444.txt │ ├── 003445.txt │ ├── 003446.txt │ ├── 003447.txt │ ├── 003448.txt │ ├── 003449.txt │ ├── 003451.txt │ ├── 003452.txt │ ├── 003453.txt │ ├── 003454.txt │ ├── 003455.txt │ ├── 003456.txt │ ├── 003457.txt │ ├── 003458.txt │ ├── 003459.txt │ ├── 003460.txt │ ├── 003461.txt │ ├── 003462.txt │ ├── 003463.txt │ ├── 003464.txt │ ├── 003465.txt │ ├── 003466.txt │ ├── 003467.txt │ ├── 003469.txt │ ├── 003471.txt │ ├── 003473.txt │ ├── 003474.txt │ ├── 003476.txt │ ├── 003477.txt │ ├── 003478.txt │ ├── 003479.txt │ ├── 003481.txt │ ├── 003482.txt │ ├── 003483.txt │ ├── 003484.txt │ ├── 003485.txt │ ├── 003486.txt │ ├── 003487.txt │ ├── 003489.txt │ ├── 003490.txt │ ├── 003491.txt │ ├── 003492.txt │ ├── 003493.txt │ ├── 003494.txt │ ├── 003495.txt │ ├── 003496.txt │ ├── 003497.txt │ ├── 003498.txt │ ├── 003499.txt │ ├── 003500.txt │ ├── 003503.txt │ ├── 003504.txt │ ├── 003505.txt │ ├── 003506.txt │ ├── 003507.txt │ ├── 003508.txt │ ├── 003509.txt │ ├── 003510.txt │ ├── 003511.txt │ ├── 003512.txt │ ├── 003513.txt │ ├── 003515.txt │ ├── 003516.txt │ ├── 003517.txt │ ├── 003518.txt │ ├── 003519.txt │ ├── 003520.txt │ ├── 003521.txt │ ├── 003522.txt │ ├── 003523.txt │ ├── 003524.txt │ ├── 003525.txt │ ├── 003526.txt │ ├── 003527.txt │ ├── 003528.txt │ ├── 003529.txt │ ├── 003530.txt │ ├── 003531.txt │ ├── 003532.txt │ ├── 003533.txt │ ├── 003534.txt │ ├── 003535.txt │ ├── 003537.txt │ ├── 003538.txt │ ├── 003539.txt │ ├── 003541.txt │ ├── 003542.txt │ ├── 003543.txt │ ├── 003544.txt │ ├── 003545.txt │ ├── 003546.txt │ ├── 003547.txt │ ├── 003548.txt │ ├── 003549.txt │ ├── 003550.txt │ ├── 003551.txt │ ├── 003552.txt │ ├── 003553.txt │ ├── 003554.txt │ ├── 003555.txt │ ├── 003556.txt │ ├── 003557.txt │ ├── 003558.txt │ ├── 003559.txt │ ├── 003560.txt │ ├── 003561.txt │ ├── 003562.txt │ ├── 003563.txt │ ├── 003564.txt │ ├── 003565.txt │ ├── 003566.txt │ ├── 003568.txt │ ├── 003569.txt │ ├── 003570.txt │ ├── 003571.txt │ ├── 003572.txt │ ├── 003573.txt │ ├── 003574.txt │ ├── 003575.txt │ ├── 003576.txt │ ├── 003577.txt │ ├── 003578.txt │ ├── 003579.txt │ ├── 003580.txt │ ├── 003581.txt │ ├── 003582.txt │ ├── 003583.txt │ ├── 003584.txt │ ├── 003585.txt │ ├── 003586.txt │ ├── 003587.txt │ ├── 003588.txt │ ├── 003589.txt │ ├── 003590.txt │ ├── 003591.txt │ ├── 003592.txt │ ├── 003599.txt │ ├── 003601.txt │ ├── 003603.txt │ ├── 003604.txt │ ├── 003605.txt │ ├── 003606.txt │ ├── 003610.txt │ ├── 003611.txt │ ├── 003612.txt │ ├── 003613.txt │ ├── 003614.txt │ ├── 003615.txt │ ├── 003616.txt │ ├── 003617.txt │ ├── 003618.txt │ ├── 003619.txt │ ├── 003620.txt │ ├── 003622.txt │ ├── 003623.txt │ ├── 003624.txt │ ├── 003625.txt │ ├── 003626.txt │ ├── 003627.txt │ ├── 003628.txt │ ├── 003629.txt │ ├── 003630.txt │ ├── 003631.txt │ ├── 003632.txt │ ├── 003633.txt │ ├── 003634.txt │ ├── 003636.txt │ ├── 003637.txt │ ├── 003638.txt │ ├── 003639.txt │ ├── 003640.txt │ ├── 003641.txt │ ├── 003642.txt │ ├── 003643.txt │ ├── 003644.txt │ ├── 003645.txt │ ├── 003646.txt │ ├── 003647.txt │ ├── 003649.txt │ ├── 003650.txt │ ├── 003651.txt │ ├── 003652.txt │ ├── 003653.txt │ ├── 003654.txt │ ├── 003655.txt │ ├── 003656.txt │ ├── 003657.txt │ ├── 003658.txt │ ├── 003659.txt │ ├── 003660.txt │ ├── 003661.txt │ ├── 003662.txt │ ├── 003664.txt │ ├── 003665.txt │ ├── 003666.txt │ ├── 003667.txt │ ├── 003668.txt │ ├── 003669.txt │ ├── 003671.txt │ ├── 003672.txt │ ├── 003673.txt │ ├── 003674.txt │ ├── 003675.txt │ ├── 003676.txt │ ├── 003677.txt │ ├── 003678.txt │ ├── 003679.txt │ ├── 003680.txt │ ├── 003681.txt │ ├── 003682.txt │ ├── 003683.txt │ ├── 003684.txt │ ├── 003685.txt │ ├── 003686.txt │ ├── 003687.txt │ ├── 003688.txt │ ├── 003689.txt │ ├── 003690.txt │ ├── 003691.txt │ ├── 003692.txt │ ├── 003693.txt │ ├── 003694.txt │ ├── 003695.txt │ ├── 003696.txt │ ├── 003697.txt │ ├── 003698.txt │ ├── 003699.txt │ ├── 003700.txt │ ├── 003701.txt │ ├── 003702.txt │ ├── 003703.txt │ ├── 003704.txt │ ├── 003705.txt │ ├── 003706.txt │ ├── 003707.txt │ ├── 003709.txt │ ├── 003711.txt │ ├── 003712.txt │ ├── 003713.txt │ ├── 003714.txt │ ├── 003715.txt │ ├── 003716.txt │ ├── 003717.txt │ ├── 003718.txt │ ├── 003719.txt │ ├── 003720.txt │ ├── 003722.txt │ ├── 003723.txt │ ├── 003724.txt │ ├── 003725.txt │ ├── 003726.txt │ ├── 003727.txt │ ├── 003728.txt │ ├── 003729.txt │ ├── 003730.txt │ ├── 003731.txt │ ├── 003732.txt │ ├── 003733.txt │ ├── 003735.txt │ ├── 003736.txt │ ├── 003737.txt │ ├── 003738.txt │ ├── 003739.txt │ ├── 003740.txt │ ├── 003741.txt │ ├── 003746.txt │ ├── 003747.txt │ ├── 003748.txt │ ├── 003749.txt │ ├── 003751.txt │ ├── 003752.txt │ ├── 003753.txt │ ├── 003754.txt │ ├── 003755.txt │ ├── 003756.txt │ ├── 003757.txt │ ├── 003758.txt │ ├── 003759.txt │ ├── 003760.txt │ ├── 003761.txt │ ├── 003762.txt │ ├── 003763.txt │ ├── 003764.txt │ ├── 003765.txt │ ├── 003766.txt │ ├── 003768.txt │ ├── 003769.txt │ ├── 003771.txt │ ├── 003772.txt │ ├── 003774.txt │ ├── 003775.txt │ ├── 003776.txt │ ├── 003777.txt │ ├── 003778.txt │ ├── 003779.txt │ ├── 003780.txt │ ├── 003781.txt │ ├── 003782.txt │ ├── 003783.txt │ ├── 003784.txt │ ├── 003785.txt │ ├── 003786.txt │ ├── 003788.txt │ ├── 003789.txt │ ├── 003790.txt │ ├── 003791.txt │ ├── 003792.txt │ ├── 003793.txt │ ├── 003795.txt │ ├── 003796.txt │ ├── 003797.txt │ ├── 003798.txt │ ├── 003799.txt │ ├── 003800.txt │ ├── 003801.txt │ ├── 003802.txt │ ├── 003804.txt │ ├── 003805.txt │ ├── 003808.txt │ ├── 003809.txt │ ├── 003810.txt │ ├── 003811.txt │ ├── 003812.txt │ ├── 003813.txt │ ├── 003814.txt │ ├── 003815.txt │ ├── 003816.txt │ ├── 003817.txt │ ├── 003818.txt │ ├── 003819.txt │ ├── 003820.txt │ ├── 003821.txt │ ├── 003822.txt │ ├── 003823.txt │ ├── 003825.txt │ ├── 003826.txt │ ├── 003827.txt │ ├── 003828.txt │ ├── 003829.txt │ ├── 003830.txt │ ├── 003831.txt │ ├── 003832.txt │ ├── 003833.txt │ ├── 003834.txt │ ├── 003836.txt │ ├── 003837.txt │ ├── 003838.txt │ ├── 003839.txt │ ├── 003840.txt │ ├── 003842.txt │ ├── 003843.txt │ ├── 003844.txt │ ├── 003845.txt │ ├── 003846.txt │ ├── 003847.txt │ ├── 003848.txt │ ├── 003849.txt │ ├── 003850.txt │ ├── 003851.txt │ ├── 003852.txt │ ├── 003853.txt │ ├── 003854.txt │ ├── 003855.txt │ ├── 003857.txt │ ├── 003859.txt │ ├── 003860.txt │ ├── 003861.txt │ ├── 003862.txt │ ├── 003863.txt │ ├── 003864.txt │ ├── 003865.txt │ ├── 003866.txt │ ├── 003867.txt │ ├── 003868.txt │ ├── 003869.txt │ ├── 003870.txt │ ├── 003871.txt │ ├── 003872.txt │ ├── 003873.txt │ ├── 003874.txt │ ├── 003875.txt │ ├── 003876.txt │ ├── 003877.txt │ ├── 003878.txt │ ├── 003879.txt │ ├── 003881.txt │ ├── 003882.txt │ ├── 003883.txt │ ├── 003885.txt │ ├── 003886.txt │ ├── 003887.txt │ ├── 003889.txt │ ├── 003890.txt │ ├── 003891.txt │ ├── 003892.txt │ ├── 003893.txt │ ├── 003894.txt │ ├── 003895.txt │ ├── 003896.txt │ ├── 003897.txt │ ├── 003898.txt │ ├── 003899.txt │ ├── 003900.txt │ ├── 003901.txt │ ├── 003902.txt │ ├── 003903.txt │ ├── 003904.txt │ ├── 003905.txt │ ├── 003906.txt │ ├── 003907.txt │ ├── 003908.txt │ ├── 003909.txt │ ├── 003910.txt │ ├── 003911.txt │ ├── 003912.txt │ ├── 003913.txt │ ├── 003914.txt │ ├── 003915.txt │ ├── 003916.txt │ ├── 003917.txt │ ├── 003918.txt │ ├── 003919.txt │ ├── 003920.txt │ ├── 003924.txt │ ├── 003925.txt │ ├── 003926.txt │ ├── 003927.txt │ ├── 003928.txt │ ├── 003929.txt │ ├── 003930.txt │ ├── 003931.txt │ ├── 003932.txt │ ├── 003933.txt │ ├── 003934.txt │ ├── 003935.txt │ ├── 003937.txt │ ├── 003938.txt │ ├── 003940.txt │ ├── 003941.txt │ ├── 003942.txt │ ├── 003944.txt │ ├── 003945.txt │ ├── 003946.txt │ ├── 003947.txt │ ├── 003948.txt │ ├── 003949.txt │ ├── 003951.txt │ ├── 003952.txt │ ├── 003953.txt │ ├── 003954.txt │ ├── 003955.txt │ ├── 003956.txt │ ├── 003957.txt │ ├── 003960.txt │ ├── 003962.txt │ ├── 003963.txt │ ├── 003964.txt │ ├── 003965.txt │ ├── 003968.txt │ ├── 003969.txt │ ├── 003970.txt │ ├── 003971.txt │ ├── 003972.txt │ ├── 003973.txt │ ├── 003974.txt │ ├── 003975.txt │ ├── 003976.txt │ ├── 003977.txt │ ├── 003978.txt │ ├── 003979.txt │ ├── 003980.txt │ ├── 003982.txt │ ├── 003983.txt │ ├── 003985.txt │ ├── 003987.txt │ ├── 003988.txt │ ├── 003989.txt │ ├── 003990.txt │ ├── 003991.txt │ ├── 003994.txt │ ├── 003995.txt │ ├── 003996.txt │ ├── 003997.txt │ ├── 003998.txt │ ├── 003999.txt │ ├── 004000.txt │ ├── 004001.txt │ ├── 004002.txt │ ├── 004003.txt │ ├── 004004.txt │ ├── 004005.txt │ ├── 004006.txt │ ├── 004008.txt │ ├── 004009.txt │ ├── 004010.txt │ ├── 004011.txt │ ├── 004012.txt │ ├── 004013.txt │ ├── 004014.txt │ ├── 004015.txt │ ├── 004016.txt │ ├── 004017.txt │ ├── 004018.txt │ ├── 004019.txt │ ├── 004020.txt │ ├── 004021.txt │ ├── 004022.txt │ ├── 004023.txt │ ├── 004024.txt │ ├── 004025.txt │ ├── 004026.txt │ ├── 004027.txt │ ├── 004028.txt │ ├── 004029.txt │ ├── 004030.txt │ ├── 004031.txt │ ├── 004032.txt │ ├── 004033.txt │ ├── 004034.txt │ ├── 004035.txt │ ├── 004036.txt │ ├── 004037.txt │ ├── 004038.txt │ ├── 004039.txt │ ├── 004040.txt │ ├── 004041.txt │ ├── 004042.txt │ ├── 004043.txt │ ├── 004044.txt │ ├── 004045.txt │ ├── 004046.txt │ ├── 004047.txt │ ├── 004048.txt │ ├── 004049.txt │ ├── 004050.txt │ ├── 004051.txt │ ├── 004052.txt │ ├── 004053.txt │ ├── 004054.txt │ ├── 004055.txt │ ├── 004056.txt │ ├── 004058.txt │ ├── 004059.txt │ ├── 004060.txt │ ├── 004061.txt │ ├── 004062.txt │ ├── 004063.txt │ ├── 004064.txt │ ├── 004065.txt │ ├── 004066.txt │ ├── 004068.txt │ ├── 004069.txt │ ├── 004070.txt │ ├── 004071.txt │ ├── 004072.txt │ ├── 004073.txt │ ├── 004074.txt │ ├── 004075.txt │ ├── 004076.txt │ ├── 004077.txt │ ├── 004078.txt │ ├── 004080.txt │ ├── 004081.txt │ ├── 004082.txt │ ├── 004083.txt │ ├── 004084.txt │ ├── 004086.txt │ ├── 004088.txt │ ├── 004089.txt │ ├── 004092.txt │ ├── 004093.txt │ ├── 004094.txt │ ├── 004096.txt │ ├── 004097.txt │ ├── 004098.txt │ ├── 004099.txt │ ├── 004101.txt │ ├── 004102.txt │ ├── 004103.txt │ ├── 004104.txt │ ├── 004105.txt │ ├── 004106.txt │ ├── 004107.txt │ ├── 004109.txt │ ├── 004110.txt │ ├── 004111.txt │ ├── 004112.txt │ ├── 004113.txt │ ├── 004115.txt │ ├── 004116.txt │ ├── 004117.txt │ ├── 004118.txt │ ├── 004119.txt │ ├── 004120.txt │ ├── 004121.txt │ ├── 004122.txt │ ├── 004124.txt │ ├── 004126.txt │ ├── 004128.txt │ ├── 004129.txt │ ├── 004130.txt │ ├── 004131.txt │ ├── 004132.txt │ ├── 004133.txt │ ├── 004134.txt │ ├── 004135.txt │ ├── 004136.txt │ ├── 004137.txt │ ├── 004138.txt │ ├── 004139.txt │ ├── 004140.txt │ ├── 004141.txt │ ├── 004143.txt │ ├── 004144.txt │ ├── 004145.txt │ ├── 004146.txt │ ├── 004147.txt │ ├── 004148.txt │ ├── 004149.txt │ ├── 004150.txt │ ├── 004151.txt │ ├── 004152.txt │ ├── 004153.txt │ ├── 004154.txt │ ├── 004156.txt │ ├── 004157.txt │ ├── 004158.txt │ ├── 004159.txt │ ├── 004160.txt │ ├── 004161.txt │ ├── 004162.txt │ ├── 004163.txt │ ├── 004164.txt │ ├── 004165.txt │ ├── 004166.txt │ ├── 004167.txt │ ├── 004168.txt │ ├── 004169.txt │ ├── 004170.txt │ ├── 004171.txt │ ├── 004172.txt │ ├── 004173.txt │ ├── 004174.txt │ ├── 004175.txt │ ├── 004176.txt │ ├── 004177.txt │ ├── 004178.txt │ ├── 004179.txt │ ├── 004181.txt │ ├── 004183.txt │ ├── 004184.txt │ ├── 004185.txt │ ├── 004186.txt │ ├── 004187.txt │ ├── 004189.txt │ ├── 004190.txt │ ├── 004191.txt │ ├── 004192.txt │ ├── 004193.txt │ ├── 004197.txt │ ├── 004198.txt │ ├── 004199.txt │ ├── 004200.txt │ ├── 004201.txt │ ├── 004202.txt │ ├── 004203.txt │ ├── 004204.txt │ ├── 004205.txt │ ├── 004206.txt │ ├── 004208.txt │ ├── 004209.txt │ ├── 004210.txt │ ├── 004211.txt │ ├── 004212.txt │ ├── 004213.txt │ ├── 004215.txt │ ├── 004216.txt │ ├── 004217.txt │ ├── 004218.txt │ ├── 004219.txt │ ├── 004220.txt │ ├── 004221.txt │ ├── 004222.txt │ ├── 004223.txt │ ├── 004224.txt │ ├── 004225.txt │ ├── 004226.txt │ ├── 004227.txt │ ├── 004228.txt │ ├── 004229.txt │ ├── 004230.txt │ ├── 004231.txt │ ├── 004232.txt │ ├── 004234.txt │ ├── 004235.txt │ ├── 004236.txt │ ├── 004237.txt │ ├── 004238.txt │ ├── 004239.txt │ ├── 004240.txt │ ├── 004241.txt │ ├── 004242.txt │ ├── 004243.txt │ ├── 004244.txt │ ├── 004245.txt │ ├── 004246.txt │ ├── 004247.txt │ ├── 004248.txt │ ├── 004249.txt │ ├── 004251.txt │ ├── 004252.txt │ ├── 004253.txt │ ├── 004254.txt │ ├── 004255.txt │ ├── 004256.txt │ ├── 004257.txt │ ├── 004258.txt │ ├── 004259.txt │ ├── 004260.txt │ ├── 004261.txt │ ├── 004262.txt │ ├── 004263.txt │ ├── 004264.txt │ ├── 004266.txt │ ├── 004267.txt │ ├── 004268.txt │ ├── 004269.txt │ ├── 004270.txt │ ├── 004271.txt │ ├── 004273.txt │ ├── 004274.txt │ ├── 004275.txt │ ├── 004276.txt │ ├── 004277.txt │ ├── 004278.txt │ ├── 004279.txt │ ├── 004280.txt │ ├── 004281.txt │ ├── 004282.txt │ ├── 004283.txt │ ├── 004284.txt │ ├── 004285.txt │ ├── 004286.txt │ ├── 004288.txt │ ├── 004289.txt │ ├── 004290.txt │ ├── 004291.txt │ ├── 004292.txt │ ├── 004293.txt │ ├── 004294.txt │ ├── 004295.txt │ ├── 004296.txt │ ├── 004297.txt │ ├── 004298.txt │ ├── 004299.txt │ ├── 004300.txt │ ├── 004301.txt │ ├── 004302.txt │ ├── 004303.txt │ ├── 004304.txt │ ├── 004305.txt │ ├── 004306.txt │ ├── 004308.txt │ ├── 004309.txt │ ├── 004310.txt │ ├── 004311.txt │ ├── 004313.txt │ ├── 004314.txt │ ├── 004315.txt │ ├── 004316.txt │ ├── 004317.txt │ ├── 004318.txt │ ├── 004319.txt │ ├── 004320.txt │ ├── 004321.txt │ ├── 004322.txt │ ├── 004323.txt │ ├── 004324.txt │ ├── 004325.txt │ ├── 004326.txt │ ├── 004327.txt │ ├── 004328.txt │ ├── 004329.txt │ ├── 004330.txt │ ├── 004331.txt │ ├── 004332.txt │ ├── 004333.txt │ ├── 004335.txt │ ├── 004336.txt │ ├── 004337.txt │ ├── 004338.txt │ ├── 004339.txt │ ├── 004340.txt │ ├── 004341.txt │ ├── 004342.txt │ ├── 004343.txt │ ├── 004344.txt │ ├── 004345.txt │ ├── 004346.txt │ ├── 004347.txt │ ├── 004348.txt │ ├── 004349.txt │ ├── 004350.txt │ ├── 004351.txt │ ├── 004352.txt │ ├── 004354.txt │ ├── 004355.txt │ ├── 004356.txt │ ├── 004357.txt │ ├── 004358.txt │ ├── 004359.txt │ ├── 004360.txt │ ├── 004361.txt │ ├── 004362.txt │ ├── 004363.txt │ ├── 004364.txt │ ├── 004365.txt │ ├── 004366.txt │ ├── 004367.txt │ ├── 004368.txt │ ├── 004369.txt │ ├── 004370.txt │ ├── 004371.txt │ ├── 004372.txt │ ├── 004373.txt │ ├── 004374.txt │ ├── 004375.txt │ ├── 004376.txt │ ├── 004377.txt │ ├── 004378.txt │ ├── 004379.txt │ ├── 004380.txt │ ├── 004381.txt │ ├── 004382.txt │ ├── 004383.txt │ ├── 004385.txt │ ├── 004386.txt │ ├── 004387.txt │ ├── 004388.txt │ ├── 004389.txt │ ├── 004390.txt │ ├── 004391.txt │ ├── 004392.txt │ ├── 004393.txt │ ├── 004394.txt │ ├── 004395.txt │ ├── 004396.txt │ ├── 004397.txt │ ├── 004400.txt │ ├── 004401.txt │ ├── 004403.txt │ ├── 004404.txt │ ├── 004406.txt │ ├── 004407.txt │ ├── 004408.txt │ ├── 004409.txt │ ├── 004410.txt │ ├── 004412.txt │ ├── 004414.txt │ ├── 004415.txt │ ├── 004416.txt │ ├── 004417.txt │ ├── 004419.txt │ ├── 004421.txt │ ├── 004422.txt │ ├── 004423.txt │ ├── 004424.txt │ ├── 004425.txt │ ├── 004427.txt │ ├── 004429.txt │ ├── 004430.txt │ ├── 004431.txt │ ├── 004433.txt │ ├── 004434.txt │ ├── 004435.txt │ ├── 004436.txt │ ├── 004437.txt │ ├── 004438.txt │ ├── 004439.txt │ ├── 004440.txt │ ├── 004441.txt │ ├── 004442.txt │ ├── 004443.txt │ ├── 004444.txt │ ├── 004446.txt │ ├── 004447.txt │ ├── 004448.txt │ ├── 004449.txt │ ├── 004450.txt │ ├── 004451.txt │ ├── 004454.txt │ ├── 004455.txt │ ├── 004456.txt │ ├── 004457.txt │ ├── 004458.txt │ ├── 004459.txt │ ├── 004460.txt │ ├── 004461.txt │ ├── 004462.txt │ ├── 004463.txt │ ├── 004465.txt │ ├── 004466.txt │ ├── 004467.txt │ ├── 004468.txt │ ├── 004469.txt │ ├── 004470.txt │ ├── 004471.txt │ ├── 004472.txt │ ├── 004473.txt │ ├── 004474.txt │ ├── 004476.txt │ ├── 004477.txt │ ├── 004478.txt │ ├── 004479.txt │ ├── 004480.txt │ ├── 004481.txt │ ├── 004482.txt │ ├── 004483.txt │ ├── 004484.txt │ ├── 004485.txt │ ├── 004486.txt │ ├── 004489.txt │ ├── 004490.txt │ ├── 004491.txt │ ├── 004492.txt │ ├── 004493.txt │ ├── 004494.txt │ ├── 004496.txt │ ├── 004497.txt │ ├── 004498.txt │ ├── 004499.txt │ ├── 004500.txt │ ├── 004501.txt │ ├── 004503.txt │ ├── 004504.txt │ ├── 004505.txt │ ├── 004506.txt │ ├── 004507.txt │ ├── 004508.txt │ ├── 004509.txt │ ├── 004510.txt │ ├── 004511.txt │ ├── 004512.txt │ ├── 004513.txt │ ├── 004514.txt │ ├── 004515.txt │ ├── 004516.txt │ ├── 004517.txt │ ├── 004518.txt │ ├── 004519.txt │ ├── 004520.txt │ ├── 004521.txt │ ├── 004522.txt │ ├── 004523.txt │ ├── 004524.txt │ ├── 004525.txt │ ├── 004526.txt │ ├── 004527.txt │ ├── 004528.txt │ ├── 004529.txt │ ├── 004530.txt │ ├── 004531.txt │ ├── 004532.txt │ ├── 004533.txt │ ├── 004534.txt │ ├── 004536.txt │ ├── 004537.txt │ ├── 004539.txt │ ├── 004540.txt │ ├── 004541.txt │ ├── 004542.txt │ ├── 004543.txt │ ├── 004544.txt │ ├── 004545.txt │ ├── 004547.txt │ ├── 004548.txt │ ├── 004550.txt │ ├── 004552.txt │ ├── 004553.txt │ ├── 004554.txt │ ├── 004555.txt │ ├── 004556.txt │ ├── 004557.txt │ ├── 004558.txt │ ├── 004559.txt │ ├── 004560.txt │ ├── 004561.txt │ ├── 004562.txt │ ├── 004563.txt │ ├── 004564.txt │ ├── 004565.txt │ ├── 004566.txt │ ├── 004567.txt │ ├── 004568.txt │ ├── 004569.txt │ ├── 004570.txt │ ├── 004571.txt │ ├── 004572.txt │ ├── 004573.txt │ ├── 004574.txt │ ├── 004575.txt │ ├── 004576.txt │ ├── 004577.txt │ ├── 004578.txt │ ├── 004579.txt │ ├── 004580.txt │ ├── 004581.txt │ ├── 004582.txt │ ├── 004583.txt │ ├── 004584.txt │ ├── 004585.txt │ ├── 004586.txt │ ├── 004587.txt │ ├── 004588.txt │ ├── 004589.txt │ ├── 004590.txt │ ├── 004591.txt │ ├── 004592.txt │ ├── 004593.txt │ ├── 004595.txt │ ├── 004596.txt │ ├── 004597.txt │ ├── 004599.txt │ ├── 004600.txt │ ├── 004601.txt │ ├── 004602.txt │ ├── 004603.txt │ ├── 004604.txt │ ├── 004605.txt │ ├── 004606.txt │ ├── 004607.txt │ ├── 004608.txt │ ├── 004609.txt │ ├── 004610.txt │ ├── 004611.txt │ ├── 004612.txt │ ├── 004614.txt │ ├── 004615.txt │ ├── 004616.txt │ ├── 004617.txt │ ├── 004618.txt │ ├── 004619.txt │ ├── 004620.txt │ ├── 004621.txt │ ├── 004622.txt │ ├── 004623.txt │ ├── 004624.txt │ ├── 004625.txt │ ├── 004626.txt │ ├── 004628.txt │ ├── 004629.txt │ ├── 004630.txt │ ├── 004631.txt │ ├── 004632.txt │ ├── 004633.txt │ ├── 004634.txt │ ├── 004635.txt │ ├── 004636.txt │ ├── 004637.txt │ ├── 004638.txt │ ├── 004639.txt │ ├── 004640.txt │ ├── 004641.txt │ ├── 004644.txt │ ├── 004645.txt │ ├── 004646.txt │ ├── 004647.txt │ ├── 004648.txt │ ├── 004649.txt │ ├── 004650.txt │ ├── 004651.txt │ ├── 004652.txt │ ├── 004653.txt │ ├── 004654.txt │ ├── 004655.txt │ ├── 004657.txt │ ├── 004658.txt │ ├── 004659.txt │ ├── 004660.txt │ ├── 004661.txt │ ├── 004662.txt │ ├── 004663.txt │ ├── 004664.txt │ ├── 004665.txt │ ├── 004668.txt │ ├── 004669.txt │ ├── 004670.txt │ ├── 004671.txt │ ├── 004672.txt │ ├── 004673.txt │ ├── 004674.txt │ ├── 004675.txt │ ├── 004677.txt │ ├── 004678.txt │ ├── 004679.txt │ ├── 004680.txt │ ├── 004681.txt │ ├── 004682.txt │ ├── 004683.txt │ ├── 004684.txt │ ├── 004685.txt │ ├── 004686.txt │ ├── 004687.txt │ ├── 004688.txt │ ├── 004690.txt │ ├── 004691.txt │ ├── 004692.txt │ ├── 004693.txt │ ├── 004694.txt │ ├── 004695.txt │ ├── 004697.txt │ ├── 004698.txt │ ├── 004699.txt │ ├── 004700.txt │ ├── 004701.txt │ ├── 004702.txt │ ├── 004705.txt │ ├── 004706.txt │ ├── 004707.txt │ ├── 004708.txt │ ├── 004709.txt │ ├── 004710.txt │ ├── 004711.txt │ ├── 004712.txt │ ├── 004714.txt │ ├── 004715.txt │ ├── 004716.txt │ ├── 004717.txt │ ├── 004718.txt │ ├── 004719.txt │ ├── 004720.txt │ ├── 004722.txt │ ├── 004724.txt │ ├── 004725.txt │ ├── 004726.txt │ ├── 004727.txt │ ├── 004728.txt │ ├── 004730.txt │ ├── 004731.txt │ ├── 004732.txt │ ├── 004733.txt │ ├── 004734.txt │ ├── 004735.txt │ ├── 004736.txt │ ├── 004737.txt │ ├── 004738.txt │ ├── 004739.txt │ ├── 004740.txt │ ├── 004741.txt │ ├── 004742.txt │ ├── 004743.txt │ ├── 004744.txt │ ├── 004745.txt │ ├── 004746.txt │ ├── 004747.txt │ ├── 004748.txt │ ├── 004749.txt │ ├── 004750.txt │ ├── 004751.txt │ ├── 004752.txt │ ├── 004754.txt │ ├── 004755.txt │ ├── 004756.txt │ ├── 004757.txt │ ├── 004758.txt │ ├── 004759.txt │ ├── 004760.txt │ ├── 004761.txt │ ├── 004762.txt │ ├── 004763.txt │ ├── 004764.txt │ ├── 004766.txt │ ├── 004767.txt │ ├── 004768.txt │ ├── 004769.txt │ ├── 004770.txt │ ├── 004772.txt │ ├── 004773.txt │ ├── 004775.txt │ ├── 004776.txt │ ├── 004777.txt │ ├── 004778.txt │ ├── 004779.txt │ ├── 004780.txt │ ├── 004781.txt │ ├── 004783.txt │ ├── 004785.txt │ ├── 004787.txt │ ├── 004788.txt │ ├── 004789.txt │ ├── 004790.txt │ ├── 004791.txt │ ├── 004792.txt │ ├── 004793.txt │ ├── 004794.txt │ ├── 004795.txt │ ├── 004796.txt │ ├── 004797.txt │ ├── 004798.txt │ ├── 004799.txt │ ├── 004800.txt │ ├── 004801.txt │ ├── 004802.txt │ ├── 004803.txt │ ├── 004804.txt │ ├── 004805.txt │ ├── 004806.txt │ ├── 004807.txt │ ├── 004808.txt │ ├── 004809.txt │ ├── 004810.txt │ ├── 004811.txt │ ├── 004812.txt │ ├── 004813.txt │ ├── 004814.txt │ ├── 004815.txt │ ├── 004816.txt │ ├── 004817.txt │ ├── 004818.txt │ ├── 004819.txt │ ├── 004820.txt │ ├── 004821.txt │ ├── 004822.txt │ ├── 004823.txt │ ├── 004824.txt │ ├── 004825.txt │ ├── 004826.txt │ ├── 004827.txt │ ├── 004828.txt │ ├── 004829.txt │ ├── 004830.txt │ ├── 004831.txt │ ├── 004832.txt │ ├── 004833.txt │ ├── 004835.txt │ ├── 004836.txt │ ├── 004837.txt │ ├── 004838.txt │ ├── 004839.txt │ ├── 004840.txt │ ├── 004841.txt │ ├── 004842.txt │ ├── 004844.txt │ ├── 004845.txt │ ├── 004846.txt │ ├── 004847.txt │ ├── 004848.txt │ ├── 004849.txt │ ├── 004850.txt │ ├── 004851.txt │ ├── 004852.txt │ ├── 004853.txt │ ├── 004854.txt │ ├── 004855.txt │ ├── 004856.txt │ ├── 004857.txt │ ├── 004859.txt │ ├── 004860.txt │ ├── 004861.txt │ ├── 004862.txt │ ├── 004863.txt │ ├── 004865.txt │ ├── 004866.txt │ ├── 004867.txt │ ├── 004868.txt │ ├── 004869.txt │ ├── 004870.txt │ ├── 004871.txt │ ├── 004872.txt │ ├── 004873.txt │ ├── 004874.txt │ ├── 004875.txt │ ├── 004876.txt │ ├── 004877.txt │ ├── 004878.txt │ ├── 004880.txt │ ├── 004881.txt │ ├── 004882.txt │ ├── 004883.txt │ ├── 004884.txt │ ├── 004885.txt │ ├── 004886.txt │ ├── 004887.txt │ ├── 004888.txt │ ├── 004889.txt │ ├── 004891.txt │ ├── 004892.txt │ ├── 004893.txt │ ├── 004894.txt │ ├── 004895.txt │ ├── 004896.txt │ ├── 004897.txt │ ├── 004898.txt │ ├── 004899.txt │ ├── 004900.txt │ ├── 004901.txt │ ├── 004902.txt │ ├── 004903.txt │ ├── 004904.txt │ ├── 004905.txt │ ├── 004907.txt │ ├── 004908.txt │ ├── 004909.txt │ ├── 004910.txt │ ├── 004911.txt │ ├── 004912.txt │ ├── 004913.txt │ ├── 004914.txt │ ├── 004915.txt │ ├── 004916.txt │ ├── 004917.txt │ ├── 004918.txt │ ├── 004919.txt │ ├── 004920.txt │ ├── 004921.txt │ ├── 004923.txt │ ├── 004924.txt │ ├── 004925.txt │ ├── 004926.txt │ ├── 004929.txt │ ├── 004930.txt │ ├── 004931.txt │ ├── 004932.txt │ ├── 004933.txt │ ├── 004934.txt │ ├── 004935.txt │ ├── 004936.txt │ ├── 004937.txt │ ├── 004938.txt │ ├── 004939.txt │ ├── 004940.txt │ ├── 004941.txt │ ├── 004943.txt │ ├── 004944.txt │ ├── 004945.txt │ ├── 004946.txt │ ├── 004947.txt │ ├── 004949.txt │ ├── 004952.txt │ ├── 004953.txt │ ├── 004954.txt │ ├── 004955.txt │ ├── 004956.txt │ ├── 004957.txt │ ├── 004958.txt │ ├── 004959.txt │ ├── 004960.txt │ ├── 004961.txt │ ├── 004962.txt │ ├── 004963.txt │ ├── 004964.txt │ ├── 004965.txt │ ├── 004966.txt │ ├── 004967.txt │ ├── 004968.txt │ ├── 004970.txt │ ├── 004971.txt │ ├── 004972.txt │ ├── 004973.txt │ ├── 004974.txt │ ├── 004975.txt │ ├── 004977.txt │ ├── 004978.txt │ ├── 004979.txt │ ├── 004980.txt │ ├── 004981.txt │ ├── 004982.txt │ ├── 004983.txt │ ├── 004984.txt │ ├── 004986.txt │ ├── 004987.txt │ ├── 004988.txt │ ├── 004989.txt │ ├── 004990.txt │ ├── 004991.txt │ ├── 004992.txt │ ├── 004993.txt │ ├── 004994.txt │ ├── 004995.txt │ ├── 004996.txt │ ├── 004997.txt │ ├── 004998.txt │ ├── 004999.txt │ ├── 005000.txt │ ├── 005001.txt │ ├── 005002.txt │ ├── 005003.txt │ ├── 005004.txt │ ├── 005007.txt │ ├── 005008.txt │ ├── 005009.txt │ ├── 005010.txt │ ├── 005011.txt │ ├── 005012.txt │ ├── 005013.txt │ ├── 005014.txt │ ├── 005015.txt │ ├── 005016.txt │ ├── 005017.txt │ ├── 005018.txt │ ├── 005020.txt │ ├── 005021.txt │ ├── 005022.txt │ ├── 005023.txt │ ├── 005024.txt │ ├── 005025.txt │ ├── 005026.txt │ ├── 005027.txt │ ├── 005028.txt │ ├── 005029.txt │ ├── 005030.txt │ ├── 005031.txt │ ├── 005032.txt │ ├── 005033.txt │ ├── 005034.txt │ ├── 005035.txt │ ├── 005036.txt │ ├── 005037.txt │ ├── 005038.txt │ ├── 005039.txt │ ├── 005040.txt │ ├── 005041.txt │ ├── 005042.txt │ ├── 005044.txt │ ├── 005045.txt │ ├── 005046.txt │ ├── 005049.txt │ ├── 005050.txt │ ├── 005051.txt │ ├── 005053.txt │ ├── 005054.txt │ ├── 005055.txt │ ├── 005056.txt │ ├── 005057.txt │ ├── 005058.txt │ ├── 005061.txt │ ├── 005063.txt │ ├── 005064.txt │ ├── 005066.txt │ ├── 005067.txt │ ├── 005068.txt │ ├── 005069.txt │ ├── 005070.txt │ ├── 005071.txt │ ├── 005072.txt │ ├── 005073.txt │ ├── 005074.txt │ ├── 005075.txt │ ├── 005076.txt │ ├── 005077.txt │ ├── 005078.txt │ ├── 005079.txt │ ├── 005080.txt │ ├── 005082.txt │ ├── 005084.txt │ ├── 005085.txt │ ├── 005086.txt │ ├── 005087.txt │ ├── 005089.txt │ ├── 005090.txt │ ├── 005091.txt │ ├── 005092.txt │ ├── 005095.txt │ ├── 005096.txt │ ├── 005097.txt │ ├── 005098.txt │ ├── 005099.txt │ ├── 005100.txt │ ├── 005101.txt │ ├── 005102.txt │ ├── 005103.txt │ ├── 005104.txt │ ├── 005106.txt │ ├── 005107.txt │ ├── 005108.txt │ ├── 005110.txt │ ├── 005111.txt │ ├── 005113.txt │ ├── 005114.txt │ ├── 005115.txt │ ├── 005116.txt │ ├── 005117.txt │ ├── 005118.txt │ ├── 005119.txt │ ├── 005120.txt │ ├── 005121.txt │ ├── 005122.txt │ ├── 005123.txt │ ├── 005124.txt │ ├── 005125.txt │ ├── 005127.txt │ ├── 005128.txt │ ├── 005129.txt │ ├── 005130.txt │ ├── 005131.txt │ ├── 005132.txt │ ├── 005133.txt │ ├── 005134.txt │ ├── 005136.txt │ ├── 005137.txt │ ├── 005138.txt │ ├── 005139.txt │ ├── 005140.txt │ ├── 005141.txt │ ├── 005143.txt │ ├── 005144.txt │ ├── 005145.txt │ ├── 005146.txt │ ├── 005147.txt │ ├── 005148.txt │ ├── 005149.txt │ ├── 005150.txt │ ├── 005151.txt │ ├── 005152.txt │ ├── 005153.txt │ ├── 005154.txt │ ├── 005156.txt │ ├── 005157.txt │ ├── 005158.txt │ ├── 005159.txt │ ├── 005160.txt │ ├── 005161.txt │ ├── 005162.txt │ ├── 005163.txt │ ├── 005164.txt │ ├── 005165.txt │ ├── 005166.txt │ ├── 005167.txt │ ├── 005168.txt │ ├── 005170.txt │ ├── 005171.txt │ ├── 005172.txt │ ├── 005173.txt │ ├── 005174.txt │ ├── 005175.txt │ ├── 005177.txt │ ├── 005178.txt │ ├── 005179.txt │ ├── 005180.txt │ ├── 005182.txt │ ├── 005183.txt │ ├── 005184.txt │ ├── 005186.txt │ ├── 005187.txt │ ├── 005188.txt │ ├── 005189.txt │ ├── 005190.txt │ ├── 005191.txt │ ├── 005192.txt │ ├── 005193.txt │ ├── 005194.txt │ ├── 005196.txt │ ├── 005197.txt │ ├── 005198.txt │ ├── 005199.txt │ ├── 005200.txt │ ├── 005201.txt │ ├── 005202.txt │ ├── 005203.txt │ ├── 005204.txt │ ├── 005205.txt │ ├── 005206.txt │ ├── 005207.txt │ ├── 005208.txt │ ├── 005209.txt │ ├── 005210.txt │ ├── 005211.txt │ ├── 005212.txt │ ├── 005213.txt │ ├── 005214.txt │ ├── 005215.txt │ ├── 005216.txt │ ├── 005217.txt │ ├── 005218.txt │ ├── 005219.txt │ ├── 005220.txt │ ├── 005222.txt │ ├── 005223.txt │ ├── 005224.txt │ ├── 005225.txt │ ├── 005227.txt │ ├── 005228.txt │ ├── 005229.txt │ ├── 005230.txt │ ├── 005231.txt │ ├── 005232.txt │ ├── 005233.txt │ ├── 005234.txt │ ├── 005236.txt │ ├── 005237.txt │ ├── 005238.txt │ ├── 005239.txt │ ├── 005240.txt │ ├── 005241.txt │ ├── 005242.txt │ ├── 005243.txt │ ├── 005244.txt │ ├── 005245.txt │ ├── 005246.txt │ ├── 005247.txt │ ├── 005248.txt │ ├── 005249.txt │ ├── 005250.txt │ ├── 005251.txt │ ├── 005252.txt │ ├── 005253.txt │ ├── 005254.txt │ ├── 005255.txt │ ├── 005256.txt │ ├── 005257.txt │ ├── 005258.txt │ ├── 005259.txt │ ├── 005260.txt │ ├── 005262.txt │ ├── 005264.txt │ ├── 005265.txt │ ├── 005266.txt │ ├── 005267.txt │ ├── 005268.txt │ ├── 005269.txt │ ├── 005270.txt │ ├── 005272.txt │ ├── 005273.txt │ ├── 005274.txt │ ├── 005275.txt │ ├── 005276.txt │ ├── 005277.txt │ ├── 005278.txt │ ├── 005279.txt │ ├── 005281.txt │ ├── 005282.txt │ ├── 005283.txt │ ├── 005284.txt │ ├── 005286.txt │ ├── 005287.txt │ ├── 005288.txt │ ├── 005289.txt │ ├── 005291.txt │ ├── 005292.txt │ ├── 005293.txt │ ├── 005294.txt │ ├── 005295.txt │ ├── 005296.txt │ ├── 005298.txt │ ├── 005299.txt │ ├── 005300.txt │ ├── 005301.txt │ ├── 005302.txt │ ├── 005303.txt │ ├── 005305.txt │ ├── 005306.txt │ ├── 005307.txt │ ├── 005308.txt │ ├── 005310.txt │ ├── 005311.txt │ ├── 005312.txt │ ├── 005313.txt │ ├── 005314.txt │ ├── 005315.txt │ ├── 005316.txt │ ├── 005317.txt │ ├── 005318.txt │ ├── 005319.txt │ ├── 005320.txt │ ├── 005321.txt │ ├── 005322.txt │ ├── 005323.txt │ ├── 005324.txt │ ├── 005325.txt │ ├── 005326.txt │ ├── 005327.txt │ ├── 005328.txt │ ├── 005329.txt │ ├── 005330.txt │ ├── 005332.txt │ ├── 005333.txt │ ├── 005336.txt │ ├── 005337.txt │ ├── 005339.txt │ ├── 005340.txt │ ├── 005341.txt │ ├── 005343.txt │ ├── 005344.txt │ ├── 005345.txt │ ├── 005346.txt │ ├── 005347.txt │ ├── 005348.txt │ ├── 005349.txt │ ├── 005350.txt │ ├── 005351.txt │ ├── 005354.txt │ ├── 005355.txt │ ├── 005357.txt │ ├── 005358.txt │ ├── 005359.txt │ ├── 005360.txt │ ├── 005361.txt │ ├── 005362.txt │ ├── 005366.txt │ ├── 005367.txt │ ├── 005368.txt │ ├── 005369.txt │ ├── 005370.txt │ ├── 005371.txt │ ├── 005372.txt │ ├── 005375.txt │ ├── 005376.txt │ ├── 005378.txt │ ├── 005380.txt │ ├── 005382.txt │ ├── 005383.txt │ ├── 005384.txt │ ├── 005385.txt │ ├── 005386.txt │ ├── 005387.txt │ ├── 005388.txt │ ├── 005389.txt │ ├── 005390.txt │ ├── 005391.txt │ ├── 005393.txt │ ├── 005394.txt │ ├── 005395.txt │ ├── 005396.txt │ ├── 005397.txt │ ├── 005398.txt │ ├── 005399.txt │ ├── 005400.txt │ ├── 005401.txt │ ├── 005403.txt │ ├── 005404.txt │ ├── 005405.txt │ ├── 005406.txt │ ├── 005407.txt │ ├── 005408.txt │ ├── 005409.txt │ ├── 005410.txt │ ├── 005411.txt │ ├── 005413.txt │ ├── 005414.txt │ ├── 005415.txt │ ├── 005416.txt │ ├── 005417.txt │ ├── 005418.txt │ ├── 005419.txt │ ├── 005420.txt │ ├── 005421.txt │ ├── 005423.txt │ ├── 005424.txt │ ├── 005425.txt │ ├── 005426.txt │ ├── 005427.txt │ ├── 005428.txt │ ├── 005430.txt │ ├── 005431.txt │ ├── 005432.txt │ ├── 005435.txt │ ├── 005436.txt │ ├── 005437.txt │ ├── 005438.txt │ ├── 005439.txt │ ├── 005440.txt │ ├── 005441.txt │ ├── 005442.txt │ ├── 005443.txt │ ├── 005446.txt │ ├── 005448.txt │ ├── 005449.txt │ ├── 005450.txt │ ├── 005451.txt │ ├── 005453.txt │ ├── 005454.txt │ ├── 005455.txt │ ├── 005456.txt │ ├── 005457.txt │ ├── 005458.txt │ ├── 005459.txt │ ├── 005460.txt │ ├── 005461.txt │ ├── 005462.txt │ ├── 005463.txt │ ├── 005464.txt │ ├── 005465.txt │ ├── 005466.txt │ ├── 005467.txt │ ├── 005468.txt │ ├── 005470.txt │ ├── 005471.txt │ ├── 005472.txt │ ├── 005474.txt │ ├── 005475.txt │ ├── 005477.txt │ ├── 005478.txt │ ├── 005480.txt │ ├── 005481.txt │ ├── 005482.txt │ ├── 005483.txt │ ├── 005484.txt │ ├── 005485.txt │ ├── 005486.txt │ ├── 005487.txt │ ├── 005488.txt │ ├── 005491.txt │ ├── 005492.txt │ ├── 005493.txt │ ├── 005494.txt │ ├── 005495.txt │ ├── 005496.txt │ ├── 005497.txt │ ├── 005498.txt │ ├── 005499.txt │ ├── 005500.txt │ ├── 005501.txt │ ├── 005502.txt │ ├── 005503.txt │ ├── 005504.txt │ ├── 005505.txt │ ├── 005506.txt │ ├── 005508.txt │ ├── 005509.txt │ ├── 005510.txt │ ├── 005513.txt │ ├── 005514.txt │ ├── 005515.txt │ ├── 005517.txt │ ├── 005518.txt │ ├── 005519.txt │ ├── 005520.txt │ ├── 005521.txt │ ├── 005522.txt │ ├── 005523.txt │ ├── 005524.txt │ ├── 005525.txt │ ├── 005526.txt │ ├── 005527.txt │ ├── 005528.txt │ ├── 005529.txt │ ├── 005530.txt │ ├── 005531.txt │ ├── 005532.txt │ ├── 005533.txt │ ├── 005534.txt │ ├── 005535.txt │ ├── 005537.txt │ ├── 005538.txt │ ├── 005539.txt │ ├── 005540.txt │ ├── 005542.txt │ ├── 005543.txt │ ├── 005544.txt │ ├── 005545.txt │ ├── 005547.txt │ ├── 005548.txt │ ├── 005549.txt │ ├── 005550.txt │ ├── 005551.txt │ ├── 005552.txt │ ├── 005553.txt │ ├── 005554.txt │ ├── 005556.txt │ ├── 005557.txt │ ├── 005558.txt │ ├── 005559.txt │ ├── 005560.txt │ ├── 005561.txt │ ├── 005562.txt │ ├── 005563.txt │ ├── 005564.txt │ ├── 005565.txt │ ├── 005566.txt │ ├── 005567.txt │ ├── 005568.txt │ ├── 005569.txt │ ├── 005570.txt │ ├── 005572.txt │ ├── 005573.txt │ ├── 005574.txt │ ├── 005575.txt │ ├── 005576.txt │ ├── 005577.txt │ ├── 005578.txt │ ├── 005579.txt │ ├── 005581.txt │ ├── 005583.txt │ ├── 005584.txt │ ├── 005585.txt │ ├── 005586.txt │ ├── 005587.txt │ ├── 005588.txt │ ├── 005589.txt │ ├── 005592.txt │ ├── 005593.txt │ ├── 005594.txt │ ├── 005596.txt │ ├── 005597.txt │ ├── 005598.txt │ ├── 005599.txt │ ├── 005600.txt │ ├── 005601.txt │ ├── 005602.txt │ ├── 005603.txt │ ├── 005604.txt │ ├── 005605.txt │ ├── 005607.txt │ ├── 005608.txt │ ├── 005609.txt │ ├── 005610.txt │ ├── 005611.txt │ ├── 005612.txt │ ├── 005613.txt │ ├── 005616.txt │ ├── 005617.txt │ ├── 005618.txt │ ├── 005620.txt │ ├── 005621.txt │ ├── 005622.txt │ ├── 005623.txt │ ├── 005625.txt │ ├── 005626.txt │ ├── 005627.txt │ ├── 005628.txt │ ├── 005629.txt │ ├── 005631.txt │ ├── 005632.txt │ ├── 005633.txt │ ├── 005635.txt │ ├── 005637.txt │ ├── 005638.txt │ ├── 005639.txt │ ├── 005640.txt │ ├── 005641.txt │ ├── 005642.txt │ ├── 005645.txt │ ├── 005646.txt │ ├── 005647.txt │ ├── 005648.txt │ ├── 005650.txt │ ├── 005651.txt │ ├── 005652.txt │ ├── 005654.txt │ ├── 005655.txt │ ├── 005656.txt │ ├── 005657.txt │ ├── 005659.txt │ ├── 005660.txt │ ├── 005664.txt │ ├── 005666.txt │ ├── 005667.txt │ ├── 005668.txt │ ├── 005669.txt │ ├── 005670.txt │ ├── 005671.txt │ ├── 005672.txt │ ├── 005673.txt │ ├── 005674.txt │ ├── 005675.txt │ ├── 005676.txt │ ├── 005677.txt │ ├── 005678.txt │ ├── 005679.txt │ ├── 005680.txt │ ├── 005682.txt │ ├── 005683.txt │ ├── 005684.txt │ ├── 005685.txt │ ├── 005686.txt │ ├── 005687.txt │ ├── 005688.txt │ ├── 005689.txt │ ├── 005690.txt │ ├── 005691.txt │ ├── 005692.txt │ ├── 005693.txt │ ├── 005694.txt │ ├── 005695.txt │ ├── 005696.txt │ ├── 005697.txt │ ├── 005698.txt │ ├── 005699.txt │ ├── 005701.txt │ ├── 005702.txt │ ├── 005703.txt │ ├── 005704.txt │ ├── 005705.txt │ ├── 005707.txt │ ├── 005709.txt │ ├── 005711.txt │ ├── 005712.txt │ ├── 005713.txt │ ├── 005714.txt │ ├── 005715.txt │ ├── 005716.txt │ ├── 005717.txt │ ├── 005719.txt │ ├── 005720.txt │ ├── 005722.txt │ ├── 005723.txt │ ├── 005724.txt │ ├── 005725.txt │ ├── 005727.txt │ ├── 005728.txt │ ├── 005729.txt │ ├── 005731.txt │ ├── 005732.txt │ ├── 005733.txt │ ├── 005734.txt │ ├── 005735.txt │ ├── 005736.txt │ ├── 005737.txt │ ├── 005738.txt │ ├── 005739.txt │ ├── 005740.txt │ ├── 005741.txt │ ├── 005742.txt │ ├── 005744.txt │ ├── 005745.txt │ ├── 005746.txt │ ├── 005747.txt │ ├── 005748.txt │ ├── 005749.txt │ ├── 005750.txt │ ├── 005751.txt │ ├── 005752.txt │ ├── 005753.txt │ ├── 005754.txt │ ├── 005755.txt │ ├── 005756.txt │ ├── 005757.txt │ ├── 005758.txt │ ├── 005759.txt │ ├── 005760.txt │ ├── 005762.txt │ ├── 005763.txt │ ├── 005764.txt │ ├── 005765.txt │ ├── 005766.txt │ ├── 005767.txt │ ├── 005768.txt │ ├── 005769.txt │ ├── 005771.txt │ ├── 005772.txt │ ├── 005773.txt │ ├── 005774.txt │ ├── 005775.txt │ ├── 005777.txt │ ├── 005778.txt │ ├── 005779.txt │ ├── 005780.txt │ ├── 005781.txt │ ├── 005782.txt │ ├── 005783.txt │ ├── 005784.txt │ ├── 005785.txt │ ├── 005786.txt │ ├── 005788.txt │ ├── 005789.txt │ ├── 005790.txt │ ├── 005793.txt │ ├── 005794.txt │ ├── 005795.txt │ ├── 005796.txt │ ├── 005797.txt │ ├── 005798.txt │ ├── 005799.txt │ ├── 005800.txt │ ├── 005801.txt │ ├── 005802.txt │ ├── 005803.txt │ ├── 005804.txt │ ├── 005805.txt │ ├── 005806.txt │ ├── 005807.txt │ ├── 005808.txt │ ├── 005809.txt │ ├── 005810.txt │ ├── 005811.txt │ ├── 005812.txt │ ├── 005813.txt │ ├── 005814.txt │ ├── 005815.txt │ ├── 005816.txt │ ├── 005817.txt │ ├── 005818.txt │ ├── 005819.txt │ ├── 005820.txt │ ├── 005821.txt │ ├── 005822.txt │ ├── 005823.txt │ ├── 005824.txt │ ├── 005825.txt │ ├── 005826.txt │ ├── 005827.txt │ ├── 005828.txt │ ├── 005829.txt │ ├── 005830.txt │ ├── 005831.txt │ ├── 005832.txt │ ├── 005833.txt │ ├── 005834.txt │ ├── 005835.txt │ ├── 005836.txt │ ├── 005837.txt │ ├── 005838.txt │ ├── 005839.txt │ ├── 005840.txt │ ├── 005841.txt │ ├── 005842.txt │ ├── 005843.txt │ ├── 005844.txt │ ├── 005845.txt │ ├── 005847.txt │ ├── 005848.txt │ ├── 005850.txt │ ├── 005851.txt │ ├── 005852.txt │ ├── 005853.txt │ ├── 005855.txt │ ├── 005856.txt │ ├── 005857.txt │ ├── 005858.txt │ ├── 005859.txt │ ├── 005860.txt │ ├── 005861.txt │ ├── 005862.txt │ ├── 005863.txt │ ├── 005864.txt │ ├── 005865.txt │ ├── 005866.txt │ ├── 005867.txt │ ├── 005868.txt │ ├── 005869.txt │ ├── 005870.txt │ ├── 005871.txt │ ├── 005872.txt │ ├── 005873.txt │ ├── 005874.txt │ ├── 005875.txt │ ├── 005876.txt │ ├── 005877.txt │ ├── 005878.txt │ ├── 005880.txt │ ├── 005881.txt │ ├── 005882.txt │ ├── 005883.txt │ ├── 005884.txt │ ├── 005885.txt │ ├── 005886.txt │ ├── 005887.txt │ ├── 005889.txt │ ├── 005891.txt │ ├── 005892.txt │ ├── 005893.txt │ ├── 005894.txt │ ├── 005895.txt │ ├── 005896.txt │ ├── 005897.txt │ ├── 005898.txt │ ├── 005899.txt │ ├── 005900.txt │ ├── 005901.txt │ ├── 005902.txt │ ├── 005903.txt │ ├── 005904.txt │ ├── 005905.txt │ ├── 005906.txt │ ├── 005907.txt │ ├── 005908.txt │ ├── 005909.txt │ ├── 005911.txt │ ├── 005912.txt │ ├── 005913.txt │ ├── 005914.txt │ ├── 005915.txt │ ├── 005916.txt │ ├── 005917.txt │ ├── 005920.txt │ ├── 005921.txt │ ├── 005922.txt │ ├── 005923.txt │ ├── 005924.txt │ ├── 005925.txt │ ├── 005926.txt │ ├── 005927.txt │ ├── 005928.txt │ ├── 005929.txt │ ├── 005930.txt │ ├── 005931.txt │ ├── 005932.txt │ ├── 005933.txt │ ├── 005935.txt │ ├── 005937.txt │ ├── 005939.txt │ ├── 005940.txt │ ├── 005941.txt │ ├── 005942.txt │ ├── 005943.txt │ ├── 005944.txt │ ├── 005945.txt │ ├── 005946.txt │ ├── 005947.txt │ ├── 005948.txt │ ├── 005949.txt │ ├── 005950.txt │ ├── 005951.txt │ ├── 005952.txt │ ├── 005953.txt │ ├── 005955.txt │ ├── 005956.txt │ ├── 005957.txt │ ├── 005958.txt │ ├── 005959.txt │ ├── 005960.txt │ ├── 005961.txt │ ├── 005962.txt │ ├── 005963.txt │ ├── 005964.txt │ ├── 005965.txt │ ├── 005966.txt │ ├── 005967.txt │ ├── 005968.txt │ ├── 005969.txt │ ├── 005970.txt │ ├── 005971.txt │ ├── 005972.txt │ ├── 005973.txt │ ├── 005974.txt │ ├── 005975.txt │ ├── 005976.txt │ ├── 005977.txt │ ├── 005978.txt │ ├── 005979.txt │ ├── 005980.txt │ ├── 005981.txt │ ├── 005982.txt │ ├── 005983.txt │ ├── 005984.txt │ ├── 005985.txt │ ├── 005986.txt │ ├── 005987.txt │ ├── 005989.txt │ ├── 005990.txt │ ├── 005991.txt │ ├── 005992.txt │ ├── 005993.txt │ ├── 005995.txt │ ├── 005996.txt │ ├── 005998.txt │ ├── 005999.txt │ ├── 006000.txt │ ├── 006001.txt │ ├── 006002.txt │ ├── 006003.txt │ ├── 006004.txt │ ├── 006005.txt │ ├── 006006.txt │ ├── 006007.txt │ ├── 006009.txt │ ├── 006010.txt │ ├── 006011.txt │ ├── 006012.txt │ ├── 006014.txt │ ├── 006015.txt │ ├── 006016.txt │ ├── 006017.txt │ ├── 006018.txt │ ├── 006019.txt │ ├── 006020.txt │ ├── 006021.txt │ ├── 006022.txt │ ├── 006023.txt │ ├── 006024.txt │ ├── 006025.txt │ ├── 006026.txt │ ├── 006027.txt │ ├── 006028.txt │ ├── 006029.txt │ ├── 006030.txt │ ├── 006031.txt │ ├── 006033.txt │ ├── 006034.txt │ ├── 006035.txt │ ├── 006036.txt │ ├── 006037.txt │ ├── 006038.txt │ ├── 006039.txt │ ├── 006040.txt │ ├── 006041.txt │ ├── 006042.txt │ ├── 006043.txt │ ├── 006044.txt │ ├── 006045.txt │ ├── 006047.txt │ ├── 006048.txt │ ├── 006049.txt │ ├── 006052.txt │ ├── 006053.txt │ ├── 006054.txt │ ├── 006055.txt │ ├── 006056.txt │ ├── 006057.txt │ ├── 006059.txt │ ├── 006060.txt │ ├── 006061.txt │ ├── 006062.txt │ ├── 006063.txt │ ├── 006064.txt │ ├── 006065.txt │ ├── 006067.txt │ ├── 006068.txt │ ├── 006069.txt │ ├── 006070.txt │ ├── 006071.txt │ ├── 006072.txt │ ├── 006074.txt │ ├── 006075.txt │ ├── 006076.txt │ ├── 006077.txt │ ├── 006079.txt │ ├── 006081.txt │ ├── 006082.txt │ ├── 006083.txt │ ├── 006084.txt │ ├── 006085.txt │ ├── 006086.txt │ ├── 006087.txt │ ├── 006088.txt │ ├── 006089.txt │ ├── 006090.txt │ ├── 006091.txt │ ├── 006092.txt │ ├── 006093.txt │ ├── 006094.txt │ ├── 006096.txt │ ├── 006097.txt │ ├── 006098.txt │ ├── 006099.txt │ ├── 006100.txt │ ├── 006101.txt │ ├── 006102.txt │ ├── 006103.txt │ ├── 006104.txt │ ├── 006105.txt │ ├── 006106.txt │ ├── 006107.txt │ ├── 006108.txt │ ├── 006109.txt │ ├── 006110.txt │ ├── 006111.txt │ ├── 006112.txt │ ├── 006114.txt │ ├── 006115.txt │ ├── 006116.txt │ ├── 006118.txt │ ├── 006119.txt │ ├── 006120.txt │ ├── 006121.txt │ ├── 006122.txt │ ├── 006123.txt │ ├── 006124.txt │ ├── 006125.txt │ ├── 006126.txt │ ├── 006127.txt │ ├── 006128.txt │ ├── 006129.txt │ ├── 006130.txt │ ├── 006132.txt │ ├── 006133.txt │ ├── 006134.txt │ ├── 006136.txt │ ├── 006137.txt │ ├── 006138.txt │ ├── 006140.txt │ ├── 006141.txt │ ├── 006142.txt │ ├── 006144.txt │ ├── 006145.txt │ ├── 006146.txt │ ├── 006147.txt │ ├── 006148.txt │ ├── 006150.txt │ ├── 006151.txt │ ├── 006152.txt │ ├── 006153.txt │ ├── 006154.txt │ ├── 006155.txt │ ├── 006156.txt │ ├── 006157.txt │ ├── 006158.txt │ ├── 006159.txt │ ├── 006160.txt │ ├── 006161.txt │ ├── 006162.txt │ ├── 006163.txt │ ├── 006164.txt │ ├── 006165.txt │ ├── 006166.txt │ ├── 006167.txt │ ├── 006168.txt │ ├── 006169.txt │ ├── 006170.txt │ ├── 006171.txt │ ├── 006172.txt │ ├── 006173.txt │ ├── 006176.txt │ ├── 006177.txt │ ├── 006178.txt │ ├── 006179.txt │ ├── 006180.txt │ ├── 006181.txt │ ├── 006182.txt │ ├── 006183.txt │ ├── 006186.txt │ ├── 006187.txt │ ├── 006188.txt │ ├── 006189.txt │ ├── 006190.txt │ ├── 006191.txt │ ├── 006192.txt │ ├── 006193.txt │ ├── 006194.txt │ ├── 006195.txt │ ├── 006196.txt │ ├── 006198.txt │ ├── 006199.txt │ ├── 006201.txt │ ├── 006202.txt │ ├── 006203.txt │ ├── 006204.txt │ ├── 006205.txt │ ├── 006207.txt │ ├── 006208.txt │ ├── 006209.txt │ ├── 006210.txt │ ├── 006211.txt │ ├── 006212.txt │ ├── 006213.txt │ ├── 006214.txt │ ├── 006215.txt │ ├── 006216.txt │ ├── 006218.txt │ ├── 006219.txt │ ├── 006220.txt │ ├── 006222.txt │ ├── 006223.txt │ ├── 006224.txt │ ├── 006225.txt │ ├── 006226.txt │ ├── 006227.txt │ ├── 006228.txt │ ├── 006230.txt │ ├── 006231.txt │ ├── 006232.txt │ ├── 006233.txt │ ├── 006234.txt │ ├── 006235.txt │ ├── 006236.txt │ ├── 006237.txt │ ├── 006238.txt │ ├── 006239.txt │ ├── 006240.txt │ ├── 006241.txt │ ├── 006243.txt │ ├── 006244.txt │ ├── 006245.txt │ ├── 006246.txt │ ├── 006247.txt │ ├── 006248.txt │ ├── 006249.txt │ ├── 006250.txt │ ├── 006252.txt │ ├── 006253.txt │ ├── 006254.txt │ ├── 006255.txt │ ├── 006256.txt │ ├── 006257.txt │ ├── 006258.txt │ ├── 006259.txt │ ├── 006260.txt │ ├── 006261.txt │ ├── 006262.txt │ ├── 006264.txt │ ├── 006265.txt │ ├── 006269.txt │ ├── 006270.txt │ ├── 006271.txt │ ├── 006272.txt │ ├── 006273.txt │ ├── 006274.txt │ ├── 006275.txt │ ├── 006277.txt │ ├── 006278.txt │ ├── 006279.txt │ ├── 006281.txt │ ├── 006282.txt │ ├── 006283.txt │ ├── 006284.txt │ ├── 006285.txt │ ├── 006286.txt │ ├── 006287.txt │ ├── 006288.txt │ ├── 006289.txt │ ├── 006290.txt │ ├── 006291.txt │ ├── 006292.txt │ ├── 006293.txt │ ├── 006295.txt │ ├── 006297.txt │ ├── 006298.txt │ ├── 006299.txt │ ├── 006300.txt │ ├── 006301.txt │ ├── 006302.txt │ ├── 006303.txt │ ├── 006304.txt │ ├── 006305.txt │ ├── 006306.txt │ ├── 006308.txt │ ├── 006309.txt │ ├── 006310.txt │ ├── 006311.txt │ ├── 006312.txt │ ├── 006313.txt │ ├── 006314.txt │ ├── 006315.txt │ ├── 006316.txt │ ├── 006317.txt │ ├── 006318.txt │ ├── 006319.txt │ ├── 006320.txt │ ├── 006321.txt │ ├── 006322.txt │ ├── 006323.txt │ ├── 006324.txt │ ├── 006325.txt │ ├── 006326.txt │ ├── 006327.txt │ ├── 006328.txt │ ├── 006329.txt │ ├── 006330.txt │ ├── 006331.txt │ ├── 006332.txt │ ├── 006333.txt │ ├── 006334.txt │ ├── 006335.txt │ ├── 006336.txt │ ├── 006337.txt │ ├── 006338.txt │ ├── 006339.txt │ ├── 006341.txt │ ├── 006342.txt │ ├── 006343.txt │ ├── 006344.txt │ ├── 006345.txt │ ├── 006346.txt │ ├── 006347.txt │ ├── 006349.txt │ ├── 006351.txt │ ├── 006352.txt │ ├── 006353.txt │ ├── 006354.txt │ ├── 006355.txt │ ├── 006356.txt │ ├── 006357.txt │ ├── 006358.txt │ ├── 006359.txt │ ├── 006360.txt │ ├── 006361.txt │ ├── 006363.txt │ ├── 006364.txt │ ├── 006365.txt │ ├── 006366.txt │ ├── 006369.txt │ ├── 006370.txt │ ├── 006372.txt │ ├── 006374.txt │ ├── 006376.txt │ ├── 006377.txt │ ├── 006378.txt │ ├── 006379.txt │ ├── 006380.txt │ ├── 006381.txt │ ├── 006382.txt │ ├── 006383.txt │ ├── 006384.txt │ ├── 006385.txt │ ├── 006386.txt │ ├── 006387.txt │ ├── 006388.txt │ ├── 006389.txt │ ├── 006390.txt │ ├── 006391.txt │ ├── 006393.txt │ ├── 006394.txt │ ├── 006395.txt │ ├── 006396.txt │ ├── 006397.txt │ ├── 006398.txt │ ├── 006399.txt │ ├── 006401.txt │ ├── 006402.txt │ ├── 006403.txt │ ├── 006404.txt │ ├── 006405.txt │ ├── 006406.txt │ ├── 006407.txt │ ├── 006408.txt │ ├── 006409.txt │ ├── 006410.txt │ ├── 006411.txt │ ├── 006412.txt │ ├── 006413.txt │ ├── 006414.txt │ ├── 006415.txt │ ├── 006416.txt │ ├── 006418.txt │ ├── 006419.txt │ ├── 006420.txt │ ├── 006421.txt │ ├── 006422.txt │ ├── 006423.txt │ ├── 006425.txt │ ├── 006426.txt │ ├── 006427.txt │ ├── 006429.txt │ ├── 006430.txt │ ├── 006431.txt │ ├── 006434.txt │ ├── 006435.txt │ ├── 006436.txt │ ├── 006437.txt │ ├── 006438.txt │ ├── 006439.txt │ ├── 006440.txt │ ├── 006441.txt │ ├── 006442.txt │ ├── 006443.txt │ ├── 006444.txt │ ├── 006445.txt │ ├── 006446.txt │ ├── 006447.txt │ ├── 006449.txt │ ├── 006450.txt │ ├── 006451.txt │ ├── 006452.txt │ ├── 006453.txt │ ├── 006454.txt │ ├── 006455.txt │ ├── 006456.txt │ ├── 006457.txt │ ├── 006458.txt │ ├── 006459.txt │ ├── 006460.txt │ ├── 006461.txt │ ├── 006462.txt │ ├── 006463.txt │ ├── 006464.txt │ ├── 006465.txt │ ├── 006466.txt │ ├── 006467.txt │ ├── 006468.txt │ ├── 006469.txt │ ├── 006470.txt │ ├── 006471.txt │ ├── 006473.txt │ ├── 006474.txt │ ├── 006475.txt │ ├── 006476.txt │ ├── 006478.txt │ ├── 006479.txt │ ├── 006480.txt │ ├── 006481.txt │ ├── 006482.txt │ ├── 006483.txt │ ├── 006484.txt │ ├── 006485.txt │ ├── 006486.txt │ ├── 006487.txt │ ├── 006488.txt │ ├── 006489.txt │ ├── 006490.txt │ ├── 006491.txt │ ├── 006492.txt │ ├── 006493.txt │ ├── 006494.txt │ ├── 006495.txt │ ├── 006496.txt │ ├── 006497.txt │ ├── 006498.txt │ ├── 006499.txt │ ├── 006500.txt │ ├── 006501.txt │ ├── 006502.txt │ ├── 006503.txt │ ├── 006504.txt │ ├── 006505.txt │ ├── 006506.txt │ ├── 006507.txt │ ├── 006508.txt │ ├── 006509.txt │ ├── 006510.txt │ ├── 006511.txt │ ├── 006512.txt │ ├── 006513.txt │ ├── 006514.txt │ ├── 006515.txt │ ├── 006516.txt │ ├── 006517.txt │ ├── 006518.txt │ ├── 006519.txt │ ├── 006520.txt │ ├── 006521.txt │ ├── 006522.txt │ ├── 006523.txt │ ├── 006524.txt │ ├── 006525.txt │ ├── 006526.txt │ ├── 006527.txt │ ├── 006528.txt │ ├── 006529.txt │ ├── 006530.txt │ ├── 006531.txt │ ├── 006532.txt │ ├── 006533.txt │ ├── 006536.txt │ ├── 006537.txt │ ├── 006538.txt │ ├── 006539.txt │ ├── 006540.txt │ ├── 006541.txt │ ├── 006542.txt │ ├── 006543.txt │ ├── 006544.txt │ ├── 006545.txt │ ├── 006546.txt │ ├── 006547.txt │ ├── 006548.txt │ ├── 006549.txt │ ├── 006550.txt │ ├── 006551.txt │ ├── 006552.txt │ ├── 006553.txt │ ├── 006555.txt │ ├── 006556.txt │ ├── 006557.txt │ ├── 006558.txt │ ├── 006559.txt │ ├── 006560.txt │ ├── 006561.txt │ ├── 006562.txt │ ├── 006564.txt │ ├── 006565.txt │ ├── 006567.txt │ ├── 006568.txt │ ├── 006569.txt │ ├── 006571.txt │ ├── 006572.txt │ ├── 006573.txt │ ├── 006575.txt │ ├── 006576.txt │ ├── 006577.txt │ ├── 006578.txt │ ├── 006579.txt │ ├── 006582.txt │ ├── 006584.txt │ ├── 006585.txt │ ├── 006587.txt │ ├── 006588.txt │ ├── 006589.txt │ ├── 006590.txt │ ├── 006591.txt │ ├── 006592.txt │ ├── 006593.txt │ ├── 006594.txt │ ├── 006596.txt │ ├── 006597.txt │ ├── 006598.txt │ ├── 006599.txt │ ├── 006600.txt │ ├── 006601.txt │ ├── 006602.txt │ ├── 006603.txt │ ├── 006604.txt │ ├── 006606.txt │ ├── 006608.txt │ ├── 006610.txt │ ├── 006611.txt │ ├── 006612.txt │ ├── 006613.txt │ ├── 006614.txt │ ├── 006617.txt │ ├── 006619.txt │ ├── 006620.txt │ ├── 006623.txt │ ├── 006624.txt │ ├── 006625.txt │ ├── 006626.txt │ ├── 006627.txt │ ├── 006630.txt │ ├── 006631.txt │ ├── 006632.txt │ ├── 006633.txt │ ├── 006634.txt │ ├── 006635.txt │ ├── 006636.txt │ ├── 006638.txt │ ├── 006639.txt │ ├── 006640.txt │ ├── 006641.txt │ ├── 006642.txt │ ├── 006644.txt │ ├── 006645.txt │ ├── 006646.txt │ ├── 006648.txt │ ├── 006649.txt │ ├── 006650.txt │ ├── 006651.txt │ ├── 006652.txt │ ├── 006653.txt │ ├── 006654.txt │ ├── 006655.txt │ ├── 006656.txt │ ├── 006657.txt │ ├── 006658.txt │ ├── 006659.txt │ ├── 006660.txt │ ├── 006661.txt │ ├── 006663.txt │ ├── 006664.txt │ ├── 006665.txt │ ├── 006666.txt │ ├── 006668.txt │ ├── 006670.txt │ ├── 006671.txt │ ├── 006672.txt │ ├── 006673.txt │ ├── 006674.txt │ ├── 006675.txt │ ├── 006676.txt │ ├── 006677.txt │ ├── 006678.txt │ ├── 006680.txt │ ├── 006681.txt │ ├── 006682.txt │ ├── 006683.txt │ ├── 006685.txt │ ├── 006686.txt │ ├── 006688.txt │ ├── 006689.txt │ ├── 006690.txt │ ├── 006691.txt │ ├── 006692.txt │ ├── 006694.txt │ ├── 006695.txt │ ├── 006697.txt │ ├── 006698.txt │ ├── 006699.txt │ ├── 006700.txt │ ├── 006701.txt │ ├── 006702.txt │ ├── 006703.txt │ ├── 006704.txt │ ├── 006705.txt │ ├── 006706.txt │ ├── 006707.txt │ ├── 006708.txt │ ├── 006709.txt │ ├── 006710.txt │ ├── 006711.txt │ ├── 006712.txt │ ├── 006713.txt │ ├── 006714.txt │ ├── 006715.txt │ ├── 006716.txt │ ├── 006718.txt │ ├── 006719.txt │ ├── 006720.txt │ ├── 006721.txt │ ├── 006722.txt │ ├── 006723.txt │ ├── 006724.txt │ ├── 006725.txt │ ├── 006726.txt │ ├── 006727.txt │ ├── 006728.txt │ ├── 006732.txt │ ├── 006733.txt │ ├── 006734.txt │ ├── 006735.txt │ ├── 006736.txt │ ├── 006737.txt │ ├── 006738.txt │ ├── 006739.txt │ ├── 006740.txt │ ├── 006741.txt │ ├── 006743.txt │ ├── 006744.txt │ ├── 006745.txt │ ├── 006746.txt │ ├── 006747.txt │ ├── 006748.txt │ ├── 006749.txt │ ├── 006750.txt │ ├── 006751.txt │ ├── 006752.txt │ ├── 006754.txt │ ├── 006755.txt │ ├── 006756.txt │ ├── 006757.txt │ ├── 006758.txt │ ├── 006759.txt │ ├── 006760.txt │ ├── 006761.txt │ ├── 006762.txt │ ├── 006763.txt │ ├── 006764.txt │ ├── 006765.txt │ ├── 006767.txt │ ├── 006768.txt │ ├── 006769.txt │ ├── 006770.txt │ ├── 006771.txt │ ├── 006772.txt │ ├── 006773.txt │ ├── 006774.txt │ ├── 006775.txt │ ├── 006776.txt │ ├── 006777.txt │ ├── 006778.txt │ ├── 006779.txt │ ├── 006780.txt │ ├── 006781.txt │ ├── 006782.txt │ ├── 006783.txt │ ├── 006784.txt │ ├── 006785.txt │ ├── 006786.txt │ ├── 006787.txt │ ├── 006788.txt │ ├── 006789.txt │ ├── 006790.txt │ ├── 006791.txt │ ├── 006792.txt │ ├── 006794.txt │ ├── 006795.txt │ ├── 006796.txt │ ├── 006800.txt │ ├── 006801.txt │ ├── 006802.txt │ ├── 006803.txt │ ├── 006804.txt │ ├── 006805.txt │ ├── 006806.txt │ ├── 006807.txt │ ├── 006808.txt │ ├── 006810.txt │ ├── 006811.txt │ ├── 006812.txt │ ├── 006813.txt │ ├── 006814.txt │ ├── 006815.txt │ ├── 006816.txt │ ├── 006817.txt │ ├── 006818.txt │ ├── 006819.txt │ ├── 006820.txt │ ├── 006821.txt │ ├── 006822.txt │ ├── 006823.txt │ ├── 006824.txt │ ├── 006825.txt │ ├── 006826.txt │ ├── 006827.txt │ ├── 006828.txt │ ├── 006829.txt │ ├── 006830.txt │ ├── 006831.txt │ ├── 006832.txt │ ├── 006833.txt │ ├── 006835.txt │ ├── 006836.txt │ ├── 006837.txt │ ├── 006839.txt │ ├── 006841.txt │ ├── 006842.txt │ ├── 006843.txt │ ├── 006844.txt │ ├── 006845.txt │ ├── 006846.txt │ ├── 006847.txt │ ├── 006849.txt │ ├── 006850.txt │ ├── 006851.txt │ ├── 006852.txt │ ├── 006853.txt │ ├── 006854.txt │ ├── 006855.txt │ ├── 006856.txt │ ├── 006857.txt │ ├── 006858.txt │ ├── 006859.txt │ ├── 006860.txt │ ├── 006861.txt │ ├── 006864.txt │ ├── 006865.txt │ ├── 006866.txt │ ├── 006867.txt │ ├── 006869.txt │ ├── 006870.txt │ ├── 006871.txt │ ├── 006872.txt │ ├── 006874.txt │ ├── 006875.txt │ ├── 006876.txt │ ├── 006877.txt │ ├── 006878.txt │ ├── 006879.txt │ ├── 006880.txt │ ├── 006881.txt │ ├── 006882.txt │ ├── 006883.txt │ ├── 006884.txt │ ├── 006885.txt │ ├── 006886.txt │ ├── 006887.txt │ ├── 006888.txt │ ├── 006889.txt │ ├── 006890.txt │ ├── 006891.txt │ ├── 006895.txt │ ├── 006896.txt │ ├── 006897.txt │ ├── 006898.txt │ ├── 006899.txt │ ├── 006901.txt │ ├── 006902.txt │ ├── 006903.txt │ ├── 006904.txt │ ├── 006905.txt │ ├── 006906.txt │ ├── 006907.txt │ ├── 006908.txt │ ├── 006909.txt │ ├── 006910.txt │ ├── 006911.txt │ ├── 006912.txt │ ├── 006913.txt │ ├── 006915.txt │ ├── 006916.txt │ ├── 006917.txt │ ├── 006918.txt │ ├── 006919.txt │ ├── 006920.txt │ ├── 006921.txt │ ├── 006922.txt │ ├── 006923.txt │ ├── 006924.txt │ ├── 006925.txt │ ├── 006926.txt │ ├── 006927.txt │ ├── 006928.txt │ ├── 006929.txt │ ├── 006930.txt │ ├── 006931.txt │ ├── 006932.txt │ ├── 006934.txt │ ├── 006935.txt │ ├── 006936.txt │ ├── 006937.txt │ ├── 006938.txt │ ├── 006939.txt │ ├── 006940.txt │ ├── 006941.txt │ ├── 006942.txt │ ├── 006943.txt │ ├── 006944.txt │ ├── 006945.txt │ ├── 006946.txt │ ├── 006947.txt │ ├── 006948.txt │ ├── 006949.txt │ ├── 006951.txt │ ├── 006952.txt │ ├── 006953.txt │ ├── 006954.txt │ ├── 006955.txt │ ├── 006957.txt │ ├── 006959.txt │ ├── 006960.txt │ ├── 006961.txt │ ├── 006962.txt │ ├── 006963.txt │ ├── 006964.txt │ ├── 006965.txt │ ├── 006966.txt │ ├── 006967.txt │ ├── 006969.txt │ ├── 006972.txt │ ├── 006973.txt │ ├── 006974.txt │ ├── 006976.txt │ ├── 006977.txt │ ├── 006979.txt │ ├── 006980.txt │ ├── 006981.txt │ ├── 006982.txt │ ├── 006983.txt │ ├── 006984.txt │ ├── 006986.txt │ ├── 006987.txt │ ├── 006988.txt │ ├── 006989.txt │ ├── 006990.txt │ ├── 006991.txt │ ├── 006992.txt │ ├── 006993.txt │ ├── 006995.txt │ ├── 006996.txt │ ├── 006997.txt │ ├── 006998.txt │ ├── 006999.txt │ ├── 007000.txt │ ├── 007001.txt │ ├── 007002.txt │ ├── 007003.txt │ ├── 007004.txt │ ├── 007005.txt │ ├── 007006.txt │ ├── 007007.txt │ ├── 007008.txt │ ├── 007010.txt │ ├── 007012.txt │ ├── 007014.txt │ ├── 007015.txt │ ├── 007017.txt │ ├── 007019.txt │ ├── 007020.txt │ ├── 007021.txt │ ├── 007022.txt │ ├── 007023.txt │ ├── 007024.txt │ ├── 007025.txt │ ├── 007026.txt │ ├── 007027.txt │ ├── 007028.txt │ ├── 007031.txt │ ├── 007032.txt │ ├── 007033.txt │ ├── 007034.txt │ ├── 007035.txt │ ├── 007036.txt │ ├── 007037.txt │ ├── 007038.txt │ ├── 007039.txt │ ├── 007040.txt │ ├── 007041.txt │ ├── 007042.txt │ ├── 007043.txt │ ├── 007044.txt │ ├── 007045.txt │ ├── 007046.txt │ ├── 007047.txt │ ├── 007048.txt │ ├── 007049.txt │ ├── 007050.txt │ ├── 007051.txt │ ├── 007052.txt │ ├── 007053.txt │ ├── 007054.txt │ ├── 007055.txt │ ├── 007056.txt │ ├── 007057.txt │ ├── 007058.txt │ ├── 007059.txt │ ├── 007060.txt │ ├── 007062.txt │ ├── 007063.txt │ ├── 007064.txt │ ├── 007065.txt │ ├── 007066.txt │ ├── 007067.txt │ ├── 007068.txt │ ├── 007069.txt │ ├── 007071.txt │ ├── 007072.txt │ ├── 007073.txt │ ├── 007074.txt │ ├── 007075.txt │ ├── 007076.txt │ ├── 007077.txt │ ├── 007078.txt │ ├── 007079.txt │ ├── 007080.txt │ ├── 007081.txt │ ├── 007082.txt │ ├── 007084.txt │ ├── 007085.txt │ ├── 007086.txt │ ├── 007087.txt │ ├── 007089.txt │ ├── 007090.txt │ ├── 007091.txt │ ├── 007092.txt │ ├── 007093.txt │ ├── 007095.txt │ ├── 007096.txt │ ├── 007097.txt │ ├── 007098.txt │ ├── 007099.txt │ ├── 007100.txt │ ├── 007102.txt │ ├── 007103.txt │ ├── 007104.txt │ ├── 007105.txt │ ├── 007106.txt │ ├── 007107.txt │ ├── 007108.txt │ ├── 007109.txt │ ├── 007110.txt │ ├── 007111.txt │ ├── 007112.txt │ ├── 007113.txt │ ├── 007114.txt │ ├── 007115.txt │ ├── 007116.txt │ ├── 007117.txt │ ├── 007118.txt │ ├── 007119.txt │ ├── 007120.txt │ ├── 007121.txt │ ├── 007122.txt │ ├── 007124.txt │ ├── 007125.txt │ ├── 007126.txt │ ├── 007127.txt │ ├── 007128.txt │ ├── 007129.txt │ ├── 007130.txt │ ├── 007132.txt │ ├── 007134.txt │ ├── 007135.txt │ ├── 007137.txt │ ├── 007138.txt │ ├── 007139.txt │ ├── 007140.txt │ ├── 007142.txt │ ├── 007143.txt │ ├── 007144.txt │ ├── 007145.txt │ ├── 007146.txt │ ├── 007147.txt │ ├── 007148.txt │ ├── 007150.txt │ ├── 007151.txt │ ├── 007152.txt │ ├── 007153.txt │ ├── 007154.txt │ ├── 007157.txt │ ├── 007158.txt │ ├── 007159.txt │ ├── 007160.txt │ ├── 007162.txt │ ├── 007163.txt │ ├── 007164.txt │ ├── 007165.txt │ ├── 007166.txt │ ├── 007167.txt │ ├── 007168.txt │ ├── 007169.txt │ ├── 007170.txt │ ├── 007171.txt │ ├── 007172.txt │ ├── 007173.txt │ ├── 007176.txt │ ├── 007177.txt │ ├── 007178.txt │ ├── 007179.txt │ ├── 007180.txt │ ├── 007181.txt │ ├── 007182.txt │ ├── 007183.txt │ ├── 007184.txt │ ├── 007186.txt │ ├── 007187.txt │ ├── 007188.txt │ ├── 007189.txt │ ├── 007190.txt │ ├── 007191.txt │ ├── 007192.txt │ ├── 007193.txt │ ├── 007194.txt │ ├── 007195.txt │ ├── 007196.txt │ ├── 007197.txt │ ├── 007198.txt │ ├── 007199.txt │ ├── 007200.txt │ ├── 007201.txt │ ├── 007203.txt │ ├── 007204.txt │ ├── 007205.txt │ ├── 007206.txt │ ├── 007207.txt │ ├── 007208.txt │ ├── 007209.txt │ ├── 007210.txt │ ├── 007211.txt │ ├── 007212.txt │ ├── 007213.txt │ ├── 007214.txt │ ├── 007215.txt │ ├── 007216.txt │ ├── 007217.txt │ ├── 007218.txt │ ├── 007219.txt │ ├── 007220.txt │ ├── 007221.txt │ ├── 007223.txt │ ├── 007224.txt │ ├── 007225.txt │ ├── 007226.txt │ ├── 007228.txt │ ├── 007229.txt │ ├── 007230.txt │ ├── 007232.txt │ ├── 007233.txt │ ├── 007234.txt │ ├── 007235.txt │ ├── 007236.txt │ ├── 007237.txt │ ├── 007238.txt │ ├── 007239.txt │ ├── 007240.txt │ ├── 007241.txt │ ├── 007242.txt │ ├── 007243.txt │ ├── 007244.txt │ ├── 007245.txt │ ├── 007246.txt │ ├── 007247.txt │ ├── 007248.txt │ ├── 007249.txt │ ├── 007250.txt │ ├── 007251.txt │ ├── 007252.txt │ ├── 007253.txt │ ├── 007254.txt │ ├── 007255.txt │ ├── 007256.txt │ ├── 007257.txt │ ├── 007258.txt │ ├── 007259.txt │ ├── 007260.txt │ ├── 007261.txt │ ├── 007262.txt │ ├── 007263.txt │ ├── 007264.txt │ ├── 007265.txt │ ├── 007267.txt │ ├── 007269.txt │ ├── 007271.txt │ ├── 007272.txt │ ├── 007273.txt │ ├── 007274.txt │ ├── 007275.txt │ ├── 007276.txt │ ├── 007277.txt │ ├── 007278.txt │ ├── 007280.txt │ ├── 007282.txt │ ├── 007284.txt │ ├── 007285.txt │ ├── 007286.txt │ ├── 007289.txt │ ├── 007290.txt │ ├── 007291.txt │ ├── 007292.txt │ ├── 007293.txt │ ├── 007295.txt │ ├── 007296.txt │ ├── 007297.txt │ ├── 007298.txt │ ├── 007299.txt │ ├── 007300.txt │ ├── 007301.txt │ ├── 007302.txt │ ├── 007303.txt │ ├── 007304.txt │ ├── 007306.txt │ ├── 007307.txt │ ├── 007308.txt │ ├── 007309.txt │ ├── 007310.txt │ ├── 007312.txt │ ├── 007313.txt │ ├── 007314.txt │ ├── 007315.txt │ ├── 007316.txt │ ├── 007318.txt │ ├── 007319.txt │ ├── 007321.txt │ ├── 007322.txt │ ├── 007323.txt │ ├── 007324.txt │ ├── 007326.txt │ ├── 007327.txt │ ├── 007329.txt │ ├── 007330.txt │ ├── 007331.txt │ ├── 007332.txt │ ├── 007333.txt │ ├── 007334.txt │ ├── 007335.txt │ ├── 007336.txt │ ├── 007337.txt │ ├── 007338.txt │ ├── 007339.txt │ ├── 007341.txt │ ├── 007342.txt │ ├── 007344.txt │ ├── 007345.txt │ ├── 007346.txt │ ├── 007347.txt │ ├── 007349.txt │ ├── 007350.txt │ ├── 007351.txt │ ├── 007352.txt │ ├── 007353.txt │ ├── 007354.txt │ ├── 007355.txt │ ├── 007356.txt │ ├── 007357.txt │ ├── 007358.txt │ ├── 007359.txt │ ├── 007360.txt │ ├── 007361.txt │ ├── 007362.txt │ ├── 007363.txt │ ├── 007364.txt │ ├── 007366.txt │ ├── 007367.txt │ ├── 007368.txt │ ├── 007370.txt │ ├── 007372.txt │ ├── 007374.txt │ ├── 007375.txt │ ├── 007377.txt │ ├── 007378.txt │ ├── 007379.txt │ ├── 007380.txt │ ├── 007381.txt │ ├── 007384.txt │ ├── 007385.txt │ ├── 007386.txt │ ├── 007387.txt │ ├── 007388.txt │ ├── 007390.txt │ ├── 007391.txt │ ├── 007392.txt │ ├── 007393.txt │ ├── 007394.txt │ ├── 007395.txt │ ├── 007396.txt │ ├── 007399.txt │ ├── 007402.txt │ ├── 007403.txt │ ├── 007404.txt │ ├── 007405.txt │ ├── 007406.txt │ ├── 007407.txt │ ├── 007408.txt │ ├── 007409.txt │ ├── 007410.txt │ ├── 007411.txt │ ├── 007412.txt │ ├── 007413.txt │ ├── 007414.txt │ ├── 007415.txt │ ├── 007416.txt │ ├── 007417.txt │ ├── 007418.txt │ ├── 007419.txt │ ├── 007420.txt │ ├── 007421.txt │ ├── 007422.txt │ ├── 007424.txt │ ├── 007425.txt │ ├── 007427.txt │ ├── 007429.txt │ ├── 007430.txt │ ├── 007431.txt │ ├── 007432.txt │ ├── 007433.txt │ ├── 007434.txt │ ├── 007435.txt │ ├── 007436.txt │ ├── 007437.txt │ ├── 007438.txt │ ├── 007439.txt │ ├── 007440.txt │ ├── 007441.txt │ ├── 007442.txt │ ├── 007443.txt │ ├── 007444.txt │ ├── 007445.txt │ ├── 007446.txt │ ├── 007447.txt │ ├── 007448.txt │ ├── 007449.txt │ ├── 007450.txt │ ├── 007451.txt │ ├── 007452.txt │ ├── 007453.txt │ ├── 007454.txt │ ├── 007455.txt │ ├── 007456.txt │ ├── 007457.txt │ ├── 007458.txt │ ├── 007459.txt │ ├── 007462.txt │ ├── 007463.txt │ ├── 007465.txt │ ├── 007466.txt │ ├── 007467.txt │ ├── 007468.txt │ ├── 007469.txt │ ├── 007470.txt │ ├── 007471.txt │ ├── 007472.txt │ ├── 007473.txt │ ├── 007474.txt │ ├── 007475.txt │ ├── 007476.txt │ ├── 007477.txt │ ├── 007478.txt │ ├── 007479.txt │ ├── 007480.txt │ ├── 007481.txt │ ├── 007482.txt │ ├── 007484.txt │ ├── 007485.txt │ ├── 007486.txt │ ├── 007487.txt │ ├── 007489.txt │ ├── 007490.txt │ ├── 007492.txt │ ├── 007493.txt │ ├── 007495.txt │ ├── 007496.txt │ ├── 007497.txt │ ├── 007498.txt │ ├── 007499.txt │ ├── 007500.txt │ ├── 007501.txt │ ├── 007502.txt │ ├── 007503.txt │ ├── 007504.txt │ ├── 007505.txt │ ├── 007506.txt │ ├── 007507.txt │ ├── 007508.txt │ ├── 007509.txt │ ├── 007510.txt │ ├── 007511.txt │ ├── 007512.txt │ ├── 007513.txt │ ├── 007514.txt │ ├── 007515.txt │ ├── 007516.txt │ └── 007517.txt ├── infer_eval.sh ├── kitti_format └── .gitignore ├── readme ├── DEMO.md ├── GETTING_STARTED.md └── INSTALL.md ├── requirements.txt ├── src ├── __pycache__ │ └── _init_paths.cpython-36.pyc ├── _init_paths.py ├── demo.py ├── faster.py ├── kitti_format │ └── exp │ │ └── AutoShape_dla34_trainval_stereoaug_pc48_adaptive │ │ ├── logs_2021-10-08-14-12 │ │ ├── events.out.tfevents.1633673562.beta-XPS-8920 │ │ ├── log.txt │ │ └── opt.txt │ │ └── opt.txt ├── lib │ ├── __pycache__ │ │ ├── logger.cpython-36.pyc │ │ └── opts.cpython-36.pyc │ ├── datasets │ │ ├── __pycache__ │ │ │ └── dataset_factory.cpython-36.pyc │ │ ├── dataset │ │ │ ├── __pycache__ │ │ │ │ ├── kittihp.cpython-36.pyc │ │ │ │ └── nusceneshp.cpython-36.pyc │ │ │ ├── kittihp.py │ │ │ └── nusceneshp.py │ │ ├── dataset_factory.py │ │ └── sample │ │ │ ├── __pycache__ │ │ │ ├── autoshape.cpython-36.pyc │ │ │ └── car_pose.cpython-36.pyc │ │ │ ├── autoshape.py │ │ │ └── car_pose.py │ ├── detectors │ │ ├── __pycache__ │ │ │ ├── auto_shape.cpython-36.pyc │ │ │ ├── base_detector.cpython-36.pyc │ │ │ ├── car_pose.cpython-35.pyc │ │ │ ├── car_pose.cpython-36.pyc │ │ │ └── car_pose.cpython-37.pyc │ │ ├── auto_shape.py │ │ ├── base_detector.py │ │ └── car_pose.py │ ├── external │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── nms.c │ │ ├── nms.cpython-36m-x86_64-linux-gnu.so │ │ ├── nms.pyx │ │ └── setup.py │ ├── logger.py │ ├── models │ │ ├── __pycache__ │ │ │ ├── data_parallel.cpython-36.pyc │ │ │ ├── decode.cpython-36.pyc │ │ │ ├── losses.cpython-36.pyc │ │ │ ├── model.cpython-36.pyc │ │ │ ├── scatter_gather.cpython-36.pyc │ │ │ └── utils.cpython-36.pyc │ │ ├── data_parallel.py │ │ ├── decode.py │ │ ├── losses.py │ │ ├── model.py │ │ ├── networks │ │ │ ├── DCNv2-pytorch_1.0.zip │ │ │ ├── DCNv2 │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── dcn_v2.py │ │ │ │ ├── make.sh │ │ │ │ ├── setup.py │ │ │ │ ├── src │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── dcn_v2_cpu.cpp │ │ │ │ │ │ └── vision.h │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── dcn_v2_cuda.cu │ │ │ │ │ │ ├── dcn_v2_im2col_cuda.cu │ │ │ │ │ │ ├── dcn_v2_im2col_cuda.h │ │ │ │ │ │ ├── dcn_v2_psroi_pooling_cuda.cu │ │ │ │ │ │ └── vision.h │ │ │ │ │ ├── dcn_v2.h │ │ │ │ │ └── vision.cpp │ │ │ │ └── test.py │ │ │ ├── __pycache__ │ │ │ │ ├── dlav0.cpython-36.pyc │ │ │ │ ├── large_hourglass.cpython-36.pyc │ │ │ │ ├── msra_resnet.cpython-36.pyc │ │ │ │ ├── pose_dla_dcn.cpython-36.pyc │ │ │ │ └── resnet_dcn.cpython-36.pyc │ │ │ ├── dlav0.py │ │ │ ├── large_hourglass.py │ │ │ ├── msra_resnet.py │ │ │ ├── pose_dla_dcn.py │ │ │ └── resnet_dcn.py │ │ ├── scatter_gather.py │ │ └── utils.py │ ├── opts.py │ ├── trains │ │ ├── __pycache__ │ │ │ ├── autoshape.cpython-36.pyc │ │ │ ├── base_trainer.cpython-36.pyc │ │ │ └── car_pose.cpython-36.pyc │ │ ├── autoshape.py │ │ ├── base_trainer.py │ │ ├── car_pose.py │ │ └── train_factory.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── autoshape_debugger.cpython-36.pyc │ │ ├── ddd_utils.cpython-36.pyc │ │ ├── debugger.cpython-36.pyc │ │ ├── image.cpython-36.pyc │ │ ├── kitti_read.cpython-36.pyc │ │ ├── kitti_utils_torch.cpython-36.pyc │ │ ├── oracle_utils.cpython-36.pyc │ │ ├── post_process.cpython-36.pyc │ │ ├── utils.cpython-36.pyc │ │ └── vis_3d_utils.cpython-36.pyc │ │ ├── autoshape_debugger.py │ │ ├── ddd_utils.py │ │ ├── debugger.py │ │ ├── image.py │ │ ├── iou3d │ │ ├── iou3d_utils.py │ │ ├── setup.py │ │ └── src │ │ │ ├── iou3d.cpp │ │ │ └── iou3d_kernel.cu │ │ ├── kitti_read.py │ │ ├── kitti_utils_torch.py │ │ ├── oracle_utils.py │ │ ├── post_process.py │ │ ├── utils.py │ │ └── vis_3d_utils.py ├── main.py ├── tools │ ├── __pycache__ │ │ └── _init_paths.cpython-36.pyc │ ├── _init_paths.py │ ├── get_kitti.sh │ ├── kitti-object-eval-python │ │ ├── .gitignore │ │ ├── ImageSets │ │ │ ├── all.txt │ │ │ ├── my.txt │ │ │ ├── my1.txt │ │ │ ├── my2.txt │ │ │ ├── test.txt │ │ │ ├── train.txt │ │ │ ├── trainval.txt │ │ │ ├── val.txt │ │ │ └── val_split.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── eval.py │ │ ├── evaluate.py │ │ ├── kitti_common.py │ │ └── rotate_iou.py │ ├── kitti.py │ ├── kitti_eval │ │ ├── README.md │ │ ├── evaluate_object_3d.cpp │ │ ├── evaluate_object_3d_offline │ │ ├── evaluate_object_3d_offline.cpp │ │ └── mail.h │ └── prepare_data.py └── video.py └── train.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/README.md -------------------------------------------------------------------------------- /README/INSTALL.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README/autoshape_data_exmaple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/README/autoshape_data_exmaple.png -------------------------------------------------------------------------------- /paddle/autoshape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/__init__.py -------------------------------------------------------------------------------- /paddle/autoshape/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/__init__.pyc -------------------------------------------------------------------------------- /paddle/autoshape/cvlibs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/cvlibs/__init__.py -------------------------------------------------------------------------------- /paddle/autoshape/cvlibs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/cvlibs/config.py -------------------------------------------------------------------------------- /paddle/autoshape/cvlibs/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/cvlibs/manager.py -------------------------------------------------------------------------------- /paddle/autoshape/datasets/kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/datasets/kitti.py -------------------------------------------------------------------------------- /paddle/autoshape/datasets/kitti.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/datasets/kitti.pyc -------------------------------------------------------------------------------- /paddle/autoshape/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paddle/autoshape/models/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paddle/autoshape/models/postprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paddle/autoshape/models/trainer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paddle/autoshape/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/ops/__init__.py -------------------------------------------------------------------------------- /paddle/autoshape/ops/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/ops/gather.py -------------------------------------------------------------------------------- /paddle/autoshape/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/utils/__init__.py -------------------------------------------------------------------------------- /paddle/autoshape/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/utils/image.py -------------------------------------------------------------------------------- /paddle/autoshape/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/utils/logger.py -------------------------------------------------------------------------------- /paddle/autoshape/utils/progbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/utils/progbar.py -------------------------------------------------------------------------------- /paddle/autoshape/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/utils/timer.py -------------------------------------------------------------------------------- /paddle/autoshape/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/utils/utils.py -------------------------------------------------------------------------------- /paddle/autoshape/utils/vis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/autoshape/utils/vis_utils.py -------------------------------------------------------------------------------- /paddle/configs/kitti_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/configs/kitti_config.yaml -------------------------------------------------------------------------------- /paddle/configs/train_val_kitti.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/configs/train_val_kitti.yaml -------------------------------------------------------------------------------- /paddle/kitti_data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /paddle/pretrained/README.md: -------------------------------------------------------------------------------- 1 | put the pretrained model here. -------------------------------------------------------------------------------- /paddle/pretrained/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/pretrained/download.py -------------------------------------------------------------------------------- /paddle/requirement.txt: -------------------------------------------------------------------------------- 1 | visualdl 2 | opencv-python 3 | scikit-image 4 | filelock 5 | tqdm -------------------------------------------------------------------------------- /paddle/test_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/test_pytorch.py -------------------------------------------------------------------------------- /paddle/test_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/test_trainer.py -------------------------------------------------------------------------------- /paddle/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/paddle/train.py -------------------------------------------------------------------------------- /pytorch/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/eval.sh -------------------------------------------------------------------------------- /pytorch/exp/results/data/000000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000000.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000001.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000002.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000003.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000004.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000005.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000006.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000007.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000008.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000010.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000011.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000012.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000013.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000014.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000015.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000016.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000018.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000019.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000020.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000021.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000022.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000023.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000024.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000025.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000026.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000027.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000028.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000029.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000030.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000031.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000032.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000033.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000034.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000034.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000035.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000036.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000036.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000037.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000038.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000038.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000039.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000040.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000041.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000041.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000042.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000043.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000043.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000044.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000044.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000045.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000045.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000047.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000048.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000049.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000050.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000051.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000051.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000052.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000052.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000054.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000054.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000055.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000055.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000056.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000056.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000057.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000057.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000058.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000058.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000059.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000059.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000060.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000060.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000061.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000061.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000063.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000063.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000064.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000064.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000066.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000066.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000067.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000067.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000068.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000068.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000069.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000069.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000071.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000071.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000072.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000072.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000073.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000073.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000074.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000074.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000075.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000075.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000076.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000076.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000077.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000078.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000078.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000079.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000079.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000080.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000081.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000082.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000082.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000083.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000083.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000085.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000085.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000087.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000087.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000088.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000088.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000089.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000089.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000090.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000091.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000091.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000092.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000092.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000093.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000093.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000094.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000094.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000095.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000095.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000096.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000096.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000097.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000097.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000098.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000098.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000099.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000099.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000100.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000102.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000103.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000104.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000105.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000106.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000107.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000108.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000109.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000110.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000111.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000113.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000114.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000115.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000116.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000117.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000118.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000119.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000120.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000121.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000122.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000123.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000124.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000126.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000127.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000128.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000131.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000133.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000134.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000135.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000136.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000137.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000138.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000139.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000141.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000142.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000143.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000144.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000145.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000146.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000147.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000148.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000149.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000150.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000152.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000154.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000155.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000156.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000157.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000157.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000158.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000159.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000160.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000161.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000162.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000163.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000164.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000164.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000166.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000167.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000168.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000169.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000170.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000170.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000171.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000171.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000172.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000173.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000174.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000174.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000175.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000176.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000177.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000178.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000179.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000180.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000181.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000182.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000183.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000184.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000184.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000185.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000186.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000187.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000188.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000190.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000190.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000191.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000192.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000192.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000193.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000194.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000194.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000195.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000196.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000196.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000197.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000197.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000198.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000199.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000200.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000201.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000202.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000203.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000204.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000205.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000206.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000207.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000209.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000210.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000211.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000212.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000213.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000214.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000215.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000217.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000217.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000218.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000219.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000220.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000221.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000221.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000222.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000223.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000223.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000224.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000225.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000225.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000226.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000226.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000227.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000227.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000228.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000228.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000229.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000230.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000231.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000233.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000233.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000234.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000235.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000235.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000236.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000236.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000237.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000237.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000238.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000238.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000239.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000239.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000240.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000240.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000241.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000241.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000242.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000242.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000243.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000243.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000244.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000244.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000245.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000245.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000246.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000246.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000247.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000247.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000248.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000248.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000249.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000249.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000250.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000251.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000252.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000254.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000255.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000256.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000257.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000257.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000258.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000259.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000259.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000260.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000260.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000263.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000263.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000264.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000264.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000265.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000265.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000266.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000267.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000267.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000268.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000268.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000269.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000269.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000271.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000271.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000272.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000272.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000273.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000273.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000275.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000275.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000277.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000277.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000278.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000278.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000279.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000279.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000281.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000281.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000283.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000283.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000284.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000284.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000285.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000285.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000286.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000286.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000287.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000287.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000288.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000288.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000289.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000289.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000290.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000290.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000291.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000291.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000292.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000292.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000293.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000293.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000295.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000295.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000296.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000296.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000297.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000297.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000298.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000298.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000299.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000299.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000300.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000300.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000301.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000302.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000302.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000303.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000303.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000304.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000304.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000305.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000305.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000306.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000306.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000307.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000308.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000308.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000309.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000309.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000310.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000311.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000312.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000312.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000313.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000313.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000314.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000314.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000315.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000315.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000316.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000316.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000317.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000317.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000318.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000318.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000319.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000319.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000320.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000320.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000321.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000321.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000322.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000322.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000323.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000323.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000324.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000324.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000325.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000325.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000326.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000326.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000327.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000327.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000328.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000328.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000329.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000329.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000330.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000330.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000331.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000331.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000332.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000332.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000333.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000333.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000334.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000335.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000335.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000336.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000336.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000337.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000337.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000338.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000338.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000339.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000339.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000340.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000340.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000341.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000341.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000342.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000343.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000343.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000344.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000344.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000345.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000346.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000346.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000347.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000347.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000348.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000348.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000349.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000349.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000350.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000350.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000351.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000351.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000352.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000352.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000353.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000353.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000354.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000354.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000355.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000355.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000356.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000356.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000357.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000357.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000360.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000360.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000362.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000362.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000363.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000363.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000364.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000364.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000365.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000365.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000366.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000366.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000367.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000367.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000368.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000368.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000369.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000369.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000370.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000370.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000371.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000371.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000372.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000372.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000373.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000373.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000374.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000374.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000375.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000375.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000376.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000376.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000377.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000377.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000378.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000378.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000379.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000379.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000380.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000380.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000382.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000382.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000383.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000383.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000384.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000384.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000385.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000385.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000386.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000386.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000387.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000387.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000388.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000388.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000389.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000389.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000390.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000390.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000392.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000392.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000393.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000393.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000395.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000395.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000396.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000396.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000397.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000397.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000398.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000398.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000399.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000399.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000400.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000401.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000401.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000402.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000402.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000403.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000403.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000404.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000404.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000405.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000405.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000406.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000407.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000407.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000408.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000408.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000409.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000409.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000410.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000411.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000413.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000413.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000414.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000414.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000415.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000415.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000416.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000416.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000417.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000417.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000418.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000418.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000419.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000419.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000421.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000421.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000422.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000422.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000423.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000424.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000424.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000425.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000425.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000426.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000426.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000427.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000427.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000429.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000429.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000431.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000431.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000432.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000432.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000433.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000433.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000434.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000434.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000435.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000435.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000436.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000436.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000437.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000438.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000438.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000439.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000439.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000440.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000440.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000441.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000441.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000442.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000442.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000443.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000443.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000444.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000444.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000445.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000445.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000447.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000447.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000450.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000450.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000451.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000451.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000452.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000452.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000453.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000453.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000454.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000454.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000455.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000456.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000456.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000457.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000457.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000458.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000458.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000459.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000459.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000460.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000460.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000461.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000461.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000462.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000462.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000463.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000463.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000464.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000464.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000467.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000467.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000469.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000469.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000470.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000470.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000471.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000471.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000472.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000472.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000473.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000473.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000474.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000474.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000475.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000475.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000476.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000476.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000477.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000477.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000478.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000478.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000479.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000479.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000480.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000480.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000481.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000481.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000482.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000482.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000483.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000483.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000484.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000484.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000485.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000485.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000486.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000486.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000488.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000488.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000490.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000490.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000491.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000491.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000493.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000493.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000494.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000494.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000495.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000495.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000496.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000496.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000497.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000497.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000498.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000498.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000499.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000499.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000500.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000501.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000501.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000502.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000503.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000504.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000504.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000505.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000505.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000506.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000506.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000507.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000507.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000508.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000508.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000509.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000509.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000510.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000511.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000512.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000513.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000513.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000514.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000514.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000515.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000517.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000517.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000518.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000518.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000519.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000520.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000520.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000521.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000521.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000523.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000523.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000524.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000525.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000525.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000526.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000526.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000531.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000531.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000532.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000532.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000533.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000536.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000536.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000537.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000537.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000539.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000539.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000540.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000540.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000541.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000541.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000542.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000542.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000543.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000543.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000545.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000545.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000548.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000548.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000550.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000550.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000551.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000551.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000552.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000552.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000553.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000553.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000554.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000554.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000555.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000555.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000556.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000556.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000557.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000557.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000559.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000559.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000560.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000560.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000562.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000562.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000563.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000563.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000564.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000564.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000565.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000565.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000566.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000566.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000569.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000569.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000570.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000570.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000571.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000571.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000572.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000572.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000574.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000574.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000575.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000575.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000576.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000576.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000577.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000577.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000580.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000580.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000581.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000581.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000583.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000583.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000584.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000584.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000585.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000585.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000586.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000586.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000587.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000587.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000588.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000588.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000589.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000589.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000590.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000590.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000591.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000591.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000592.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000592.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000593.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000593.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000594.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000594.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000595.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000595.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000596.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000596.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000597.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000597.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000598.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000598.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000599.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000599.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000600.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000601.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000601.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000602.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000602.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000603.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000603.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000604.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000604.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000605.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000605.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000606.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000606.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000607.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000607.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000608.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000608.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000609.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000609.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000610.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000611.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000611.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000612.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000612.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000613.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000613.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000614.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000614.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000615.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000615.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000616.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000616.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000617.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000617.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000618.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000618.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000619.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000619.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000620.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000620.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000622.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000622.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000623.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000623.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000624.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000624.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000625.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000625.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000626.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000626.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000627.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000628.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000628.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000629.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000629.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000630.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000630.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000631.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000631.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000632.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000632.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000633.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000633.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000634.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000634.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000635.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000635.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000637.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000637.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000638.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000638.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000639.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000639.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000640.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000640.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000641.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000641.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000643.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000643.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000644.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000644.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000645.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000645.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000647.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000647.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000648.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000648.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000649.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000649.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000650.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000650.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000651.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000651.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000652.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000652.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000653.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000653.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000654.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000654.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000655.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000655.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000656.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000656.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000657.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000657.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000658.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000658.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000659.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000659.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000661.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000661.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000662.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000662.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000663.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000663.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000665.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000665.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000666.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000666.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000667.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000667.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000668.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000668.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000669.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000669.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000670.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000670.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000671.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000671.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000672.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000672.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000673.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000673.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000675.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000675.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000676.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000676.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000677.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000677.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000678.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000678.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000679.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000679.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000680.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000680.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000681.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000681.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000682.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000682.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000683.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000683.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000684.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000684.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000685.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000685.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000686.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000686.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000687.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000687.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000688.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000688.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000690.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000690.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000691.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000691.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000692.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000692.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000693.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000693.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000694.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000694.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000695.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000695.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000696.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000696.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000697.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000697.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000698.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000698.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000699.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000699.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000700.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000700.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000701.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000701.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000702.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000702.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000704.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000704.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000705.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000705.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000706.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000706.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000707.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000707.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000708.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000708.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000710.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000710.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000711.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000711.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000712.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000712.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000713.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000713.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000714.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000714.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000715.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000715.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000716.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000716.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000717.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000717.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000718.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000718.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000719.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000719.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000720.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000722.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000722.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000723.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000723.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000724.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000724.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000725.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000725.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000726.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000726.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000728.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000728.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000729.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000729.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000731.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000731.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000732.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000732.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000733.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000733.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000734.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000734.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000735.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000735.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000736.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000736.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000738.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000738.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000739.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000739.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000740.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000740.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000741.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000741.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000742.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000742.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000743.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000743.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000744.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000744.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000746.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000746.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000747.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000747.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000748.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000748.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000749.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000749.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000750.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000750.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000751.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000751.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000752.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000752.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000753.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000753.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000754.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000755.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000755.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000756.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000756.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000757.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000757.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000758.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000758.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000759.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000759.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000760.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000760.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000762.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000762.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000763.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000763.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000764.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000764.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000765.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000765.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000766.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000766.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000767.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000767.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000768.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000768.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000769.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000769.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000770.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000770.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000771.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000771.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000773.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000773.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000774.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000774.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000776.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000776.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000777.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000777.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000778.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000778.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000779.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000779.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000780.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000780.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000781.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000781.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000782.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000782.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000783.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000783.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000784.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000784.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000785.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000785.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000786.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000786.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000787.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000787.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000789.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000789.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000790.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000790.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000792.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000792.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000794.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000794.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000795.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000795.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000796.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000796.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000797.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000797.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000798.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000798.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000799.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000799.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000800.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000800.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000801.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000801.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000802.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000802.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000803.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000803.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000804.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000804.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000805.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000805.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000806.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000806.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000807.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000807.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000808.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000808.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000809.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000809.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000810.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000811.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000811.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000812.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000812.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000813.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000813.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000814.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000814.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000815.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000815.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000818.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000818.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000819.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000819.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000820.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000820.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000821.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000821.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000822.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000822.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000823.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000823.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000824.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000824.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000825.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000825.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000826.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000826.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000827.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000827.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000828.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000828.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000829.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000829.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000830.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000830.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000831.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000831.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000833.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000833.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000834.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000834.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000835.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000835.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000837.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000837.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000838.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000838.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000839.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000839.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000840.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000840.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000841.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000841.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000843.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000843.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000844.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000844.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000846.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000846.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000847.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000847.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000848.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000848.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000849.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000849.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000850.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000850.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000851.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000851.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000852.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000852.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000853.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000853.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000854.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000854.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000855.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000855.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000856.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000856.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000857.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000857.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000858.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000858.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000859.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000859.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000860.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000860.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000861.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000861.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000863.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000863.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000864.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000864.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000865.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000865.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000866.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000866.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000868.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000868.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000869.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000869.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000870.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000870.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000871.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000871.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000872.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000872.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000873.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000873.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000874.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000874.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000875.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000875.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000876.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000876.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000877.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000877.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000878.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000878.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000881.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000881.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000882.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000882.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000883.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000883.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000884.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000884.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000885.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000885.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000886.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000886.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000887.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000887.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000888.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000888.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000889.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000889.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000890.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000890.txt -------------------------------------------------------------------------------- /pytorch/exp/results/data/000892.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/exp/results/data/000892.txt -------------------------------------------------------------------------------- /pytorch/infer_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/infer_eval.sh -------------------------------------------------------------------------------- /pytorch/kitti_format/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pytorch/readme/DEMO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/readme/DEMO.md -------------------------------------------------------------------------------- /pytorch/readme/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/readme/INSTALL.md -------------------------------------------------------------------------------- /pytorch/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/requirements.txt -------------------------------------------------------------------------------- /pytorch/src/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/_init_paths.py -------------------------------------------------------------------------------- /pytorch/src/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/demo.py -------------------------------------------------------------------------------- /pytorch/src/faster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/faster.py -------------------------------------------------------------------------------- /pytorch/src/kitti_format/exp/AutoShape_dla34_trainval_stereoaug_pc48_adaptive/logs_2021-10-08-14-12/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch/src/lib/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch/src/lib/external/nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/external/nms.c -------------------------------------------------------------------------------- /pytorch/src/lib/external/nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/external/nms.pyx -------------------------------------------------------------------------------- /pytorch/src/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/logger.py -------------------------------------------------------------------------------- /pytorch/src/lib/models/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/models/decode.py -------------------------------------------------------------------------------- /pytorch/src/lib/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/models/losses.py -------------------------------------------------------------------------------- /pytorch/src/lib/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/models/model.py -------------------------------------------------------------------------------- /pytorch/src/lib/models/networks/DCNv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch/src/lib/models/networks/DCNv2/make.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | python setup.py build develop 3 | -------------------------------------------------------------------------------- /pytorch/src/lib/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/models/utils.py -------------------------------------------------------------------------------- /pytorch/src/lib/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/opts.py -------------------------------------------------------------------------------- /pytorch/src/lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch/src/lib/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/utils/image.py -------------------------------------------------------------------------------- /pytorch/src/lib/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/lib/utils/utils.py -------------------------------------------------------------------------------- /pytorch/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/main.py -------------------------------------------------------------------------------- /pytorch/src/tools/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/tools/_init_paths.py -------------------------------------------------------------------------------- /pytorch/src/tools/get_kitti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/tools/get_kitti.sh -------------------------------------------------------------------------------- /pytorch/src/tools/kitti-object-eval-python/ImageSets/my1.txt: -------------------------------------------------------------------------------- 1 | 000002 2 | -------------------------------------------------------------------------------- /pytorch/src/tools/kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/tools/kitti.py -------------------------------------------------------------------------------- /pytorch/src/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/src/video.py -------------------------------------------------------------------------------- /pytorch/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zongdai/AutoShape/HEAD/pytorch/train.sh --------------------------------------------------------------------------------